Browse Source

UI: Updated ngx-translate-messageformat-compiler for latest value

pull/8170/head
Vladyslav_Prykhodko 3 years ago
parent
commit
62af087e1b
  1. 9
      ui-ngx/package.json
  2. 11
      ui-ngx/src/app/core/translate/translate-default-compiler.ts
  3. 316
      ui-ngx/src/assets/locale/locale.constant-ca_ES.json
  4. 208
      ui-ngx/src/assets/locale/locale.constant-cs_CZ.json
  5. 16
      ui-ngx/src/assets/locale/locale.constant-da_DK.json
  6. 162
      ui-ngx/src/assets/locale/locale.constant-de_DE.json
  7. 220
      ui-ngx/src/assets/locale/locale.constant-el_GR.json
  8. 272
      ui-ngx/src/assets/locale/locale.constant-en_US.json
  9. 232
      ui-ngx/src/assets/locale/locale.constant-es_ES.json
  10. 142
      ui-ngx/src/assets/locale/locale.constant-fa_IR.json
  11. 184
      ui-ngx/src/assets/locale/locale.constant-fr_FR.json
  12. 142
      ui-ngx/src/assets/locale/locale.constant-it_IT.json
  13. 130
      ui-ngx/src/assets/locale/locale.constant-ja_JP.json
  14. 148
      ui-ngx/src/assets/locale/locale.constant-ka_GE.json
  15. 174
      ui-ngx/src/assets/locale/locale.constant-ko_KR.json
  16. 142
      ui-ngx/src/assets/locale/locale.constant-lv_LV.json
  17. 160
      ui-ngx/src/assets/locale/locale.constant-pt_BR.json
  18. 142
      ui-ngx/src/assets/locale/locale.constant-ro_RO.json
  19. 136
      ui-ngx/src/assets/locale/locale.constant-ru_RU.json
  20. 174
      ui-ngx/src/assets/locale/locale.constant-sl_SI.json
  21. 208
      ui-ngx/src/assets/locale/locale.constant-tr_TR.json
  22. 192
      ui-ngx/src/assets/locale/locale.constant-uk_UA.json
  23. 263
      ui-ngx/src/assets/locale/locale.constant-zh_CN.json
  24. 244
      ui-ngx/src/assets/locale/locale.constant-zh_TW.json
  25. 135
      ui-ngx/yarn.lock

9
ui-ngx/package.json

@ -36,6 +36,7 @@
"@material-ui/core": "4.12.3", "@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.2", "@material-ui/icons": "4.11.2",
"@material-ui/pickers": "3.3.10", "@material-ui/pickers": "3.3.10",
"@messageformat/core": "^3.0.1",
"@ngrx/effects": "^15.3.0", "@ngrx/effects": "^15.3.0",
"@ngrx/store": "^15.3.0", "@ngrx/store": "^15.3.0",
"@ngrx/store-devtools": "^15.3.0", "@ngrx/store-devtools": "^15.3.0",
@ -67,9 +68,8 @@
"leaflet.markercluster": "^1.5.3", "leaflet.markercluster": "^1.5.3",
"libphonenumber-js": "^1.10.4", "libphonenumber-js": "^1.10.4",
"marked": "^4.0.17", "marked": "^4.0.17",
"messageformat": "^2.3.0", "moment": "^2.29.4",
"moment": "^2.29.1", "moment-timezone": "^0.5.41",
"moment-timezone": "^0.5.40",
"ngx-clipboard": "^15.1.0", "ngx-clipboard": "^15.1.0",
"ngx-color-picker": "^13.0.0", "ngx-color-picker": "^13.0.0",
"ngx-daterangepicker-material": "^6.0.4", "ngx-daterangepicker-material": "^6.0.4",
@ -78,7 +78,7 @@
"ngx-hm-carousel": "^3.0.0", "ngx-hm-carousel": "^3.0.0",
"ngx-markdown": "^15.1.1", "ngx-markdown": "^15.1.1",
"ngx-sharebuttons": "^11.0.0", "ngx-sharebuttons": "^11.0.0",
"ngx-translate-messageformat-compiler": "^5.1.0", "ngx-translate-messageformat-compiler": "^6.2.0",
"objectpath": "^2.0.0", "objectpath": "^2.0.0",
"prettier": "^2.8.3", "prettier": "^2.8.3",
"prop-types": "^15.8.1", "prop-types": "^15.8.1",
@ -131,7 +131,6 @@
"@types/leaflet.markercluster": "^1.5.1", "@types/leaflet.markercluster": "^1.5.1",
"@types/lodash": "^4.14.177", "@types/lodash": "^4.14.177",
"@types/marked": "^4.0.3", "@types/marked": "^4.0.3",
"@types/moment-timezone": "^0.5.30",
"@types/mousetrap": "^1.6.0", "@types/mousetrap": "^1.6.0",
"@types/node": "~15.14.9", "@types/node": "~15.14.9",
"@types/raphael": "^2.3.2", "@types/raphael": "^2.3.2",

11
ui-ngx/src/app/core/translate/translate-default-compiler.ts

@ -20,7 +20,7 @@ import {
TranslateMessageFormatCompiler TranslateMessageFormatCompiler
} from 'ngx-translate-messageformat-compiler'; } from 'ngx-translate-messageformat-compiler';
import { Inject, Injectable, Optional } from '@angular/core'; import { Inject, Injectable, Optional } from '@angular/core';
import messageFormatParser from 'messageformat-parser'; import { parse } from '@messageformat/parser';
@Injectable({ providedIn: 'root' }) @Injectable({ providedIn: 'root' })
export class TranslateDefaultCompiler extends TranslateMessageFormatCompiler { export class TranslateDefaultCompiler extends TranslateMessageFormatCompiler {
@ -44,7 +44,12 @@ export class TranslateDefaultCompiler extends TranslateMessageFormatCompiler {
private defaultCompile(src: any, lang: string): any { private defaultCompile(src: any, lang: string): any {
if (typeof src !== 'object') { if (typeof src !== 'object') {
if (this.checkIsPlural(src)) { if (this.checkIsPlural(src)) {
return super.compile(src, lang); try {
return super.compile(src, lang);
} catch (e) {
console.warn('Failed compile translate:', src, e);
return src;
}
} else { } else {
return src; return src;
} }
@ -60,7 +65,7 @@ export class TranslateDefaultCompiler extends TranslateMessageFormatCompiler {
private checkIsPlural(src: string): boolean { private checkIsPlural(src: string): boolean {
let tokens: any[]; let tokens: any[];
try { try {
tokens = messageFormatParser.parse(src.replace(/\{\{/g, '{').replace(/\}\}/g, '}'), tokens = parse(src.replace(/\{\{/g, '{').replace(/\}\}/g, '}'),
{cardinal: [], ordinal: []}); {cardinal: [], ordinal: []});
} catch (e) { } catch (e) {
console.warn(`Failed to parse source: ${src}`); console.warn(`Failed to parse source: ${src}`);

316
ui-ngx/src/assets/locale/locale.constant-ca_ES.json

@ -453,17 +453,17 @@
"acknowledge": "Reconèixer", "acknowledge": "Reconèixer",
"clear": "Normalitzar", "clear": "Normalitzar",
"search": "Buscar alarmes", "search": "Buscar alarmes",
"selected-alarms": "{ count, plural, 1 {1 alarma} other {# alarmas} } seleccionades", "selected-alarms": "{ count, plural, =1 {1 alarma} other {# alarmas} } seleccionades",
"no-data": "Sense dades que mostrar", "no-data": "Sense dades que mostrar",
"polling-interval": "Cicle de refresc d'alarmes (seg)", "polling-interval": "Cicle de refresc d'alarmes (seg)",
"polling-interval-required": "Es requereix un cicle de refresc vàlid.", "polling-interval-required": "Es requereix un cicle de refresc vàlid.",
"min-polling-interval-message": "El cicle ha de ser almenys d'1 segon.", "min-polling-interval-message": "El cicle ha de ser almenys d'1 segon.",
"aknowledge-alarms-title": "Reconèixer { count, plural, 1 {1 alarma} other {# alarmas} }", "aknowledge-alarms-title": "Reconèixer { count, plural, =1 {1 alarma} other {# alarmas} }",
"aknowledge-alarms-text": "Aquestes segur de reconèixer { count, plural, 1 {1 alarma} other {# alarmas} }?", "aknowledge-alarms-text": "Aquestes segur de reconèixer { count, plural, =1 {1 alarma} other {# alarmas} }?",
"aknowledge-alarm-title": "Reconèixer Alarma", "aknowledge-alarm-title": "Reconèixer Alarma",
"aknowledge-alarm-text": "Estàs segur de reconèixer Alarma?", "aknowledge-alarm-text": "Estàs segur de reconèixer Alarma?",
"clear-alarms-title": "Normalitzar { count, plural, 1 {1 alarma} other {# alarmas} }", "clear-alarms-title": "Normalitzar { count, plural, =1 {1 alarma} other {# alarmas} }",
"clear-alarms-text": "Netejar { count, plural, 1 {1 alarma} other {# alarmas} }?", "clear-alarms-text": "Netejar { count, plural, =1 {1 alarma} other {# alarmas} }?",
"clear-alarm-title": "Netejar Alarma", "clear-alarm-title": "Netejar Alarma",
"clear-alarm-text": "Netejar Alarma?", "clear-alarm-text": "Netejar Alarma?",
"alarm-status-filter": "Filtre d'estats d'Alarmes", "alarm-status-filter": "Filtre d'estats d'Alarmes",
@ -582,15 +582,15 @@
"add-asset-text": "Afegir nou actiu", "add-asset-text": "Afegir nou actiu",
"asset-details": "Detalls d'actiu", "asset-details": "Detalls d'actiu",
"assign-assets": "Assignar activus", "assign-assets": "Assignar activus",
"assign-assets-text": "Assignar { count, plural, 1 {1 activo} other {# activos} } a client", "assign-assets-text": "Assignar { count, plural, =1 {1 activo} other {# activos} } a client",
"delete-assets": "Esborrar actius", "delete-assets": "Esborrar actius",
"unassign-assets": "Cancel·lar assignació d'actiu", "unassign-assets": "Cancel·lar assignació d'actiu",
"unassign-assets-action-title": "Cancel·lar assignació de { count, plural, 1 {1 activo} other {# activos} } del client", "unassign-assets-action-title": "Cancel·lar assignació de { count, plural, =1 {1 activo} other {# activos} } del client",
"assign-new-asset": "Assignar nou actiu", "assign-new-asset": "Assignar nou actiu",
"delete-asset-title": "Eliminar l'actiu '{{assetName}}'?", "delete-asset-title": "Eliminar l'actiu '{{assetName}}'?",
"delete-asset-text": "Atenció, després de la confirmació l'actiu i les seves dades seran esborrades i irrecuperables.", "delete-asset-text": "Atenció, després de la confirmació l'actiu i les seves dades seran esborrades i irrecuperables.",
"delete-assets-title": "Eliminar els actius { count, plural, 1 {1 activo} other {# activos} }?", "delete-assets-title": "Eliminar els actius { count, plural, =1 {1 activo} other {# activos} }?",
"delete-assets-action-title": "Esborrar { count, plural, 1 {1 activo} other {# activos} }", "delete-assets-action-title": "Esborrar { count, plural, =1 {1 activo} other {# activos} }",
"delete-assets-text": "Atenció, després de la confirmació tots els actius seleccionats i les seves dades seran esborrades i irrecuperables.", "delete-assets-text": "Atenció, després de la confirmació tots els actius seleccionats i les seves dades seran esborrades i irrecuperables.",
"make-public-asset-title": "Fer l'actiu '{{assetName}}' públic?", "make-public-asset-title": "Fer l'actiu '{{assetName}}' públic?",
"make-public-asset-text": "Després de la confirmació, l'actiu i les seves dades és faran públics i accessibles per uns altres.", "make-public-asset-text": "Després de la confirmació, l'actiu i les seves dades és faran públics i accessibles per uns altres.",
@ -599,7 +599,7 @@
"unassign-asset-title": "Cancel·lar l'assignació de l'actiu '{{assetName}}'?", "unassign-asset-title": "Cancel·lar l'assignació de l'actiu '{{assetName}}'?",
"unassign-asset-text": "Després de la confirmació, l'actiu serà desassignat i no serà accessible pel client.", "unassign-asset-text": "Després de la confirmació, l'actiu serà desassignat i no serà accessible pel client.",
"unassign-asset": "Cancel·lar assignació d'actiu", "unassign-asset": "Cancel·lar assignació d'actiu",
"unassign-assets-title": "Cancel·lar les assignacions { count, plural, 1 {1 activo} other {# activos} }?", "unassign-assets-title": "Cancel·lar les assignacions { count, plural, =1 {1 activo} other {# activos} }?",
"unassign-assets-text": "Després de la confirmació tots els actius seleccionats seran desassignats i no seran accessibles pel client.", "unassign-assets-text": "Després de la confirmació tots els actius seleccionats seran desassignats i no seran accessibles pel client.",
"copyId": "Copiar ID d'actiu", "copyId": "Copiar ID d'actiu",
"idCopiedMessage": "L'ID ha estat copiat al porta-retalls", "idCopiedMessage": "L'ID ha estat copiat al porta-retalls",
@ -608,13 +608,13 @@
"asset-required": "Cal nom d'actiu", "asset-required": "Cal nom d'actiu",
"name-starts-with": "El nom de l'actiu que comenci amb", "name-starts-with": "El nom de l'actiu que comenci amb",
"help-text": "Utilitzeu «%» segons la necessitat: «%asset.name.contains%», «%asset.name.ends», «asset.starts.with».", "help-text": "Utilitzeu «%» segons la necessitat: «%asset.name.contains%», «%asset.name.ends», «asset.starts.with».",
"selected-assets": "{ count, plural, 1 {1 activo} other {# activos} } seleccionats", "selected-assets": "{ count, plural, =1 {1 activo} other {# activos} } seleccionats",
"search": "Buscar actius", "search": "Buscar actius",
"select-group-to-add": "Seleccionar grup objectiu per a afegir actius seleccionats", "select-group-to-add": "Seleccionar grup objectiu per a afegir actius seleccionats",
"select-group-to-move": "Seleccionar grup objectiu per a moure actius seleccionats", "select-group-to-move": "Seleccionar grup objectiu per a moure actius seleccionats",
"remove-assets-from-group": "Està segur que desitja eliminar { count, plural, 1 {1 asset} other {# assets} } del grup '{{entityGroup}}'?", "remove-assets-from-group": "Està segur que desitja eliminar { count, plural, =1 {1 asset} other {# assets} } del grup '{{entityGroup}}'?",
"group": "Grup d'actius", "group": "Grup d'actius",
"list-of-groups": "{ count, plural, 1 {One asset group} other {List of # asset groups} }", "list-of-groups": "{ count, plural, =1 {One asset group} other {List of # asset groups} }",
"group-name-starts-with": "Grups d'actius els noms dels quals comencen amb '{{prefix}}'", "group-name-starts-with": "Grups d'actius els noms dels quals comencen amb '{{prefix}}'",
"import": "Importar actius", "import": "Importar actius",
"asset-file": "Arxiu de l'actiu", "asset-file": "Arxiu de l'actiu",
@ -623,10 +623,10 @@
"unassign-asset-from-edge": "Anul·lar actiu de vora", "unassign-asset-from-edge": "Anul·lar actiu de vora",
"unassign-asset-from-edge-title": "Està segur que desitja desassignar l'actiu '{{assetName}}'?", "unassign-asset-from-edge-title": "Està segur que desitja desassignar l'actiu '{{assetName}}'?",
"unassign-asset-from-edge-text": "Després de la confirmació, l'actiu no serà assignat i la vora no podrà accedir a ell", "unassign-asset-from-edge-text": "Després de la confirmació, l'actiu no serà assignat i la vora no podrà accedir a ell",
"unassign-assets-from-edge-title": "Està segur que desitja desassignar {count, plural, 1 {1 activo} other {# activos} }?", "unassign-assets-from-edge-title": "Està segur que desitja desassignar {count, plural, =1 {1 activo} other {# activos} }?",
"unassign-assets-from-edge-text": "Després de la confirmació, tots els actius seleccionats quedaran sense assignar i la vora no podrà accedir a ells.", "unassign-assets-from-edge-text": "Després de la confirmació, tots els actius seleccionats quedaran sense assignar i la vora no podrà accedir a ells.",
"assign-asset-to-edge-text": "Si us plau, seleccioni els actius per a assignar a la vora", "assign-asset-to-edge-text": "Si us plau, seleccioni els actius per a assignar a la vora",
"unassign-assets-from-edge-action-title": "Anul·lar assignació {count, plural, 1 {1 activo} other {# activos} } des de la vora" "unassign-assets-from-edge-action-title": "Anul·lar assignació {count, plural, =1 {1 activo} other {# activos} } des de la vora"
}, },
"attribute": { "attribute": {
"attributes": "Atributs", "attributes": "Atributs",
@ -644,7 +644,7 @@
"key-required": "Clau de l'atribut requerida.", "key-required": "Clau de l'atribut requerida.",
"value": "Valor", "value": "Valor",
"value-required": "Cal valor de l'atribut.", "value-required": "Cal valor de l'atribut.",
"delete-attributes-title": "Eliminar { count, plural, 1 {1 atributo} other {# atributos} }?", "delete-attributes-title": "Eliminar { count, plural, =1 {1 atributo} other {# atributos} }?",
"delete-attributes-text": "Atenció, després de la confirmació l'atribut serà eliminat, i la informació relacionada serà irrecuperable.", "delete-attributes-text": "Atenció, després de la confirmació l'atribut serà eliminat, i la informació relacionada serà irrecuperable.",
"delete-attributes": "Esborrar atribut", "delete-attributes": "Esborrar atribut",
"enter-attribute-value": "Ingressar valor de l'atribut", "enter-attribute-value": "Ingressar valor de l'atribut",
@ -654,8 +654,8 @@
"prev-widget": "Widget anterior", "prev-widget": "Widget anterior",
"add-to-dashboard": "Afegir al Panell", "add-to-dashboard": "Afegir al Panell",
"add-widget-to-dashboard": "Afegir widget al Panell", "add-widget-to-dashboard": "Afegir widget al Panell",
"selected-attributes": "{ count, plural, 1 {1 atributo} other {# atributos} } seleccionats", "selected-attributes": "{ count, plural, =1 {1 atributo} other {# atributos} } seleccionats",
"selected-telemetry": "{ count, plural, 1 {1 telemetría} other {# telemetrías} } seleccionades", "selected-telemetry": "{ count, plural, =1 {1 telemetría} other {# telemetrías} } seleccionades",
"no-attributes-text": "No és va trobar cap atribut", "no-attributes-text": "No és va trobar cap atribut",
"no-telemetry-text": "No és va trobar cap telemetria" "no-telemetry-text": "No és va trobar cap telemetria"
}, },
@ -815,11 +815,11 @@
"management": "Gestió de convertidors de dades", "management": "Gestió de convertidors de dades",
"add-converter-text": "Afegir nou convertidor de dades", "add-converter-text": "Afegir nou convertidor de dades",
"no-converters-text": "Convertidors de dades no trobats", "no-converters-text": "Convertidors de dades no trobats",
"selected-converters": "{ count, plural, 1 {1 data converter} other {# data converters} } seleccionats", "selected-converters": "{ count, plural, =1 {1 data converter} other {# data converters} } seleccionats",
"delete-converter-title": "Està segur que desitja eliminar el convertidor de dades '{{converterName}}'?", "delete-converter-title": "Està segur que desitja eliminar el convertidor de dades '{{converterName}}'?",
"delete-converter-text": "Anar amb compte, després de la confirmació, el convertidor de dades i totes les dades relacionades és tornaran irrecuperables.", "delete-converter-text": "Anar amb compte, després de la confirmació, el convertidor de dades i totes les dades relacionades és tornaran irrecuperables.",
"delete-converters-title": "Està segur que desitja eliminar { count, plural, 1 {1 data converter} other {# data converters} }?", "delete-converters-title": "Està segur que desitja eliminar { count, plural, =1 {1 data converter} other {# data converters} }?",
"delete-converters-action-title": "Eliminar { count, plural, 1 {1 data converter} other {# data converters} }", "delete-converters-action-title": "Eliminar { count, plural, =1 {1 data converter} other {# data converters} }",
"delete-converters-text": "Anar amb compte, després de la confirmació s'eliminaran tots els convertidors de dades seleccionades i totes les dades relacionades és tornaran irrecuperables.", "delete-converters-text": "Anar amb compte, després de la confirmació s'eliminaran tots els convertidors de dades seleccionades i totes les dades relacionades és tornaran irrecuperables.",
"events": "Esdeveniments", "events": "Esdeveniments",
"add": "Afegeix convertidor de dades", "add": "Afegeix convertidor de dades",
@ -904,8 +904,8 @@
"customer-details": "Detalls del client", "customer-details": "Detalls del client",
"delete-customer-title": "Eliminar el client '{{customerTitle}}'?", "delete-customer-title": "Eliminar el client '{{customerTitle}}'?",
"delete-customer-text": "Atenció, després de la confirmació el client serà eliminat i tota la informació relacionada serà irrecuperable.", "delete-customer-text": "Atenció, després de la confirmació el client serà eliminat i tota la informació relacionada serà irrecuperable.",
"delete-customers-title": "Eliminar { count, plural, 1 {1 cliente} other {# clientes} }?", "delete-customers-title": "Eliminar { count, plural, =1 {1 cliente} other {# clientes} }?",
"delete-customers-action-title": "Esborrar { count, plural, 1 {1 cliente} other {# clientes} }", "delete-customers-action-title": "Esborrar { count, plural, =1 {1 cliente} other {# clientes} }",
"delete-customers-text": "Atenció, després de la confirmació tots els clients seleccionats seran eliminats i la informació relacionada serà irrecuperable.", "delete-customers-text": "Atenció, després de la confirmació tots els clients seleccionats seran eliminats i la informació relacionada serà irrecuperable.",
"manage-user-groups": "Gestionar grups d'usuaris", "manage-user-groups": "Gestionar grups d'usuaris",
"manage-asset-groups": "Gestionar grups d'actius", "manage-asset-groups": "Gestionar grups d'actius",
@ -928,13 +928,13 @@
"select-customer": "Seleccionar Client", "select-customer": "Seleccionar Client",
"no-customers-matching": "No s'han trobat clients que coincideixin amb '{{entity}}' .", "no-customers-matching": "No s'han trobat clients que coincideixin amb '{{entity}}' .",
"customer-required": "Cal client", "customer-required": "Cal client",
"selected-customers": "{ count, plural, 1 {1 cliente} other {# clientes} } seleccionats", "selected-customers": "{ count, plural, =1 {1 cliente} other {# clientes} } seleccionats",
"search": "Buscar clients", "search": "Buscar clients",
"select-group-to-add": "Seleccionar el grup objectiu per afegir clients seleccionats", "select-group-to-add": "Seleccionar el grup objectiu per afegir clients seleccionats",
"select-group-to-move": "Seleccionar el grup abkectiu per moure clients seleccionats", "select-group-to-move": "Seleccionar el grup abkectiu per moure clients seleccionats",
"remove-customers-from-group": "Esteu segur que voleu eliminar { count, plural, 1 {1 customer} other {# customers} } del grup '{{entityGroup}}'?", "remove-customers-from-group": "Esteu segur que voleu eliminar { count, plural, =1 {1 customer} other {# customers} } del grup '{{entityGroup}}'?",
"group": "Grup clients", "group": "Grup clients",
"list-of-groups": "{ count, plural, 1 {One customer group} other {List of # customer groups} }", "list-of-groups": "{ count, plural, =1 {One customer group} other {List of # customer groups} }",
"group-name-starts-with": "Grups de clients els quals començen amb '{{prefix}}'", "group-name-starts-with": "Grups de clients els quals començen amb '{{prefix}}'",
"select-default-customer": "Seleccionar un client per defecte", "select-default-customer": "Seleccionar un client per defecte",
"default-customer": "Client per defecte", "default-customer": "Client per defecte",
@ -1016,20 +1016,20 @@
"add-dashboard-text": "Afegir nou panell", "add-dashboard-text": "Afegir nou panell",
"assign-dashboards": "Assignar panells", "assign-dashboards": "Assignar panells",
"assign-new-dashboard": "Assignar nou panell", "assign-new-dashboard": "Assignar nou panell",
"assign-dashboards-text": "Assignar { count, plural, 1 {1 panel} other {# paneles} } al client", "assign-dashboards-text": "Assignar { count, plural, =1 {1 panel} other {# paneles} } al client",
"unassign-dashboards-action-text": "Desassignar { count, plural, 1 {1 panel} other {# paneles} } als clients", "unassign-dashboards-action-text": "Desassignar { count, plural, =1 {1 panel} other {# paneles} } als clients",
"delete-dashboards": "Eliminar panells", "delete-dashboards": "Eliminar panells",
"unassign-dashboards": "Desassignar panells", "unassign-dashboards": "Desassignar panells",
"unassign-dashboards-action-title": "Desassignar { count, plural, 1 {1 paneles} other {# paneles} } del client", "unassign-dashboards-action-title": "Desassignar { count, plural, =1 {1 paneles} other {# paneles} } del client",
"delete-dashboard-title": "Eliminar el panell '{{dashboardTitle}}'?", "delete-dashboard-title": "Eliminar el panell '{{dashboardTitle}}'?",
"delete-dashboard-text": "Atenció, el panell seleccionat serà eliminat i la informació relacionada serà irrecuperable.", "delete-dashboard-text": "Atenció, el panell seleccionat serà eliminat i la informació relacionada serà irrecuperable.",
"delete-dashboards-title": "Eliminar { count, plural, 1 {1 panel} other {# paneles} }?", "delete-dashboards-title": "Eliminar { count, plural, =1 {1 panel} other {# paneles} }?",
"delete-dashboards-action-title": "Eliminar { count, plural, 1 {1 panel} other {# paneles} }", "delete-dashboards-action-title": "Eliminar { count, plural, =1 {1 panel} other {# paneles} }",
"delete-dashboards-text": "Atenció, els panells seleccionats seran eliminats i la informació relacionada serà irrecuperable.", "delete-dashboards-text": "Atenció, els panells seleccionats seran eliminats i la informació relacionada serà irrecuperable.",
"unassign-dashboard-title": "Desassignar el panell '{{dashboardTitle}}'?", "unassign-dashboard-title": "Desassignar el panell '{{dashboardTitle}}'?",
"unassign-dashboard-text": "Després de la confirmació, el panell serà desassignat i no podrà ser accessible pel client.", "unassign-dashboard-text": "Després de la confirmació, el panell serà desassignat i no podrà ser accessible pel client.",
"unassign-dashboard": "Desassignar panell", "unassign-dashboard": "Desassignar panell",
"unassign-dashboards-title": "Desassignar { count, plural, 1 {1 panel} other {# paneles} }?", "unassign-dashboards-title": "Desassignar { count, plural, =1 {1 panel} other {# paneles} }?",
"unassign-dashboards-text": "Atenció, després de la confirmació els panells seleccionats seran desassignats i no podran ser accessibles pel client.", "unassign-dashboards-text": "Atenció, després de la confirmació els panells seleccionats seran desassignats i no podran ser accessibles pel client.",
"public-dashboard-title": "El panell ara és públic", "public-dashboard-title": "El panell ara és públic",
"public-dashboard-text": "El teu panell <b>{{dashboardTitle}}</b> ara és públic i podrà ser accedit des de: <a href='{{publicLink}}' target='_blank'>aquí</a>:", "public-dashboard-text": "El teu panell <b>{{dashboardTitle}}</b> ara és públic i podrà ser accedit des de: <a href='{{publicLink}}' target='_blank'>aquí</a>:",
@ -1131,7 +1131,7 @@
"manage-states": "Administrar estats de panells", "manage-states": "Administrar estats de panells",
"states": "Estats de panells", "states": "Estats de panells",
"search-states": "Buscar estats de panells", "search-states": "Buscar estats de panells",
"selected-states": "{ count, plural, 1 {1 estado panel} other {# estat paneles} } seleccionats", "selected-states": "{ count, plural, =1 {1 estado panel} other {# estat paneles} } seleccionats",
"edit-state": "Editar estat panell", "edit-state": "Editar estat panell",
"delete-state": "Esborrar estat panell", "delete-state": "Esborrar estat panell",
"add-state": "Afegir estat panell", "add-state": "Afegir estat panell",
@ -1149,18 +1149,18 @@
"hide-details": "Ocultar detalls", "hide-details": "Ocultar detalls",
"select-state": "Seleccionar estat destí (target state)", "select-state": "Seleccionar estat destí (target state)",
"state-controller": "Controlador d'estats", "state-controller": "Controlador d'estats",
"selected-dashboards": "{ count, plural, 1 {1 panel} other {# paneles} } seleccionats", "selected-dashboards": "{ count, plural, =1 {1 panel} other {# paneles} } seleccionats",
"search": "Buscar panells", "search": "Buscar panells",
"home-dashboard": "Tauler d'inici", "home-dashboard": "Tauler d'inici",
"home-dashboard-hide-toolbar": "Amaga la barra d'eines del tauler d'inici", "home-dashboard-hide-toolbar": "Amaga la barra d'eines del tauler d'inici",
"select-group-to-add": "Seleccioneu el grup de destinació per a afegir els panells seleccionats", "select-group-to-add": "Seleccioneu el grup de destinació per a afegir els panells seleccionats",
"select-group-to-move": "Seleccioneu el grup de destinació per a moure els panells seleccionats", "select-group-to-move": "Seleccioneu el grup de destinació per a moure els panells seleccionats",
"remove-dashboards-from-group": "Esteu segur que voleu eliminar { count, plural, 1 {1 dashboard} other {# dashboards} } del grup '{{entityGroup}}'?", "remove-dashboards-from-group": "Esteu segur que voleu eliminar { count, plural, =1 {1 dashboard} other {# dashboards} } del grup '{{entityGroup}}'?",
"group": "Grup de penells", "group": "Grup de penells",
"list-of-groups": "{ count, plural, 1 {One dashboard group} other {List of # dashboard groups} }", "list-of-groups": "{ count, plural, =1 {One dashboard group} other {List of # dashboard groups} }",
"group-name-starts-with": "Grups de tauler amb noms que comencen per '{{prefix}}'", "group-name-starts-with": "Grups de tauler amb noms que comencen per '{{prefix}}'",
"unassign-dashboard-from-edge-text": "Després de la confirmació, el tauler no serà assignat i la vora no podrà accedir a ell", "unassign-dashboard-from-edge-text": "Després de la confirmació, el tauler no serà assignat i la vora no podrà accedir a ell",
"unassign-dashboards-from-edge-title": "Esteu segur que voleu desassignar { count, plural, 1 {1 dashboard} other {# dashboards} }?", "unassign-dashboards-from-edge-title": "Esteu segur que voleu desassignar { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"unassign-dashboards-from-edge-text": "Després de la confirmació, és anul·larà l'assignació de tots els panells seleccionats i no seran accessibles per de vora", "unassign-dashboards-from-edge-text": "Després de la confirmació, és anul·larà l'assignació de tots els panells seleccionats i no seran accessibles per de vora",
"assign-dashboard-to-edge": "Assignar panell(és) a la vora", "assign-dashboard-to-edge": "Assignar panell(és) a la vora",
"assign-dashboard-to-edge-text": "Si us plau selecciona els panells per assignar a la vora", "assign-dashboard-to-edge-text": "Si us plau selecciona els panells per assignar a la vora",
@ -1183,7 +1183,7 @@
"timeseries-required": "Sèries del temps del dispositiu requerit.", "timeseries-required": "Sèries del temps del dispositiu requerit.",
"timeseries-or-attributes-required": "Sèries del temps/*Atributs requerits.", "timeseries-or-attributes-required": "Sèries del temps/*Atributs requerits.",
"alarm-fields-timeseries-or-attributes-required": "Es requereixen camps d'alarma o sèries del temps/atributs.", "alarm-fields-timeseries-or-attributes-required": "Es requereixen camps d'alarma o sèries del temps/atributs.",
"maximum-timeseries-or-attributes": "Màxim { count, plural, 1 {1 timeseries/atributo és permès.} other {# timeseries/atributos són permitidos} }", "maximum-timeseries-or-attributes": "Màxim { count, plural, =1 {1 timeseries/atributo és permès.} other {# timeseries/atributos són permitidos} }",
"alarm-fields-required": "Cal camps d'alarma", "alarm-fields-required": "Cal camps d'alarma",
"function-types": "Tipus de funcions", "function-types": "Tipus de funcions",
"function-types-required": "Cal tipus de funcions.", "function-types-required": "Cal tipus de funcions.",
@ -1199,7 +1199,7 @@
"timeseries-key": "Clau de sèries de temps", "timeseries-key": "Clau de sèries de temps",
"timeseries-key-functions": "Funcions de sèries de temps", "timeseries-key-functions": "Funcions de sèries de temps",
"timeseries-key-function": "Funció de sèrie de temps", "timeseries-key-function": "Funció de sèrie de temps",
"maximum-function-types": "Màxim { count, plural, 1 {1 tipo de función está permitida.} other {# tipos de funciones están permitidos} }", "maximum-function-types": "Màxim { count, plural, =1 {1 tipo de función está permitida.} other {# tipos de funciones están permitidos} }",
"time-description": "Hora del valor actual", "time-description": "Hora del valor actual",
"value-description": "El valor actual", "value-description": "El valor actual",
"prev-value-description": "resultat de la crida anterior de la funció", "prev-value-description": "resultat de la crida anterior de la funció",
@ -1263,11 +1263,11 @@
"manage-credentials": "Gestionar credencials", "manage-credentials": "Gestionar credencials",
"delete": "Eliminar dispositiu", "delete": "Eliminar dispositiu",
"assign-devices": "Assignar dispositiu", "assign-devices": "Assignar dispositiu",
"assign-devices-text": "Assignar { count, plural, 1 {1 dispositivo} other {# dispositivos} } al client", "assign-devices-text": "Assignar { count, plural, =1 {1 dispositivo} other {# dispositivos} } al client",
"delete-devices": "Eliminar dispositiu", "delete-devices": "Eliminar dispositiu",
"unassign-from-customer": "Desassignar el client", "unassign-from-customer": "Desassignar el client",
"unassign-devices": "Desassignar dispositius", "unassign-devices": "Desassignar dispositius",
"unassign-devices-action-title": "Desassignar { count, plural, 1 {1 dispositivo} other {# dispositivos} } del client", "unassign-devices-action-title": "Desassignar { count, plural, =1 {1 dispositivo} other {# dispositivos} } del client",
"unassign-device-from-edge-title": "Està segur que vol desassignar el dispositiu '{{deviceName}}'?", "unassign-device-from-edge-title": "Està segur que vol desassignar el dispositiu '{{deviceName}}'?",
"unassign-device-from-edge-text": "Després de la confirmació, el dispositiu no serà assignat i la vora no podrà accedir a ell", "unassign-device-from-edge-text": "Després de la confirmació, el dispositiu no serà assignat i la vora no podrà accedir a ell",
"unassign-devices-from-edge": "Desassigna els dispositius de la vora", "unassign-devices-from-edge": "Desassigna els dispositius de la vora",
@ -1279,13 +1279,13 @@
"view-credentials": "Veure credencials", "view-credentials": "Veure credencials",
"delete-device-title": "Eliminar el dispositiu '{{deviceName}}'?", "delete-device-title": "Eliminar el dispositiu '{{deviceName}}'?",
"delete-device-text": "Atenció, després de la confirmació els dispositius seran eliminats i la informació relacionada serà irrecuperable.", "delete-device-text": "Atenció, després de la confirmació els dispositius seran eliminats i la informació relacionada serà irrecuperable.",
"delete-devices-title": "Eliminar { count, plural, 1 {1 dispositivo} other {# dispositivos} }?", "delete-devices-title": "Eliminar { count, plural, =1 {1 dispositivo} other {# dispositivos} }?",
"delete-devices-action-title": "Eliminar { count, plural, 1 {1 dispositivo} other {# dispositivos} }", "delete-devices-action-title": "Eliminar { count, plural, =1 {1 dispositivo} other {# dispositivos} }",
"delete-devices-text": "Atenció, després de la confirmació els dispositius seleccionats seran eliminats i la informació relacionada serà irrecuperable.", "delete-devices-text": "Atenció, després de la confirmació els dispositius seleccionats seran eliminats i la informació relacionada serà irrecuperable.",
"unassign-device-title": "Desassignar el dispositiu '{{deviceName}}'?", "unassign-device-title": "Desassignar el dispositiu '{{deviceName}}'?",
"unassign-device-text": "Després de la confirmació, el dispositiu serà desasignado i no podrà ser accessible pel client.", "unassign-device-text": "Després de la confirmació, el dispositiu serà desasignado i no podrà ser accessible pel client.",
"unassign-device": "Desassignar dispositiu", "unassign-device": "Desassignar dispositiu",
"unassign-devices-title": "Desassignar { count, plural, 1 {1 dispositivo} other {# dispositivos} }?", "unassign-devices-title": "Desassignar { count, plural, =1 {1 dispositivo} other {# dispositivos} }?",
"unassign-devices-text": "Després de la confirmació, els dispositius seleccionats seran desasignados i no podran ser accedits pel client.", "unassign-devices-text": "Després de la confirmació, els dispositius seleccionats seran desasignados i no podran ser accedits pel client.",
"device-credentials": "Credencials del dispositiu", "device-credentials": "Credencials del dispositiu",
"loading-device-credentials": "S'estan carregant les credencials del dispositiu..", "loading-device-credentials": "S'estan carregant les credencials del dispositiu..",
@ -1363,13 +1363,13 @@
"public": "Públic", "public": "Públic",
"device-public": "El dispositiu és públic", "device-public": "El dispositiu és públic",
"select-device": "Seleccionar dispositiu", "select-device": "Seleccionar dispositiu",
"selected-devices": "{ count, plural, 1 {1 dispositivo} other {# dispositivos} } seleccionats", "selected-devices": "{ count, plural, =1 {1 dispositivo} other {# dispositivos} } seleccionats",
"search": "Buscar dispositius", "search": "Buscar dispositius",
"select-group-to-add": "Seleccionar grup objetiu per afegir dispositius seleccionats", "select-group-to-add": "Seleccionar grup objetiu per afegir dispositius seleccionats",
"select-group-to-move": "Seleccionar grup objetiu per moure dispositius seleccionats", "select-group-to-move": "Seleccionar grup objetiu per moure dispositius seleccionats",
"remove-devices-from-group": "Està segur de que desitja eliminar { count, plural, 1 {1 device} other {# devices} } del grup '{{entityGroup}}'?", "remove-devices-from-group": "Està segur de que desitja eliminar { count, plural, =1 {1 device} other {# devices} } del grup '{{entityGroup}}'?",
"group": "Grup de dispositius", "group": "Grup de dispositius",
"list-of-groups": "{ count, plural, 1 {One device group} other {List of # device groups} }", "list-of-groups": "{ count, plural, =1 {One device group} other {List of # device groups} }",
"group-name-starts-with": "Grup de dispositius els quals comencen amb '{{prefix}}'", "group-name-starts-with": "Grup de dispositius els quals comencen amb '{{prefix}}'",
"import": "Importar dispositiu", "import": "Importar dispositiu",
"device-file": "Arxiu de dispositiu", "device-file": "Arxiu de dispositiu",
@ -1384,7 +1384,7 @@
"customer-to-assign-device": "Client al que assignar el dispositiu", "customer-to-assign-device": "Client al que assignar el dispositiu",
"add-credentials": "Afegir credencial" "add-credentials": "Afegir credencial"
}, },
"unassign-devices-from-edge-title": "Està segur de que desitja desassignar {count, plural, 1 {1 dispositivo} other {# dispositivos} }?", "unassign-devices-from-edge-title": "Està segur de que desitja desassignar {count, plural, =1 {1 dispositivo} other {# dispositivos} }?",
"unassign-devices-from-edge-text": "Després de la confirmació, tots els dispositius seleccionats quedaran sense assignar i la vora no podrà accedir a ells." "unassign-devices-from-edge-text": "Després de la confirmació, tots els dispositius seleccionats quedaran sense assignar i la vora no podrà accedir a ells."
}, },
"device-profile": { "device-profile": {
@ -1396,7 +1396,7 @@
"device-profile-details": "Detalls de perfil de dispositiu", "device-profile-details": "Detalls de perfil de dispositiu",
"no-device-profiles-text": "No s'han trobat perfils", "no-device-profiles-text": "No s'han trobat perfils",
"search": "Buscar perfils", "search": "Buscar perfils",
"selected-device-profiles": "{ count, plural, 1 {1 perfil} other {# perfiles} } seleccionats", "selected-device-profiles": "{ count, plural, =1 {1 perfil} other {# perfiles} } seleccionats",
"no-device-profiles-matching": "No existeix perfil que coincideixi amb '{{entity}}'.", "no-device-profiles-matching": "No existeix perfil que coincideixi amb '{{entity}}'.",
"device-profile-required": "Cal perfil de dispositiu", "device-profile-required": "Cal perfil de dispositiu",
"idCopiedMessage": "S'ha copiat el ID de perfil al porta-retalls", "idCopiedMessage": "S'ha copiat el ID de perfil al porta-retalls",
@ -1434,7 +1434,7 @@
"select-queue-hint": "Selecciona des de el desplegable o afegir un nom personalitzat.", "select-queue-hint": "Selecciona des de el desplegable o afegir un nom personalitzat.",
"delete-device-profile-title": "Eliminar el perfil '{{deviceProfileName}}'?", "delete-device-profile-title": "Eliminar el perfil '{{deviceProfileName}}'?",
"delete-device-profile-text": "Atenció, després de la confirmació el perfil i totes les vostres dades seran esborrades i irrecuperables.", "delete-device-profile-text": "Atenció, després de la confirmació el perfil i totes les vostres dades seran esborrades i irrecuperables.",
"delete-device-profiles-title": "EEliminar { count, plural, 1 {1 perfil} other {# perfiles} }?", "delete-device-profiles-title": "EEliminar { count, plural, =1 {1 perfil} other {# perfiles} }?",
"delete-device-profiles-text": "Atenció, després de la confirmació els perfils seleccionats i totes les vostres dades seran esborrades i irrecuperables.", "delete-device-profiles-text": "Atenció, després de la confirmació els perfils seleccionats i totes les vostres dades seran esborrades i irrecuperables.",
"set-default-device-profile-title": "Establir el perfil '{{deviceProfileName}}' com perfil per defecte?", "set-default-device-profile-title": "Establir el perfil '{{deviceProfileName}}' com perfil per defecte?",
"set-default-device-profile-text": "Després de la confirmació, el perfil serà marcat com a defecte i serà utilitzat per tots els nous dispositius que no tinguin perfil especificat.", "set-default-device-profile-text": "Després de la confirmació, el perfil serà marcat com a defecte i serà utilitzat per tots els nous dispositius que no tinguin perfil especificat.",
@ -1556,8 +1556,8 @@
"condition-repeating-value-range": "El Nº de esdeveniments ha d'estar en un rang de 1 to 2147483647.", "condition-repeating-value-range": "El Nº de esdeveniments ha d'estar en un rang de 1 to 2147483647.",
"condition-repeating-value-pattern": "Nº de esdeveniments ha de ser un número enter.", "condition-repeating-value-pattern": "Nº de esdeveniments ha de ser un número enter.",
"condition-repeating-value-required": "Cal Nº de esdeveniments.", "condition-repeating-value-required": "Cal Nº de esdeveniments.",
"condition-repeat-times": "Repetició { count, plural, 1 {1 vez} other {# veces} }", "condition-repeat-times": "Repetició { count, plural, =1 {1 vez} other {# veces} }",
"condition-repeat-times-dynamic": "Repeats \"{ attribute }\" ({ count, plural, 1 {1 time} other {# times} })", "condition-repeat-times-dynamic": "Repeats \"{ attribute }\" ({ count, plural, =1 {1 time} other {# times} })",
"schedule-type": "Tipus d'horari", "schedule-type": "Tipus d'horari",
"schedule-type-required": "Cal tipus d'horari.", "schedule-type-required": "Cal tipus d'horari.",
"schedule": "Horari", "schedule": "Horari",
@ -1799,7 +1799,7 @@
"delete": "Eliminar vora", "delete": "Eliminar vora",
"delete-edge-title": "Està segur de que desitja eliminar la vora '{{edgeName}}'?", "delete-edge-title": "Està segur de que desitja eliminar la vora '{{edgeName}}'?",
"delete-edge-text": "Aneu amb compte, després de la confirmació, la vora i totes les dades relacionades seran irrecuperables", "delete-edge-text": "Aneu amb compte, després de la confirmació, la vora i totes les dades relacionades seran irrecuperables",
"delete-edges-title": "Està segur de que desitja edge {count, plural, 1 {1 borde} other {# bordes} }?", "delete-edges-title": "Està segur de que desitja edge {count, plural, =1 {1 borde} other {# bordes} }?",
"delete-edges-text": "Aneu amb compte, després de la confirmació s'eliminaran totes les vores seleccionades i totes les dades relacionades seran irrecuperables", "delete-edges-text": "Aneu amb compte, després de la confirmació s'eliminaran totes les vores seleccionades i totes les dades relacionades seran irrecuperables",
"name": "Nom", "name": "Nom",
"name-starts-with": "El nom de la vora comença per", "name-starts-with": "El nom de la vora comença per",
@ -1834,7 +1834,7 @@
"unassign-from-customer": "Anul·lar assignació del client", "unassign-from-customer": "Anul·lar assignació del client",
"unassign-edge-title": "Està segur de que desitja desassignar la vora '{{edgeName}}'?", "unassign-edge-title": "Està segur de que desitja desassignar la vora '{{edgeName}}'?",
"unassign-edge-text": "Després de la confirmació, la vora quedará sense assignar i el client no podrà accedir a ell", "unassign-edge-text": "Després de la confirmació, la vora quedará sense assignar i el client no podrà accedir a ell",
"unassign-edges-title": "Està segur de que desitja anul·lar l'assignació de {count, plural, 1 {1 borde} other {# bordes} }?", "unassign-edges-title": "Està segur de que desitja anul·lar l'assignació de {count, plural, =1 {1 borde} other {# bordes} }?",
"unassign-edges-text": "Després de la confirmació de totes les vores seleccionades, s'anul·larà l'assignació i el client no podrà accedir a ells.", "unassign-edges-text": "Després de la confirmació de totes les vores seleccionades, s'anul·larà l'assignació i el client no podrà accedir a ells.",
"make-public": "Fer públic la vora", "make-public": "Fer públic la vora",
"make-public-edge-title": "Estás segur de que quieres fer públic el edge '{{edgeName}}'?", "make-public-edge-title": "Estás segur de que quieres fer públic el edge '{{edgeName}}'?",
@ -1867,7 +1867,7 @@
"rulechain-templates": "Plantilles, de cadena de regles", "rulechain-templates": "Plantilles, de cadena de regles",
"rulechains": "Cadenes de regla de vora", "rulechains": "Cadenes de regla de vora",
"search": "Vores de cerca", "search": "Vores de cerca",
"selected-edges": "{count, plural, 1 {1 borde} other {# bordes} } seleccionades", "selected-edges": "{count, plural, =1 {1 borde} other {# bordes} } seleccionades",
"any-edge": "Qualsevol vora", "any-edge": "Qualsevol vora",
"no-edge-types-matching": "No s'han trobar tipus de aristas que coincideixin amb '{{entitySubtype}}'.", "no-edge-types-matching": "No s'han trobar tipus de aristas que coincideixin amb '{{entitySubtype}}'.",
"edge-type-list-empty": "No s'ha seleccionat cap tipus de vora.", "edge-type-list-empty": "No s'ha seleccionat cap tipus de vora.",
@ -1892,9 +1892,9 @@
"manage-edge-scheduler-events": "Administrar esdeveniments del programador de vora", "manage-edge-scheduler-events": "Administrar esdeveniments del programador de vora",
"select-group-to-add": "Selecciona el grup de destí per afegir les vores seleccionades", "select-group-to-add": "Selecciona el grup de destí per afegir les vores seleccionades",
"select-group-to-move": "Selecciona el grup de destí per moure les vores seleccionades", "select-group-to-move": "Selecciona el grup de destí per moure les vores seleccionades",
"remove-edges-from-group": "Està segur de que desitja eliminar {count, plural, 1 {1 borde} other {# bordes} } del grup '{entityGroup}'?", "remove-edges-from-group": "Està segur de que desitja eliminar {count, plural, =1 {1 borde} other {# bordes} } del grup '{entityGroup}'?",
"group": "Grup de vores", "group": "Grup de vores",
"list-of-groups": "{count, plural, 1 {Un grupo de bodre} other {Lista de # grupos de bordes} }", "list-of-groups": "{count, plural, =1 {Un grupo de bodre} other {Lista de # grupos de bordes} }",
"group-name-starts-with": "Grups de vora els quals comencen amb '{{prefix}}'", "group-name-starts-with": "Grups de vora els quals comencen amb '{{prefix}}'",
"unassign-entity-group-from-edge-title": "Està segur de que desitja anul·lar l'assignació del grup d'entitat '{{entityGroupName}}'?", "unassign-entity-group-from-edge-title": "Està segur de que desitja anul·lar l'assignació del grup d'entitat '{{entityGroupName}}'?",
"unassign-entity-group-from-edge-text": "Després de la confirmació, s'anul·larà l'assignació del grup d'entitats i no es podrà accedir a ell des de la vora.", "unassign-entity-group-from-edge-text": "Després de la confirmació, s'anul·larà l'assignació del grup d'entitats i no es podrà accedir a ell des de la vora.",
@ -2014,74 +2014,74 @@
"type-required": "Cal tipus d'entitat.", "type-required": "Cal tipus d'entitat.",
"type-device": "Dispositiu", "type-device": "Dispositiu",
"type-devices": "Dispositius", "type-devices": "Dispositius",
"list-of-devices": "{ count, plural, 1 {Un dispositivo} other {Lista de # Dispositivos} }", "list-of-devices": "{ count, plural, =1 {Un dispositivo} other {Lista de # Dispositivos} }",
"device-name-starts-with": "Dispositius els quals comencen per '{{prefix}}'", "device-name-starts-with": "Dispositius els quals comencen per '{{prefix}}'",
"type-device-profile": "Perfil de dispositiu", "type-device-profile": "Perfil de dispositiu",
"type-device-profiles": "Perfils de dispositiu", "type-device-profiles": "Perfils de dispositiu",
"list-of-device-profiles": "{ count, plural, 1 {un perfil} other {Lista de # perfiles} }", "list-of-device-profiles": "{ count, plural, =1 {un perfil} other {Lista de # perfiles} }",
"device-profile-name-starts-with": "Perfils els quals comenci per '{{prefix}}'", "device-profile-name-starts-with": "Perfils els quals comenci per '{{prefix}}'",
"type-asset": "Actiu", "type-asset": "Actiu",
"type-assets": "Actius", "type-assets": "Actius",
"list-of-assets": "{ count, plural, 1 {Un activo} other {Lista de # activos} }", "list-of-assets": "{ count, plural, =1 {Un activo} other {Lista de # activos} }",
"asset-name-starts-with": "Actius els quals comencen per '{{prefix}}'", "asset-name-starts-with": "Actius els quals comencen per '{{prefix}}'",
"type-entity-view": "Vista Entitat", "type-entity-view": "Vista Entitat",
"type-entity-views": "Vistes Entitats", "type-entity-views": "Vistes Entitats",
"list-of-entity-views": "{ count, plural, 1 {Una vista de entidad} other {Lista de # Vistas de Entitats} }", "list-of-entity-views": "{ count, plural, =1 {Una vista de entidad} other {Lista de # Vistas de Entitats} }",
"entity-view-name-starts-with": "Vistes de Entitats els quals comencen per '{{prefix}}'", "entity-view-name-starts-with": "Vistes de Entitats els quals comencen per '{{prefix}}'",
"type-rule": "Regla", "type-rule": "Regla",
"type-rules": "Regles", "type-rules": "Regles",
"list-of-rules": "{ count, plural, 1 {Una regla} other {Lista de # regles} }", "list-of-rules": "{ count, plural, =1 {Una regla} other {Lista de # regles} }",
"rule-name-starts-with": "Regles les quals comencen per '{{prefix}}'", "rule-name-starts-with": "Regles les quals comencen per '{{prefix}}'",
"type-plugin": "Plugin", "type-plugin": "Plugin",
"type-plugins": "Plugins", "type-plugins": "Plugins",
"list-of-plugins": "{ count, plural, 1 {Un plugin} other {Lista de # plugins} }", "list-of-plugins": "{ count, plural, =1 {Un plugin} other {Lista de # plugins} }",
"plugin-name-starts-with": "Plugins els quals comencen per '{{prefix}}'", "plugin-name-starts-with": "Plugins els quals comencen per '{{prefix}}'",
"type-tenant": "Propietari", "type-tenant": "Propietari",
"type-tenants": "Propietaris", "type-tenants": "Propietaris",
"list-of-tenants": "{ count, plural, 1 {Un propietario} other {Lista de # propietarios} }", "list-of-tenants": "{ count, plural, =1 {Un propietario} other {Lista de # propietarios} }",
"tenant-name-starts-with": "Propietaris els quals comencen per '{{prefix}}'", "tenant-name-starts-with": "Propietaris els quals comencen per '{{prefix}}'",
"type-tenant-profile": "Perfil de Propietari", "type-tenant-profile": "Perfil de Propietari",
"type-tenant-profiles": "Perfils de propietari", "type-tenant-profiles": "Perfils de propietari",
"list-of-tenant-profiles": "{ count, plural, 1 {Un perfil de propietario} other {Lista de # perfils de propietario} }", "list-of-tenant-profiles": "{ count, plural, =1 {Un perfil de propietario} other {Lista de # perfils de propietario} }",
"tenant-profile-name-starts-with": "Pefils de propietari els quals comencen per '{{prefix}}'", "tenant-profile-name-starts-with": "Pefils de propietari els quals comencen per '{{prefix}}'",
"type-customer": "Client", "type-customer": "Client",
"type-customers": "Clients", "type-customers": "Clients",
"list-of-customers": "{ count, plural, 1 {Un cliente} other {Lista de # clientes} }", "list-of-customers": "{ count, plural, =1 {Un cliente} other {Lista de # clientes} }",
"customer-name-starts-with": "Clients els quals comencen per '{{prefix}}'", "customer-name-starts-with": "Clients els quals comencen per '{{prefix}}'",
"type-user": "Usuari", "type-user": "Usuari",
"type-users": "Usuaris", "type-users": "Usuaris",
"list-of-users": "{ count, plural, 1 {Un usuario} other {Lista de # usuaris} }", "list-of-users": "{ count, plural, =1 {Un usuario} other {Lista de # usuaris} }",
"user-name-starts-with": "Usuaris els quals comencen per '{{prefix}}'", "user-name-starts-with": "Usuaris els quals comencen per '{{prefix}}'",
"type-dashboard": "Panell", "type-dashboard": "Panell",
"type-dashboards": "Panells", "type-dashboards": "Panells",
"list-of-dashboards": "{ count, plural, 1 {Un panel} other {Lista de # paneles} }", "list-of-dashboards": "{ count, plural, =1 {Un panel} other {Lista de # paneles} }",
"dashboard-name-starts-with": "Panells els quals comencen per '{{prefix}}'", "dashboard-name-starts-with": "Panells els quals comencen per '{{prefix}}'",
"type-alarm": "Alarma", "type-alarm": "Alarma",
"type-alarms": "Alarmes", "type-alarms": "Alarmes",
"list-of-alarms": "{ count, plural, 1 {Una alarma} other {Lista de # alarmas} }", "list-of-alarms": "{ count, plural, =1 {Una alarma} other {Lista de # alarmas} }",
"alarm-name-starts-with": "Alarmes les quals comencen amb '{{prefix}}'", "alarm-name-starts-with": "Alarmes les quals comencen amb '{{prefix}}'",
"type-rulechain": "Cadena de regles", "type-rulechain": "Cadena de regles",
"type-rulechains": "Cadenes de regles", "type-rulechains": "Cadenes de regles",
"list-of-rulechains": "{ count, plural, 1 {Una cadena de regles} other {Lista de # cadenes de regles} }", "list-of-rulechains": "{ count, plural, =1 {Una cadena de regles} other {Lista de # cadenes de regles} }",
"rulechain-name-starts-with": "Cadenes de regles les quals comencen amb '{{prefix}}'", "rulechain-name-starts-with": "Cadenes de regles les quals comencen amb '{{prefix}}'",
"type-scheduler-event": "Planificador d'esdeveniment", "type-scheduler-event": "Planificador d'esdeveniment",
"type-scheduler-events": "Planificador d'esdeveniment", "type-scheduler-events": "Planificador d'esdeveniment",
"list-of-scheduler-events": "{ count, plural, 1 {One scheduler event} other {List of # scheduler events} }", "list-of-scheduler-events": "{ count, plural, =1 {One scheduler event} other {List of # scheduler events} }",
"scheduler-event-name-starts-with": "Planificador d'esdeveniment els quals comencen amb '{{prefix}}'", "scheduler-event-name-starts-with": "Planificador d'esdeveniment els quals comencen amb '{{prefix}}'",
"type-blob-entity": "Entitat blob", "type-blob-entity": "Entitat blob",
"type-blob-entities": "Entitats blob", "type-blob-entities": "Entitats blob",
"list-of-blob-entities": "{ count, plural, 1 {One blob entity} other {List of # blob entities} }", "list-of-blob-entities": "{ count, plural, =1 {One blob entity} other {List of # blob entities} }",
"blob-entity-name-starts-with": "Entitats blob els quals comencen amb '{{prefix}}'", "blob-entity-name-starts-with": "Entitats blob els quals comencen amb '{{prefix}}'",
"type-rulenode": "Node de regles", "type-rulenode": "Node de regles",
"type-rulenodes": "Nodes de regles", "type-rulenodes": "Nodes de regles",
"list-of-rulenodes": "{ count, plural, 1 {Un nodo de regles} other {Lista de # nodes de regles} }", "list-of-rulenodes": "{ count, plural, =1 {Un nodo de regles} other {Lista de # nodes de regles} }",
"rulenode-name-starts-with": "Nodes de regles els quals comencen amb '{{prefix}}'", "rulenode-name-starts-with": "Nodes de regles els quals comencen amb '{{prefix}}'",
"type-current-customer": "Client Actual", "type-current-customer": "Client Actual",
"type-current-tenant": "Propietari Actual", "type-current-tenant": "Propietari Actual",
"type-current-user": "Usuari Actual", "type-current-user": "Usuari Actual",
"type-current-user-owner": "Usuari Propietari Actual", "type-current-user-owner": "Usuari Propietari Actual",
"search": "Buscar entitats", "search": "Buscar entitats",
"selected-entities": "{ count, plural, 1 {1 entitat} other {# entitats} } seleccionades", "selected-entities": "{ count, plural, =1 {1 entitat} other {# entitats} } seleccionades",
"entity-name": "Nom d'entitat", "entity-name": "Nom d'entitat",
"entity-label": "Etiqueta d'entitat", "entity-label": "Etiqueta d'entitat",
"details": "Detalls d'entitat", "details": "Detalls d'entitat",
@ -2092,20 +2092,20 @@
"type-entity-group": "Grup d'entitats", "type-entity-group": "Grup d'entitats",
"type-converter": "Convertidor de dades", "type-converter": "Convertidor de dades",
"type-converters": "Convertidors de dades", "type-converters": "Convertidors de dades",
"list-of-converters": "{ count, plural, 1 {One data converter} other {List of # data converters} }", "list-of-converters": "{ count, plural, =1 {One data converter} other {List of # data converters} }",
"converter-name-starts-with": "Convertidors de dades els quals comencen amb '{{prefix}}'", "converter-name-starts-with": "Convertidors de dades els quals comencen amb '{{prefix}}'",
"type-integration": "Integració", "type-integration": "Integració",
"type-integrations": "Integracions", "type-integrations": "Integracions",
"list-of-integrations": "{ count, plural, 1 {One integration} other {List of # integrations} }", "list-of-integrations": "{ count, plural, =1 {One integration} other {List of # integrations} }",
"integration-name-starts-with": "Integracions les quals comencen amb '{{prefix}}'", "integration-name-starts-with": "Integracions les quals comencen amb '{{prefix}}'",
"type-role": "Rol", "type-role": "Rol",
"type-roles": "Rols", "type-roles": "Rols",
"list-of-roles": "{ count, plural, 1 {One role} other {List of # roles} }", "list-of-roles": "{ count, plural, =1 {One role} other {List of # roles} }",
"role-name-starts-with": "Rols els noms dels quals comencen per '{{prefix}}'", "role-name-starts-with": "Rols els noms dels quals comencen per '{{prefix}}'",
"type-group-permission": "Permís de grup", "type-group-permission": "Permís de grup",
"type-edge": "Vora", "type-edge": "Vora",
"type-edges": "Vores", "type-edges": "Vores",
"list-of-edges": "{count, plural, 1 {Un borde} other {Lista de # bordes} }", "list-of-edges": "{count, plural, =1 {Un borde} other {Lista de # bordes} }",
"edge-name-starts-with": "Vores les quals comencen amb '{{prefijo}}'", "edge-name-starts-with": "Vores les quals comencen amb '{{prefijo}}'",
"type-tb-resource": "Recurs", "type-tb-resource": "Recurs",
"type-ota-package": "Paquet OTA" "type-ota-package": "Paquet OTA"
@ -2138,12 +2138,12 @@
"add-entity-group-text": "Afegir nou grup d'entitats", "add-entity-group-text": "Afegir nou grup d'entitats",
"no-entity-groups-text": "Grups d'entitats no trobats", "no-entity-groups-text": "Grups d'entitats no trobats",
"entity-group-details": "Detalls del grup d'entitats", "entity-group-details": "Detalls del grup d'entitats",
"selected-entity-groups": "{ count, plural, 1 {1 entity group} other {# entity groups} } seleccionat", "selected-entity-groups": "{ count, plural, =1 {1 entity group} other {# entity groups} } seleccionat",
"delete-entity-groups": "Eliminar grups d'entitats", "delete-entity-groups": "Eliminar grups d'entitats",
"delete-entity-group-title": "Està segur de que desitja eliminar el grup d'entitats '{{entityGroupName}}'?", "delete-entity-group-title": "Està segur de que desitja eliminar el grup d'entitats '{{entityGroupName}}'?",
"delete-entity-group-text": "Aneu amb compte, després de la confirmació, el grup d'entitats i totes les dades relacionades seran irrecuperables.", "delete-entity-group-text": "Aneu amb compte, després de la confirmació, el grup d'entitats i totes les dades relacionades seran irrecuperables.",
"delete-entity-groups-title": "Està segur de que desitja eliminar { count, plural, 1 {1 entity group} other {# entity groups} }?", "delete-entity-groups-title": "Està segur de que desitja eliminar { count, plural, =1 {1 entity group} other {# entity groups} }?",
"delete-entity-groups-action-title": "Eliminar { count, plural, 1 {1 entity group} other {# entity groups} }", "delete-entity-groups-action-title": "Eliminar { count, plural, =1 {1 entity group} other {# entity groups} }",
"delete-entity-groups-text": "Aneu amb compte, després de la confirmació s'eliminaran tots els grups d'entitats seleccionats i totes les dades relacionades seran irrecuperables.", "delete-entity-groups-text": "Aneu amb compte, després de la confirmació s'eliminaran tots els grups d'entitats seleccionats i totes les dades relacionades seran irrecuperables.",
"device-groups": "Grups de dispositius", "device-groups": "Grups de dispositius",
"asset-groups": "Grups d'actius", "asset-groups": "Grups d'actius",
@ -2203,7 +2203,7 @@
"select-target-owner": "Seleccioneu el propietari objectiu", "select-target-owner": "Seleccioneu el propietari objectiu",
"no-owners-matching": "No hi ha cap propietari que coincideixi '{{owner}}' els van trobar.", "no-owners-matching": "No hi ha cap propietari que coincideixi '{{owner}}' els van trobar.",
"target-owner-required": "Cal propietari objectiu.", "target-owner-required": "Cal propietari objectiu.",
"confirm-change-owner-title": "Esteu segur que voleu canviar de propietari per { count, plural, 1 {1 selected entity} other {# selected entities} }?", "confirm-change-owner-title": "Esteu segur que voleu canviar de propietari per { count, plural, =1 {1 selected entity} other {# selected entities} }?",
"confirm-change-owner-text": "Aneu amb compte, després de la confirmació, totes les entitats seleccionades s'eliminaran del propietari actual i es col·locaran al grup 'Tots' del propietari objectiu..", "confirm-change-owner-text": "Aneu amb compte, després de la confirmació, totes les entitats seleccionades s'eliminaran del propietari actual i es col·locaran al grup 'Tots' del propietari objectiu..",
"add-to-group": "Afegir al grup", "add-to-group": "Afegir al grup",
"move-to-group": "Moure al grup", "move-to-group": "Moure al grup",
@ -2314,18 +2314,18 @@
"add-entity-view-text": "Afegir nova vista d'entitat", "add-entity-view-text": "Afegir nova vista d'entitat",
"delete": "Esborrar vista d'entitat", "delete": "Esborrar vista d'entitat",
"assign-entity-views": "Assignar vistes d'entitat", "assign-entity-views": "Assignar vistes d'entitat",
"assign-entity-views-text": "Assignar { count, plural, 1 {1 vista de entidad} other {# vistas de entidad} } a client", "assign-entity-views-text": "Assignar { count, plural, =1 {1 vista de entidad} other {# vistas de entidad} } a client",
"delete-entity-views": "Esborrar vistes d'entitat", "delete-entity-views": "Esborrar vistes d'entitat",
"make-public": "Fer pública la vista d'entitat", "make-public": "Fer pública la vista d'entitat",
"make-private": "Fer que la vista d'entitat sigui privada", "make-private": "Fer que la vista d'entitat sigui privada",
"unassign-from-customer": "Anul·lar assignació a client", "unassign-from-customer": "Anul·lar assignació a client",
"unassign-entity-views": "Anul·lar assignació de vistes d'entitat", "unassign-entity-views": "Anul·lar assignació de vistes d'entitat",
"unassign-entity-views-action-title": "Anul·lar assignació { count, plural, 1 {1 vista de entidad} other {# vistas de entidad} } al client", "unassign-entity-views-action-title": "Anul·lar assignació { count, plural, =1 {1 vista de entidad} other {# vistas de entidad} } al client",
"assign-new-entity-view": "Assignar nova vista d'entitat", "assign-new-entity-view": "Assignar nova vista d'entitat",
"delete-entity-view-title": "Esteu segur que voleu esborrar la vista entitat '{{entityViewName}}'?", "delete-entity-view-title": "Esteu segur que voleu esborrar la vista entitat '{{entityViewName}}'?",
"delete-entity-view-text": "Compte! Després de la confirmació, la vista de l'entitat i totes les dades relacionades seran irrecuperables.", "delete-entity-view-text": "Compte! Després de la confirmació, la vista de l'entitat i totes les dades relacionades seran irrecuperables.",
"delete-entity-views-title": "Esteu segur que voleu esborrar les vistes d'entitat { count, plural, 1 {1 entityView} other {# entityViews} }?", "delete-entity-views-title": "Esteu segur que voleu esborrar les vistes d'entitat { count, plural, =1 {1 entityView} other {# entityViews} }?",
"delete-entity-views-action-title": "Esborrar { count, plural, 1 {1 vista de entidad} other {# vistas de entidad} }", "delete-entity-views-action-title": "Esborrar { count, plural, =1 {1 vista de entidad} other {# vistas de entidad} }",
"delete-entity-views-text": "Compte! Després de la confirmació, totes les vistes d'entitats seleccionades s'eliminaran i totes les dades relacionades seran irrecuperables.", "delete-entity-views-text": "Compte! Després de la confirmació, totes les vistes d'entitats seleccionades s'eliminaran i totes les dades relacionades seran irrecuperables.",
"make-public-entity-view-title": "Està segur de que desitja que la vista d'entitat '{{entityViewName}}' sigui pública?", "make-public-entity-view-title": "Està segur de que desitja que la vista d'entitat '{{entityViewName}}' sigui pública?",
"make-public-entity-view-text": "Després de la confirmació, la vista de l'entitat i totes les dades seran públiques i accessibles per altres.", "make-public-entity-view-text": "Després de la confirmació, la vista de l'entitat i totes les dades seran públiques i accessibles per altres.",
@ -2334,7 +2334,7 @@
"unassign-entity-view-title": "Esteu segur que voleu anul·lar l'assignació de la vista d'entitat '{{entityViewName}}'?", "unassign-entity-view-title": "Esteu segur que voleu anul·lar l'assignació de la vista d'entitat '{{entityViewName}}'?",
"unassign-entity-view-text": "Després de la confirmació, la vista de l'entitat quedarà sense assignar i el client no hi podrà accedir.", "unassign-entity-view-text": "Després de la confirmació, la vista de l'entitat quedarà sense assignar i el client no hi podrà accedir.",
"unassign-entity-view": "Anul·lar assignació de la vista d'entitat", "unassign-entity-view": "Anul·lar assignació de la vista d'entitat",
"unassign-entity-views-title": "Esteu segur que voleu anul·lar l'assignació de { count, plural, 1 {1 vista de entidad} other {# vistas de entidad} }?", "unassign-entity-views-title": "Esteu segur que voleu anul·lar l'assignació de { count, plural, =1 {1 vista de entidad} other {# vistas de entidad} }?",
"unassign-entity-views-text": "Després de la confirmació, totes les vistes d'entitats seleccionades quedaran sense assignar i el client no podrà accedir-hi.", "unassign-entity-views-text": "Després de la confirmació, totes les vistes d'entitats seleccionades quedaran sense assignar i el client no podrà accedir-hi.",
"entity-view-type": "Tipus de vista d'entitat", "entity-view-type": "Tipus de vista d'entitat",
"entity-view-type-required": "Cal tipus de vista d'entitat.", "entity-view-type-required": "Cal tipus de vista d'entitat.",
@ -2376,21 +2376,21 @@
"attributes-propagation-hint": "La vista d'entitat copiarà automàticament els atributs especificats de l'entitat de destí cada vegada que guardi o actualitzi esta vista d'entitat. Per razones de rendimiento, els atributs d'entitat objetiu no es propagan a la vista d'entitat en cada cambio d'atribut. Puede habilitar la propagación automàtica configurando el node de la regla \"copiar a la vista\" en la seva cadena de regles i vincular els missatges \"Atributs de la publicación\" i \"Atributs actualizados\" al nou node de la regla.", "attributes-propagation-hint": "La vista d'entitat copiarà automàticament els atributs especificats de l'entitat de destí cada vegada que guardi o actualitzi esta vista d'entitat. Per razones de rendimiento, els atributs d'entitat objetiu no es propagan a la vista d'entitat en cada cambio d'atribut. Puede habilitar la propagación automàtica configurando el node de la regla \"copiar a la vista\" en la seva cadena de regles i vincular els missatges \"Atributs de la publicación\" i \"Atributs actualizados\" al nou node de la regla.",
"timeseries-data": "Dades de series temporals", "timeseries-data": "Dades de series temporals",
"timeseries-data-hint": "Configura les claus de les dades de les series temporals de l'entitat de destí que seran accessibles per la vista de l'entitat. Les dades d'aquesta sèrie temporal són de només lectura.", "timeseries-data-hint": "Configura les claus de les dades de les series temporals de l'entitat de destí que seran accessibles per la vista de l'entitat. Les dades d'aquesta sèrie temporal són de només lectura.",
"selected-entity-views": "{ count, plural, 1 {1 vista de entidad} other {# vistas de entidad} } seleccionades", "selected-entity-views": "{ count, plural, =1 {1 vista de entidad} other {# vistas de entidad} } seleccionades",
"search": "Buscar vistes d'entitat", "search": "Buscar vistes d'entitat",
"select-group-to-add": "Seleccioneu el grup objectiu per afegir visualitzacions d'entitat seleccionades", "select-group-to-add": "Seleccioneu el grup objectiu per afegir visualitzacions d'entitat seleccionades",
"select-group-to-move": "Seleccioneu el grup objectiu per moure les vistes d'entitat seleccionades", "select-group-to-move": "Seleccioneu el grup objectiu per moure les vistes d'entitat seleccionades",
"remove-entity-views-from-group": "Esteu segur que voleu eliminar-lo { count, plural, 1 {1 entity view} other {# entity views} } del grup '{{entityGroup}}'?", "remove-entity-views-from-group": "Esteu segur que voleu eliminar-lo { count, plural, =1 {1 entity view} other {# entity views} } del grup '{{entityGroup}}'?",
"group": "Grup de vistes d'entitat", "group": "Grup de vistes d'entitat",
"list-of-groups": "{ count, plural, 1 {One entity view group} other {List of # entity view groups} }", "list-of-groups": "{ count, plural, =1 {One entity view group} other {List of # entity view groups} }",
"group-name-starts-with": "Grups de visualització d'entitats els noms dels quals comencen per '{{prefix}}'", "group-name-starts-with": "Grups de visualització d'entitats els noms dels quals comencen per '{{prefix}}'",
"assign-entity-view-to-edge": "Assignar vista (es) d'entitat a vora", "assign-entity-view-to-edge": "Assignar vista (es) d'entitat a vora",
"assign-entity-view-to-edge-text": "Selecciona les vistes d'entitat per assignar a la vora", "assign-entity-view-to-edge-text": "Selecciona les vistes d'entitat per assignar a la vora",
"unassign-entity-view-from-edge-title": "Està segur de que desitja anul·lar l'assignació de la vista d'entitat '{{entityViewName}}'?", "unassign-entity-view-from-edge-title": "Està segur de que desitja anul·lar l'assignació de la vista d'entitat '{{entityViewName}}'?",
"unassign-entity-view-from-edge-text": "Després de la confirmació, la vista d'entitat quedará sense assignar i la vora no podrà accedir a ella", "unassign-entity-view-from-edge-text": "Després de la confirmació, la vista d'entitat quedará sense assignar i la vora no podrà accedir a ella",
"unassign-entity-views-from-edge-action-title": "Anul·lar assignació {count, plural, 1 {1 vista de entidad} other {# vistas de entidad} } del vora", "unassign-entity-views-from-edge-action-title": "Anul·lar assignació {count, plural, =1 {1 vista de entidad} other {# vistas de entidad} } del vora",
"unassign-entity-view-from-edge": "Anul·lar assignació de vista d'entitat", "unassign-entity-view-from-edge": "Anul·lar assignació de vista d'entitat",
"unassign-entity-views-from-edge-title": "Està segur de que desitja desassignar {count, plural, 1 {1 vista de entidad} other {# vistas de entidad} }?", "unassign-entity-views-from-edge-title": "Està segur de que desitja desassignar {count, plural, =1 {1 vista de entidad} other {# vistas de entidad} }?",
"unassign-entity-views-from-edge-text": "Després de la confirmació, totes les vistas d'entitat seleccionades no seran assignades i la vora no podrà accedir a ellas" "unassign-entity-views-from-edge-text": "Després de la confirmació, totes les vistas d'entitat seleccionades no seran assignades i la vora no podrà accedir a ellas"
}, },
"event": { "event": {
@ -2443,7 +2443,7 @@
}, },
"extension": { "extension": {
"extensions": "Extensions", "extensions": "Extensions",
"selected-extensions": "{ count, plural, 1 {1 extensión} other {# extensiones} } seleccionades", "selected-extensions": "{ count, plural, =1 {1 extensión} other {# extensiones} } seleccionades",
"type": "Tipus", "type": "Tipus",
"key": "Clau", "key": "Clau",
"value": "Valor", "value": "Valor",
@ -2458,7 +2458,7 @@
"view": "Mostra l'extensió", "view": "Mostra l'extensió",
"delete-extension-title": "Eliminar la extensió '{{extensionId}}'?", "delete-extension-title": "Eliminar la extensió '{{extensionId}}'?",
"delete-extension-text": "Atenció, després de la confirmació, l'extensió i els seus dades seran esborrades i irrecuperables.", "delete-extension-text": "Atenció, després de la confirmació, l'extensió i els seus dades seran esborrades i irrecuperables.",
"delete-extensions-title": "Eliminar les extensions { count, plural, 1 {1 extensión} other {# extensiones} }?", "delete-extensions-title": "Eliminar les extensions { count, plural, =1 {1 extensión} other {# extensiones} }?",
"delete-extensions-text": "Atenció, després de la confirmació totes les extensions seleccionades i els seus dades seran esborrats i irrecuperables.", "delete-extensions-text": "Atenció, després de la confirmació totes les extensions seleccionades i els seus dades seran esborrats i irrecuperables.",
"converters": "Convertidors", "converters": "Convertidors",
"converter-id": "Id convertidor", "converter-id": "Id convertidor",
@ -2783,8 +2783,8 @@
"grid": { "grid": {
"delete-item-title": "Vols eliminar aquest item?", "delete-item-title": "Vols eliminar aquest item?",
"delete-item-text": "Atenció, després de la confirmació l'item serà eliminat i la informació relacionada serà irrecuperable.", "delete-item-text": "Atenció, després de la confirmació l'item serà eliminat i la informació relacionada serà irrecuperable.",
"delete-items-title": "Vols eliminar { count, plural, 1 {1 item} other {# items} }?", "delete-items-title": "Vols eliminar { count, plural, =1 {1 item} other {# items} }?",
"delete-items-action-title": "Eliminar { count, plural, 1 {1 item} other {# items} }", "delete-items-action-title": "Eliminar { count, plural, =1 {1 item} other {# items} }",
"delete-items-text": "Atenció, després de la confirmació els items seleccionats seran eliminats i la informació relacionada serà irrecuperable.", "delete-items-text": "Atenció, després de la confirmació els items seleccionats seran eliminats i la informació relacionada serà irrecuperable.",
"add-item-text": "Afegir nou item", "add-item-text": "Afegir nou item",
"no-items-text": "Cap item trobat", "no-items-text": "Cap item trobat",
@ -2893,11 +2893,11 @@
"management": "Gestió d'integracions", "management": "Gestió d'integracions",
"add-integration-text": "Afegir nova integració", "add-integration-text": "Afegir nova integració",
"no-integrations-text": "Integracions no trobades", "no-integrations-text": "Integracions no trobades",
"selected-integrations": "{ count, plural, 1 {1 integration} other {# integrations} } seleccionades", "selected-integrations": "{ count, plural, =1 {1 integration} other {# integrations} } seleccionades",
"delete-integration-title": "Està segur de que desitja eliminar la integració '{{integrationName}}'?", "delete-integration-title": "Està segur de que desitja eliminar la integració '{{integrationName}}'?",
"delete-integration-text": "Aneu amb compte, després de la confirmació, la integració i totes les dades relacionades seran irrecuperables.", "delete-integration-text": "Aneu amb compte, després de la confirmació, la integració i totes les dades relacionades seran irrecuperables.",
"delete-integrations-title": "Està segur de que desitja eliminar { count, plural, 1 {1 integration} other {# integrations} }?", "delete-integrations-title": "Està segur de que desitja eliminar { count, plural, =1 {1 integration} other {# integrations} }?",
"delete-integrations-action-title": "Eliminar { count, plural, 1 {1 integration} other {# integrations} }", "delete-integrations-action-title": "Eliminar { count, plural, =1 {1 integration} other {# integrations} }",
"delete-integrations-text": "Aneu amb compte, després de la confirmació s'eliminaran totes les integracions seleccionades i totes les dades relacionades seran irrecuperables.", "delete-integrations-text": "Aneu amb compte, després de la confirmació s'eliminaran totes les integracions seleccionades i totes les dades relacionades seran irrecuperables.",
"events": "Esdeveniments", "events": "Esdeveniments",
"enabled": "Habilitat", "enabled": "Habilitat",
@ -3331,7 +3331,7 @@
"verify-your-identity": "Verificar identitat", "verify-your-identity": "Verificar identitat",
"select-way-to-verify": "Seleccioneu el mode de verificació", "select-way-to-verify": "Seleccioneu el mode de verificació",
"resend-code": "Reenviar codi", "resend-code": "Reenviar codi",
"resend-code-wait": "Reenviar codi a { time, plural, 1 {1 segundo} other {# segundos} }", "resend-code-wait": "Reenviar codi a { time, plural, =1 {1 segundo} other {# segundos} }",
"try-another-way": "Altres modes de verificació", "try-another-way": "Altres modes de verificació",
"totp-auth-description": "Si us plau, introduïu el codi de seguretat de la vostra aplicació d'autenticació.", "totp-auth-description": "Si us plau, introduïu el codi de seguretat de la vostra aplicació d'autenticació.",
"totp-auth-placeholder": "Codi", "totp-auth-placeholder": "Codi",
@ -3383,8 +3383,8 @@
"checksum-hint": "Si la suma de comprovació està buida, es generarà automàticament", "checksum-hint": "Si la suma de comprovació està buida, es generarà automàticament",
"checksum-algorithm": "Algorisme de suma de control", "checksum-algorithm": "Algorisme de suma de control",
"checksum-copied-message": "La suma de comprovació del paquet s'ha copiat al porta-retalls", "checksum-copied-message": "La suma de comprovació del paquet s'ha copiat al porta-retalls",
"change-firmware": "El canvi del firmware pot provocar l'actualització { count, plural, 1 {1 device} other {# devices} }.", "change-firmware": "El canvi del firmware pot provocar l'actualització { count, plural, =1 {1 device} other {# devices} }.",
"change-software": "El canvi del programari pot provocar l'actualització { count, plural, 1 {1 device} other {# devices} }.", "change-software": "El canvi del programari pot provocar l'actualització { count, plural, =1 {1 device} other {# devices} }.",
"chose-compatible-device-profile": "El paquet penjat només estarà disponible per als dispositius amb el perfil escollit.", "chose-compatible-device-profile": "El paquet penjat només estarà disponible per als dispositius amb el perfil escollit.",
"chose-firmware-distributed-device": "Trieu el firmware que es distribuirà als dispositius", "chose-firmware-distributed-device": "Trieu el firmware que es distribuirà als dispositius",
"chose-software-distributed-device": "Trieu el programari que es distribuirà als dispositius", "chose-software-distributed-device": "Trieu el programari que es distribuirà als dispositius",
@ -3397,7 +3397,7 @@
"delete-ota-update-text": "Aneu amb compte, després de la confirmació, l'actualització OTA serà irrecuperable.", "delete-ota-update-text": "Aneu amb compte, després de la confirmació, l'actualització OTA serà irrecuperable.",
"delete-ota-update-title": "Confirmes que vols suprimir l'actualització de l'OTA '{{title}}'?", "delete-ota-update-title": "Confirmes que vols suprimir l'actualització de l'OTA '{{title}}'?",
"delete-ota-updates-text": "Aneu amb compte, després de la confirmació, totes les actualitzacions OTA seleccionades s'eliminaran.", "delete-ota-updates-text": "Aneu amb compte, després de la confirmació, totes les actualitzacions OTA seleccionades s'eliminaran.",
"delete-ota-updates-title": "Esteu segur que voleu suprimir { count, plural, 1 {1 OTA update} other {# OTA updates} }?", "delete-ota-updates-title": "Esteu segur que voleu suprimir { count, plural, =1 {1 OTA update} other {# OTA updates} }?",
"description": "Descripció", "description": "Descripció",
"direct-url": "URL directe", "direct-url": "URL directe",
"direct-url-copied-message": "L'URL directe del paquet s'ha copiat al porta-retalls", "direct-url-copied-message": "L'URL directe del paquet s'ha copiat al porta-retalls",
@ -3419,7 +3419,7 @@
"package-type": "Tipus de paquet", "package-type": "Tipus de paquet",
"packages-repository": "Repositori de paquets", "packages-repository": "Repositori de paquets",
"search": "Cerca paquets", "search": "Cerca paquets",
"selected-package": "{ count, plural, 1 {1 package} other {# packages} } seleccionat", "selected-package": "{ count, plural, =1 {1 package} other {# packages} } seleccionat",
"title": "Títol", "title": "Títol",
"title-required": "Cal títol.", "title-required": "Cal títol.",
"title-max-length": "El títol ha de ser inferior a 256", "title-max-length": "El títol ha de ser inferior a 256",
@ -3511,17 +3511,17 @@
}, },
"password-requirement": { "password-requirement": {
"at-least": "Al menys:", "at-least": "Al menys:",
"character": "{ count, plural, 1 {1 caracter} other {# caracteres} }", "character": "{ count, plural, =1 {1 caracter} other {# caracteres} }",
"digit": "{ count, plural, 1 {1 dígito} other {# dígitos} }", "digit": "{ count, plural, =1 {1 dígito} other {# dígitos} }",
"incorrect-password-try-again": "Contrasenya incorrecta. Prova una altra vegada", "incorrect-password-try-again": "Contrasenya incorrecta. Prova una altra vegada",
"lowercase-letter": "{ count, plural, 1 {1 minúscula} other {# mínusculas} }", "lowercase-letter": "{ count, plural, =1 {1 minúscula} other {# mínusculas} }",
"new-passwords-not-match": "Les contrasenyes no coincideixen", "new-passwords-not-match": "Les contrasenyes no coincideixen",
"password-should-not-contain-spaces": "La contrasenya no pot contenir espais", "password-should-not-contain-spaces": "La contrasenya no pot contenir espais",
"password-not-meet-requirements": "La contrasenya no reuneix els requisits necessaris", "password-not-meet-requirements": "La contrasenya no reuneix els requisits necessaris",
"password-requirements": "Requisits de contrasenya", "password-requirements": "Requisits de contrasenya",
"password-should-difference": "La nova contrasenya ha de ser diferent de l'actual", "password-should-difference": "La nova contrasenya ha de ser diferent de l'actual",
"special-character": "{ count, plural, 1 {1 caracter especial} other {# caracteres especiales} }", "special-character": "{ count, plural, =1 {1 caracter especial} other {# caracteres especiales} }",
"uppercase-letter": "{ count, plural, 1 {1 mayúscula} other {# mayúsculas} }" "uppercase-letter": "{ count, plural, =1 {1 mayúscula} other {# mayúsculas} }"
} }
}, },
"relation": { "relation": {
@ -3537,7 +3537,7 @@
}, },
"from-relations": "Relacions salientes (outbound)", "from-relations": "Relacions salientes (outbound)",
"to-relations": "Relacions entrantes (inbound)", "to-relations": "Relacions entrantes (inbound)",
"selected-relations": "{ count, plural, 1 {1 relación} other {# relaciones} } seleccionades", "selected-relations": "{ count, plural, =1 {1 relación} other {# relaciones} } seleccionades",
"type": "Tipus", "type": "Tipus",
"to-entity-type": "Cap a tipus d'entitat", "to-entity-type": "Cap a tipus d'entitat",
"to-entity-name": "Cap a nom d'entitat", "to-entity-name": "Cap a nom d'entitat",
@ -3555,11 +3555,11 @@
"view": "Veure relació", "view": "Veure relació",
"delete-to-relation-title": "Vols eliminar la relació amb l'entitat '{{entityName}}'?", "delete-to-relation-title": "Vols eliminar la relació amb l'entitat '{{entityName}}'?",
"delete-to-relation-text": "Atenció, després de la confirmació l'entitat '{{entityName}}' no estarà relacionada amb l'entitat actual.", "delete-to-relation-text": "Atenció, després de la confirmació l'entitat '{{entityName}}' no estarà relacionada amb l'entitat actual.",
"delete-to-relations-title": "Vols eliminar { count, plural, 1 {1 relación} other {# relaciones} }?", "delete-to-relations-title": "Vols eliminar { count, plural, =1 {1 relación} other {# relaciones} }?",
"delete-to-relations-text": "Atenció, després de la confirmació totes les relacions seleccionades s'eliminaran i les seves entitats corresponents no estaran relacionades amb l'entitat actual.", "delete-to-relations-text": "Atenció, després de la confirmació totes les relacions seleccionades s'eliminaran i les seves entitats corresponents no estaran relacionades amb l'entitat actual.",
"delete-from-relation-title": "Vols eliminar la relació amb l'entitat '{{entityName}}'?", "delete-from-relation-title": "Vols eliminar la relació amb l'entitat '{{entityName}}'?",
"delete-from-relation-text": "Atenció, després de la confirmació l'entitat actual no estarà relacionada amb l'entitat '{{entityName}}'.", "delete-from-relation-text": "Atenció, després de la confirmació l'entitat actual no estarà relacionada amb l'entitat '{{entityName}}'.",
"delete-from-relations-title": "Vols eliminar { count, plural, 1 {1 relación} other {# relaciones} }?", "delete-from-relations-title": "Vols eliminar { count, plural, =1 {1 relación} other {# relaciones} }?",
"delete-from-relations-text": "Atenció, després de la confirmació totes les relacions seleccionades s'eliminaran i les seves entitats corresponents no estaran relacionades amb les entitats corresponents.", "delete-from-relations-text": "Atenció, després de la confirmació totes les relacions seleccionades s'eliminaran i les seves entitats corresponents no estaran relacionades amb les entitats corresponents.",
"remove-relation-filter": "Treure filtre de relació", "remove-relation-filter": "Treure filtre de relació",
"add-relation-filter": "Afegir filtre de relació", "add-relation-filter": "Afegir filtre de relació",
@ -3575,9 +3575,9 @@
"delete": "Suprimeix el recurs", "delete": "Suprimeix el recurs",
"delete-resource-text": "Aneu amb compte, després de la confirmació el recurs es tornarà irrecuperable.", "delete-resource-text": "Aneu amb compte, després de la confirmació el recurs es tornarà irrecuperable.",
"delete-resource-title": "Esteu segur que voleu suprimir el recurs '{{resourceTitle}}'?", "delete-resource-title": "Esteu segur que voleu suprimir el recurs '{{resourceTitle}}'?",
"delete-resources-action-title": "Suprimeix { count, plural, 1 {1 resource} other {# resources} }", "delete-resources-action-title": "Suprimeix { count, plural, =1 {1 resource} other {# resources} }",
"delete-resources-text": "Tingueu en compte que els recursos seleccionats, encara que s'utilitzin en perfils de dispositius, se suprimiran.", "delete-resources-text": "Tingueu en compte que els recursos seleccionats, encara que s'utilitzin en perfils de dispositius, se suprimiran.",
"delete-resources-title": "Esteu segur que voleu suprimir { count, plural, 1 {1 resource} other {# resources} }?", "delete-resources-title": "Esteu segur que voleu suprimir { count, plural, =1 {1 resource} other {# resources} }?",
"download": "Descarrega el recurs", "download": "Descarrega el recurs",
"drop-file": "Deixeu anar un fitxer de recursos o feu clic per seleccionar un fitxer per carregar.", "drop-file": "Deixeu anar un fitxer de recursos o feu clic per seleccionar un fitxer per carregar.",
"drop-resource-file-or": "Arrossegar i deixar anar un fitxer o", "drop-resource-file-or": "Arrossegar i deixar anar un fitxer o",
@ -3592,7 +3592,7 @@
"resource-type": "Tipus de recurs", "resource-type": "Tipus de recurs",
"resources-library": "Biblioteca de recursos", "resources-library": "Biblioteca de recursos",
"search": "Cerca recursos", "search": "Cerca recursos",
"selected-resources": "{ count, plural, 1 {1 resource} other {# resources} } seleccionat", "selected-resources": "{ count, plural, =1 {1 resource} other {# resources} } seleccionat",
"system": "Sistema", "system": "Sistema",
"title": "Títol", "title": "Títol",
"title-required": "Cal títol.", "title-required": "Cal títol.",
@ -3613,8 +3613,8 @@
"set-root-rulechain-text": "Després de la confirmació, la cadena de regles es tornarà arrel i manejarà tots els missatges de transport entrants.", "set-root-rulechain-text": "Després de la confirmació, la cadena de regles es tornarà arrel i manejarà tots els missatges de transport entrants.",
"delete-rulechain-title": "Vols eliminar la cadena de regles '{{ruleChainName}}'?", "delete-rulechain-title": "Vols eliminar la cadena de regles '{{ruleChainName}}'?",
"delete-rulechain-text": "Atenció, després de la confirmació la cadena de regles i totes les dades seran irrecuperables.", "delete-rulechain-text": "Atenció, després de la confirmació la cadena de regles i totes les dades seran irrecuperables.",
"delete-rulechains-title": "Està segur que vols eliminar { count, plural, 1 {1 cadena de regles} other {# cadenes de regles} }?", "delete-rulechains-title": "Està segur que vols eliminar { count, plural, =1 {1 cadena de regles} other {# cadenes de regles} }?",
"delete-rulechains-action-title": "Eliminar { count, plural, 1 {1 cadena de regles} other {# cadenes de regles} }", "delete-rulechains-action-title": "Eliminar { count, plural, =1 {1 cadena de regles} other {# cadenes de regles} }",
"delete-rulechains-text": "Atenció, després de la confirmació totes les cadena de regles seleccionades i totes les dades seran irrecuperables.", "delete-rulechains-text": "Atenció, després de la confirmació totes les cadena de regles seleccionades i totes les dades seran irrecuperables.",
"add-rulechain-text": "Afegir nova cadena de regles", "add-rulechain-text": "Afegir nova cadena de regles",
"no-rulechains-text": "Cadenes de regles no trobades", "no-rulechains-text": "Cadenes de regles no trobades",
@ -3636,13 +3636,13 @@
"management": "Gestió de regles", "management": "Gestió de regles",
"debug-mode": "Manera de Depuració", "debug-mode": "Manera de Depuració",
"search": "Buscar cadenes de regles", "search": "Buscar cadenes de regles",
"selected-rulechains": "{ count, plural, 1 {1 cadena de regles} other {# cadenes de regles} } seleccionades", "selected-rulechains": "{ count, plural, =1 {1 cadena de regles} other {# cadenes de regles} } seleccionades",
"open-rulechain": "Obrir cadena de regles", "open-rulechain": "Obrir cadena de regles",
"edge-template-root": "Arrel de plantilla", "edge-template-root": "Arrel de plantilla",
"assign-to-edge": "Assignar a Edge", "assign-to-edge": "Assignar a Edge",
"edge-rulechain": "Cadena de regla de vora", "edge-rulechain": "Cadena de regla de vora",
"unassign-rulechain-from-edge-text": "Després de la confirmació, la cadena de regles quedará sense assignar i la vora no podrà accedir a ella", "unassign-rulechain-from-edge-text": "Després de la confirmació, la cadena de regles quedará sense assignar i la vora no podrà accedir a ella",
"unassign-rulechains-from-edge-title": "Esteu segur que voleu anul·lar l'assignació { count, plural, 1 {1 rulechain} other {# rulechains} }?", "unassign-rulechains-from-edge-title": "Esteu segur que voleu anul·lar l'assignació { count, plural, =1 {1 rulechain} other {# rulechains} }?",
"unassign-rulechains-from-edge-text": "Després de la confirmació, totes les cadenes de regles seleccionades quedaran sense assignar i la vora no podrà accedir a ellas", "unassign-rulechains-from-edge-text": "Després de la confirmació, totes les cadenes de regles seleccionades quedaran sense assignar i la vora no podrà accedir a ellas",
"assign-rulechain-to-edge-title": "Assignar cadena (s) de regles a vora", "assign-rulechain-to-edge-title": "Assignar cadena (s) de regles a vora",
"assign-rulechain-to-edge-text": "Selecciona les cadenes de regles per assignar a la vora", "assign-rulechain-to-edge-text": "Selecciona les cadenes de regles per assignar a la vora",
@ -3662,7 +3662,7 @@
"assign-rulechains": "Assignar cadenes de regles", "assign-rulechains": "Assignar cadenes de regles",
"delete-rulechains": "Eliminar cadenes de regles", "delete-rulechains": "Eliminar cadenes de regles",
"unassign-rulechain": "Anul·lar assignació de cadena de regles", "unassign-rulechain": "Anul·lar assignació de cadena de regles",
"unassign-rulechains-from-edge-action-title": "Anul·lar assignació {count, plural, 1 {1 cadena de regles} other {# cadenes de regles} } des vores", "unassign-rulechains-from-edge-action-title": "Anul·lar assignació {count, plural, =1 {1 cadena de regles} other {# cadenes de regles} } des vores",
"assign-new-rulechain": "Assignar nova cadena de regles" "assign-new-rulechain": "Assignar nova cadena de regles"
}, },
"rulenode": { "rulenode": {
@ -3745,7 +3745,7 @@
"add": "Afegeix un rol", "add": "Afegeix un rol",
"view": "Mostra el rol", "view": "Mostra el rol",
"search": "Cerca rols", "search": "Cerca rols",
"selected-roles": "{ count, plural, 1 {1 role} other {# roles} } seleccionat", "selected-roles": "{ count, plural, =1 {1 role} other {# roles} } seleccionat",
"no-roles-text": "No s'han trobat rols", "no-roles-text": "No s'han trobat rols",
"role-details": "Detalls del rol", "role-details": "Detalls del rol",
"add-role-text": "Afegeix un paper nou", "add-role-text": "Afegeix un paper nou",
@ -3753,8 +3753,8 @@
"delete-roles": "Suprimir rols", "delete-roles": "Suprimir rols",
"delete-role-title": "Esteu segur que voleu suprimir la funció '{{roleName}}'?", "delete-role-title": "Esteu segur que voleu suprimir la funció '{{roleName}}'?",
"delete-role-text": "Aneu amb compte, després de la confirmació, la funció i totes les dades relacionades es tornaran irrecuperables.", "delete-role-text": "Aneu amb compte, després de la confirmació, la funció i totes les dades relacionades es tornaran irrecuperables.",
"delete-roles-title": "Esteu segur que voleu suprimir { count, plural, 1 {1 role} other {# roles} }?", "delete-roles-title": "Esteu segur que voleu suprimir { count, plural, =1 {1 role} other {# roles} }?",
"delete-roles-action-title": "Suprimeix { count, plural, 1 {1 role} other {# roles} }", "delete-roles-action-title": "Suprimeix { count, plural, =1 {1 role} other {# roles} }",
"delete-roles-text": "Aneu amb compte, després de la confirmació, tots els rols seleccionats s'eliminaran i totes les dades relacionades seran irrecuperables.", "delete-roles-text": "Aneu amb compte, després de la confirmació, tots els rols seleccionats s'eliminaran i totes les dades relacionades seran irrecuperables.",
"role-type": "Tipus de rol", "role-type": "Tipus de rol",
"role-type-required": "Cal tipus de rol.", "role-type-required": "Cal tipus de rol.",
@ -3793,11 +3793,11 @@
"user-group-owner": "Propietari del grup d'usuaris", "user-group-owner": "Propietari del grup d'usuaris",
"edit": "Edita els permisos", "edit": "Edita els permisos",
"delete": "Suprimeix els permisos", "delete": "Suprimeix els permisos",
"selected-group-permissions": "{ count, plural, 1 {1 group permission} other {# group permissions} } seleccionat", "selected-group-permissions": "{ count, plural, =1 {1 group permission} other {# group permissions} } seleccionat",
"delete-group-permission-title": "Esteu segur que voleu suprimir el permís del grup '{{roleName}}'?", "delete-group-permission-title": "Esteu segur que voleu suprimir el permís del grup '{{roleName}}'?",
"delete-group-permission-text": "Aneu amb compte, després de la confirmació, el permís del grup i totes les dades relacionades es tornaran irrecuperables.", "delete-group-permission-text": "Aneu amb compte, després de la confirmació, el permís del grup i totes les dades relacionades es tornaran irrecuperables.",
"delete-group-permission": "Suprimeix el permís de grup", "delete-group-permission": "Suprimeix el permís de grup",
"delete-group-permissions-title": "Esteu segur que voleu suprimir { count, plural, 1 {1 group permission} other {# group permission} }?", "delete-group-permissions-title": "Esteu segur que voleu suprimir { count, plural, =1 {1 group permission} other {# group permission} }?",
"delete-group-permissions-text": "Aneu amb compte, després de la confirmació s'eliminaran tots els permisos de grup seleccionats i els usuaris corresponents perdran l'accés als recursos especificats.", "delete-group-permissions-text": "Aneu amb compte, després de la confirmació s'eliminaran tots els permisos de grup seleccionats i els usuaris corresponents perdran l'accés als recursos especificats.",
"delete-group-permissions": "Suprimeix els permisos del grup", "delete-group-permissions": "Suprimeix els permisos del grup",
"add-group-permission": "Afegeix permís de grup", "add-group-permission": "Afegeix permís de grup",
@ -3908,10 +3908,10 @@
"view-scheduler-event": "Mostra l'esdeveniment del programador", "view-scheduler-event": "Mostra l'esdeveniment del programador",
"delete-scheduler-event": "Eliminar planificador d'esdeveniment", "delete-scheduler-event": "Eliminar planificador d'esdeveniment",
"no-scheduler-events": "Planificador d'esdeveniment no trobat", "no-scheduler-events": "Planificador d'esdeveniment no trobat",
"selected-scheduler-events": "{ count, plural, 1 {1 planificador de esdeveniments} other {# planificadors de esdeveniments} } seleccionat", "selected-scheduler-events": "{ count, plural, =1 {1 planificador de esdeveniments} other {# planificadors de esdeveniments} } seleccionat",
"delete-scheduler-event-title": "Està segur que desitja eliminar el planificador d'esdeveniments '{{schedulerEventName}}'?", "delete-scheduler-event-title": "Està segur que desitja eliminar el planificador d'esdeveniments '{{schedulerEventName}}'?",
"delete-scheduler-event-text": "Anar amb compte, després de la confirmació, el planificador d'esdeveniments i totes les dades relacionades és tornaran irrecuperables.", "delete-scheduler-event-text": "Anar amb compte, després de la confirmació, el planificador d'esdeveniments i totes les dades relacionades és tornaran irrecuperables.",
"delete-scheduler-events-title": "Està segur que desitja eliminar { count, plural, 1 {1 planificador de esdeveniments} other {# planificadors de esdeveniments} }?", "delete-scheduler-events-title": "Està segur que desitja eliminar { count, plural, =1 {1 planificador de esdeveniments} other {# planificadors de esdeveniments} }?",
"delete-scheduler-events-text": "Anar amb compte, després de la confirmació s'eliminaran totes els planificadors d'esdeveniments seleccionats i totes les dades relacionades és tornaran irrecuperables.", "delete-scheduler-events-text": "Anar amb compte, després de la confirmació s'eliminaran totes els planificadors d'esdeveniments seleccionats i totes les dades relacionades és tornaran irrecuperables.",
"create": "Crear planificador d'esdeveniment", "create": "Crear planificador d'esdeveniment",
"edit": "Editar planificador d'esdeveniment", "edit": "Editar planificador d'esdeveniment",
@ -3992,9 +3992,9 @@
"seconds": "Segons", "seconds": "Segons",
"time-interval-required": "Cal un interval de temps", "time-interval-required": "Cal un interval de temps",
"time-unit-required": "Es requereix una unitat de temps", "time-unit-required": "Es requereix una unitat de temps",
"every-hour": "cada { count, plural, 1 {hour} other {# hours} }", "every-hour": "cada { count, plural, =1 {hour} other {# hours} }",
"every-minute": "cada { count, plural, 1 {minute} other {# minutes} }", "every-minute": "cada { count, plural, =1 {minute} other {# minutes} }",
"every-second": "cada { count, plural, 1 {second} other {# seconds} }", "every-second": "cada { count, plural, =1 {second} other {# seconds} }",
"invalid-time": "Hora no vàlida", "invalid-time": "Hora no vàlida",
"assigned_customer": "Client assignat" "assigned_customer": "Client assignat"
}, },
@ -4039,12 +4039,12 @@
"name": "Nom", "name": "Nom",
"type": "Tipus", "type": "Tipus",
"created_customer": "Creat pel client", "created_customer": "Creat pel client",
"selected-blob-entities": "{ count, plural, 1 {1 file} other {# files} } seleccionat", "selected-blob-entities": "{ count, plural, =1 {1 file} other {# files} } seleccionat",
"download-blob-entity": "Descarregar arxiu", "download-blob-entity": "Descarregar arxiu",
"delete-blob-entity": "Eliminar arxiu", "delete-blob-entity": "Eliminar arxiu",
"delete-blob-entity-title": "Està segur de que desitja eliminar l'arxiu '{{blobEntityName}}'?", "delete-blob-entity-title": "Està segur de que desitja eliminar l'arxiu '{{blobEntityName}}'?",
"delete-blob-entity-text": "Aneu amb compte, després de la confirmació, l'arxiu de dades es tornara irrecuperable.", "delete-blob-entity-text": "Aneu amb compte, després de la confirmació, l'arxiu de dades es tornara irrecuperable.",
"delete-blob-entities-title": "Esteu segur que voleu suprimir { count, plural, 1 {1 file} other {# files} }?", "delete-blob-entities-title": "Esteu segur que voleu suprimir { count, plural, =1 {1 file} other {# files} }?",
"delete-blob-entities-text": "Aneu amb compte, després de la confirmació, tots els fitxers seleccionats s'eliminaran i totes les dades relacionades es tornaran irrecuperables.", "delete-blob-entities-text": "Aneu amb compte, després de la confirmació, tots els fitxers seleccionats s'eliminaran i totes les dades relacionades es tornaran irrecuperables.",
"assigned_customer": "Client assignat" "assigned_customer": "Client assignat"
}, },
@ -4084,9 +4084,9 @@
"submit-strategy-type-required": "Cal estratègia d'enviament!", "submit-strategy-type-required": "Cal estratègia d'enviament!",
"processing-strategy-type-required": "Cal estratègia de processament!", "processing-strategy-type-required": "Cal estratègia de processament!",
"queues": "Cues", "queues": "Cues",
"selected-queues": "{ count, plural, 1 {1 cola} other {# colas} } seleccionades", "selected-queues": "{ count, plural, =1 {1 cola} other {# colas} } seleccionades",
"delete-queue-title": "Estàs segur d'esborrar la cua '{{queueName}}'?", "delete-queue-title": "Estàs segur d'esborrar la cua '{{queueName}}'?",
"delete-queues-title": "Estàs segur d'esborrar { count, plural, 1 {1 cola} other {# colas} }?", "delete-queues-title": "Estàs segur d'esborrar { count, plural, =1 {1 cola} other {# colas} }?",
"delete-queue-text": "Atenció, després de la confirmació la cua i totes les seves dades relacionades seran irrecuperables.", "delete-queue-text": "Atenció, després de la confirmació la cua i totes les seves dades relacionades seran irrecuperables.",
"delete-queues-text": "Atenció, després de la confirmació totes les cues s'esborraran i no seran accessibles.", "delete-queues-text": "Atenció, després de la confirmació totes les cues s'esborraran i no seran accessibles.",
"search": "Buscar cua", "search": "Buscar cua",
@ -4150,8 +4150,8 @@
"title-max-length": "El títol ha de ser inferior a 256", "title-max-length": "El títol ha de ser inferior a 256",
"delete-tenant-title": "Vols eliminar el propietari '{{tenantTitle}}'?", "delete-tenant-title": "Vols eliminar el propietari '{{tenantTitle}}'?",
"delete-tenant-text": "Atenció, després de la confirmació el propietari serà eliminat i la informació relacionada serà irrecuperable.", "delete-tenant-text": "Atenció, després de la confirmació el propietari serà eliminat i la informació relacionada serà irrecuperable.",
"delete-tenants-title": "Vols eliminar { count, plural, 1 {1 propietario} other {# propietarios} }?", "delete-tenants-title": "Vols eliminar { count, plural, =1 {1 propietario} other {# propietarios} }?",
"delete-tenants-action-title": "Eliminar { count, plural, 1 {1 propietario} other {# propietarios} }", "delete-tenants-action-title": "Eliminar { count, plural, =1 {1 propietario} other {# propietarios} }",
"delete-tenants-text": "Atenció, després de la confirmació els propietaris seleccionats seran eliminats i la informació relacionada serà irrecuperable.", "delete-tenants-text": "Atenció, després de la confirmació els propietaris seleccionats seran eliminats i la informació relacionada serà irrecuperable.",
"title": "Títol", "title": "Títol",
"title-required": "Cal títol.", "title-required": "Cal títol.",
@ -4163,7 +4163,7 @@
"select-tenant": "Seleccionar propietari", "select-tenant": "Seleccionar propietari",
"no-tenants-matching": "No hi ha propietaris que coincideixin amb '{{entity}}' .", "no-tenants-matching": "No hi ha propietaris que coincideixin amb '{{entity}}' .",
"tenant-required": "Propietari", "tenant-required": "Propietari",
"selected-tenants": "{ count, plural, 1 {1 propietario} other {# propietarios} } seleccionats", "selected-tenants": "{ count, plural, =1 {1 propietario} other {# propietarios} } seleccionats",
"search": "Buscar propietaris", "search": "Buscar propietaris",
"allow-white-labeling": "Permet l'etiqueta blanca", "allow-white-labeling": "Permet l'etiqueta blanca",
"allow-customer-white-labeling": "Permet l'etiqueta blanca del client", "allow-customer-white-labeling": "Permet l'etiqueta blanca del client",
@ -4181,7 +4181,7 @@
"no-tenant-profiles-text": "No s'han trobar perfils de propietari", "no-tenant-profiles-text": "No s'han trobar perfils de propietari",
"name-max-length": "El nom ha de ser inferior a 256", "name-max-length": "El nom ha de ser inferior a 256",
"search": "Buscar perfils de propietari", "search": "Buscar perfils de propietari",
"selected-tenant-profiles": "{ count, plural, 1 {1 perfil de propietario} other {# perfils de propietario} } seleccionats", "selected-tenant-profiles": "{ count, plural, =1 {1 perfil de propietario} other {# perfils de propietario} } seleccionats",
"no-tenant-profiles-matching": "No s'han trobat perfils del propietari que coincideixin amb '{{entity}}'.", "no-tenant-profiles-matching": "No s'han trobat perfils del propietari que coincideixin amb '{{entity}}'.",
"tenant-profile-required": "Cal perfil de propietari", "tenant-profile-required": "Cal perfil de propietari",
"idCopiedMessage": "El ID de perfil de propietari s'ha copiat al porta-retalls", "idCopiedMessage": "El ID de perfil de propietari s'ha copiat al porta-retalls",
@ -4196,7 +4196,7 @@
"default": "Defecte", "default": "Defecte",
"delete-tenant-profile-title": "Eliminar el perfil propietari '{{tenantProfileName}}'?", "delete-tenant-profile-title": "Eliminar el perfil propietari '{{tenantProfileName}}'?",
"delete-tenant-profile-text": "Atenció, després de la confirmació, el perfil de propietari serà borrat i la seva informació relacionada serà irrecuperable.", "delete-tenant-profile-text": "Atenció, després de la confirmació, el perfil de propietari serà borrat i la seva informació relacionada serà irrecuperable.",
"delete-tenant-profiles-title": "Eliminar { count, plural, 1 {1 perfil propietario} other {# perfils propietarios} }?", "delete-tenant-profiles-title": "Eliminar { count, plural, =1 {1 perfil propietario} other {# perfils propietarios} }?",
"delete-tenant-profiles-text": "Atenció, després de la confirmació, els perfils seleccionats s'eliminaran i la seva informació relacionada serà irrecuperable.", "delete-tenant-profiles-text": "Atenció, després de la confirmació, els perfils seleccionats s'eliminaran i la seva informació relacionada serà irrecuperable.",
"set-default-tenant-profile-title": "Vols fer el perfil propietari '{{tenantProfileName}}' per defecte?", "set-default-tenant-profile-title": "Vols fer el perfil propietari '{{tenantProfileName}}' per defecte?",
"set-default-tenant-profile-text": "Després de la confirmació, el perfil propietari serà marcat per defecte i serà utilitzat pels nous perfils propietaris que no tinguin perfil específic.", "set-default-tenant-profile-text": "Després de la confirmació, el perfil propietari serà marcat per defecte i serà utilitzat pels nous perfils propietaris que no tinguin perfil específic.",
@ -4303,10 +4303,10 @@
"ws-limit-updates-per-session": "Límit de tarifa per a les actualitzacions de WS per sessió" "ws-limit-updates-per-session": "Límit de tarifa per a les actualitzacions de WS per sessió"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 segundo} other {# segons} }", "seconds-interval": "{ seconds, plural, =1 {1 segundo} other {# segons} }",
"minutes-interval": "{ minutes, plural, 1 {1 minuto} other {# minutos} }", "minutes-interval": "{ minutes, plural, =1 {1 minuto} other {# minutos} }",
"hours-interval": "{ hours, plural, 1 {1 hora} other {# horas} }", "hours-interval": "{ hours, plural, =1 {1 hora} other {# horas} }",
"days-interval": "{ days, plural, 1 {1 día} other {# dies} }", "days-interval": "{ days, plural, =1 {1 día} other {# dies} }",
"days": "Dies", "days": "Dies",
"hours": "Hores", "hours": "Hores",
"minutes": "Minuts", "minutes": "Minuts",
@ -4341,10 +4341,10 @@
"days": "Dies" "days": "Dies"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { día } other {# dies } }", "days": "{ days, plural, =1 { día } other {# dies } }",
"hours": "{ hours, plural, 0 { horas } 1 {1 hora } other {# horas } }", "hours": "{ hours, plural, =0 { horas } =1 {1 hora } other {# horas } }",
"minutes": "{ minutes, plural, 0 { minutos } 1 {1 minuto } other {# minutos } }", "minutes": "{ minutes, plural, =0 { minutos } =1 {1 minuto } other {# minutos } }",
"seconds": "{ seconds, plural, 0 { segons } 1 {1 segundo } other {# segons } }", "seconds": "{ seconds, plural, =0 { segons } =1 {1 segundo } other {# segons } }",
"realtime": "Temps-real", "realtime": "Temps-real",
"history": "Històric", "history": "Històric",
"last-prefix": "últim(s)", "last-prefix": "últim(s)",
@ -4374,8 +4374,8 @@
"delete-users": "Eliminar usuaris", "delete-users": "Eliminar usuaris",
"delete-user-title": "Eliminar l'usuari '{{userEmail}}'?", "delete-user-title": "Eliminar l'usuari '{{userEmail}}'?",
"delete-user-text": "Atenció, després de la confirmació l'usuari seleccionar serà eliminat i la informació relacionada serà irrecuperable.", "delete-user-text": "Atenció, després de la confirmació l'usuari seleccionar serà eliminat i la informació relacionada serà irrecuperable.",
"delete-users-title": "Eliminar { count, plural, 1 {1 usuario} other {# usuaris} }?", "delete-users-title": "Eliminar { count, plural, =1 {1 usuario} other {# usuaris} }?",
"delete-users-action-title": "Esborrar { count, plural, 1 {1 usuario} other {# usuaris} }", "delete-users-action-title": "Esborrar { count, plural, =1 {1 usuario} other {# usuaris} }",
"delete-users-text": "Atenció, després de la confirmació dels usuaris seleccionats seran eliminats i la informació relacionada serà irrecuperable.", "delete-users-text": "Atenció, després de la confirmació dels usuaris seleccionats seran eliminats i la informació relacionada serà irrecuperable.",
"activation-email-sent-message": "Correu d'activació enviat amb èxit!", "activation-email-sent-message": "Correu d'activació enviat amb èxit!",
"resend-activation": "Reenviar activació", "resend-activation": "Reenviar activació",
@ -4397,16 +4397,16 @@
"activation-link-text": "Per activar l'usuari, utilitza el següent enllaç: <a href='{{activationLink}}' target='_blank'>Activar Usuari</a> :", "activation-link-text": "Per activar l'usuari, utilitza el següent enllaç: <a href='{{activationLink}}' target='_blank'>Activar Usuari</a> :",
"copy-activation-link": "Copiar enllaç d'activació", "copy-activation-link": "Copiar enllaç d'activació",
"activation-link-copied-message": "L'enllaç d'activació s'ha copiat al porta-retalls", "activation-link-copied-message": "L'enllaç d'activació s'ha copiat al porta-retalls",
"selected-users": "{ count, plural, 1 {1 usuario} other {# usuaris} } seleccionats", "selected-users": "{ count, plural, =1 {1 usuario} other {# usuaris} } seleccionats",
"search": "Buscar usuaris", "search": "Buscar usuaris",
"details": "Detalls", "details": "Detalls",
"login-as-tenant-admin": "Iniciar sessió com a Administrador Propietari", "login-as-tenant-admin": "Iniciar sessió com a Administrador Propietari",
"login-as-customer-user": "Iniciar sessió com a Usuari Client", "login-as-customer-user": "Iniciar sessió com a Usuari Client",
"select-group-to-add": "Seleccioneu el grup objectiu per afegir usuaris seleccionats", "select-group-to-add": "Seleccioneu el grup objectiu per afegir usuaris seleccionats",
"select-group-to-move": "Seleccioneu el grup objectiu per moure els usuaris seleccionats", "select-group-to-move": "Seleccioneu el grup objectiu per moure els usuaris seleccionats",
"remove-users-from-group": "Esteu segur que voleu eliminar-lo { count, plural, 1 {1 user} other {# users} } del grup '{{entityGroup}}'?", "remove-users-from-group": "Esteu segur que voleu eliminar-lo { count, plural, =1 {1 user} other {# users} } del grup '{{entityGroup}}'?",
"group": "Grup d'usuaris", "group": "Grup d'usuaris",
"list-of-groups": "{ count, plural, 1 {One user group} other {List of # user groups} }", "list-of-groups": "{ count, plural, =1 {One user group} other {List of # user groups} }",
"group-name-starts-with": "Grups d'usuaris els noms dels quals comencen per '{{prefix}}'", "group-name-starts-with": "Grups d'usuaris els noms dels quals comencen per '{{prefix}}'",
"disable-account": "Deshabilitar compte d'usuari", "disable-account": "Deshabilitar compte d'usuari",
"enable-account": "Habilitar compte d'usuari", "enable-account": "Habilitar compte d'usuari",
@ -4469,7 +4469,7 @@
"previous-difference": "Anterior diferència", "previous-difference": "Anterior diferència",
"next-difference": "Següent diferència", "next-difference": "Següent diferència",
"current": "Actual", "current": "Actual",
"differences": "{ count, plural, 1 {1 diferencia} other {# diferencias} }", "differences": "{ count, plural, =1 {1 diferencia} other {# diferencias} }",
"create-entities-version": "Crear versió d'entitats", "create-entities-version": "Crear versió d'entitats",
"default-sync-strategy": "Estratègia de sincronització per defecte", "default-sync-strategy": "Estratègia de sincronització per defecte",
"sync-strategy-merge": "Fusionar (Merge)", "sync-strategy-merge": "Fusionar (Merge)",
@ -4482,7 +4482,7 @@
"no-entities-to-restore-prompt": "Si us plau, especifica les entitats a restaurar", "no-entities-to-restore-prompt": "Si us plau, especifica les entitats a restaurar",
"add-entity-type": "Afegir tipus d'entitat", "add-entity-type": "Afegir tipus d'entitat",
"remove-all": "Borrar tot", "remove-all": "Borrar tot",
"version-create-result": "{ added, plural, 0 {Ninguna entidad} 1 {1 entidad} other {# entidades} } afegides.<br/>{ modified, plural, 0 {Ninguna entidad} 1 {1 entidad} other {# entidades} } modificades.<br/>{ removed, plural, 0 {Ninguna entidad} 1 {1 entidad} other {# entidades} } esborrades.", "version-create-result": "{ added, plural, =0 {Ninguna entidad} =1 {1 entidad} other {# entidades} } afegides.<br/>{ modified, plural, =0 {Ninguna entidad} =1 {1 entidad} other {# entidades} } modificades.<br/>{ removed, plural, =0 {Ninguna entidad} =1 {1 entidad} other {# entidades} } esborrades.",
"remove-other-entities": "Esborrar altres entitats", "remove-other-entities": "Esborrar altres entitats",
"find-existing-entity-by-name": "Buscar entitat existent per nom", "find-existing-entity-by-name": "Buscar entitat existent per nom",
"restore-entities-from-version": "Restaurar entitats des de la versió '{{versionName}}'", "restore-entities-from-version": "Restaurar entitats des de la versió '{{versionName}}'",
@ -4641,8 +4641,8 @@
"widgets-bundle-details": "Detalls del paquet de Widgets", "widgets-bundle-details": "Detalls del paquet de Widgets",
"delete-widgets-bundle-title": "Eliminar el paquet de widgets '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Eliminar el paquet de widgets '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Atenció, després de la confirmació tots els paquets seleccionats seran eliminats i la seva informació relacionada serà irrecuperable.", "delete-widgets-bundle-text": "Atenció, després de la confirmació tots els paquets seleccionats seran eliminats i la seva informació relacionada serà irrecuperable.",
"delete-widgets-bundles-title": "Eliminar { count, plural, 1 {1 paquet de widgets} other {# paquetes de widgets} }?", "delete-widgets-bundles-title": "Eliminar { count, plural, =1 {1 paquet de widgets} other {# paquetes de widgets} }?",
"delete-widgets-bundles-action-title": "Eliminar { count, plural, 1 {1 paquet de widgets} other {# paquetes de widgets} }", "delete-widgets-bundles-action-title": "Eliminar { count, plural, =1 {1 paquet de widgets} other {# paquetes de widgets} }",
"delete-widgets-bundles-text": "Atenció, després de la confirmació tots els paquets seleccionats seran eliminats i la informació relacionada serà irrecuperable.", "delete-widgets-bundles-text": "Atenció, després de la confirmació tots els paquets seleccionats seran eliminats i la informació relacionada serà irrecuperable.",
"no-widgets-bundles-matching": "Cap paquet '{{widgetsBundle}}' trobat.", "no-widgets-bundles-matching": "Cap paquet '{{widgetsBundle}}' trobat.",
"widgets-bundle-required": "Cal paquet de widget.", "widgets-bundle-required": "Cal paquet de widget.",
@ -4654,7 +4654,7 @@
"widgets-bundle-file": "Arxiu de paquet de widgets", "widgets-bundle-file": "Arxiu de paquet de widgets",
"invalid-widgets-bundle-file-error": "Impossible importar paquet de widgets: Estructura de dades invàlida.", "invalid-widgets-bundle-file-error": "Impossible importar paquet de widgets: Estructura de dades invàlida.",
"search": "Buscar paquet de widgets", "search": "Buscar paquet de widgets",
"selected-widgets-bundles": "{ count, plural, 1 {1 paquet de widgets} other {# paquetes de widgets} } seleccionats", "selected-widgets-bundles": "{ count, plural, =1 {1 paquet de widgets} other {# paquetes de widgets} } seleccionats",
"open-widgets-bundle": "Obrir paquet de widgets", "open-widgets-bundle": "Obrir paquet de widgets",
"loading-widgets-bundles": "S'estan carregant paquets de widgets..." "loading-widgets-bundles": "S'estan carregant paquets de widgets..."
}, },
@ -4688,7 +4688,7 @@
"legend": "Llegenda", "legend": "Llegenda",
"display-legend": "Mostrar llegenda", "display-legend": "Mostrar llegenda",
"datasources": "Set de dades", "datasources": "Set de dades",
"maximum-datasources": "Un màxim de { count, plural, 1 {1 set de dades és permès.} other {# set de dades són permitidos} }", "maximum-datasources": "Un màxim de { count, plural, =1 {1 set de dades és permès.} other {# set de dades són permitidos} }",
"datasource-type": "Tipus", "datasource-type": "Tipus",
"datasource-parameters": "Paràmetres", "datasource-parameters": "Paràmetres",
"remove-datasource": "Eliminar set de dades", "remove-datasource": "Eliminar set de dades",

208
ui-ngx/src/assets/locale/locale.constant-cs_CZ.json

@ -286,17 +286,17 @@
"acknowledge": "Přijmout", "acknowledge": "Přijmout",
"clear": "Vyřešit", "clear": "Vyřešit",
"search": "Vyhledat alarmy", "search": "Vyhledat alarmy",
"selected-alarms": "Vybráno { count, plural, 1 {1 alarmů} other {# alarmů} }", "selected-alarms": "Vybráno { count, plural, =1 {1 alarmů} other {# alarmů} }",
"no-data": "Nejsou zde žádná data", "no-data": "Nejsou zde žádná data",
"polling-interval": "Interval frekvence příjmu alarmů (vteřin)", "polling-interval": "Interval frekvence příjmu alarmů (vteřin)",
"polling-interval-required": "Interval frekvence příjmu alarmů je povinný.", "polling-interval-required": "Interval frekvence příjmu alarmů je povinný.",
"min-polling-interval-message": "Minimální povolený interval frekvence příjmu alarmů je 1 vteřina.", "min-polling-interval-message": "Minimální povolený interval frekvence příjmu alarmů je 1 vteřina.",
"aknowledge-alarms-title": "Přijmout { count, plural, 1 {1 alarm} other {# alarmů} }", "aknowledge-alarms-title": "Přijmout { count, plural, =1 {1 alarm} other {# alarmů} }",
"aknowledge-alarms-text": "Jste si jisti že chcete přijmout { count, plural, 1 {1 alarm} other {# alarmů} }?", "aknowledge-alarms-text": "Jste si jisti že chcete přijmout { count, plural, =1 {1 alarm} other {# alarmů} }?",
"aknowledge-alarm-title": "Přijmout alarm", "aknowledge-alarm-title": "Přijmout alarm",
"aknowledge-alarm-text": "Jste si jisti, že chcete přijmout alarm?", "aknowledge-alarm-text": "Jste si jisti, že chcete přijmout alarm?",
"clear-alarms-title": "Odstranit { count, plural, 1 {1 alarm} other {# alarmů} }", "clear-alarms-title": "Odstranit { count, plural, =1 {1 alarm} other {# alarmů} }",
"clear-alarms-text": "Jste si jisti, že chcete odstranit { count, plural, 1 {1 alarm} other {# alarmů} }?", "clear-alarms-text": "Jste si jisti, že chcete odstranit { count, plural, =1 {1 alarm} other {# alarmů} }?",
"clear-alarm-title": "Odstranit alarm", "clear-alarm-title": "Odstranit alarm",
"clear-alarm-text": "Jste si jisti, že chcete alarm odstranit?", "clear-alarm-text": "Jste si jisti, že chcete alarm odstranit?",
"alarm-status-filter": "Filtr stavu alarmu", "alarm-status-filter": "Filtr stavu alarmu",
@ -400,17 +400,17 @@
"add-asset-text": "Přidat nové aktivum", "add-asset-text": "Přidat nové aktivum",
"asset-details": "Detail aktiva", "asset-details": "Detail aktiva",
"assign-assets": "Přiřadit aktiva", "assign-assets": "Přiřadit aktiva",
"assign-assets-text": "Přiřadit { count, plural, 1 {1 aktivum} other {# aktiva} } zákazníkovi", "assign-assets-text": "Přiřadit { count, plural, =1 {1 aktivum} other {# aktiva} } zákazníkovi",
"assign-asset-to-edge-title": "Přiřadit aktivum(a) k edge", "assign-asset-to-edge-title": "Přiřadit aktivum(a) k edge",
"assign-asset-to-edge-text":"Zvolte prosím aktiva, která mají být přiřazena k edge", "assign-asset-to-edge-text":"Zvolte prosím aktiva, která mají být přiřazena k edge",
"delete-assets": "Smazat aktiva", "delete-assets": "Smazat aktiva",
"unassign-assets": "Odebrat aktiva", "unassign-assets": "Odebrat aktiva",
"unassign-assets-action-title": "Odebrat { count, plural, 1 {1 aktivum} other {# aktiva} } zákazníkovi", "unassign-assets-action-title": "Odebrat { count, plural, =1 {1 aktivum} other {# aktiva} } zákazníkovi",
"assign-new-asset": "Přiřadit nové aktivum", "assign-new-asset": "Přiřadit nové aktivum",
"delete-asset-title": "Jste si jisti, že chcete smazat aktivum '{{assetName}}'?", "delete-asset-title": "Jste si jisti, že chcete smazat aktivum '{{assetName}}'?",
"delete-asset-text": "Buďte opatrní, protože po potvrzení nebude možné aktivum ani žádná související data obnovit.", "delete-asset-text": "Buďte opatrní, protože po potvrzení nebude možné aktivum ani žádná související data obnovit.",
"delete-assets-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 aktivum} other {# aktiva} }?", "delete-assets-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 aktivum} other {# aktiva} }?",
"delete-assets-action-title": "Smazat { count, plural, 1 {1 aktivum} other {# aktiva} }", "delete-assets-action-title": "Smazat { count, plural, =1 {1 aktivum} other {# aktiva} }",
"delete-assets-text": "Buďte opatrní, protože po potvrzení budou všechna vybraná aktiva odstraněna a žádná související data nebude možné obnovit.", "delete-assets-text": "Buďte opatrní, protože po potvrzení budou všechna vybraná aktiva odstraněna a žádná související data nebude možné obnovit.",
"make-public-asset-title": "Jste si jisti, že chcete aktivum '{{assetName}}' zveřejnit?", "make-public-asset-title": "Jste si jisti, že chcete aktivum '{{assetName}}' zveřejnit?",
"make-public-asset-text": "Po potvrzení se aktivum a všechna související data stanou veřejnými a dostupnými pro ostatní.", "make-public-asset-text": "Po potvrzení se aktivum a všechna související data stanou veřejnými a dostupnými pro ostatní.",
@ -419,7 +419,7 @@
"unassign-asset-title": "Jste si jisti, že chcete odebrat aktivum '{{assetName}}'?", "unassign-asset-title": "Jste si jisti, že chcete odebrat aktivum '{{assetName}}'?",
"unassign-asset-text": "Po potvrzení bude aktivum odebráno a nebude pro zákazníka dostupné.", "unassign-asset-text": "Po potvrzení bude aktivum odebráno a nebude pro zákazníka dostupné.",
"unassign-asset": "Odebrat aktivum", "unassign-asset": "Odebrat aktivum",
"unassign-assets-title": "Jste si jisti, že chcete odebrat { count, plural, 1 {1 aktivum} other {# aktiva} }?", "unassign-assets-title": "Jste si jisti, že chcete odebrat { count, plural, =1 {1 aktivum} other {# aktiva} }?",
"unassign-assets-text": "Po potvrzení budou všechna vybraná aktiva odebrána a nebudou pro zákazníka dostupná.", "unassign-assets-text": "Po potvrzení budou všechna vybraná aktiva odebrána a nebudou pro zákazníka dostupná.",
"unassign-assets-from-edge": "Odebrat aktiva edge", "unassign-assets-from-edge": "Odebrat aktiva edge",
"copyId": "Kopírovat Id aktiva", "copyId": "Kopírovat Id aktiva",
@ -437,9 +437,9 @@
"unassign-asset-from-edge": "Odebrat aktiva", "unassign-asset-from-edge": "Odebrat aktiva",
"unassign-asset-from-edge-title": "Jste si jisti, že chcete odebrat aktivum '{{assetName}}'?", "unassign-asset-from-edge-title": "Jste si jisti, že chcete odebrat aktivum '{{assetName}}'?",
"unassign-asset-from-edge-text": "Po potvrzení bude aktivum odebráno a nebude pro edge dostupné.", "unassign-asset-from-edge-text": "Po potvrzení bude aktivum odebráno a nebude pro edge dostupné.",
"unassign-assets-from-edge-title": "Jste si jisti, že chcete odebrat { count, plural, 1 {1 aktivum} other {# aktiva} }?", "unassign-assets-from-edge-title": "Jste si jisti, že chcete odebrat { count, plural, =1 {1 aktivum} other {# aktiva} }?",
"unassign-assets-from-edge-text": "Po potvrzení budou všechna aktiva odebrána a nebudou pro edge dostupná.", "unassign-assets-from-edge-text": "Po potvrzení budou všechna aktiva odebrána a nebudou pro edge dostupná.",
"selected-assets": "Vybráno { count, plural, 1 {1 aktiv} other {# aktiv} }" "selected-assets": "Vybráno { count, plural, =1 {1 aktiv} other {# aktiv} }"
}, },
"attribute": { "attribute": {
"attributes": "Atributy", "attributes": "Atributy",
@ -455,7 +455,7 @@
"key-required": "atribut klíč je povinný.", "key-required": "atribut klíč je povinný.",
"value": "Hodnota", "value": "Hodnota",
"value-required": "Atribut hodnota je povinný.", "value-required": "Atribut hodnota je povinný.",
"delete-attributes-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 atribut} other {# atributů} }?", "delete-attributes-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 atribut} other {# atributů} }?",
"delete-attributes-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané atributy odstraněny.", "delete-attributes-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané atributy odstraněny.",
"delete-attributes": "Smazat atributy", "delete-attributes": "Smazat atributy",
"enter-attribute-value": "Zadejte hodnotu atributu", "enter-attribute-value": "Zadejte hodnotu atributu",
@ -465,8 +465,8 @@
"prev-widget": "Předchozí widget", "prev-widget": "Předchozí widget",
"add-to-dashboard": "Přidat na dashboard", "add-to-dashboard": "Přidat na dashboard",
"add-widget-to-dashboard": "Přidat widget na dashboard", "add-widget-to-dashboard": "Přidat widget na dashboard",
"selected-attributes": "Vybráno { count, plural, 1 {1 atributů} other {# atributů} }", "selected-attributes": "Vybráno { count, plural, =1 {1 atributů} other {# atributů} }",
"selected-telemetry": "Vybráno { count, plural, 1 {1 jednotek telemetrie} other {# jednotek telemetrie} }", "selected-telemetry": "Vybráno { count, plural, =1 {1 jednotek telemetrie} other {# jednotek telemetrie} }",
"no-attributes-text": "Žádné atributy nebyly nalezeny", "no-attributes-text": "Žádné atributy nebyly nalezeny",
"no-telemetry-text": "Žádná telemetrie nebyla nalezena" "no-telemetry-text": "Žádná telemetrie nebyla nalezena"
}, },
@ -639,8 +639,8 @@
"customer-details": "Detail zákazníka", "customer-details": "Detail zákazníka",
"delete-customer-title": "Jste si jisti, že chcete smazat zákazníka '{{customerTitle}}'?", "delete-customer-title": "Jste si jisti, že chcete smazat zákazníka '{{customerTitle}}'?",
"delete-customer-text": "Buďte opatrní, protože po potvrzení nebude možné zákazníka ani žádná související data obnovit.", "delete-customer-text": "Buďte opatrní, protože po potvrzení nebude možné zákazníka ani žádná související data obnovit.",
"delete-customers-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 zákazníka} other {# zákazníků} }?", "delete-customers-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 zákazníka} other {# zákazníků} }?",
"delete-customers-action-title": "Smazat { count, plural, 1 {1 zákazníka} other {# zákazníků} }", "delete-customers-action-title": "Smazat { count, plural, =1 {1 zákazníka} other {# zákazníků} }",
"delete-customers-text": "Buďte opatrní, protože po potvrzení budou všichni vybraní zákazníci odstraněni a žádná související data nebude možné obnovit.", "delete-customers-text": "Buďte opatrní, protože po potvrzení budou všichni vybraní zákazníci odstraněni a žádná související data nebude možné obnovit.",
"manage-users": "Spravovat uživatele", "manage-users": "Spravovat uživatele",
"manage-assets": "Spravovat aktiva", "manage-assets": "Spravovat aktiva",
@ -660,7 +660,7 @@
"default-customer": "Defaultní zákazník", "default-customer": "Defaultní zákazník",
"default-customer-required": "Aby bylo možné ladit dashboard na úrovni tenanta, je nutné zadat defaultního zákazníka.", "default-customer-required": "Aby bylo možné ladit dashboard na úrovni tenanta, je nutné zadat defaultního zákazníka.",
"search": "Vyhledat zákazníky", "search": "Vyhledat zákazníky",
"selected-customers": "Vybráno { count, plural, 1 {1 zákazníků} other {# zákazníků} }", "selected-customers": "Vybráno { count, plural, =1 {1 zákazníků} other {# zákazníků} }",
"edges": "Edge instance zákazníka", "edges": "Edge instance zákazníka",
"manage-edges": "Spravovat edge" "manage-edges": "Spravovat edge"
}, },
@ -708,20 +708,20 @@
"add-dashboard-text": "Přidat nový dashboard", "add-dashboard-text": "Přidat nový dashboard",
"assign-dashboards": "Přiřadit dashboardy", "assign-dashboards": "Přiřadit dashboardy",
"assign-new-dashboard": "Přiřadit nový dashboard", "assign-new-dashboard": "Přiřadit nový dashboard",
"assign-dashboards-text": "Přiřadit { count, plural, 1 {1 dashboard} other {# dashboardů} } zákazníkům", "assign-dashboards-text": "Přiřadit { count, plural, =1 {1 dashboard} other {# dashboardů} } zákazníkům",
"unassign-dashboards-action-text": "Odebrat { count, plural, 1 {1 dashboard} other {# dashboardů} } zákazníkům", "unassign-dashboards-action-text": "Odebrat { count, plural, =1 {1 dashboard} other {# dashboardů} } zákazníkům",
"delete-dashboards": "Smazat dashboardy", "delete-dashboards": "Smazat dashboardy",
"unassign-dashboards": "Odebrat dashboardy", "unassign-dashboards": "Odebrat dashboardy",
"unassign-dashboards-action-title": "Odebrat { count, plural, 1 {1 dashboard} other {# dashboardů} } zákazníkovi", "unassign-dashboards-action-title": "Odebrat { count, plural, =1 {1 dashboard} other {# dashboardů} } zákazníkovi",
"delete-dashboard-title": "Jste si jisti, že chcete odstranit dashboard '{{dashboardTitle}}'?", "delete-dashboard-title": "Jste si jisti, že chcete odstranit dashboard '{{dashboardTitle}}'?",
"delete-dashboard-text": "Buďte opatrní, protože po potvrzení nebude možné dashboard ani žádná související data obnovit.", "delete-dashboard-text": "Buďte opatrní, protože po potvrzení nebude možné dashboard ani žádná související data obnovit.",
"delete-dashboards-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 dashboard} other {# dashboardů} }?", "delete-dashboards-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 dashboard} other {# dashboardů} }?",
"delete-dashboards-action-title": "Smazat { count, plural, 1 {1 dashboard} other {# dashboardů} }", "delete-dashboards-action-title": "Smazat { count, plural, =1 {1 dashboard} other {# dashboardů} }",
"delete-dashboards-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané dashboardy smazány a žádná související data nebude možné obnovit.", "delete-dashboards-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané dashboardy smazány a žádná související data nebude možné obnovit.",
"unassign-dashboard-title": "Jste si jistí, že chcete odebrat dashboard '{{dashboardTitle}}'?", "unassign-dashboard-title": "Jste si jistí, že chcete odebrat dashboard '{{dashboardTitle}}'?",
"unassign-dashboard-text": "Po potvrzení bude dashboard odebrán a nebude pro zákazníka dostupný.", "unassign-dashboard-text": "Po potvrzení bude dashboard odebrán a nebude pro zákazníka dostupný.",
"unassign-dashboard": "Odebrat dashboard", "unassign-dashboard": "Odebrat dashboard",
"unassign-dashboards-title": "Jste si jisti, že chcete odebrat { count, plural, 1 {1 dashboard} other {# dashboardů} }?", "unassign-dashboards-title": "Jste si jisti, že chcete odebrat { count, plural, =1 {1 dashboard} other {# dashboardů} }?",
"unassign-dashboards-text": "Po potvrzení budou všechny vybrané dashboardy odebrány a nebudou pro zákazníka dostupné.", "unassign-dashboards-text": "Po potvrzení budou všechny vybrané dashboardy odebrány a nebudou pro zákazníka dostupné.",
"public-dashboard-title": "Dashboard je nyní veřejný", "public-dashboard-title": "Dashboard je nyní veřejný",
"public-dashboard-text": "Váš dashboard <b>{{dashboardTitle}}</b> je nyní veřejný a dostupný prostřednictvím následujícího veřejného <a href='{{publicLink}}' target='_blank'>odkazu</a>:", "public-dashboard-text": "Váš dashboard <b>{{dashboardTitle}}</b> je nyní veřejný a dostupný prostřednictvím následujícího veřejného <a href='{{publicLink}}' target='_blank'>odkazu</a>:",
@ -813,7 +813,7 @@
"manage-states": "Spravovat stavy dashboardu", "manage-states": "Spravovat stavy dashboardu",
"states": "Stavy dashboardu", "states": "Stavy dashboardu",
"search-states": "Vyhledat stavy dashboardu", "search-states": "Vyhledat stavy dashboardu",
"selected-states": "Vybráno { count, plural, 1 {1 stavů dashboardu} other {# stavů dashboardu} }", "selected-states": "Vybráno { count, plural, =1 {1 stavů dashboardu} other {# stavů dashboardu} }",
"edit-state": "Editovat stav dashboardu", "edit-state": "Editovat stav dashboardu",
"delete-state": "Smazat stav dashboardu", "delete-state": "Smazat stav dashboardu",
"add-state": "Přidat stav dashboardu", "add-state": "Přidat stav dashboardu",
@ -832,11 +832,11 @@
"select-state": "Vybrat cílový stav", "select-state": "Vybrat cílový stav",
"state-controller": "Kontrolér stavu", "state-controller": "Kontrolér stavu",
"search": "Vyhledat dashboardy", "search": "Vyhledat dashboardy",
"selected-dashboards": "Vybráno { count, plural, 1 {1 dashboardů} other {# dashboardů} }", "selected-dashboards": "Vybráno { count, plural, =1 {1 dashboardů} other {# dashboardů} }",
"home-dashboard": " Výchozí dashboard", "home-dashboard": " Výchozí dashboard",
"home-dashboard-hide-toolbar": "Skrýt nástrojovou lištu na výhochozím dashboardu", "home-dashboard-hide-toolbar": "Skrýt nástrojovou lištu na výhochozím dashboardu",
"unassign-dashboard-from-edge-text": "Po potvrzení bude dashboard odebrán a nebude pro edge dostupný.", "unassign-dashboard-from-edge-text": "Po potvrzení bude dashboard odebrán a nebude pro edge dostupný.",
"unassign-dashboards-from-edge-title": "Jste si jisti, že chcete odebrat { count, plural, 1 {1 dashboard} other {# dashboardů} }?", "unassign-dashboards-from-edge-title": "Jste si jisti, že chcete odebrat { count, plural, =1 {1 dashboard} other {# dashboardů} }?",
"unassign-dashboards-from-edge-text": "Po potvrzení budou všechny vybrané dashboardy odebrány a nebudou pro edge dostupné.", "unassign-dashboards-from-edge-text": "Po potvrzení budou všechny vybrané dashboardy odebrány a nebudou pro edge dostupné.",
"assign-dashboard-to-edge": "Přiřadit dashboard(y) k edge", "assign-dashboard-to-edge": "Přiřadit dashboard(y) k edge",
"assign-dashboard-to-edge-text": "Zvolte prosím dashboardy, které mají být přiřazeny k edge" "assign-dashboard-to-edge-text": "Zvolte prosím dashboardy, které mají být přiřazeny k edge"
@ -858,11 +858,11 @@
"timeseries-required": "Časové řady entity jsou povinné.", "timeseries-required": "Časové řady entity jsou povinné.",
"timeseries-or-attributes-required": "Časové řady / atributy entity jsou povinné.", "timeseries-or-attributes-required": "Časové řady / atributy entity jsou povinné.",
"alarm-fields-timeseries-or-attributes-required": "Pole alarmu nebo časové řady / atributy jsou povinné.", "alarm-fields-timeseries-or-attributes-required": "Pole alarmu nebo časové řady / atributy jsou povinné.",
"maximum-timeseries-or-attributes": "Maximálně { count, plural, 1 {1 časová řada/atribut je povolena.} other {# časových řad/atributů je povoleno} }", "maximum-timeseries-or-attributes": "Maximálně { count, plural, =1 {1 časová řada/atribut je povolena.} other {# časových řad/atributů je povoleno} }",
"alarm-fields-required": "Pole alarmu jsou povinná.", "alarm-fields-required": "Pole alarmu jsou povinná.",
"function-types": "Typy funkcí", "function-types": "Typy funkcí",
"function-types-required": "Typy funkcí jsou povinné.", "function-types-required": "Typy funkcí jsou povinné.",
"maximum-function-types": "Maximálně { count, plural, 1 {1 typ funkce je povolen.} other {# typů funkce je povoleno} }", "maximum-function-types": "Maximálně { count, plural, =1 {1 typ funkce je povolen.} other {# typů funkce je povoleno} }",
"time-description": "Časová značka aktuální hodnoty;", "time-description": "Časová značka aktuální hodnoty;",
"value-description": "Aktuální hodnota;", "value-description": "Aktuální hodnota;",
"prev-value-description": "Výsledek předchozího volání funkce;", "prev-value-description": "Výsledek předchozího volání funkce;",
@ -925,11 +925,11 @@
"manage-credentials": "Spravovat přístupové údaje", "manage-credentials": "Spravovat přístupové údaje",
"delete": "Smazat zařízení", "delete": "Smazat zařízení",
"assign-devices": "Přiřadit zařízení", "assign-devices": "Přiřadit zařízení",
"assign-devices-text": "Přiřadit { count, plural, 1 {1 zařízení} other {# zařízení} } zákazníkovi", "assign-devices-text": "Přiřadit { count, plural, =1 {1 zařízení} other {# zařízení} } zákazníkovi",
"delete-devices": "Smazat zařízení", "delete-devices": "Smazat zařízení",
"unassign-from-customer": "Odebrat zákazníkovi", "unassign-from-customer": "Odebrat zákazníkovi",
"unassign-devices": "Odebrat zařízení", "unassign-devices": "Odebrat zařízení",
"unassign-devices-action-title": "Odebrat { count, plural, 1 {1 zařízení} other {# zařízení} } zákazníkovi", "unassign-devices-action-title": "Odebrat { count, plural, =1 {1 zařízení} other {# zařízení} } zákazníkovi",
"unassign-device-from-edge-title": "Jste si jisti, že chcete odebrat zařízení '{{deviceName}}'?", "unassign-device-from-edge-title": "Jste si jisti, že chcete odebrat zařízení '{{deviceName}}'?",
"unassign-device-from-edge-text": "Po potvrzení bude zařízení odebráno a nebude pro edge dostupné.", "unassign-device-from-edge-text": "Po potvrzení bude zařízení odebráno a nebude pro edge dostupné.",
"unassign-devices-from-edge": "Odebrat zařízení edge", "unassign-devices-from-edge": "Odebrat zařízení edge",
@ -941,13 +941,13 @@
"view-credentials": "Zobrazit přístupové údaje", "view-credentials": "Zobrazit přístupové údaje",
"delete-device-title": "Jste si jisti, že chcete smazat zařízení '{{deviceName}}'?", "delete-device-title": "Jste si jisti, že chcete smazat zařízení '{{deviceName}}'?",
"delete-device-text": "Buďte opatrní, protože po potvrzení nebude možné zařízení ani žádná související data obnovit.", "delete-device-text": "Buďte opatrní, protože po potvrzení nebude možné zařízení ani žádná související data obnovit.",
"delete-devices-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 zařízení} other {# zařízení} }?", "delete-devices-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 zařízení} other {# zařízení} }?",
"delete-devices-action-title": "Smazat { count, plural, 1 {1 zařízení} other {# zařízení} }", "delete-devices-action-title": "Smazat { count, plural, =1 {1 zařízení} other {# zařízení} }",
"delete-devices-text": "Buďte opatrní, protože po potvrzení budou vybraná zařízení odstraněna a žádná související data nebude možné obnovit.", "delete-devices-text": "Buďte opatrní, protože po potvrzení budou vybraná zařízení odstraněna a žádná související data nebude možné obnovit.",
"unassign-device-title": "Jste si jisti, že chcete odebrat zařízení '{{deviceName}}'?", "unassign-device-title": "Jste si jisti, že chcete odebrat zařízení '{{deviceName}}'?",
"unassign-device-text": "Po potvrzení bude zařízení odebráno a nebude pro zákazníka dostupné.", "unassign-device-text": "Po potvrzení bude zařízení odebráno a nebude pro zákazníka dostupné.",
"unassign-device": "Odebrat zařízení", "unassign-device": "Odebrat zařízení",
"unassign-devices-title": "Jste si jisti, že chcete odebrat { count, plural, 1 {1 zařízení} other {# zařízení} }?", "unassign-devices-title": "Jste si jisti, že chcete odebrat { count, plural, =1 {1 zařízení} other {# zařízení} }?",
"unassign-devices-text": "Po potvrzení budou všechna vybraná zařízení odebrána a nebudou pro zákazníka dostupná.", "unassign-devices-text": "Po potvrzení budou všechna vybraná zařízení odebrána a nebudou pro zákazníka dostupná.",
"device-credentials": "Přístupové údaje zařízení", "device-credentials": "Přístupové údaje zařízení",
"loading-device-credentials": "Nahrávám přístupové údaje zařízení...", "loading-device-credentials": "Nahrávám přístupové údaje zařízení...",
@ -1014,7 +1014,7 @@
"import": "Importovat zařízení", "import": "Importovat zařízení",
"device-file": "Soubor zařízení", "device-file": "Soubor zařízení",
"search": "Vyhledat zařízení", "search": "Vyhledat zařízení",
"selected-devices": "Vybráno { count, plural, 1 {1 zařízení} other {# zařízení} }", "selected-devices": "Vybráno { count, plural, =1 {1 zařízení} other {# zařízení} }",
"device-configuration": "Konfigurace zařízení", "device-configuration": "Konfigurace zařízení",
"transport-configuration": "Konfigurace přenosu", "transport-configuration": "Konfigurace přenosu",
"wizard": { "wizard": {
@ -1026,7 +1026,7 @@
"customer-to-assign-device": "Přiřadit zařízení zákazníkovi", "customer-to-assign-device": "Přiřadit zařízení zákazníkovi",
"add-credentials": "Přidat přístupový údaj" "add-credentials": "Přidat přístupový údaj"
}, },
"unassign-devices-from-edge-title": "Jste se jisti, že chcete odebrat { count, plural, 1 {1 zařízení} other {# zařízení} }?", "unassign-devices-from-edge-title": "Jste se jisti, že chcete odebrat { count, plural, =1 {1 zařízení} other {# zařízení} }?",
"unassign-devices-from-edge-text": "Po potvrzení budou všechna vybraná zařízení odebrána a nebudou pro edge dostupná." "unassign-devices-from-edge-text": "Po potvrzení budou všechna vybraná zařízení odebrána a nebudou pro edge dostupná."
}, },
"device-profile": { "device-profile": {
@ -1038,7 +1038,7 @@
"device-profile-details": "Detail profilu zařízení", "device-profile-details": "Detail profilu zařízení",
"no-device-profiles-text": "Žádné profily zařízení nebyly nalezeny", "no-device-profiles-text": "Žádné profily zařízení nebyly nalezeny",
"search": "Vyhledat profily zařízení", "search": "Vyhledat profily zařízení",
"selected-device-profiles": "Vybráno { count, plural, 1 {1 profil zařízení} other {# profilů zařízení} }", "selected-device-profiles": "Vybráno { count, plural, =1 {1 profil zařízení} other {# profilů zařízení} }",
"no-device-profiles-matching": "Žádný profil zařízení odpovídající '{{entity}}' nebyl nalezen.", "no-device-profiles-matching": "Žádný profil zařízení odpovídající '{{entity}}' nebyl nalezen.",
"device-profile-required": "Profil zařízení je povinný", "device-profile-required": "Profil zařízení je povinný",
"idCopiedMessage": "Id profilu zařízení bylo zkopírováno do schránky", "idCopiedMessage": "Id profilu zařízení bylo zkopírováno do schránky",
@ -1075,7 +1075,7 @@
"select-queue-hint": "Vyberte z rozbalovacího seznamu nebo přidejte vlastní název.", "select-queue-hint": "Vyberte z rozbalovacího seznamu nebo přidejte vlastní název.",
"delete-device-profile-title": "Jste si jisti, že chcete smazat profil zařízení '{{deviceProfileName}}'?", "delete-device-profile-title": "Jste si jisti, že chcete smazat profil zařízení '{{deviceProfileName}}'?",
"delete-device-profile-text": "Buďte opatrní, protože po potvrzení nebude možné profil zařízení ani žádná související data obnovit.", "delete-device-profile-text": "Buďte opatrní, protože po potvrzení nebude možné profil zařízení ani žádná související data obnovit.",
"delete-device-profiles-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 profil zařízení} other {# profilů zařízení} }?", "delete-device-profiles-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 profil zařízení} other {# profilů zařízení} }?",
"delete-device-profiles-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané profily zařízení odstraněny a žádná související data nebude možné obnovit.", "delete-device-profiles-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané profily zařízení odstraněny a žádná související data nebude možné obnovit.",
"set-default-device-profile-title": "Jste si jisti, že chcete profil zařízení '{{deviceProfileName}}' učinit defaultním?", "set-default-device-profile-title": "Jste si jisti, že chcete profil zařízení '{{deviceProfileName}}' učinit defaultním?",
"set-default-device-profile-text": "Po potvrzení bude profil zařízení označen jako defaultní a bude použit pro nová zařízení bez specifikovaného profilu.", "set-default-device-profile-text": "Po potvrzení bude profil zařízení označen jako defaultní a bude použit pro nová zařízení bez specifikovaného profilu.",
@ -1186,8 +1186,8 @@
"condition-repeating-value-range": "Počet událostí musí být v rozsahu od 1 do 2147483647.", "condition-repeating-value-range": "Počet událostí musí být v rozsahu od 1 do 2147483647.",
"condition-repeating-value-pattern": "Počet událostí musí být celé číslo.", "condition-repeating-value-pattern": "Počet událostí musí být celé číslo.",
"condition-repeating-value-required": "Počet událostí je povinný.", "condition-repeating-value-required": "Počet událostí je povinný.",
"condition-repeat-times": "Opakování { count, plural, 1 {1 krát} other {# krát} }", "condition-repeat-times": "Opakování { count, plural, =1 {1 krát} other {# krát} }",
"condition-repeat-times-dynamic": "Opakování \"{ attribute }\" ({ count, plural, 1 {1 krát} other {# krát} })", "condition-repeat-times-dynamic": "Opakování \"{ attribute }\" ({ count, plural, =1 {1 krát} other {# krát} })",
"schedule-type": "Typ plánovače", "schedule-type": "Typ plánovače",
"schedule-type-required": "Typ plánovače je povinný.", "schedule-type-required": "Typ plánovače je povinný.",
"schedule": "Časový plán", "schedule": "Časový plán",
@ -1385,7 +1385,7 @@
"delete": "Odstranit edge", "delete": "Odstranit edge",
"delete-edge-title": "Jste si jisti, že chcete odstranit edge '{{edgeName}}'?", "delete-edge-title": "Jste si jisti, že chcete odstranit edge '{{edgeName}}'?",
"delete-edge-text": "Buďte opatrní, protože po potvrzení odstranění nebude možné edge ani žádná související data obnovit.", "delete-edge-text": "Buďte opatrní, protože po potvrzení odstranění nebude možné edge ani žádná související data obnovit.",
"delete-edges-title": "Jste si jisti, že chcete odstranit { count, plural, 1 {1 edge} other {# edge} }?", "delete-edges-title": "Jste si jisti, že chcete odstranit { count, plural, =1 {1 edge} other {# edge} }?",
"delete-edges-text": "Buďte opatrní, protože po potvrzení odstranění budou všechny vybrané edge odstraněny a žádná související data nebude možné obnovit.", "delete-edges-text": "Buďte opatrní, protože po potvrzení odstranění budou všechny vybrané edge odstraněny a žádná související data nebude možné obnovit.",
"name": "Název", "name": "Název",
"name-starts-with": "Název edge začíná", "name-starts-with": "Název edge začíná",
@ -1412,7 +1412,7 @@
"unassign-from-customer": "Odebrat zákazníkovi", "unassign-from-customer": "Odebrat zákazníkovi",
"unassign-edge-title": "Jste si jisti, že chcete odebrat edge '{{edgeName}}'?", "unassign-edge-title": "Jste si jisti, že chcete odebrat edge '{{edgeName}}'?",
"unassign-edge-text": "Po potvrzení bude edge odebrána a nebude pro zákazníka dostupná.", "unassign-edge-text": "Po potvrzení bude edge odebrána a nebude pro zákazníka dostupná.",
"unassign-edges-title": "Jste si jisti, že chcete odebrat { count, plural, 1 {1 edge} other {# edge} }?", "unassign-edges-title": "Jste si jisti, že chcete odebrat { count, plural, =1 {1 edge} other {# edge} }?",
"unassign-edges-text": "Po potvrzení budou všechny vybrané edge odebrány a nebudou pro zákazníka dostupné.", "unassign-edges-text": "Po potvrzení budou všechny vybrané edge odebrány a nebudou pro zákazníka dostupné.",
"make-public": "Zveřejnit edge", "make-public": "Zveřejnit edge",
"make-public-edge-title": "Jste si jisti, že chcete edge '{{edgeName}}' zveřejnit?", "make-public-edge-title": "Jste si jisti, že chcete edge '{{edgeName}}' zveřejnit?",
@ -1445,7 +1445,7 @@
"rulechain-templates": "Šablony řetězů pravidel", "rulechain-templates": "Šablony řetězů pravidel",
"rulechains": "Řetězy pravidel", "rulechains": "Řetězy pravidel",
"search": "Vyhledat edge", "search": "Vyhledat edge",
"selected-edges": "{ count, plural, 1 {1 edge} other {# edge} } vybráno", "selected-edges": "{ count, plural, =1 {1 edge} other {# edge} } vybráno",
"any-edge": "Všechny edge", "any-edge": "Všechny edge",
"no-edge-types-matching": "Žádné edge odpovídající '{{entitySubtype}}' nebyly nalezeny.", "no-edge-types-matching": "Žádné edge odpovídající '{{entitySubtype}}' nebyly nalezeny.",
"edge-type-list-empty": "Nebyly zvoleny žádné edge.", "edge-type-list-empty": "Nebyly zvoleny žádné edge.",
@ -1545,66 +1545,66 @@
"type-required": "Typ entity je povinný.", "type-required": "Typ entity je povinný.",
"type-device": "Zařízení", "type-device": "Zařízení",
"type-devices": "Zařízení", "type-devices": "Zařízení",
"list-of-devices": "{ count, plural, 1 {Jedno zařízení} other {Seznam # zařízení} }", "list-of-devices": "{ count, plural, =1 {Jedno zařízení} other {Seznam # zařízení} }",
"device-name-starts-with": "Zařízení, jejichž název začíná '{{prefix}}'", "device-name-starts-with": "Zařízení, jejichž název začíná '{{prefix}}'",
"type-device-profile": "Profil zařízení", "type-device-profile": "Profil zařízení",
"type-device-profiles": "Profily zařízení", "type-device-profiles": "Profily zařízení",
"list-of-device-profiles": "{ count, plural, 1 {Jeden profil zařízení} other {Seznam # profilů zařízení} }", "list-of-device-profiles": "{ count, plural, =1 {Jeden profil zařízení} other {Seznam # profilů zařízení} }",
"device-profile-name-starts-with": "Profily zařízení, jejichž název začíná '{{prefix}}'", "device-profile-name-starts-with": "Profily zařízení, jejichž název začíná '{{prefix}}'",
"type-asset": "Aktivum", "type-asset": "Aktivum",
"type-assets": "Aktiva", "type-assets": "Aktiva",
"list-of-assets": "{ count, plural, 1 {Jedno aktivum} other {Seznam # aktiv} }", "list-of-assets": "{ count, plural, =1 {Jedno aktivum} other {Seznam # aktiv} }",
"asset-name-starts-with": "Aktiva, jejichž název začíná '{{prefix}}'", "asset-name-starts-with": "Aktiva, jejichž název začíná '{{prefix}}'",
"type-entity-view": "Entitní pohled", "type-entity-view": "Entitní pohled",
"type-entity-views": "Entitní pohledy", "type-entity-views": "Entitní pohledy",
"list-of-entity-views": "{ count, plural, 1 {Jeden entitní pohled} other {Seznam # entitních pohledů} }", "list-of-entity-views": "{ count, plural, =1 {Jeden entitní pohled} other {Seznam # entitních pohledů} }",
"entity-view-name-starts-with": "Entitní pohledy, jejichž název začíná '{{prefix}}'", "entity-view-name-starts-with": "Entitní pohledy, jejichž název začíná '{{prefix}}'",
"type-rule": "Pravidlo", "type-rule": "Pravidlo",
"type-rules": "Pravidla", "type-rules": "Pravidla",
"list-of-rules": "{ count, plural, 1 {Jedno pravidlo} other {Seznam # pravidel} }", "list-of-rules": "{ count, plural, =1 {Jedno pravidlo} other {Seznam # pravidel} }",
"rule-name-starts-with": "Pravidla, jejichž název začíná '{{prefix}}'", "rule-name-starts-with": "Pravidla, jejichž název začíná '{{prefix}}'",
"type-plugin": "Zásuvný modul", "type-plugin": "Zásuvný modul",
"type-plugins": "Zásuvné moduly", "type-plugins": "Zásuvné moduly",
"list-of-plugins": "{ count, plural, 1 {Jeden zásuvný modul} other {Seznam # zásuvných modulů} }", "list-of-plugins": "{ count, plural, =1 {Jeden zásuvný modul} other {Seznam # zásuvných modulů} }",
"plugin-name-starts-with": "Zásuvné moduly, jejichž název začíná '{{prefix}}'", "plugin-name-starts-with": "Zásuvné moduly, jejichž název začíná '{{prefix}}'",
"type-tenant": "Tenant", "type-tenant": "Tenant",
"type-tenants": "Tenanti", "type-tenants": "Tenanti",
"list-of-tenants": "{ count, plural, 1 {Jeden tenant} other {Seznam # tenantů} }", "list-of-tenants": "{ count, plural, =1 {Jeden tenant} other {Seznam # tenantů} }",
"tenant-name-starts-with": "Tenanti, jejichž název začíná '{{prefix}}'", "tenant-name-starts-with": "Tenanti, jejichž název začíná '{{prefix}}'",
"type-tenant-profile": "Profil tenanta", "type-tenant-profile": "Profil tenanta",
"type-tenant-profiles": "Profily tenantů", "type-tenant-profiles": "Profily tenantů",
"list-of-tenant-profiles": "{ count, plural, 1 {Jeden profil tenanta} other {Seznam # profilů tenantů} }", "list-of-tenant-profiles": "{ count, plural, =1 {Jeden profil tenanta} other {Seznam # profilů tenantů} }",
"tenant-profile-name-starts-with": "Profily tenantů, jejichž název začíná '{{prefix}}'", "tenant-profile-name-starts-with": "Profily tenantů, jejichž název začíná '{{prefix}}'",
"type-customer": "Zákazník", "type-customer": "Zákazník",
"type-customers": "Zákazníci", "type-customers": "Zákazníci",
"list-of-customers": "{ count, plural, 1 {Jeden zákazník} other {Seznam # zákazníků} }", "list-of-customers": "{ count, plural, =1 {Jeden zákazník} other {Seznam # zákazníků} }",
"customer-name-starts-with": "Zákazníci, jejichž název začíná '{{prefix}}'", "customer-name-starts-with": "Zákazníci, jejichž název začíná '{{prefix}}'",
"type-user": "Uživatel", "type-user": "Uživatel",
"type-users": "Uživatelé", "type-users": "Uživatelé",
"list-of-users": "{ count, plural, 1 {Jeden uživatel} other {Seznam # uživatelů} }", "list-of-users": "{ count, plural, =1 {Jeden uživatel} other {Seznam # uživatelů} }",
"user-name-starts-with": "Uživatelé, jejichž název začíná '{{prefix}}'", "user-name-starts-with": "Uživatelé, jejichž název začíná '{{prefix}}'",
"type-dashboard": "Dashboard", "type-dashboard": "Dashboard",
"type-dashboards": "Dashboardy", "type-dashboards": "Dashboardy",
"list-of-dashboards": "{ count, plural, 1 {Jeden dashboard} other {Seznam # dashboardů} }", "list-of-dashboards": "{ count, plural, =1 {Jeden dashboard} other {Seznam # dashboardů} }",
"dashboard-name-starts-with": "Dashboardy, jejichž název začíná '{{prefix}}'", "dashboard-name-starts-with": "Dashboardy, jejichž název začíná '{{prefix}}'",
"type-alarm": "Alarm", "type-alarm": "Alarm",
"type-alarms": "Alarmy", "type-alarms": "Alarmy",
"list-of-alarms": "{ count, plural, 1 {Jeden alarm} other {Seznam # alarmů} }", "list-of-alarms": "{ count, plural, =1 {Jeden alarm} other {Seznam # alarmů} }",
"alarm-name-starts-with": "Alarmy, jejichž název začíná '{{prefix}}'", "alarm-name-starts-with": "Alarmy, jejichž název začíná '{{prefix}}'",
"type-rulechain": "Řetěz pravidel", "type-rulechain": "Řetěz pravidel",
"type-rulechains": "Řetězy pravidel", "type-rulechains": "Řetězy pravidel",
"list-of-rulechains": "{ count, plural, 1 {Jeden řetěz pravidel} other {Seznam # řetězů pravidel} }", "list-of-rulechains": "{ count, plural, =1 {Jeden řetěz pravidel} other {Seznam # řetězů pravidel} }",
"rulechain-name-starts-with": "Řetězy pravidel, jejichž název začíná '{{prefix}}'", "rulechain-name-starts-with": "Řetězy pravidel, jejichž název začíná '{{prefix}}'",
"type-rulenode": "Uzel pravidla", "type-rulenode": "Uzel pravidla",
"type-rulenodes": "Uzly pravidel", "type-rulenodes": "Uzly pravidel",
"list-of-rulenodes": "{ count, plural, 1 {Jeden uzel pravidla} other {Seznam # uzlů pravidel} }", "list-of-rulenodes": "{ count, plural, =1 {Jeden uzel pravidla} other {Seznam # uzlů pravidel} }",
"rulenode-name-starts-with": "Uzly pravidel, jejichž název začíná '{{prefix}}'", "rulenode-name-starts-with": "Uzly pravidel, jejichž název začíná '{{prefix}}'",
"type-current-customer": "Stávající zákazník", "type-current-customer": "Stávající zákazník",
"type-current-tenant": "Stávající tenant", "type-current-tenant": "Stávající tenant",
"type-current-user": "Stávající uživatel", "type-current-user": "Stávající uživatel",
"type-current-user-owner": "Vlastník stávajícího uživatele", "type-current-user-owner": "Vlastník stávajícího uživatele",
"search": "Vyhledat entity", "search": "Vyhledat entity",
"selected-entities": "{ count, plural, 1 {1 entita} other {# entit} } zvoleno", "selected-entities": "{ count, plural, =1 {1 entita} other {# entit} } zvoleno",
"entity-name": "Název entity", "entity-name": "Název entity",
"entity-label": "Označení entity", "entity-label": "Označení entity",
"details": "Detail entity", "details": "Detail entity",
@ -1614,7 +1614,7 @@
"type-api-usage-state": "Stav využití API", "type-api-usage-state": "Stav využití API",
"type-edge": "Edge", "type-edge": "Edge",
"type-edges": "Edge", "type-edges": "Edge",
"list-of-edges": "{ count, plural, 1 {Jedna edge} other {Seznam # edge} }", "list-of-edges": "{ count, plural, =1 {Jedna edge} other {Seznam # edge} }",
"edge-name-starts-with": "Edge, jejichž název začíná '{{prefix}}'", "edge-name-starts-with": "Edge, jejichž název začíná '{{prefix}}'",
"type-tb-resource": "Zdroj", "type-tb-resource": "Zdroj",
"type-ota-package": "OTA balíček" "type-ota-package": "OTA balíček"
@ -1677,21 +1677,21 @@
"add-entity-view-text": "Přidat nový entitní pohled", "add-entity-view-text": "Přidat nový entitní pohled",
"delete": "Smazat entitní pohled", "delete": "Smazat entitní pohled",
"assign-entity-views": "Přiřadit entitní pohledy", "assign-entity-views": "Přiřadit entitní pohledy",
"assign-entity-views-text": "Přiřadit { count, plural, 1 {1 entitní pohled} other {# entitních pohledů} } zákazníkovi", "assign-entity-views-text": "Přiřadit { count, plural, =1 {1 entitní pohled} other {# entitních pohledů} } zákazníkovi",
"delete-entity-views": "Smazat entitní pohledy", "delete-entity-views": "Smazat entitní pohledy",
"unassign-from-customer": "Odebrat zákazníkovi", "unassign-from-customer": "Odebrat zákazníkovi",
"unassign-entity-views": "Odebrat entitní pohledy", "unassign-entity-views": "Odebrat entitní pohledy",
"unassign-entity-views-action-title": "Odebrat { count, plural, 1 {1 entitní pohled} other {# entitních pohledů} } zákazníkovi", "unassign-entity-views-action-title": "Odebrat { count, plural, =1 {1 entitní pohled} other {# entitních pohledů} } zákazníkovi",
"assign-new-entity-view": "Přiřadit nový entitní pohled", "assign-new-entity-view": "Přiřadit nový entitní pohled",
"delete-entity-view-title": "Jste si jisti, že chcete smazat entitní pohled '{{entityViewName}}'?", "delete-entity-view-title": "Jste si jisti, že chcete smazat entitní pohled '{{entityViewName}}'?",
"delete-entity-view-text": "Buďte opatrní, protože po potvrzení nebude možné entitní pohled ani žádná související data obnovit.", "delete-entity-view-text": "Buďte opatrní, protože po potvrzení nebude možné entitní pohled ani žádná související data obnovit.",
"delete-entity-views-title": "Jste si jisti, že chcete odstranit entitní pohled { count, plural, 1 {1 entitní pohled} other {# entitních pohledů} }?", "delete-entity-views-title": "Jste si jisti, že chcete odstranit entitní pohled { count, plural, =1 {1 entitní pohled} other {# entitních pohledů} }?",
"delete-entity-views-action-title": "Smazat { count, plural, 1 {1 entitní pohled} other {# entitních pohledů} }", "delete-entity-views-action-title": "Smazat { count, plural, =1 {1 entitní pohled} other {# entitních pohledů} }",
"delete-entity-views-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané entitní pohledy smazány a žádná související data nebude možné obnovit.", "delete-entity-views-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané entitní pohledy smazány a žádná související data nebude možné obnovit.",
"unassign-entity-view-title": "Jste si jisti, že chcete odebrat entitní pohled '{{entityViewName}}'?", "unassign-entity-view-title": "Jste si jisti, že chcete odebrat entitní pohled '{{entityViewName}}'?",
"unassign-entity-view-text": "Po potvrzení bude entitní pohled odebrán a nebude pro zákazníka dostupný.", "unassign-entity-view-text": "Po potvrzení bude entitní pohled odebrán a nebude pro zákazníka dostupný.",
"unassign-entity-view": "Odebrat entitní pohled", "unassign-entity-view": "Odebrat entitní pohled",
"unassign-entity-views-title": "Jste si jisti, že chcete odebrat { count, plural, 1 {1 entitní pohled} other {# entitních pohledů} }?", "unassign-entity-views-title": "Jste si jisti, že chcete odebrat { count, plural, =1 {1 entitní pohled} other {# entitních pohledů} }?",
"unassign-entity-views-text": "Po potvrzení budou všechny vybrané entitní pohledy odebrány a nebudou pro zákazníka dostupné.", "unassign-entity-views-text": "Po potvrzení budou všechny vybrané entitní pohledy odebrány a nebudou pro zákazníka dostupné.",
"entity-view-type": "Typ entitního pohledu", "entity-view-type": "Typ entitního pohledu",
"entity-view-type-required": "Typ entitního pohledu je povinný.", "entity-view-type-required": "Typ entitního pohledu je povinný.",
@ -1741,9 +1741,9 @@
"assign-entity-view-to-edge-text":"Zvolte prosím entitní pohledy, které mají být přiřazeny k edge", "assign-entity-view-to-edge-text":"Zvolte prosím entitní pohledy, které mají být přiřazeny k edge",
"unassign-entity-view-from-edge-title": "Jste si jisti, že chcete odebrat entitní pohled '{{entityViewName}}'?", "unassign-entity-view-from-edge-title": "Jste si jisti, že chcete odebrat entitní pohled '{{entityViewName}}'?",
"unassign-entity-view-from-edge-text": "Po potvrzení bude entitní pohled odebrán a nebude pro edge dostupný.", "unassign-entity-view-from-edge-text": "Po potvrzení bude entitní pohled odebrán a nebude pro edge dostupný.",
"unassign-entity-views-from-edge-action-title": "Odebrat { count, plural, 1 {1 entitní pohled} other {# entitních pohledů} } from edge", "unassign-entity-views-from-edge-action-title": "Odebrat { count, plural, =1 {1 entitní pohled} other {# entitních pohledů} } from edge",
"unassign-entity-view-from-edge": "Odebrat entitní pohled", "unassign-entity-view-from-edge": "Odebrat entitní pohled",
"unassign-entity-views-from-edge-title": "Jste si jisti, že chcete odebrat { count, plural, 1 {1 entitní pohled} other {# entitních pohledů} }?", "unassign-entity-views-from-edge-title": "Jste si jisti, že chcete odebrat { count, plural, =1 {1 entitní pohled} other {# entitních pohledů} }?",
"unassign-entity-views-from-edge-text": "Po potvrzení budou všechny vybrané entitní pohledy odebrány a nebudou pro edge dostupné." "unassign-entity-views-from-edge-text": "Po potvrzení budou všechny vybrané entitní pohledy odebrány a nebudou pro edge dostupné."
}, },
"event": { "event": {
@ -1784,7 +1784,7 @@
}, },
"extension": { "extension": {
"extensions": "Rozšíření", "extensions": "Rozšíření",
"selected-extensions": "Vybráno { count, plural, 1 {1 rozšíření} other {# rozšíření} }", "selected-extensions": "Vybráno { count, plural, =1 {1 rozšíření} other {# rozšíření} }",
"type": "Typ", "type": "Typ",
"key": "Klíč", "key": "Klíč",
"value": "Hodnota", "value": "Hodnota",
@ -1798,7 +1798,7 @@
"edit": "Editovat rozšíření", "edit": "Editovat rozšíření",
"delete-extension-title": "Jste si jisti, že chcete smazat rozšíření '{{extensionId}}'?", "delete-extension-title": "Jste si jisti, že chcete smazat rozšíření '{{extensionId}}'?",
"delete-extension-text": "Buďte opatrní, protože po potvrzení nebude možné rozšíření ani související data obnovit.", "delete-extension-text": "Buďte opatrní, protože po potvrzení nebude možné rozšíření ani související data obnovit.",
"delete-extensions-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 rozšíření} other {# rozšíření} }?", "delete-extensions-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 rozšíření} other {# rozšíření} }?",
"delete-extensions-text": "Buďte opatrní, protože po potvrzení budou všechna vybraná rozšíření odstraněna.", "delete-extensions-text": "Buďte opatrní, protože po potvrzení budou všechna vybraná rozšíření odstraněna.",
"converters": "Převodník", "converters": "Převodník",
"converter-id": "Id převodníku", "converter-id": "Id převodníku",
@ -2115,8 +2115,8 @@
"grid": { "grid": {
"delete-item-title": "Jste si jisti, že chcete smazat tuto položku?", "delete-item-title": "Jste si jisti, že chcete smazat tuto položku?",
"delete-item-text": "Buďte opatrní, protože po potvrzení nebude možné tuto položku ani žádná související data obnovit.", "delete-item-text": "Buďte opatrní, protože po potvrzení nebude možné tuto položku ani žádná související data obnovit.",
"delete-items-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 položku} other {# položek} }?", "delete-items-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 položku} other {# položek} }?",
"delete-items-action-title": "Smazat { count, plural, 1 {1 položku} other {# položek} }", "delete-items-action-title": "Smazat { count, plural, =1 {1 položku} other {# položek} }",
"delete-items-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané položky odstraněny a žádná související data nebude možné obnovit.", "delete-items-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané položky odstraněny a žádná související data nebude možné obnovit.",
"add-item-text": "Přidat novou položku", "add-item-text": "Přidat novou položku",
"no-items-text": "Žádné položky nebyly nalezeny", "no-items-text": "Žádné položky nebyly nalezeny",
@ -2256,8 +2256,8 @@
"checksum-hint": "Jestliže je checksum prádzná, bude automaticky vygenerována", "checksum-hint": "Jestliže je checksum prádzná, bude automaticky vygenerována",
"checksum-algorithm": "Checksum algoritmus", "checksum-algorithm": "Checksum algoritmus",
"checksum-copied-message": "Checksum balíčku byla zkopírována do schránky", "checksum-copied-message": "Checksum balíčku byla zkopírována do schránky",
"change-firmware": "Změna firmware může způsobit aktualizaci { count, plural, 1 {1 zařízení} other {# zařízení} }.", "change-firmware": "Změna firmware může způsobit aktualizaci { count, plural, =1 {1 zařízení} other {# zařízení} }.",
"change-software": "Změna software může způsobit aktualizaci { count, plural, 1 {1 zařízení} other {# zařízení} }.", "change-software": "Změna software může způsobit aktualizaci { count, plural, =1 {1 zařízení} other {# zařízení} }.",
"chose-compatible-device-profile": "Nahraný balíček bude dostupný pouze pro zařízení s vybraným profilem.", "chose-compatible-device-profile": "Nahraný balíček bude dostupný pouze pro zařízení s vybraným profilem.",
"chose-firmware-distributed-device": "Vyberte firmware, který bude distribuován do zařízení", "chose-firmware-distributed-device": "Vyberte firmware, který bude distribuován do zařízení",
"chose-software-distributed-device": "Vyberte software, který bude distribuován do zařízení", "chose-software-distributed-device": "Vyberte software, který bude distribuován do zařízení",
@ -2270,7 +2270,7 @@
"delete-ota-update-text": "Buďte opatrní, protože po potvrzení nebude možné OTA aktualizaci obnovit.", "delete-ota-update-text": "Buďte opatrní, protože po potvrzení nebude možné OTA aktualizaci obnovit.",
"delete-ota-update-title": "Jste si jisti, že chcete odstranit OTA aktualizaci '{{title}}'?", "delete-ota-update-title": "Jste si jisti, že chcete odstranit OTA aktualizaci '{{title}}'?",
"delete-ota-updates-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané OTA aktualizace odstraněny.", "delete-ota-updates-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané OTA aktualizace odstraněny.",
"delete-ota-updates-title": "Jste si jisti, že chcete odstranit { count, plural, 1 {1 OTA aktualizaci} other {# OTA aktualizací} }?", "delete-ota-updates-title": "Jste si jisti, že chcete odstranit { count, plural, =1 {1 OTA aktualizaci} other {# OTA aktualizací} }?",
"description": "Popis", "description": "Popis",
"direct-url": "Přímá URL", "direct-url": "Přímá URL",
"direct-url-copied-message": "Přímá URL balíčku bylo zkopírována do schránky", "direct-url-copied-message": "Přímá URL balíčku bylo zkopírována do schránky",
@ -2292,7 +2292,7 @@
"package-type": "Typ balíčku", "package-type": "Typ balíčku",
"packages-repository": "Repozitář balíčku", "packages-repository": "Repozitář balíčku",
"search": "Vyhledat balíčky", "search": "Vyhledat balíčky",
"selected-package": "Vybráno { count, plural, 1 {1 balíčků} other {# balíčků} }", "selected-package": "Vybráno { count, plural, =1 {1 balíčků} other {# balíčků} }",
"title": "Název", "title": "Název",
"title-required": "Název je povinný.", "title-required": "Název je povinný.",
"types": { "types": {
@ -2328,7 +2328,7 @@
}, },
"from-relations": "Odchozí vztahy", "from-relations": "Odchozí vztahy",
"to-relations": "Příchozí vztahy", "to-relations": "Příchozí vztahy",
"selected-relations": "Vybráno { count, plural, 1 {1 vztahů} other {# vztahů} }", "selected-relations": "Vybráno { count, plural, =1 {1 vztahů} other {# vztahů} }",
"type": "Typ", "type": "Typ",
"to-entity-type": "K typ entity", "to-entity-type": "K typ entity",
"to-entity-name": "K název entity", "to-entity-name": "K název entity",
@ -2344,11 +2344,11 @@
"edit": "Editovat vztah", "edit": "Editovat vztah",
"delete-to-relation-title": "Jste si jisti, že chcete smazat vztah k entitě '{{entityName}}'?", "delete-to-relation-title": "Jste si jisti, že chcete smazat vztah k entitě '{{entityName}}'?",
"delete-to-relation-text": "Buďte opatrní, protože po potvrzení bude vtah entity '{{entityName}}' k aktuální entitě zrušen.", "delete-to-relation-text": "Buďte opatrní, protože po potvrzení bude vtah entity '{{entityName}}' k aktuální entitě zrušen.",
"delete-to-relations-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 vztah} other {# vztahů} }?", "delete-to-relations-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 vztah} other {# vztahů} }?",
"delete-to-relations-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané vztahy odstraněny a vztah odpovídajících entit k aktuální entitě bude zrušen.", "delete-to-relations-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané vztahy odstraněny a vztah odpovídajících entit k aktuální entitě bude zrušen.",
"delete-from-relation-title": "Jste si jisti, že chcete smazat vztah z entity '{{entityName}}'?", "delete-from-relation-title": "Jste si jisti, že chcete smazat vztah z entity '{{entityName}}'?",
"delete-from-relation-text": "Buďte opatrní, protože po potvrzení bude zrušen vztah aktuální entity k entitě '{{entityName}}'.", "delete-from-relation-text": "Buďte opatrní, protože po potvrzení bude zrušen vztah aktuální entity k entitě '{{entityName}}'.",
"delete-from-relations-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 vztah} other {# vztahů} }?", "delete-from-relations-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 vztah} other {# vztahů} }?",
"delete-from-relations-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané vztahy odstraněny a bude zrušen vztah aktuální entity k odpovídajícím entitám.", "delete-from-relations-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané vztahy odstraněny a bude zrušen vztah aktuální entity k odpovídajícím entitám.",
"remove-relation-filter": "Odebrat filtr vztahů", "remove-relation-filter": "Odebrat filtr vztahů",
"add-relation-filter": "Přidat filtr vztahu", "add-relation-filter": "Přidat filtr vztahu",
@ -2364,9 +2364,9 @@
"delete": "Odstranit zdroj", "delete": "Odstranit zdroj",
"delete-resource-text": "Buďte opatrní, protože po potvrzení nebude možné zdroj obnovit.", "delete-resource-text": "Buďte opatrní, protože po potvrzení nebude možné zdroj obnovit.",
"delete-resource-title": "Jste si jisti, že chcete odstranit zdroj '{{resourceTitle}}'?", "delete-resource-title": "Jste si jisti, že chcete odstranit zdroj '{{resourceTitle}}'?",
"delete-resources-action-title": "Odstranit { count, plural, 1 {1 zdroj} other {# zdrojů} }", "delete-resources-action-title": "Odstranit { count, plural, =1 {1 zdroj} other {# zdrojů} }",
"delete-resources-text": "Vezměte prosím na vědomí, že vybrané zdroje, i když jsou použity v profilech zařízení, budou odstraněny.", "delete-resources-text": "Vezměte prosím na vědomí, že vybrané zdroje, i když jsou použity v profilech zařízení, budou odstraněny.",
"delete-resources-title": "Jste si jisti, že chcete odstranit { count, plural, 1 {1 zdroj} other {# zdrojů} }?", "delete-resources-title": "Jste si jisti, že chcete odstranit { count, plural, =1 {1 zdroj} other {# zdrojů} }?",
"download": "Stáhnout zdroj", "download": "Stáhnout zdroj",
"drop-file": "Přesuňte sem soubor zdroje nebo klikněte pro výběr souboru pro nahrání.", "drop-file": "Přesuňte sem soubor zdroje nebo klikněte pro výběr souboru pro nahrání.",
"empty": "Zdroj je prázdný", "empty": "Zdroj je prázdný",
@ -2380,7 +2380,7 @@
"resource-type": "Typ zdroje", "resource-type": "Typ zdroje",
"resources-library": "Knihovna zdrojů", "resources-library": "Knihovna zdrojů",
"search": "Vyhledat zdroje", "search": "Vyhledat zdroje",
"selected-resources": "Vybrán { count, plural, 1 {1 zdroj} other {# zdrojů} }", "selected-resources": "Vybrán { count, plural, =1 {1 zdroj} other {# zdrojů} }",
"system": "Systém", "system": "Systém",
"title": "Název", "title": "Název",
"title-required": "Název je povinný." "title-required": "Název je povinný."
@ -2399,8 +2399,8 @@
"set-root-rulechain-text": "Po potvrzení se stane řetěz pravidel základním a bude zajišťovat zpracování všech příchozích transportních zpráv.", "set-root-rulechain-text": "Po potvrzení se stane řetěz pravidel základním a bude zajišťovat zpracování všech příchozích transportních zpráv.",
"delete-rulechain-title": "Jste si jisti, že chcete smazat řetěz pravidel '{{ruleChainName}}'?", "delete-rulechain-title": "Jste si jisti, že chcete smazat řetěz pravidel '{{ruleChainName}}'?",
"delete-rulechain-text": "Buďte opatrní, protože po potvrzení nebude možné řetěz pravidel ani žádná související data obnovit.", "delete-rulechain-text": "Buďte opatrní, protože po potvrzení nebude možné řetěz pravidel ani žádná související data obnovit.",
"delete-rulechains-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 řetěz pravidel} other {# řetězů pravidel} }?", "delete-rulechains-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 řetěz pravidel} other {# řetězů pravidel} }?",
"delete-rulechains-action-title": "Smazat { count, plural, 1 {1 řetěz pravidel} other {# řetězy pravidel} }", "delete-rulechains-action-title": "Smazat { count, plural, =1 {1 řetěz pravidel} other {# řetězy pravidel} }",
"delete-rulechains-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané řetězy pravidel odstraněny a žádná související data nebude možné obnovit.", "delete-rulechains-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané řetězy pravidel odstraněny a žádná související data nebude možné obnovit.",
"add-rulechain-text": "Přidat nový řetěz pravidel", "add-rulechain-text": "Přidat nový řetěz pravidel",
"no-rulechains-text": "Žádné řetězy pravidel nebyly nalezeny", "no-rulechains-text": "Žádné řetězy pravidel nebyly nalezeny",
@ -2422,14 +2422,14 @@
"management": "Správa pravidel", "management": "Správa pravidel",
"debug-mode": "Režim ladění", "debug-mode": "Režim ladění",
"search": "Vyhledat řetězy pravidel", "search": "Vyhledat řetězy pravidel",
"selected-rulechains": "Vybráno { count, plural, 1 {1 řetězů pravidel} other {# řetězů pravidel} }", "selected-rulechains": "Vybráno { count, plural, =1 {1 řetězů pravidel} other {# řetězů pravidel} }",
"open-rulechain": "Otevřít řetěz pravidel", "open-rulechain": "Otevřít řetěz pravidel",
"assign-new-rulechain": "Přiřadit nový řetěz pravidel", "assign-new-rulechain": "Přiřadit nový řetěz pravidel",
"edge-template-root": "Hlavní šablona", "edge-template-root": "Hlavní šablona",
"assign-to-edge": "Přiřadit k edge", "assign-to-edge": "Přiřadit k edge",
"edge-rulechain": "Řetěz pravidel edge", "edge-rulechain": "Řetěz pravidel edge",
"unassign-rulechain-from-edge-text": "Po potvrzení bude řetěz pravidel odebrán a nebude pro edge dostupný.", "unassign-rulechain-from-edge-text": "Po potvrzení bude řetěz pravidel odebrán a nebude pro edge dostupný.",
"unassign-rulechains-from-edge-title": "Jste si jisti, že chcete odebrat { count, plural, 1 {1 řetěz pravidel} other {# řetězů pravidel} }?", "unassign-rulechains-from-edge-title": "Jste si jisti, že chcete odebrat { count, plural, =1 {1 řetěz pravidel} other {# řetězů pravidel} }?",
"unassign-rulechains-from-edge-text": "Po potvrzení budou všechny vybrané řetězy pravidelodebrány a nedbuou pro edge dostupné.", "unassign-rulechains-from-edge-text": "Po potvrzení budou všechny vybrané řetězy pravidelodebrány a nedbuou pro edge dostupné.",
"assign-rulechain-to-edge-title": "Přiřadit řetěz(y) pravidel k edge", "assign-rulechain-to-edge-title": "Přiřadit řetěz(y) pravidel k edge",
"assign-rulechain-to-edge-text": "Vyberte prosím řetězy pravidel, které mají být přiřazeny k edge", "assign-rulechain-to-edge-text": "Vyberte prosím řetězy pravidel, které mají být přiřazeny k edge",
@ -2535,8 +2535,8 @@
"tenant-details": "Detail tenanta", "tenant-details": "Detail tenanta",
"delete-tenant-title": "Jste si jisti, že chcete smazat tenanta '{{tenantTitle}}'?", "delete-tenant-title": "Jste si jisti, že chcete smazat tenanta '{{tenantTitle}}'?",
"delete-tenant-text": "Buďte opatrní, protože po potvrzení nebude možné tenanta ani žádná související data obnovit.", "delete-tenant-text": "Buďte opatrní, protože po potvrzení nebude možné tenanta ani žádná související data obnovit.",
"delete-tenants-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 tenanta} other {# tenantů} }?", "delete-tenants-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 tenanta} other {# tenantů} }?",
"delete-tenants-action-title": "Smazat { count, plural, 1 {1 tenanta} other {# tenantů} }", "delete-tenants-action-title": "Smazat { count, plural, =1 {1 tenanta} other {# tenantů} }",
"delete-tenants-text": "Buďte opatrní, protože po potvrzení budou všichni vybraní tenanti odstraněni a žádná související data nebude možné obnovit.", "delete-tenants-text": "Buďte opatrní, protože po potvrzení budou všichni vybraní tenanti odstraněni a žádná související data nebude možné obnovit.",
"title": "Název", "title": "Název",
"title-required": "Název je povinný.", "title-required": "Název je povinný.",
@ -2549,7 +2549,7 @@
"no-tenants-matching": "Žádní tenanti odpovídající '{{entity}}' nebyli nalezeni.", "no-tenants-matching": "Žádní tenanti odpovídající '{{entity}}' nebyli nalezeni.",
"tenant-required": "Tenant je povinný", "tenant-required": "Tenant je povinný",
"search": "Vyhledat tenanty", "search": "Vyhledat tenanty",
"selected-tenants": "Vybráno { count, plural, 1 {1 tenantů} other {# tenantů} }", "selected-tenants": "Vybráno { count, plural, =1 {1 tenantů} other {# tenantů} }",
"isolated-tb-rule-engine": "Zpracování v izolovaném kontejneru ThingsBoard Rule Engine", "isolated-tb-rule-engine": "Zpracování v izolovaném kontejneru ThingsBoard Rule Engine",
"isolated-tb-rule-engine-details": "Vyžaduje samostatnou mikroslužbu(y) pro každého izolovaného tenanta" "isolated-tb-rule-engine-details": "Vyžaduje samostatnou mikroslužbu(y) pro každého izolovaného tenanta"
}, },
@ -2561,7 +2561,7 @@
"tenant-profile-details": "Detail profilu tenanta", "tenant-profile-details": "Detail profilu tenanta",
"no-tenant-profiles-text": "Nebyly nalezeny žádné profily tenantů", "no-tenant-profiles-text": "Nebyly nalezeny žádné profily tenantů",
"search": "Vyhledat profily tenantů", "search": "Vyhledat profily tenantů",
"selected-tenant-profiles": "Vybráno { count, plural, 1 {1 profilů tenantů} other {# profilů tenantů} }", "selected-tenant-profiles": "Vybráno { count, plural, =1 {1 profilů tenantů} other {# profilů tenantů} }",
"no-tenant-profiles-matching": "Žádné profily tenantů odpovídající '{{entity}}' nebyly nalezeny.", "no-tenant-profiles-matching": "Žádné profily tenantů odpovídající '{{entity}}' nebyly nalezeny.",
"tenant-profile-required": "Profil tenanta je povinný", "tenant-profile-required": "Profil tenanta je povinný",
"idCopiedMessage": "Id profilu tenanta bylo zkopírováno do schránky", "idCopiedMessage": "Id profilu tenanta bylo zkopírováno do schránky",
@ -2576,7 +2576,7 @@
"default": "Defaultní", "default": "Defaultní",
"delete-tenant-profile-title": "Jste si jisti, že chcete smazat profil tenanta '{{tenantProfileName}}'?", "delete-tenant-profile-title": "Jste si jisti, že chcete smazat profil tenanta '{{tenantProfileName}}'?",
"delete-tenant-profile-text": "Buďte opatrní, protože po potvrzení nebude možné profil tenanta ani žádná související data obnovit.", "delete-tenant-profile-text": "Buďte opatrní, protože po potvrzení nebude možné profil tenanta ani žádná související data obnovit.",
"delete-tenant-profiles-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 profil tenanta} other {# profilů tenanta} }?", "delete-tenant-profiles-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 profil tenanta} other {# profilů tenanta} }?",
"delete-tenant-profiles-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané profily tenantů odstraněny a žádná související data nebude možné obnovit.", "delete-tenant-profiles-text": "Buďte opatrní, protože po potvrzení budou všechny vybrané profily tenantů odstraněny a žádná související data nebude možné obnovit.",
"set-default-tenant-profile-title": "Jste si jisti, že chcete učinit profil tenanta '{{tenantProfileName}}' defaultním?", "set-default-tenant-profile-title": "Jste si jisti, že chcete učinit profil tenanta '{{tenantProfileName}}' defaultním?",
"set-default-tenant-profile-text": "Po potvrzení bude profil tenanta označen jako defaultní a bude použit pro nové tenanty bez specifikovaného profilu.", "set-default-tenant-profile-text": "Po potvrzení bude profil tenanta označen jako defaultní a bude použit pro nové tenanty bez specifikovaného profilu.",
@ -2656,10 +2656,10 @@
"max-created-alarms-range": "Maximální počet vytvořených alarmů nemůže být záporný" "max-created-alarms-range": "Maximální počet vytvořených alarmů nemůže být záporný"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 vteřina} other {# vteřin} }", "seconds-interval": "{ seconds, plural, =1 {1 vteřina} other {# vteřin} }",
"minutes-interval": "{ minutes, plural, 1 {1 minuta} other {# minut} }", "minutes-interval": "{ minutes, plural, =1 {1 minuta} other {# minut} }",
"hours-interval": "{ hours, plural, 1 {1 hodina} other {# hodin} }", "hours-interval": "{ hours, plural, =1 {1 hodina} other {# hodin} }",
"days-interval": "{ days, plural, 1 {1 den} other {# dnů} }", "days-interval": "{ days, plural, =1 {1 den} other {# dnů} }",
"days": "Dny", "days": "Dny",
"hours": "Hodiny", "hours": "Hodiny",
"minutes": "Minuty", "minutes": "Minuty",
@ -2693,10 +2693,10 @@
"days": "Dny" "days": "Dny"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { den } other {# dnů } }", "days": "{ days, plural, =1 { den } other {# dnů } }",
"hours": "{ hours, plural, 0 { hodina } 1 {1 hodina } other {# hodin } }", "hours": "{ hours, plural, =0 { hodina } =1 {1 hodina } other {# hodin } }",
"minutes": "{ minutes, plural, 0 { minuta } 1 {1 minuta } other {# minut } }", "minutes": "{ minutes, plural, =0 { minuta } =1 {1 minuta } other {# minut } }",
"seconds": "{ seconds, plural, 0 { vteřina } 1 {1 vteřina } other {# vteřin } }", "seconds": "{ seconds, plural, =0 { vteřina } =1 {1 vteřina } other {# vteřin } }",
"realtime": "V reálném čase", "realtime": "V reálném čase",
"history": "Historie", "history": "Historie",
"last-prefix": "poslední", "last-prefix": "poslední",
@ -2724,8 +2724,8 @@
"user-details": "Detail uživatele", "user-details": "Detail uživatele",
"delete-user-title": "Jste si jisti, že chcete smazat uživatele '{{userEmail}}'?", "delete-user-title": "Jste si jisti, že chcete smazat uživatele '{{userEmail}}'?",
"delete-user-text": "Buďte opatrní, protože po potvrzení nebude možné uživatele ani žádná související data obnovit.", "delete-user-text": "Buďte opatrní, protože po potvrzení nebude možné uživatele ani žádná související data obnovit.",
"delete-users-title": "Jste si jisti, že chcete smazat { count, plural, 1 {1 uživatele} other {# uživatele} }?", "delete-users-title": "Jste si jisti, že chcete smazat { count, plural, =1 {1 uživatele} other {# uživatele} }?",
"delete-users-action-title": "Smazat { count, plural, 1 {1 uživatele} other {# uživatele} }", "delete-users-action-title": "Smazat { count, plural, =1 {1 uživatele} other {# uživatele} }",
"delete-users-text": "Buďte opatrní, protože po potvrzení budou všichni vybraní uživatelé odstraněni a žádná související data nebude možné obnovit.", "delete-users-text": "Buďte opatrní, protože po potvrzení budou všichni vybraní uživatelé odstraněni a žádná související data nebude možné obnovit.",
"activation-email-sent-message": "Aktivační email byl úspěšně odeslán!", "activation-email-sent-message": "Aktivační email byl úspěšně odeslán!",
"resend-activation": "Znovu poslat aktivační email", "resend-activation": "Znovu poslat aktivační email",
@ -2751,7 +2751,7 @@
"login-as-tenant-admin": "Přihlásit se jako administrátor tenanta", "login-as-tenant-admin": "Přihlásit se jako administrátor tenanta",
"login-as-customer-user": "Přihlásit se jako uživatel zákazníka", "login-as-customer-user": "Přihlásit se jako uživatel zákazníka",
"search": "Vyhledat uživatele", "search": "Vyhledat uživatele",
"selected-users": "Vybráno { count, plural, 1 {1 uživatelů} other {# uživatelů} }", "selected-users": "Vybráno { count, plural, =1 {1 uživatelů} other {# uživatelů} }",
"disable-account": "Zakázat uživatelský účet", "disable-account": "Zakázat uživatelský účet",
"enable-account": "Povolit uživatelský účet", "enable-account": "Povolit uživatelský účet",
"enable-account-message": "Uživatelský účet byl úspěšně povolen!", "enable-account-message": "Uživatelský účet byl úspěšně povolen!",
@ -2892,8 +2892,8 @@
"widgets-bundle-details": "Detail kategorie widgetů", "widgets-bundle-details": "Detail kategorie widgetů",
"delete-widgets-bundle-title": "Jste si jisti, že chcete smazat kategorii widgetů '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Jste si jisti, že chcete smazat kategorii widgetů '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Buďte opatrní, po potvrzení nebude možné kategorii widgetů ani žádná související data obnovit.", "delete-widgets-bundle-text": "Buďte opatrní, po potvrzení nebude možné kategorii widgetů ani žádná související data obnovit.",
"delete-widgets-bundles-title": "Jste si jisti, že chcete odstranit { count, plural, 1 {1 kategorii widgetů} other {# kategorií widgetů} }?", "delete-widgets-bundles-title": "Jste si jisti, že chcete odstranit { count, plural, =1 {1 kategorii widgetů} other {# kategorií widgetů} }?",
"delete-widgets-bundles-action-title": "Smazat { count, plural, 1 {1 kategorii widgetů} other {# kategorií widgetů} }", "delete-widgets-bundles-action-title": "Smazat { count, plural, =1 {1 kategorii widgetů} other {# kategorií widgetů} }",
"delete-widgets-bundles-text": "Buďte opatrní, po potvrzení budou všechny vybrané kategorie widgetů odstraněny a žádná související data nebude možné obnovit.", "delete-widgets-bundles-text": "Buďte opatrní, po potvrzení budou všechny vybrané kategorie widgetů odstraněny a žádná související data nebude možné obnovit.",
"no-widgets-bundles-matching": "Žádné kategorie widgetů odpovídající '{{widgetsBundle}}' nebyly nalezeny.", "no-widgets-bundles-matching": "Žádné kategorie widgetů odpovídající '{{widgetsBundle}}' nebyly nalezeny.",
"widgets-bundle-required": "Kategorie widgetů je povinná.", "widgets-bundle-required": "Kategorie widgetů je povinná.",
@ -2905,7 +2905,7 @@
"widgets-bundle-file": "Soubor kategorie widgetů", "widgets-bundle-file": "Soubor kategorie widgetů",
"invalid-widgets-bundle-file-error": "Kategorii widgetů nebylo možné importovat: Neplatná datová struktura kategorie widgetů.", "invalid-widgets-bundle-file-error": "Kategorii widgetů nebylo možné importovat: Neplatná datová struktura kategorie widgetů.",
"search": "Vyhledat kategorie widgetů", "search": "Vyhledat kategorie widgetů",
"selected-widgets-bundles": "Vybráno { count, plural, 1 {1 kategorií widgetů} other {# kategorií widgetů} }", "selected-widgets-bundles": "Vybráno { count, plural, =1 {1 kategorií widgetů} other {# kategorií widgetů} }",
"open-widgets-bundle": "Otevřít kategorii widgetů", "open-widgets-bundle": "Otevřít kategorii widgetů",
"loading-widgets-bundles": "Nahrávám kategorie widgetů..." "loading-widgets-bundles": "Nahrávám kategorie widgetů..."
}, },
@ -2935,7 +2935,7 @@
"display-timewindow": "Zobrazit časové okno", "display-timewindow": "Zobrazit časové okno",
"display-legend": "Zobrazit legendu", "display-legend": "Zobrazit legendu",
"datasources": "Datové zdroje", "datasources": "Datové zdroje",
"maximum-datasources": "Maximum { count, plural, 1 {1 datový zdroj je povolen.} other {# datových zdrojů je povoleno} }", "maximum-datasources": "Maximum { count, plural, =1 {1 datový zdroj je povolen.} other {# datových zdrojů je povoleno} }",
"datasource-type": "Typ", "datasource-type": "Typ",
"datasource-parameters": "Parametry", "datasource-parameters": "Parametry",
"remove-datasource": "Odebrat datový zdroj", "remove-datasource": "Odebrat datový zdroj",

16
ui-ngx/src/assets/locale/locale.constant-da_DK.json

@ -3165,10 +3165,10 @@
"max-sms-range": "Maks. antal sendte SMS'er kan ikke være negativt" "max-sms-range": "Maks. antal sendte SMS'er kan ikke være negativt"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 sekund} other {# sekunder} }", "seconds-interval": "{ seconds, plural, =1 {1 sekund} other {# sekunder} }",
"minutes-interval": "{ minutes, plural, 1 {1 minut} other {# minutter} }", "minutes-interval": "{ minutes, plural, =1 {1 minut} other {# minutter} }",
"hours-interval": "{ hours, plural, 1 {1 time} other {# timer} }", "hours-interval": "{ hours, plural, =1 {1 time} other {# timer} }",
"days-interval": "{ days, plural, 1 {1 dag} other {# dage} }", "days-interval": "{ days, plural, =1 {1 dag} other {# dage} }",
"days": "Dage", "days": "Dage",
"hours": "Timer", "hours": "Timer",
"minutes": "Minutter", "minutes": "Minutter",
@ -3202,10 +3202,10 @@
"days": "Dage" "days": "Dage"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { dag } other {# dage } }", "days": "{ days, plural, =1 { dag } other {# dage } }",
"hours": "{ hours, plural, 0 { time } 1 {1 time } other {# timer } }", "hours": "{ hours, plural, =0 { time } =1 {1 time } other {# timer } }",
"minutes": "{ minutes, plural, 0 { minut } 1 {1 minut } other {# minutter } }", "minutes": "{ minutes, plural, =0 { minut } =1 {1 minut } other {# minutter } }",
"seconds": "{ seconds, plural, 0 { sekund } 1 {1 sekund } other {# sekunder } }", "seconds": "{ seconds, plural, =0 { sekund } =1 {1 sekund } other {# sekunder } }",
"realtime": "Realtid", "realtime": "Realtid",
"history": "Historie", "history": "Historie",
"last-prefix": "sidst", "last-prefix": "sidst",

162
ui-ngx/src/assets/locale/locale.constant-de_DE.json

@ -184,17 +184,17 @@
"acknowledge": "Bestätigen", "acknowledge": "Bestätigen",
"clear": "Löschen", "clear": "Löschen",
"search": "Alarme suchen", "search": "Alarme suchen",
"selected-alarms": "{ count, plural, 1 {1 Alarm} other {# Alarme} } ausgewählt", "selected-alarms": "{ count, plural, =1 {1 Alarm} other {# Alarme} } ausgewählt",
"no-data": "Keine Daten zum Anzeigen", "no-data": "Keine Daten zum Anzeigen",
"polling-interval": "Alarmabfrageintervall (sec)", "polling-interval": "Alarmabfrageintervall (sec)",
"polling-interval-required": "Alarmabfrageintervall ist erforderlich.", "polling-interval-required": "Alarmabfrageintervall ist erforderlich.",
"min-polling-interval-message": "Mindestens 1 sec Abrufintervall ist zulässig.", "min-polling-interval-message": "Mindestens 1 sec Abrufintervall ist zulässig.",
"aknowledge-alarms-title": "{ count, plural, 1 {1 Alarm} other {# Alarme} } bestätigen", "aknowledge-alarms-title": "{ count, plural, =1 {1 Alarm} other {# Alarme} } bestätigen",
"aknowledge-alarms-text": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Alarm} other {# Alarme} } bestätigen möchten?", "aknowledge-alarms-text": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Alarm} other {# Alarme} } bestätigen möchten?",
"aknowledge-alarm-title": "Alarm bestätigen", "aknowledge-alarm-title": "Alarm bestätigen",
"aknowledge-alarm-text": "Möchten Sie den Alarm wirklich bestätigen?", "aknowledge-alarm-text": "Möchten Sie den Alarm wirklich bestätigen?",
"clear-alarms-title": "{ count, plural, 1 {1 Alarm} other {# Alarme} } löschen", "clear-alarms-title": "{ count, plural, =1 {1 Alarm} other {# Alarme} } löschen",
"clear-alarms-text": "Möchten Sie wirklich { count, plural, 1 {1 Alarm} other {# Alarme} } löschen?", "clear-alarms-text": "Möchten Sie wirklich { count, plural, =1 {1 Alarm} other {# Alarme} } löschen?",
"clear-alarm-title": "Alarm löschen", "clear-alarm-title": "Alarm löschen",
"clear-alarm-text": "Möchten Sie den Alarm wirklich löschen?", "clear-alarm-text": "Möchten Sie den Alarm wirklich löschen?",
"alarm-status-filter": "Alarm Status Filter" "alarm-status-filter": "Alarm Status Filter"
@ -285,15 +285,15 @@
"add-asset-text": "Neues Objekt hinzufügen", "add-asset-text": "Neues Objekt hinzufügen",
"asset-details": "Objektdetails", "asset-details": "Objektdetails",
"assign-assets": "Objekte zuordnen", "assign-assets": "Objekte zuordnen",
"assign-assets-text": "Kunden { count, plural, 1 {1 Objekt} other {# Objekte} } zuordnen", "assign-assets-text": "Kunden { count, plural, =1 {1 Objekt} other {# Objekte} } zuordnen",
"delete-assets": "Objekte löschen", "delete-assets": "Objekte löschen",
"unassign-assets": "Objektzuordnungen aufheben", "unassign-assets": "Objektzuordnungen aufheben",
"unassign-assets-action-title": "Kunden { count, plural, 1 {1 Objektzuordnung} other {# Objektzuordnungen} } aufheben", "unassign-assets-action-title": "Kunden { count, plural, =1 {1 Objektzuordnung} other {# Objektzuordnungen} } aufheben",
"assign-new-asset": "Neues Objekt zuordnen", "assign-new-asset": "Neues Objekt zuordnen",
"delete-asset-title": "Sind Sie sicher, dass Sie das Objekt '{{assetName}}' löschen möchten?", "delete-asset-title": "Sind Sie sicher, dass Sie das Objekt '{{assetName}}' löschen möchten?",
"delete-asset-text": "Vorsicht, nach Bestätigung wird das Objekt und alle zugehörigen Daten nicht wiederherstellbar gelöscht.", "delete-asset-text": "Vorsicht, nach Bestätigung wird das Objekt und alle zugehörigen Daten nicht wiederherstellbar gelöscht.",
"delete-assets-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Objekt} other {# Objekte} } löschen möchten?", "delete-assets-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Objekt} other {# Objekte} } löschen möchten?",
"delete-assets-action-title": "{ count, plural, 1 {1 Objekt} other {# Objekte} } löschen", "delete-assets-action-title": "{ count, plural, =1 {1 Objekt} other {# Objekte} } löschen",
"delete-assets-text": "Vorsicht, nach Bestätigung werden die ausgewählten Objekte und alle zugehörigen Daten nicht wiederherstellbar gelöscht", "delete-assets-text": "Vorsicht, nach Bestätigung werden die ausgewählten Objekte und alle zugehörigen Daten nicht wiederherstellbar gelöscht",
"make-public-asset-title": "Sind Sie sicher, dass Sie das Objekt '{{assetName}}' öffentlich machen möchten?", "make-public-asset-title": "Sind Sie sicher, dass Sie das Objekt '{{assetName}}' öffentlich machen möchten?",
"make-public-asset-text": "Nach Bestätigung wird das Objekt und alle zugehörigen Daten anderen zugänglich gemacht.", "make-public-asset-text": "Nach Bestätigung wird das Objekt und alle zugehörigen Daten anderen zugänglich gemacht.",
@ -302,7 +302,7 @@
"unassign-asset-title": "Sind Sie sicher, dass Sie die Zuordnung für das Objekt '{{assetName}}' aufheben möchten?", "unassign-asset-title": "Sind Sie sicher, dass Sie die Zuordnung für das Objekt '{{assetName}}' aufheben möchten?",
"unassign-asset-text": "Nach Bestätigung wird die Zuordnung des Objekts aufgehoben und es ist für den Kunden nicht mehr zugänglich.", "unassign-asset-text": "Nach Bestätigung wird die Zuordnung des Objekts aufgehoben und es ist für den Kunden nicht mehr zugänglich.",
"unassign-asset": "Zuordnung des Objekts aufheben", "unassign-asset": "Zuordnung des Objekts aufheben",
"unassign-assets-title": "Möchten Sie die Zuordnung von { count, plural, 1 {1 Objekt} other {# Objekte} } aufheben?", "unassign-assets-title": "Möchten Sie die Zuordnung von { count, plural, =1 {1 Objekt} other {# Objekte} } aufheben?",
"unassign-assets-text": "Nach Bestätigung wird die Zuordnung der ausgewählten Objekte aufgehoben und sie sind für den Kunden nicht mehr zugänglich.", "unassign-assets-text": "Nach Bestätigung wird die Zuordnung der ausgewählten Objekte aufgehoben und sie sind für den Kunden nicht mehr zugänglich.",
"copyId": "Objekt-ID kopieren", "copyId": "Objekt-ID kopieren",
"idCopiedMessage": "Objekt-ID wurde in die Zwischenablage kopiert", "idCopiedMessage": "Objekt-ID wurde in die Zwischenablage kopiert",
@ -316,7 +316,7 @@
"unassign-asset-from-edge": "Objekte von Rand entfernen", "unassign-asset-from-edge": "Objekte von Rand entfernen",
"unassign-asset-from-edge-title": "Sind Sie sicher, dass Sie die Zuordnung für das Objekt '{{assetName}}' aufheben möchten?", "unassign-asset-from-edge-title": "Sind Sie sicher, dass Sie die Zuordnung für das Objekt '{{assetName}}' aufheben möchten?",
"unassign-asset-from-edge-text": "Nach Bestätigung wird die Zuordnung des Objekts aufgehoben und es ist für den Kunden nicht mehr zugänglich.", "unassign-asset-from-edge-text": "Nach Bestätigung wird die Zuordnung des Objekts aufgehoben und es ist für den Kunden nicht mehr zugänglich.",
"unassign-assets-from-edge-action-title": "Rand { count, plural, 1 {1 Objektzuordnung} other {# Objektzuordnungen} } aufheben", "unassign-assets-from-edge-action-title": "Rand { count, plural, =1 {1 Objektzuordnung} other {# Objektzuordnungen} } aufheben",
"unassign-assets-from-edge-title": "Sind Sie sicher, dass Sie die Zuordnung für das Objekt '{{assetName}}' wirklich aufheben möchten?", "unassign-assets-from-edge-title": "Sind Sie sicher, dass Sie die Zuordnung für das Objekt '{{assetName}}' wirklich aufheben möchten?",
"unassign-assets-from-edge-text": "Nach der Bestätigung werden alle ausgewählten Objekte nicht zugewiesen und sind für den Rand nicht zugänglich." "unassign-assets-from-edge-text": "Nach der Bestätigung werden alle ausgewählten Objekte nicht zugewiesen und sind für den Rand nicht zugänglich."
}, },
@ -334,7 +334,7 @@
"key-required": "Eigenschaftsschlüssel ist erforderlich.", "key-required": "Eigenschaftsschlüssel ist erforderlich.",
"value": "Wert", "value": "Wert",
"value-required": "Eigenschaftswert ist erforderlich.", "value-required": "Eigenschaftswert ist erforderlich.",
"delete-attributes-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Eigenschaft} other {# Eigenschaften} } löschen möchten?", "delete-attributes-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Eigenschaft} other {# Eigenschaften} } löschen möchten?",
"delete-attributes-text": "Seien Sie vorsichtig, nach der Bestätigung werden alle ausgewählten Eigenschaften entfernt.", "delete-attributes-text": "Seien Sie vorsichtig, nach der Bestätigung werden alle ausgewählten Eigenschaften entfernt.",
"delete-attributes": "Eigenschaften löschen", "delete-attributes": "Eigenschaften löschen",
"enter-attribute-value": "Geben Sie den Eigenschaftswert ein", "enter-attribute-value": "Geben Sie den Eigenschaftswert ein",
@ -344,8 +344,8 @@
"prev-widget": "Vorheriges Widget", "prev-widget": "Vorheriges Widget",
"add-to-dashboard": "Zum Dashboard hinzufügen", "add-to-dashboard": "Zum Dashboard hinzufügen",
"add-widget-to-dashboard": "Widget zum Dashboard hinzufügen", "add-widget-to-dashboard": "Widget zum Dashboard hinzufügen",
"selected-attributes": "{ count, plural, 1 {1 Eigenschaft} other {# Eigenschaften} } ausgewählt", "selected-attributes": "{ count, plural, =1 {1 Eigenschaft} other {# Eigenschaften} } ausgewählt",
"selected-telemetry": "{ count, plural, 1 {1 Telemetrieeinheit } other {# Telemetrieeinheiten} } ausgewählt" "selected-telemetry": "{ count, plural, =1 {1 Telemetrieeinheit } other {# Telemetrieeinheiten} } ausgewählt"
}, },
"audit-log": { "audit-log": {
"audit": "Audit", "audit": "Audit",
@ -449,8 +449,8 @@
"customer-details": "Kundendetails", "customer-details": "Kundendetails",
"delete-customer-title": "Sind Sie sicher, dass der Kunde '{{customerTitle}}' gelöscht werden soll?", "delete-customer-title": "Sind Sie sicher, dass der Kunde '{{customerTitle}}' gelöscht werden soll?",
"delete-customer-text": "Vorsicht, nach Bestätigung wird der Kunde und alle zugehörigen Daten nicht wiederherstellbar gelöscht.", "delete-customer-text": "Vorsicht, nach Bestätigung wird der Kunde und alle zugehörigen Daten nicht wiederherstellbar gelöscht.",
"delete-customers-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Kunde} other {# Kunden} } löschen möchten?", "delete-customers-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Kunde} other {# Kunden} } löschen möchten?",
"delete-customers-action-title": "{ count, plural, 1 {1 Kunde} other {# Kunden} } löschen", "delete-customers-action-title": "{ count, plural, =1 {1 Kunde} other {# Kunden} } löschen",
"delete-customers-text": "Seien Sie vorsichtig, nach der Bestätigung werden alle ausgewählten Kunden und alle zugehörigen Daten nicht wiederherstellbar gelöscht.", "delete-customers-text": "Seien Sie vorsichtig, nach der Bestätigung werden alle ausgewählten Kunden und alle zugehörigen Daten nicht wiederherstellbar gelöscht.",
"manage-users": "User verwalten", "manage-users": "User verwalten",
"manage-assets": "Objekte verwalten", "manage-assets": "Objekte verwalten",
@ -510,20 +510,20 @@
"add-dashboard-text": "Neues Dashboard hinzufügen", "add-dashboard-text": "Neues Dashboard hinzufügen",
"assign-dashboards": "Dashboards zuweisen", "assign-dashboards": "Dashboards zuweisen",
"assign-new-dashboard": "Neues Dashboard zuweisen", "assign-new-dashboard": "Neues Dashboard zuweisen",
"assign-dashboards-text": "Zuordnen { count, plural, 1 {1 Dashboard} other {# Dashboards} } zu Kunden", "assign-dashboards-text": "Zuordnen { count, plural, =1 {1 Dashboard} other {# Dashboards} } zu Kunden",
"unassign-dashboards-action-text": "Zuordnung { count, plural, 1 {1 Dashboard} other {# Dashboards} } vom Kunden aufheben", "unassign-dashboards-action-text": "Zuordnung { count, plural, =1 {1 Dashboard} other {# Dashboards} } vom Kunden aufheben",
"delete-dashboards": "Dashboards löschen", "delete-dashboards": "Dashboards löschen",
"unassign-dashboards": "Zuordnung von Dashboards aufheben", "unassign-dashboards": "Zuordnung von Dashboards aufheben",
"unassign-dashboards-action-title": "Zuordnung { count, plural, 1 {1 Dashboard} other {# Dashboards} } vom Kunden aufheben", "unassign-dashboards-action-title": "Zuordnung { count, plural, =1 {1 Dashboard} other {# Dashboards} } vom Kunden aufheben",
"delete-dashboard-title": "Sind Sie sicher, dass Sie das Dashboard '{{dashboardTitle}}' löschen möchten?", "delete-dashboard-title": "Sind Sie sicher, dass Sie das Dashboard '{{dashboardTitle}}' löschen möchten?",
"delete-dashboard-text": "Vorsicht, nach Bestätigung werden das Dashboard und alle zugehörigen Daten nicht mehr wiederhergestellt.", "delete-dashboard-text": "Vorsicht, nach Bestätigung werden das Dashboard und alle zugehörigen Daten nicht mehr wiederhergestellt.",
"delete-dashboards-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Dashboard} other {# Dashboards} } löschen möchten?", "delete-dashboards-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Dashboard} other {# Dashboards} } löschen möchten?",
"delete-dashboards-action-title": "Löschen { count, plural, 1 {1 Dashboard} other {# Dashboards} }", "delete-dashboards-action-title": "Löschen { count, plural, =1 {1 Dashboard} other {# Dashboards} }",
"delete-dashboards-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Dashboards entfernt und alle zugehörigen Daten nicht mehr wiederhergestellt.", "delete-dashboards-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Dashboards entfernt und alle zugehörigen Daten nicht mehr wiederhergestellt.",
"unassign-dashboard-title": "Sind Sie sicher, dass Sie die Zuordnung zum Dashboard '{{dashboardTitle}}' aufheben möchten?", "unassign-dashboard-title": "Sind Sie sicher, dass Sie die Zuordnung zum Dashboard '{{dashboardTitle}}' aufheben möchten?",
"unassign-dashboard-text": "Nach der Bestätigung wird die Zuordnung des Dashboards aufgehoben und es ist für den Kunden nicht mehr zugänglich.", "unassign-dashboard-text": "Nach der Bestätigung wird die Zuordnung des Dashboards aufgehoben und es ist für den Kunden nicht mehr zugänglich.",
"unassign-dashboard": "Zuordnung zum Kunden aufheben", "unassign-dashboard": "Zuordnung zum Kunden aufheben",
"unassign-dashboards-title": "Sind Sie sicher, dass Sie die Zuordug aufheben möchten { count, plural, 1 {1 Dashboard} other {# Dashboards} }?", "unassign-dashboards-title": "Sind Sie sicher, dass Sie die Zuordug aufheben möchten { count, plural, =1 {1 Dashboard} other {# Dashboards} }?",
"unassign-dashboards-text": "Nach der Bestätigung wird die Zuordnung aller ausgewählten Dashboards aufgehoben und sie sind für den Kunden nicht mehr zugänglich.", "unassign-dashboards-text": "Nach der Bestätigung wird die Zuordnung aller ausgewählten Dashboards aufgehoben und sie sind für den Kunden nicht mehr zugänglich.",
"public-dashboard-title": "Dashboard wurde veröffentlicht", "public-dashboard-title": "Dashboard wurde veröffentlicht",
"public-dashboard-text": "Ihr Dashboard <b>{{dashboardTitle}}</b> ist jetzt öffentlich und über nächste Öffentlichkeit zugänglich <a href='{{publicLink}}' target='_blank'>link</a>:", "public-dashboard-text": "Ihr Dashboard <b>{{dashboardTitle}}</b> ist jetzt öffentlich und über nächste Öffentlichkeit zugänglich <a href='{{publicLink}}' target='_blank'>link</a>:",
@ -600,7 +600,7 @@
"manage-states": "Dashboard-Status verwalten", "manage-states": "Dashboard-Status verwalten",
"states": "Dashboard-Status", "states": "Dashboard-Status",
"search-states": "Dashboard-Status suchen", "search-states": "Dashboard-Status suchen",
"selected-states": "{ count, plural, 1 {1 dashboard state} other {# dashboard states} } ausgewählt", "selected-states": "{ count, plural, =1 {1 dashboard state} other {# dashboard states} } ausgewählt",
"edit-state": "Dashboard-Status bearbeiten", "edit-state": "Dashboard-Status bearbeiten",
"delete-state": "Dashboard-Status löschen", "delete-state": "Dashboard-Status löschen",
"add-state": "Dashboard-Status hinzufügen", "add-state": "Dashboard-Status hinzufügen",
@ -637,11 +637,11 @@
"alarm": "Alarmfelder", "alarm": "Alarmfelder",
"timeseries-required": "Entity-Zeitreihen sind erforderlich.", "timeseries-required": "Entity-Zeitreihen sind erforderlich.",
"timeseries-or-attributes-required": "Entity-Zeitreihen/Eigenschaften sind erforderlich.", "timeseries-or-attributes-required": "Entity-Zeitreihen/Eigenschaften sind erforderlich.",
"maximum-timeseries-or-attributes": "Maximum { count, plural, 1 {1 Zeitreihe/Eigenschaft ist erlaubt} other {# Zeitreihen/Eigenschaften sind erlaubt} }.", "maximum-timeseries-or-attributes": "Maximum { count, plural, =1 {1 Zeitreihe/Eigenschaft ist erlaubt} other {# Zeitreihen/Eigenschaften sind erlaubt} }.",
"alarm-fields-required": "Alarmfelder sind erforderlich.", "alarm-fields-required": "Alarmfelder sind erforderlich.",
"function-types": "Funktionsarten", "function-types": "Funktionsarten",
"function-types-required": "Funktionstypen sind erforderlich.", "function-types-required": "Funktionstypen sind erforderlich.",
"maximum-function-types": "Maximal { count, plural, 1 {1 Funktionstyp ist erlaubt} other {# Funktionstypen sind erlaubt} }.", "maximum-function-types": "Maximal { count, plural, =1 {1 Funktionstyp ist erlaubt} other {# Funktionstypen sind erlaubt} }.",
"time-description": "Zeitstempel des aktuellen Wertes;", "time-description": "Zeitstempel des aktuellen Wertes;",
"value-description": "Der aktuelle Wert;", "value-description": "Der aktuelle Wert;",
"prev-value-description": "Ergebnis des vorherigen Funktionsaufrufs;", "prev-value-description": "Ergebnis des vorherigen Funktionsaufrufs;",
@ -698,11 +698,11 @@
"manage-credentials": "Zugangsdaten verwalten", "manage-credentials": "Zugangsdaten verwalten",
"delete": "Gerät löschen", "delete": "Gerät löschen",
"assign-devices": "Gerät zuordnen", "assign-devices": "Gerät zuordnen",
"assign-devices-text": "{ count, plural, 1 {1 Gerät} other {# Geräte} } dem Kunden zuordnen", "assign-devices-text": "{ count, plural, =1 {1 Gerät} other {# Geräte} } dem Kunden zuordnen",
"delete-devices": "Geräte löschen", "delete-devices": "Geräte löschen",
"unassign-from-customer": "Zuordnung zum Kunden aufheben", "unassign-from-customer": "Zuordnung zum Kunden aufheben",
"unassign-devices": "Nicht zugeordnete Geräte", "unassign-devices": "Nicht zugeordnete Geräte",
"unassign-devices-action-title": "Zuordnung von { count, plural, 1 {1 Gerät} other {# Geräte} } zum Kunden aufheben", "unassign-devices-action-title": "Zuordnung von { count, plural, =1 {1 Gerät} other {# Geräte} } zum Kunden aufheben",
"assign-new-device": "Neues Gerät zuordnen", "assign-new-device": "Neues Gerät zuordnen",
"make-public-device-title": "Sind Sie sicher, dass Sie das Gerät '{{deviceName}}' öffentlich machen möchten?", "make-public-device-title": "Sind Sie sicher, dass Sie das Gerät '{{deviceName}}' öffentlich machen möchten?",
"make-public-device-text": "Nach der Bestätigung werden das Gerät und dessen Daten öffentlich und für andere zugänglich.", "make-public-device-text": "Nach der Bestätigung werden das Gerät und dessen Daten öffentlich und für andere zugänglich.",
@ -711,13 +711,13 @@
"view-credentials": "Zugangsdaten anzeigen", "view-credentials": "Zugangsdaten anzeigen",
"delete-device-title": "Möchten Sie das Gerät '{{deviceName}}' wirklich löschen?", "delete-device-title": "Möchten Sie das Gerät '{{deviceName}}' wirklich löschen?",
"delete-device-text": "Vorsicht, nach Bestätigung werden das Gerät und alle zugehörigen Daten nicht mehr wiederhergestellt.", "delete-device-text": "Vorsicht, nach Bestätigung werden das Gerät und alle zugehörigen Daten nicht mehr wiederhergestellt.",
"delete-devices-title": "Sind Sie sicher, dass Sie löschen möchten { count, plural, 1 {1 Gerät} other {# Geräte} }?", "delete-devices-title": "Sind Sie sicher, dass Sie löschen möchten { count, plural, =1 {1 Gerät} other {# Geräte} }?",
"delete-devices-action-title": "Löschen { count, plural, 1 {1 Gerät} other {# Geräte} }", "delete-devices-action-title": "Löschen { count, plural, =1 {1 Gerät} other {# Geräte} }",
"delete-devices-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Geräte entfernt und alle zugehörigen Daten werden nicht mehr wiederhergestellt.", "delete-devices-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Geräte entfernt und alle zugehörigen Daten werden nicht mehr wiederhergestellt.",
"unassign-device-title": "Sind Sie sicher, dass Sie die Zuordnung zum Gerät '{{deviceName}}' wirklich aufheben möchten?", "unassign-device-title": "Sind Sie sicher, dass Sie die Zuordnung zum Gerät '{{deviceName}}' wirklich aufheben möchten?",
"unassign-device-text": "Nach der Bestätigung ist das Gerät nicht zugeordnet und für den Kunden nicht zugänglich.", "unassign-device-text": "Nach der Bestätigung ist das Gerät nicht zugeordnet und für den Kunden nicht zugänglich.",
"unassign-device": "Nicht zugeordnete Geräte", "unassign-device": "Nicht zugeordnete Geräte",
"unassign-devices-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Gerät} other {# Geräte} } nicht mehr zuordnen möchten?", "unassign-devices-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Gerät} other {# Geräte} } nicht mehr zuordnen möchten?",
"unassign-devices-text": "Nach der Bestätigung werden alle ausgewählten Geräte nicht zugewiesen und sind für den Kunden nicht zugänglich.", "unassign-devices-text": "Nach der Bestätigung werden alle ausgewählten Geräte nicht zugewiesen und sind für den Kunden nicht zugänglich.",
"device-credentials": "Geräte Zugangsdaten", "device-credentials": "Geräte Zugangsdaten",
"credentials-type": "Art der Zugangsdaten", "credentials-type": "Art der Zugangsdaten",
@ -753,7 +753,7 @@
"assign-device-to-edge-text":"Bitte wählen Sie die Geräte aus, die Sie dem Rand zuordnen möchten", "assign-device-to-edge-text":"Bitte wählen Sie die Geräte aus, die Sie dem Rand zuordnen möchten",
"unassign-device-from-edge-title": "Sind Sie sicher, dass Sie die Zuordnung zum Gerät '{{deviceName}}' wirklich aufheben möchten?", "unassign-device-from-edge-title": "Sind Sie sicher, dass Sie die Zuordnung zum Gerät '{{deviceName}}' wirklich aufheben möchten?",
"unassign-device-from-edge-text": "Nach der Bestätigung ist das Gerät nicht zugeordnet und für den Kunden nicht zugänglich.", "unassign-device-from-edge-text": "Nach der Bestätigung ist das Gerät nicht zugeordnet und für den Kunden nicht zugänglich.",
"unassign-devices-from-edge-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Gerät} other {# Geräte} } nicht mehr zuordnen möchten?", "unassign-devices-from-edge-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Gerät} other {# Geräte} } nicht mehr zuordnen möchten?",
"unassign-devices-from-edge-text": "Nach der Bestätigung werden alle ausgewählten Geräte nicht zugewiesen und sind für den Rand nicht zugänglich." "unassign-devices-from-edge-text": "Nach der Bestätigung werden alle ausgewählten Geräte nicht zugewiesen und sind für den Rand nicht zugänglich."
}, },
"dialog": { "dialog": {
@ -772,7 +772,7 @@
"delete": "Rand löschen", "delete": "Rand löschen",
"delete-edge-title": "Möchten Sie des Rands wirklich löschen '{{edgeName}}'?", "delete-edge-title": "Möchten Sie des Rands wirklich löschen '{{edgeName}}'?",
"delete-edge-text": "Seien Sie vorsichtig, nach der Bestätigung werden der Rand und alle zugehörigen Daten nicht wiederhergestellt.", "delete-edge-text": "Seien Sie vorsichtig, nach der Bestätigung werden der Rand und alle zugehörigen Daten nicht wiederhergestellt.",
"delete-edges-title": "Sind Sie sicher, dass Sie die Rand löschen möchten { count, plural, 1 {1 Rand} other {# Rand} }?", "delete-edges-title": "Sind Sie sicher, dass Sie die Rand löschen möchten { count, plural, =1 {1 Rand} other {# Rand} }?",
"delete-edges-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Rand entfernt und alle zugehörigen Daten werden nicht wiederhergestellt.", "delete-edges-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Rand entfernt und alle zugehörigen Daten werden nicht wiederhergestellt.",
"name": "Name", "name": "Name",
"name-starts-with": "Der Kantenname beginnt mit", "name-starts-with": "Der Kantenname beginnt mit",
@ -799,7 +799,7 @@
"unassign-from-customer": "Kunden Zuordnung aufgehoben", "unassign-from-customer": "Kunden Zuordnung aufgehoben",
"unassign-edge-title": "Sind Sie sicher, dass Sie die Zuordnung zum Rand '{{edgeName}}' wirklich aufheben möchten?", "unassign-edge-title": "Sind Sie sicher, dass Sie die Zuordnung zum Rand '{{edgeName}}' wirklich aufheben möchten?",
"unassign-edge-text": "Nach der Bestätigung ist der Rand nicht zugeordnet und für den Kunden nicht zugänglich.", "unassign-edge-text": "Nach der Bestätigung ist der Rand nicht zugeordnet und für den Kunden nicht zugänglich.",
"unassign-edges-title": "Sind Sie sicher, dass Sie die Zuordnung aufheben möchten { count, plural, 1 {1 Rand} other {# Rand} }?", "unassign-edges-title": "Sind Sie sicher, dass Sie die Zuordnung aufheben möchten { count, plural, =1 {1 Rand} other {# Rand} }?",
"unassign-edges-text": "Nach der Bestätigung werden alle ausgewählten Kanten nicht zugewiesen und sind für den Kunden nicht zugänglich.", "unassign-edges-text": "Nach der Bestätigung werden alle ausgewählten Kanten nicht zugewiesen und sind für den Kunden nicht zugänglich.",
"make-public": "Rand öffentlich machen", "make-public": "Rand öffentlich machen",
"make-public-edge-title": "Sind Sie sicher, dass Sie der Rand '{{edgeName}}' öffentlich machen möchten?", "make-public-edge-title": "Sind Sie sicher, dass Sie der Rand '{{edgeName}}' öffentlich machen möchten?",
@ -832,7 +832,7 @@
"rulechain-templates": "Regelkettenvorlagen", "rulechain-templates": "Regelkettenvorlagen",
"rulechains": "Rand Regelketten", "rulechains": "Rand Regelketten",
"search": "Kanten durchsuchen", "search": "Kanten durchsuchen",
"selected-edges": "{count, plural, 1 {1 Rand} other {# Rand} } ausgewählt", "selected-edges": "{count, plural, =1 {1 Rand} other {# Rand} } ausgewählt",
"any-edge": "Beliebige Kante", "any-edge": "Beliebige Kante",
"no-edge-types-matching": "Es wurden keine Kantentypen gefunden, die mit '{{entitySubtype}}' übereinstimmen.", "no-edge-types-matching": "Es wurden keine Kantentypen gefunden, die mit '{{entitySubtype}}' übereinstimmen.",
"edge-type-list-empty": "Keine Kantentypen ausgewählt.", "edge-type-list-empty": "Keine Kantentypen ausgewählt.",
@ -930,59 +930,59 @@
"type-required": "Typ der Entität ist erforderlich.", "type-required": "Typ der Entität ist erforderlich.",
"type-device": "Gerät", "type-device": "Gerät",
"type-devices": "Geräte", "type-devices": "Geräte",
"list-of-devices": "{ count, plural, 1 {Ein Gerät} other {Liste von # Geräten} }", "list-of-devices": "{ count, plural, =1 {Ein Gerät} other {Liste von # Geräten} }",
"device-name-starts-with": "Geräte beginnend mit '{{prefix}}'", "device-name-starts-with": "Geräte beginnend mit '{{prefix}}'",
"type-asset": "Objekt", "type-asset": "Objekt",
"type-assets": "Objekte", "type-assets": "Objekte",
"list-of-assets": "{ count, plural, 1 {Ein Objekt} other {Liste von # Objekten} }", "list-of-assets": "{ count, plural, =1 {Ein Objekt} other {Liste von # Objekten} }",
"asset-name-starts-with": "Objekte beginnend mit '{{prefix}}'", "asset-name-starts-with": "Objekte beginnend mit '{{prefix}}'",
"type-entity-view": "Entitätsansicht", "type-entity-view": "Entitätsansicht",
"type-entity-views": "Entitätsansichten", "type-entity-views": "Entitätsansichten",
"list-of-entity-views": "{ count, plural, 1 {Eine Entitätsansicht} other {Liste von # Entitätsansichten} }", "list-of-entity-views": "{ count, plural, =1 {Eine Entitätsansicht} other {Liste von # Entitätsansichten} }",
"entity-view-name-starts-with": "Entitätsansichten beginnend mit'{{prefix}}'", "entity-view-name-starts-with": "Entitätsansichten beginnend mit'{{prefix}}'",
"type-rule": "Regel", "type-rule": "Regel",
"type-rules": "Regeln", "type-rules": "Regeln",
"list-of-rules": "{ count, plural, 1 {Eine Regel} other {Liste von # Regeln} }", "list-of-rules": "{ count, plural, =1 {Eine Regel} other {Liste von # Regeln} }",
"rule-name-starts-with": "Regeln beginnend mit '{{prefix}}'", "rule-name-starts-with": "Regeln beginnend mit '{{prefix}}'",
"type-plugin": "Plugin", "type-plugin": "Plugin",
"type-plugins": "Plugins", "type-plugins": "Plugins",
"list-of-plugins": "{ count, plural, 1 {Ein Plugin} other {Liste von # Plugins} }", "list-of-plugins": "{ count, plural, =1 {Ein Plugin} other {Liste von # Plugins} }",
"plugin-name-starts-with": "Plugins beginnend mit '{{prefix}}'", "plugin-name-starts-with": "Plugins beginnend mit '{{prefix}}'",
"type-tenant": "Mandant", "type-tenant": "Mandant",
"type-tenants": "Mandanten", "type-tenants": "Mandanten",
"list-of-tenants": "{ count, plural, 1 {Ein Mandant} other {Liste von # Mandanten} }", "list-of-tenants": "{ count, plural, =1 {Ein Mandant} other {Liste von # Mandanten} }",
"tenant-name-starts-with": "Mandanten beginnend mit '{{prefix}}'", "tenant-name-starts-with": "Mandanten beginnend mit '{{prefix}}'",
"type-customer": "Kunde", "type-customer": "Kunde",
"type-customers": "Kunden", "type-customers": "Kunden",
"list-of-customers": "{ count, plural, 1 {Ein Kunde} other {Liste von # Kunden} }", "list-of-customers": "{ count, plural, =1 {Ein Kunde} other {Liste von # Kunden} }",
"customer-name-starts-with": "Kunden beginnend mit '{{prefix}}'", "customer-name-starts-with": "Kunden beginnend mit '{{prefix}}'",
"type-user": "Benutzer", "type-user": "Benutzer",
"type-users": "Benutzer", "type-users": "Benutzer",
"list-of-users": "{ count, plural, 1 {Ein Benutzer} other {Liste von # Benutzern} }", "list-of-users": "{ count, plural, =1 {Ein Benutzer} other {Liste von # Benutzern} }",
"user-name-starts-with": "Benutzer beginnend mit '{{prefix}}'", "user-name-starts-with": "Benutzer beginnend mit '{{prefix}}'",
"type-dashboard": "Dashboard", "type-dashboard": "Dashboard",
"type-dashboards": "Dashboards", "type-dashboards": "Dashboards",
"list-of-dashboards": "{ count, plural, 1 {Ein Dashboard} other {Liste von # Dashboards} }", "list-of-dashboards": "{ count, plural, =1 {Ein Dashboard} other {Liste von # Dashboards} }",
"dashboard-name-starts-with": "Dashboards beginnend mit '{{prefix}}'", "dashboard-name-starts-with": "Dashboards beginnend mit '{{prefix}}'",
"type-alarm": "Alarm", "type-alarm": "Alarm",
"type-alarms": "Alarme", "type-alarms": "Alarme",
"list-of-alarms": "{ count, plural, 1 {Ein Alarm} other {Liste von # Alarmen} }", "list-of-alarms": "{ count, plural, =1 {Ein Alarm} other {Liste von # Alarmen} }",
"alarm-name-starts-with": "Alarme, beginnend mit '{{prefix}}'", "alarm-name-starts-with": "Alarme, beginnend mit '{{prefix}}'",
"type-rulechain": "Regelkette", "type-rulechain": "Regelkette",
"type-rulechains": "Regelketten", "type-rulechains": "Regelketten",
"list-of-rulechains": "{ count, plural, 1 {Eine Regelkette} other {Liste von # Regelketten} }", "list-of-rulechains": "{ count, plural, =1 {Eine Regelkette} other {Liste von # Regelketten} }",
"rulechain-name-starts-with": "Regelketten beginnend mit '{{prefix}}'", "rulechain-name-starts-with": "Regelketten beginnend mit '{{prefix}}'",
"type-rulenode": "Regelknoten", "type-rulenode": "Regelknoten",
"type-rulenodes": "Regelknoten", "type-rulenodes": "Regelknoten",
"list-of-rulenodes": "{ count, plural, 1 {Ein Regelknoten} other {Liste von # Regelknoten} }", "list-of-rulenodes": "{ count, plural, =1 {Ein Regelknoten} other {Liste von # Regelknoten} }",
"rulenode-name-starts-with": "Regelknoten beginnend mit '{{prefix}}'", "rulenode-name-starts-with": "Regelknoten beginnend mit '{{prefix}}'",
"type-edge": "Randtyp", "type-edge": "Randtyp",
"type-edges": "Randtyp", "type-edges": "Randtyp",
"list-of-edges": "{ count, plural, 1 {1 Rand} other {# Rand} }", "list-of-edges": "{ count, plural, =1 {1 Rand} other {# Rand} }",
"edge-name-starts-with": "Rand beginnend mit '{{prefix}}'", "edge-name-starts-with": "Rand beginnend mit '{{prefix}}'",
"type-current-customer": "Aktueller Kunde", "type-current-customer": "Aktueller Kunde",
"search": "Entitäten suchen", "search": "Entitäten suchen",
"selected-entities": "{ count, plural, 1 {Entität} other {# Entitäten} } ausgewählt", "selected-entities": "{ count, plural, =1 {Entität} other {# Entitäten} } ausgewählt",
"entity-name": "Entitätsname", "entity-name": "Entitätsname",
"details": "Entitätsdetails", "details": "Entitätsdetails",
"no-entities-prompt": "Keine Entitäten gefunden", "no-entities-prompt": "Keine Entitäten gefunden",
@ -1026,21 +1026,21 @@
"add-entity-view-text": "Neue Entitätsansicht hinzufügen", "add-entity-view-text": "Neue Entitätsansicht hinzufügen",
"delete": "Entitätsansicht löschen", "delete": "Entitätsansicht löschen",
"assign-entity-views": "Entitätsansicht zuordnen", "assign-entity-views": "Entitätsansicht zuordnen",
"assign-entity-views-text": "Dem Kunden { count, plural, 1 {1 Entitätsansicht} other {# Entitätsansichten} } zuordnen", "assign-entity-views-text": "Dem Kunden { count, plural, =1 {1 Entitätsansicht} other {# Entitätsansichten} } zuordnen",
"delete-entity-views": "Entitätsansichten löschen", "delete-entity-views": "Entitätsansichten löschen",
"unassign-from-customer": "Zuordnung zum Kunden aufheben", "unassign-from-customer": "Zuordnung zum Kunden aufheben",
"unassign-entity-views": "Zuordnung der Entitätsansichten aufheben", "unassign-entity-views": "Zuordnung der Entitätsansichten aufheben",
"unassign-entity-views-action-title": "Die Zuordnung { count, plural, 1 {1 Entitätsansicht} other {# Entitätsansichten} } zum Kunden aufheben", "unassign-entity-views-action-title": "Die Zuordnung { count, plural, =1 {1 Entitätsansicht} other {# Entitätsansichten} } zum Kunden aufheben",
"assign-new-entity-view": "Neue Entitätsansicht zuordnen", "assign-new-entity-view": "Neue Entitätsansicht zuordnen",
"delete-entity-view-title": "Möchten Sie die Entitätsansicht wirklich löschen '{{entityViewName}}'?", "delete-entity-view-title": "Möchten Sie die Entitätsansicht wirklich löschen '{{entityViewName}}'?",
"delete-entity-view-text": "Seien Sie vorsichtig, nach der Bestätigung werden die Entitätsansicht und alle zugehörigen Daten nicht wiederhergestellt.", "delete-entity-view-text": "Seien Sie vorsichtig, nach der Bestätigung werden die Entitätsansicht und alle zugehörigen Daten nicht wiederhergestellt.",
"delete-entity-views-title": "Sind Sie sicher, dass Sie die Entitätsansichten löschen möchten { count, plural, 1 {1 Entitätsansicht} other {# Entitätsansichten} }?", "delete-entity-views-title": "Sind Sie sicher, dass Sie die Entitätsansichten löschen möchten { count, plural, =1 {1 Entitätsansicht} other {# Entitätsansichten} }?",
"delete-entity-views-action-title": "Löschen { count, plural, 1 {1 Entitätsansicht} other {# Entitätsansichten} }", "delete-entity-views-action-title": "Löschen { count, plural, =1 {1 Entitätsansicht} other {# Entitätsansichten} }",
"delete-entity-views-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Entitätsansichten entfernt und alle zugehörigen Daten werden nicht wiederhergestellt.", "delete-entity-views-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Entitätsansichten entfernt und alle zugehörigen Daten werden nicht wiederhergestellt.",
"unassign-entity-view-title": "Möchten Sie die Zuordnung der Entitätsansicht '{{entityViewName}}' wirklich aufheben?", "unassign-entity-view-title": "Möchten Sie die Zuordnung der Entitätsansicht '{{entityViewName}}' wirklich aufheben?",
"unassign-entity-view-text": "Nach der Bestätigung wird die Zuordnung der Entitätsansicht aufgehoben und ist für den Kunden nicht mehr zugänglich.", "unassign-entity-view-text": "Nach der Bestätigung wird die Zuordnung der Entitätsansicht aufgehoben und ist für den Kunden nicht mehr zugänglich.",
"unassign-entity-view": "Zuordnung der Entitätsansicht aufheben", "unassign-entity-view": "Zuordnung der Entitätsansicht aufheben",
"unassign-entity-views-title": "Sind Sie sicher, dass Sie die Zuordnung aufheben möchten { count, plural, 1 {1 Entitätsansicht} other {# Entitätsansichten} }?", "unassign-entity-views-title": "Sind Sie sicher, dass Sie die Zuordnung aufheben möchten { count, plural, =1 {1 Entitätsansicht} other {# Entitätsansichten} }?",
"unassign-entity-views-text": "Nach der Bestätigung werden die Zuordnungen der ausgewählten Entitätsansichten aufgehoben und sind für den Kunden nicht mehr zugänglich.", "unassign-entity-views-text": "Nach der Bestätigung werden die Zuordnungen der ausgewählten Entitätsansichten aufgehoben und sind für den Kunden nicht mehr zugänglich.",
"entity-view-type": "Entitätsansichtstyp", "entity-view-type": "Entitätsansichtstyp",
"entity-view-type-required": "Entitätsansichtstyp ist erforderlich.", "entity-view-type-required": "Entitätsansichtstyp ist erforderlich.",
@ -1056,9 +1056,9 @@
"assign-entity-view-to-edge-text":"Bitte wählen Sie die Entitätsansicht aus, die dem Rand zugeordnet werden sollen", "assign-entity-view-to-edge-text":"Bitte wählen Sie die Entitätsansicht aus, die dem Rand zugeordnet werden sollen",
"unassign-entity-view-from-edge-title": "Sind Sie sicher, dass Sie die Zuordnung für Entitätsansicht '{{entityViewName}}' aufheben möchten?", "unassign-entity-view-from-edge-title": "Sind Sie sicher, dass Sie die Zuordnung für Entitätsansicht '{{entityViewName}}' aufheben möchten?",
"unassign-entity-view-from-edge-text": "Nach Bestätigung wird die Zuordnung des Entitätsansichts aufgehoben und es ist für den Kunden nicht mehr zugänglich.", "unassign-entity-view-from-edge-text": "Nach Bestätigung wird die Zuordnung des Entitätsansichts aufgehoben und es ist für den Kunden nicht mehr zugänglich.",
"unassign-entity-views-from-edge-action-title": "Rand { count, plural, 1 {1 Entitätsansicht} other {# Entitätsansichte} } aufheben", "unassign-entity-views-from-edge-action-title": "Rand { count, plural, =1 {1 Entitätsansicht} other {# Entitätsansichte} } aufheben",
"unassign-entity-view-from-edge": "Entitätsansichtzuordnung aufheben", "unassign-entity-view-from-edge": "Entitätsansichtzuordnung aufheben",
"unassign-entity-views-from-edge-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Entitätsansicht} other {# Entitätsansichte} } nicht mehr zuordnen möchten?", "unassign-entity-views-from-edge-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Entitätsansicht} other {# Entitätsansichte} } nicht mehr zuordnen möchten?",
"unassign-entity-views-from-edge-text": "Nach der Bestätigung werden alle ausgewählten Entitätsansicht nicht zugewiesen und sind für den Rand nicht zugänglich.", "unassign-entity-views-from-edge-text": "Nach der Bestätigung werden alle ausgewählten Entitätsansicht nicht zugewiesen und sind für den Rand nicht zugänglich.",
"description": "Beschreibung", "description": "Beschreibung",
"events": "Ereignisse", "events": "Ereignisse",
@ -1121,7 +1121,7 @@
}, },
"extension": { "extension": {
"extensions": "Erweiterungen", "extensions": "Erweiterungen",
"selected-extensions": "{ count, plural, 1 {Erweiterung} other {# extensions} } ausgewählt", "selected-extensions": "{ count, plural, =1 {Erweiterung} other {# extensions} } ausgewählt",
"type": "Typ", "type": "Typ",
"key": "Schlüssel", "key": "Schlüssel",
"value": "Wert", "value": "Wert",
@ -1135,7 +1135,7 @@
"edit": "Erweiterung bearbeiten", "edit": "Erweiterung bearbeiten",
"delete-extension-title": "Möchten Sie die Erweiterung '{{extensionId}}' wirklich löschen?", "delete-extension-title": "Möchten Sie die Erweiterung '{{extensionId}}' wirklich löschen?",
"delete-extension-text": "Vorsicht, nach Bestätigung werden die Erweiterung und alle zugehörigen Daten nicht wiederhergestellt.", "delete-extension-text": "Vorsicht, nach Bestätigung werden die Erweiterung und alle zugehörigen Daten nicht wiederhergestellt.",
"delete-extensions-title": "Möchten Sie wirklich löschen? { count, plural, 1 {1 extension} other {# extensions} }?", "delete-extensions-title": "Möchten Sie wirklich löschen? { count, plural, =1 {1 extension} other {# extensions} }?",
"delete-extensions-text": "Vorsicht, nach der Bestätigung werden alle ausgewählten Erweiterungen entfernt.", "delete-extensions-text": "Vorsicht, nach der Bestätigung werden alle ausgewählten Erweiterungen entfernt.",
"converters": "Konverter", "converters": "Konverter",
"converter-id": "Konverter-ID", "converter-id": "Konverter-ID",
@ -1288,8 +1288,8 @@
"grid": { "grid": {
"delete-item-title": "Möchten Sie dieses Element wirklich löschen?", "delete-item-title": "Möchten Sie dieses Element wirklich löschen?",
"delete-item-text": "Vorsicht, nach Bestätigung wird das Element und alle zugehörigen Daten nicht wiederhergestellt.", "delete-item-text": "Vorsicht, nach Bestätigung wird das Element und alle zugehörigen Daten nicht wiederhergestellt.",
"delete-items-title": "Sind Sie sicher, dass Sie löschen möchten { count, plural, 1 {Symbol} other {Symbole} }?", "delete-items-title": "Sind Sie sicher, dass Sie löschen möchten { count, plural, =1 {Symbol} other {Symbole} }?",
"delete-items-action-title": "Löschen { count, plural, 1 {Symbol} other {# Symbole} }", "delete-items-action-title": "Löschen { count, plural, =1 {Symbol} other {# Symbole} }",
"delete-items-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Elemente entfernt und alle zugehörigen Daten nicht wiederhergestellt.", "delete-items-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Elemente entfernt und alle zugehörigen Daten nicht wiederhergestellt.",
"add-item-text": "Neues Element hinzufügen", "add-item-text": "Neues Element hinzufügen",
"no-items-text": "Keine Elemente gefunden", "no-items-text": "Keine Elemente gefunden",
@ -1393,7 +1393,7 @@
}, },
"from-relations": "Ausgehende Verbindungen", "from-relations": "Ausgehende Verbindungen",
"to-relations": "Eingehende Verbindungen", "to-relations": "Eingehende Verbindungen",
"selected-relations": "{ count, plural, 1 {1 Beziehung} other {# Beziehungen} } ausgewählt", "selected-relations": "{ count, plural, =1 {1 Beziehung} other {# Beziehungen} } ausgewählt",
"type": "Typ", "type": "Typ",
"to-entity-type": "Zum Entitätstyp", "to-entity-type": "Zum Entitätstyp",
"to-entity-name": "Zum Entitätsnamen", "to-entity-name": "Zum Entitätsnamen",
@ -1409,11 +1409,11 @@
"edit": "Beziehung bearbeiten", "edit": "Beziehung bearbeiten",
"delete-to-relation-title": "Möchten Sie die Beziehung zur Einheit'{{entityName}}' wirklich löschen?", "delete-to-relation-title": "Möchten Sie die Beziehung zur Einheit'{{entityName}}' wirklich löschen?",
"delete-to-relation-text": "Vorsicht, nach Bestätigung ist die Entität '{{entityName}}' nicht mehr mit der aktuellen Entität verbunden.", "delete-to-relation-text": "Vorsicht, nach Bestätigung ist die Entität '{{entityName}}' nicht mehr mit der aktuellen Entität verbunden.",
"delete-to-relations-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Beziehung} other {# Beziehungen} } wirklich löschen?", "delete-to-relations-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Beziehung} other {# Beziehungen} } wirklich löschen?",
"delete-to-relations-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Beziehungen entfernt und die entsprechenden Entitäten sind nicht mehr mit der aktuellen Entität verbunden.", "delete-to-relations-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Beziehungen entfernt und die entsprechenden Entitäten sind nicht mehr mit der aktuellen Entität verbunden.",
"delete-from-relation-title": "Sind Sie sicher, dass Sie die Verbindung aus der Entität '{{entityName}}' löschen möchten?", "delete-from-relation-title": "Sind Sie sicher, dass Sie die Verbindung aus der Entität '{{entityName}}' löschen möchten?",
"delete-from-relation-text": "Vorsicht, nach Bestätigung wird die aktuelle Entität '{{entityName}}' von der Entität unabhängig sein.", "delete-from-relation-text": "Vorsicht, nach Bestätigung wird die aktuelle Entität '{{entityName}}' von der Entität unabhängig sein.",
"delete-from-relations-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Beziehung} other {# Beziehungen} } löschen möchten?", "delete-from-relations-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Beziehung} other {# Beziehungen} } löschen möchten?",
"delete-from-relations-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Beziehungen entfernt und die aktuellen Entität wird nicht mehr mit den entsprechenden Entitäten verknüpft sein.", "delete-from-relations-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Beziehungen entfernt und die aktuellen Entität wird nicht mehr mit den entsprechenden Entitäten verknüpft sein.",
"remove-relation-filter": "Beziehungsfilter entfernen", "remove-relation-filter": "Beziehungsfilter entfernen",
"add-relation-filter": "Beziehungsfilter hinzufügen", "add-relation-filter": "Beziehungsfilter hinzufügen",
@ -1436,8 +1436,8 @@
"set-root-rulechain-text": "Nach der Bestätigung wird die Regelkette zur Wurzel und bearbeitet alle eingehenden Transportnachrichten.", "set-root-rulechain-text": "Nach der Bestätigung wird die Regelkette zur Wurzel und bearbeitet alle eingehenden Transportnachrichten.",
"delete-rulechain-title": "Sind Sie sicher, dass Sie die Regelkette '{{ruleChainName}}' löschen möchten?", "delete-rulechain-title": "Sind Sie sicher, dass Sie die Regelkette '{{ruleChainName}}' löschen möchten?",
"delete-rulechain-text": "Vorsichtig, nach Bestätigung werden die Regelkette und alle zugehörigen Daten gelöscht.", "delete-rulechain-text": "Vorsichtig, nach Bestätigung werden die Regelkette und alle zugehörigen Daten gelöscht.",
"delete-rulechains-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Regelkette} other {# Regelketten} } löschen möchten?", "delete-rulechains-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Regelkette} other {# Regelketten} } löschen möchten?",
"delete-rulechains-action-title": "{ count, plural, 1 {1 Regelkette} other {# Regelketten} } löschen", "delete-rulechains-action-title": "{ count, plural, =1 {1 Regelkette} other {# Regelketten} } löschen",
"delete-rulechains-text": "Vorsichtig, nach Bestätigung werden alle ausgewählten Regelketten entfernt und alle zugehörigen Daten werden gelöscht.", "delete-rulechains-text": "Vorsichtig, nach Bestätigung werden alle ausgewählten Regelketten entfernt und alle zugehörigen Daten werden gelöscht.",
"add-rulechain-text": "Neue Regelkette hinzufügen", "add-rulechain-text": "Neue Regelkette hinzufügen",
"no-rulechains-text": "Keine Regelkette gefunden", "no-rulechains-text": "Keine Regelkette gefunden",
@ -1465,7 +1465,7 @@
"unassign-rulechains": "Nicht zugeordnete Regelketten", "unassign-rulechains": "Nicht zugeordnete Regelketten",
"unassign-rulechain-title": "Möchten Sie die Zuordnung die Regelkette '{{ruleChainTitle}}' wirklich aufheben?", "unassign-rulechain-title": "Möchten Sie die Zuordnung die Regelkette '{{ruleChainTitle}}' wirklich aufheben?",
"unassign-rulechain-from-edge-text": "Nach der Bestätigung wird die Zuordnung aller ausgewählten Regelkette aufgehoben und sie sind für den Rand nicht mehr zugänglich.", "unassign-rulechain-from-edge-text": "Nach der Bestätigung wird die Zuordnung aller ausgewählten Regelkette aufgehoben und sie sind für den Rand nicht mehr zugänglich.",
"unassign-rulechains-from-edge-action-title": "Zuordnung { count, plural, 1 {1 Regelkette} other {# Regelketten} } vom Rand aufheben", "unassign-rulechains-from-edge-action-title": "Zuordnung { count, plural, =1 {1 Regelkette} other {# Regelketten} } vom Rand aufheben",
"unassign-rulechains-from-edge-text": "Nach der Bestätigung wird die Zuordnung aller ausgewählten Regelketten aufgehoben und sie sind für den Rand nicht mehr zugänglich.", "unassign-rulechains-from-edge-text": "Nach der Bestätigung wird die Zuordnung aller ausgewählten Regelketten aufgehoben und sie sind für den Rand nicht mehr zugänglich.",
"assign-rulechain-to-edge-title": "Regelkette(n) dem Rand zuordnen", "assign-rulechain-to-edge-title": "Regelkette(n) dem Rand zuordnen",
"assign-rulechain-to-edge-text": "Bitte wählen Sie die Regelketten aus, die Sie dem Rand zuordnen möchten", "assign-rulechain-to-edge-text": "Bitte wählen Sie die Regelketten aus, die Sie dem Rand zuordnen möchten",
@ -1481,7 +1481,7 @@
"unset-auto-assign-to-edge-text": "Nach der Bestätigung wird die Kantenregelkette bei der Erstellung nicht mehr automatisch den Kanten zugewiesen.", "unset-auto-assign-to-edge-text": "Nach der Bestätigung wird die Kantenregelkette bei der Erstellung nicht mehr automatisch den Kanten zugewiesen.",
"edge-template-root": "Vorlagenstamm", "edge-template-root": "Vorlagenstamm",
"search": "Suchen Sie nach Regelketten", "search": "Suchen Sie nach Regelketten",
"selected-rulechains": "{count, plural, 1 {1 Regelkette} other {# Regelketten} } ausgewählt", "selected-rulechains": "{count, plural, =1 {1 Regelkette} other {# Regelketten} } ausgewählt",
"open-rulechain": "Regelkette öffnen", "open-rulechain": "Regelkette öffnen",
"assign-to-edge": "Rand zuweisen", "assign-to-edge": "Rand zuweisen",
"edge-rulechain": "Kantenregelkette" "edge-rulechain": "Kantenregelkette"
@ -1562,8 +1562,8 @@
"tenant-details": "Mandantendetails", "tenant-details": "Mandantendetails",
"delete-tenant-title": "Möchten Sie den Mandanten '{{tenantTitle}}' wirklich löschen?", "delete-tenant-title": "Möchten Sie den Mandanten '{{tenantTitle}}' wirklich löschen?",
"delete-tenant-text": "Vorsicht, nach Bestätigung werden der Mandant und alle zugehörigen Daten gelöscht.", "delete-tenant-text": "Vorsicht, nach Bestätigung werden der Mandant und alle zugehörigen Daten gelöscht.",
"delete-tenants-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Mandant} other {# Mandanten} } löschen möchten?", "delete-tenants-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Mandant} other {# Mandanten} } löschen möchten?",
"delete-tenants-action-title": "{ count, plural, 1 {1 Mandant} other {# Mandanten} } löschen", "delete-tenants-action-title": "{ count, plural, =1 {1 Mandant} other {# Mandanten} } löschen",
"delete-tenants-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Mandanten entfernt und alle zugehörigen Daten werden gelöscht.", "delete-tenants-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Mandanten entfernt und alle zugehörigen Daten werden gelöscht.",
"title": "Titel", "title": "Titel",
"title-required": "Titel ist erforderlich.", "title-required": "Titel ist erforderlich.",
@ -1577,10 +1577,10 @@
"tenant-required": "Mandant ist erforderlich" "tenant-required": "Mandant ist erforderlich"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 Sekunde} other {# Sekunden} }", "seconds-interval": "{ seconds, plural, =1 {1 Sekunde} other {# Sekunden} }",
"minutes-interval": "{ minutes, plural, 1 {1 Minute} other {# Minuten} }", "minutes-interval": "{ minutes, plural, =1 {1 Minute} other {# Minuten} }",
"hours-interval": "{ hours, plural, 1 {1 Stunde} other {# Stunden} }", "hours-interval": "{ hours, plural, =1 {1 Stunde} other {# Stunden} }",
"days-interval": "{ days, plural, 1 {1 Tag} other {# Tage} }", "days-interval": "{ days, plural, =1 {1 Tag} other {# Tage} }",
"days": "Tage", "days": "Tage",
"hours": "Stunden", "hours": "Stunden",
"minutes": "Minuten", "minutes": "Minuten",
@ -1588,10 +1588,10 @@
"advanced": "Erweitert" "advanced": "Erweitert"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { Tag } other {# Tage } }", "days": "{ days, plural, =1 { Tag } other {# Tage } }",
"hours": "{ hours, plural, 0 { Stunde } 1 {1 Stunde } other {# Stunden } }", "hours": "{ hours, plural, =0 { Stunde } =1 {1 Stunde } other {# Stunden } }",
"minutes": "{ minutes, plural, 0 { Minute } 1 {1 Minute } other {# Minuten } }", "minutes": "{ minutes, plural, =0 { Minute } =1 {1 Minute } other {# Minuten } }",
"seconds": "{ seconds, plural, 0 { Sekunde } 1 {1 Sekunde } other {# Sekunden } }", "seconds": "{ seconds, plural, =0 { Sekunde } =1 {1 Sekunde } other {# Sekunden } }",
"realtime": "Echtzeit", "realtime": "Echtzeit",
"history": "Historie", "history": "Historie",
"last-prefix": "letzte", "last-prefix": "letzte",
@ -1617,8 +1617,8 @@
"user-details": "Benutzer-Details", "user-details": "Benutzer-Details",
"delete-user-title": "Möchten Sie den Benutzer '{{userEmail}}' wirklich löschen?", "delete-user-title": "Möchten Sie den Benutzer '{{userEmail}}' wirklich löschen?",
"delete-user-text": "Vorsicht, nach Bestätigung werden der Benutzer und alle zugehörigen Daten gelöscht.", "delete-user-text": "Vorsicht, nach Bestätigung werden der Benutzer und alle zugehörigen Daten gelöscht.",
"delete-users-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Benutzer} other {# Benutzer} } löschen möchten??", "delete-users-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Benutzer} other {# Benutzer} } löschen möchten??",
"delete-users-action-title": "{ count, plural, 1 {1 Benutzer} other {# Benutzer} } löschen", "delete-users-action-title": "{ count, plural, =1 {1 Benutzer} other {# Benutzer} } löschen",
"delete-users-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Benutzer entfernt und alle zugehörigen Daten werden gelöscht.", "delete-users-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Benutzer entfernt und alle zugehörigen Daten werden gelöscht.",
"activation-email-sent-message": "Aktivierungs E-Mail wurde erfolgreich gesendet!", "activation-email-sent-message": "Aktivierungs E-Mail wurde erfolgreich gesendet!",
"resend-activation": "Aktivierung erneut senden", "resend-activation": "Aktivierung erneut senden",
@ -1741,8 +1741,8 @@
"widgets-bundle-details": "Widget-Paket-Details", "widgets-bundle-details": "Widget-Paket-Details",
"delete-widgets-bundle-title": "Möchten Sie das Widget-Paket '{{widgetsBundleTitle}}' wirklich löschen? ", "delete-widgets-bundle-title": "Möchten Sie das Widget-Paket '{{widgetsBundleTitle}}' wirklich löschen? ",
"delete-widgets-bundle-text": "Seien Sie vorsichtig, nach der Bestätigung werden das Widget-Paket und alle zugehörigen Daten gelöscht.", "delete-widgets-bundle-text": "Seien Sie vorsichtig, nach der Bestätigung werden das Widget-Paket und alle zugehörigen Daten gelöscht.",
"delete-widgets-bundles-title": "Sind Sie sicher, dass Sie { count, plural, 1 {1 Widget-Paket} other {# Widget-Pakete} } löschen möchten?", "delete-widgets-bundles-title": "Sind Sie sicher, dass Sie { count, plural, =1 {1 Widget-Paket} other {# Widget-Pakete} } löschen möchten?",
"delete-widgets-bundles-action-title": "{ count, plural, 1 {1 Widgets-Paket} other {# Widget-Pakete} } löschen", "delete-widgets-bundles-action-title": "{ count, plural, =1 {1 Widgets-Paket} other {# Widget-Pakete} } löschen",
"delete-widgets-bundles-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Widget-Pakete entfernt und alle zugehörigen Daten werden gelöscht.", "delete-widgets-bundles-text": "Vorsicht, nach Bestätigung werden alle ausgewählten Widget-Pakete entfernt und alle zugehörigen Daten werden gelöscht.",
"no-widgets-bundles-matching": "Keine passenden Widget-Pakete '{{widgetsBundle}}' gefunden.", "no-widgets-bundles-matching": "Keine passenden Widget-Pakete '{{widgetsBundle}}' gefunden.",
"widgets-bundle-required": "Widget-Paket ist erforderlich.", "widgets-bundle-required": "Widget-Paket ist erforderlich.",
@ -1780,7 +1780,7 @@
"display-timewindow": "Zeitfenster anzeigen", "display-timewindow": "Zeitfenster anzeigen",
"display-legend": "Legende anzeigen", "display-legend": "Legende anzeigen",
"datasources": "Datenquellen", "datasources": "Datenquellen",
"maximum-datasources": "Maximal { count, plural, 1 {1 Datenquelle ist erlaubt} other {# Datenquellen sind erlaubt} }.", "maximum-datasources": "Maximal { count, plural, =1 {1 Datenquelle ist erlaubt} other {# Datenquellen sind erlaubt} }.",
"datasource-type": "Typ", "datasource-type": "Typ",
"datasource-parameters": "Parameter", "datasource-parameters": "Parameter",
"remove-datasource": "Datenquelle entfernen", "remove-datasource": "Datenquelle entfernen",

220
ui-ngx/src/assets/locale/locale.constant-el_GR.json

@ -149,17 +149,17 @@
"acknowledge": "Επιβεβαίωση", "acknowledge": "Επιβεβαίωση",
"clear": "Εκκαθάριση", "clear": "Εκκαθάριση",
"search": "Αναζήτηση alarm", "search": "Αναζήτηση alarm",
"selected-alarms": "{ count, plural, 1 {1 alarm} other {# alarms} } επιλέχθηκαν", "selected-alarms": "{ count, plural, =1 {1 alarm} other {# alarms} } επιλέχθηκαν",
"no-data": "Δεν υπάρχουν δεδομένα για εμφάνιση", "no-data": "Δεν υπάρχουν δεδομένα για εμφάνιση",
"polling-interval": "Διάστημα δειγματοληψίας alarm(sec)", "polling-interval": "Διάστημα δειγματοληψίας alarm(sec)",
"polling-interval-required": "Απαιτείται ορισμός διαστήματος δειγματοληψίας alarm.", "polling-interval-required": "Απαιτείται ορισμός διαστήματος δειγματοληψίας alarm.",
"min-polling-interval-message": "Η ελάχιστη επιτρεπόμενη τιμή διαστήματος δειγματοληψίας alarm είναι 1 sec.", "min-polling-interval-message": "Η ελάχιστη επιτρεπόμενη τιμή διαστήματος δειγματοληψίας alarm είναι 1 sec.",
"aknowledge-alarms-title": "Επιβεβαίωση { count, plural, 1 {1 alarm} other {# alarms} }", "aknowledge-alarms-title": "Επιβεβαίωση { count, plural, =1 {1 alarm} other {# alarms} }",
"aknowledge-alarms-text": "Είστε σίγουρος ότι θέλετε να επιβεβαιώσετε { count, plural, 1 {1 alarm} other {# alarms} };", "aknowledge-alarms-text": "Είστε σίγουρος ότι θέλετε να επιβεβαιώσετε { count, plural, =1 {1 alarm} other {# alarms} };",
"aknowledge-alarm-title": "Επιβεβαίωση Alarm", "aknowledge-alarm-title": "Επιβεβαίωση Alarm",
"aknowledge-alarm-text": "Είστε σίγουρος ότι θέλετε να επιβεβαιώσετε το Alarm?", "aknowledge-alarm-text": "Είστε σίγουρος ότι θέλετε να επιβεβαιώσετε το Alarm?",
"clear-alarms-title": "Εκκαθάριση { count, plural, 1 {1 alarm} other {# alarms} }", "clear-alarms-title": "Εκκαθάριση { count, plural, =1 {1 alarm} other {# alarms} }",
"clear-alarms-text": "Είστε σίγουρος ότι θέλετε να εκκαθαρίσετε { count, plural, 1 {1 alarm} other {# alarms} }?", "clear-alarms-text": "Είστε σίγουρος ότι θέλετε να εκκαθαρίσετε { count, plural, =1 {1 alarm} other {# alarms} }?",
"clear-alarm-title": "Εκκαθάριση Alarm", "clear-alarm-title": "Εκκαθάριση Alarm",
"clear-alarm-text": "Είστε σίγουρος ότι θέλετε να εκκαθαρίσετε το Alarm?", "clear-alarm-text": "Είστε σίγουρος ότι θέλετε να εκκαθαρίσετε το Alarm?",
"alarm-status-filter": "Φίλτρο κατάστασης Alarm" "alarm-status-filter": "Φίλτρο κατάστασης Alarm"
@ -251,15 +251,15 @@
"add-asset-text": "Προσθήκη νέου Asset", "add-asset-text": "Προσθήκη νέου Asset",
"asset-details": "Λεπτομέρειες Asset", "asset-details": "Λεπτομέρειες Asset",
"assign-assets": "Ανάθεση Assets", "assign-assets": "Ανάθεση Assets",
"assign-assets-text": "Ανάθεση { count, plural, 1 {1 asset} other {# assets} } σε πελάτη", "assign-assets-text": "Ανάθεση { count, plural, =1 {1 asset} other {# assets} } σε πελάτη",
"delete-assets": "Διαγραφή Assets", "delete-assets": "Διαγραφή Assets",
"unassign-assets": "Αποσύνδεση Assets", "unassign-assets": "Αποσύνδεση Assets",
"unassign-assets-action-title": "Αποσύνδεση { count, plural, 1 {1 asset} other {# assets} } από πελάτη", "unassign-assets-action-title": "Αποσύνδεση { count, plural, =1 {1 asset} other {# assets} } από πελάτη",
"assign-new-asset": "Ανάθεση νέου Asset", "assign-new-asset": "Ανάθεση νέου Asset",
"delete-asset-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε το Asset '{{assetName}}'?", "delete-asset-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε το Asset '{{assetName}}'?",
"delete-asset-text": "Προσοχή!, Μετά την επιβεβαίωση, το Asset και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-asset-text": "Προσοχή!, Μετά την επιβεβαίωση, το Asset και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-assets-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε { count, plural, 1 {1 asset} other {# assets} };", "delete-assets-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε { count, plural, =1 {1 asset} other {# assets} };",
"delete-assets-action-title": "Διαγραφή { count, plural, 1 {1 asset} other {# assets} }", "delete-assets-action-title": "Διαγραφή { count, plural, =1 {1 asset} other {# assets} }",
"delete-assets-text": "Προσοχή! Μετά την επιβεβαίωση, όλα τα επιλεγμένα Asset και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-assets-text": "Προσοχή! Μετά την επιβεβαίωση, όλα τα επιλεγμένα Asset και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"make-public-asset-title": "Είστε βέβαιοι ότι θέλετε να κάνετε το Asset '{{assetName}}' δημόσιο;", "make-public-asset-title": "Είστε βέβαιοι ότι θέλετε να κάνετε το Asset '{{assetName}}' δημόσιο;",
"make-public-asset-text": "Μετά την επιβεβαίωση, το Asset και όλα τα στοιχεία του θα είναι προσβάσιμα από άλλους.", "make-public-asset-text": "Μετά την επιβεβαίωση, το Asset και όλα τα στοιχεία του θα είναι προσβάσιμα από άλλους.",
@ -268,7 +268,7 @@
"unassign-asset-title": "Είστε βέβαιοι ότι θέλετε να αποσυνδέσετε το Asset '{{assetName}}';", "unassign-asset-title": "Είστε βέβαιοι ότι θέλετε να αποσυνδέσετε το Asset '{{assetName}}';",
"unassign-asset-text": "Μετά την επιβεβαίωση, το Asset θα αποσυνδεθεί και δεν θα είναι προσβάσιμο από τον πελάτη.", "unassign-asset-text": "Μετά την επιβεβαίωση, το Asset θα αποσυνδεθεί και δεν θα είναι προσβάσιμο από τον πελάτη.",
"unassign-asset": "Αποσύνδεση Asset", "unassign-asset": "Αποσύνδεση Asset",
"unassign-assets-title": "Είστε βέβαιοι ότι θέλετε να αποσυνδέσετε { count, plural, 1 {1 asset} other {# assets} };", "unassign-assets-title": "Είστε βέβαιοι ότι θέλετε να αποσυνδέσετε { count, plural, =1 {1 asset} other {# assets} };",
"unassign-assets-text": "Μετά την επιβεβαίωση, όλα τα επιλεγμένα Asset θα αποσυνδεθούν και δεν θα είναι προσβάσιμα από τον πελάτη.", "unassign-assets-text": "Μετά την επιβεβαίωση, όλα τα επιλεγμένα Asset θα αποσυνδεθούν και δεν θα είναι προσβάσιμα από τον πελάτη.",
"copyId": "Αντιγραφή Asset Id", "copyId": "Αντιγραφή Asset Id",
"idCopiedMessage": "Το Asset Id αντιγράφηκε στο πρόχειρο", "idCopiedMessage": "Το Asset Id αντιγράφηκε στο πρόχειρο",
@ -276,13 +276,13 @@
"no-assets-matching": "Δεν βρέθηκαν Asset που να ταιριάζουν με '{{entity}}'.", "no-assets-matching": "Δεν βρέθηκαν Asset που να ταιριάζουν με '{{entity}}'.",
"asset-required": "Απαιτείται Asset", "asset-required": "Απαιτείται Asset",
"name-starts-with": "Όνομα Asset που ξεκινάει με", "name-starts-with": "Όνομα Asset που ξεκινάει με",
"selected-assets": "{ count, plural, 1 {1 asset} other {# assets} } επιλέχθηκαν", "selected-assets": "{ count, plural, =1 {1 asset} other {# assets} } επιλέχθηκαν",
"search": "Αναζήτηση Asset", "search": "Αναζήτηση Asset",
"select-group-to-add": "Επιλέξτε ομάδα στόχο για να προσθέσετε επιλεγμένα Asset", "select-group-to-add": "Επιλέξτε ομάδα στόχο για να προσθέσετε επιλεγμένα Asset",
"select-group-to-move": "Επιλέξτε ομάδα στόχο για να μετακινήσετε επιλεγμένα assets", "select-group-to-move": "Επιλέξτε ομάδα στόχο για να μετακινήσετε επιλεγμένα assets",
"remove-assets-from-group": "Είστε βέβαιοι ότι θέλετε να καταργήσετε { count, plural, 1 {1 asset} other {# assets} } από την ομάδα '{entityGroup}';", "remove-assets-from-group": "Είστε βέβαιοι ότι θέλετε να καταργήσετε { count, plural, =1 {1 asset} other {# assets} } από την ομάδα '{entityGroup}';",
"group": "Ομάδα Asset", "group": "Ομάδα Asset",
"list-of-groups": "{ count, plural, 1 {One asset group} other {List of # asset groups} }", "list-of-groups": "{ count, plural, =1 {One asset group} other {List of # asset groups} }",
"group-name-starts-with": "Ομάδες Asset των οποίων τα ονόματα ξεκινούν με '{{prefix}}'", "group-name-starts-with": "Ομάδες Asset των οποίων τα ονόματα ξεκινούν με '{{prefix}}'",
"import": "Εισαγωγή Asset", "import": "Εισαγωγή Asset",
"asset-file": "Αρχείο Asset" "asset-file": "Αρχείο Asset"
@ -302,7 +302,7 @@
"key-required": "Απαιτείται μεταβλητή χαρακτηριστικού.", "key-required": "Απαιτείται μεταβλητή χαρακτηριστικού.",
"value": "Τιμή", "value": "Τιμή",
"value-required": "Απαιτείται ορισμός τιμής χαρακτηριστικού.", "value-required": "Απαιτείται ορισμός τιμής χαρακτηριστικού.",
"delete-attributes-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε { count, plural, 1 {1 attribute} other {# attributes} };", "delete-attributes-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε { count, plural, =1 {1 attribute} other {# attributes} };",
"delete-attributes-text": "Προσοχή! Μετά την επιβεβαίωση θα αφαιρεθούν όλα τα επιλεγμένα χαρακτηριστικά.", "delete-attributes-text": "Προσοχή! Μετά την επιβεβαίωση θα αφαιρεθούν όλα τα επιλεγμένα χαρακτηριστικά.",
"delete-attributes": "Διαγραφή χαρακτηριστικών", "delete-attributes": "Διαγραφή χαρακτηριστικών",
"enter-attribute-value": "Καταχωρίστε την τιμή του χαρακτηριστικού", "enter-attribute-value": "Καταχωρίστε την τιμή του χαρακτηριστικού",
@ -312,8 +312,8 @@
"prev-widget": "Προηγούμενο widget", "prev-widget": "Προηγούμενο widget",
"add-to-dashboard": "Προσθήκη σε dashboard", "add-to-dashboard": "Προσθήκη σε dashboard",
"add-widget-to-dashboard": "Προσθήκη widget στο dashboard", "add-widget-to-dashboard": "Προσθήκη widget στο dashboard",
"selected-attributes": "{ count, plural, 1 {1 attribute} other {# attributes} } επιλέχθηκαν", "selected-attributes": "{ count, plural, =1 {1 attribute} other {# attributes} } επιλέχθηκαν",
"selected-telemetry": "{ count, plural, 1 {1 telemetry unit} other {# telemetry units} } επιλέχθηκαν" "selected-telemetry": "{ count, plural, =1 {1 telemetry unit} other {# telemetry units} } επιλέχθηκαν"
}, },
"audit-log": { "audit-log": {
"audit": "Καταγραφή", "audit": "Καταγραφή",
@ -392,11 +392,11 @@
"management": "Διαχείριση μετατροπέων δεδομένων", "management": "Διαχείριση μετατροπέων δεδομένων",
"add-converter-text": "Προσθήκη νέου μετατροπέα δεδομένων", "add-converter-text": "Προσθήκη νέου μετατροπέα δεδομένων",
"no-converters-text": "Δεν βρέθηκαν μετατροπείς δεδομένων", "no-converters-text": "Δεν βρέθηκαν μετατροπείς δεδομένων",
"selected-converters": "{ count, plural, 1 {1 data converter} other {# data converters} } επιλέχθηκαν", "selected-converters": "{ count, plural, =1 {1 data converter} other {# data converters} } επιλέχθηκαν",
"delete-converter-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον μετατροπέα δεδομένων '{{converterName}}'?", "delete-converter-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον μετατροπέα δεδομένων '{{converterName}}'?",
"delete-converter-text": "Προσέξτε, μετά την επιβεβαίωση, ο μετατροπέας δεδομένων και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-converter-text": "Προσέξτε, μετά την επιβεβαίωση, ο μετατροπέας δεδομένων και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-converters-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε { count, plural, 1 {1 data converter} other {# data converters} };", "delete-converters-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε { count, plural, =1 {1 data converter} other {# data converters} };",
"delete-converters-action-title": "Διαγραφή { count, plural, 1 {1 data converter} other {# data converters} }", "delete-converters-action-title": "Διαγραφή { count, plural, =1 {1 data converter} other {# data converters} }",
"delete-converters-text": "Προσοχή! Μετά την επιβεβαίωση, όλοι οι επιλεγμένοι μετατροπείς δεδομένων και όλα τα σχετικά δεδομένα θα καταστούν μη ανακτήσιμα.", "delete-converters-text": "Προσοχή! Μετά την επιβεβαίωση, όλοι οι επιλεγμένοι μετατροπείς δεδομένων και όλα τα σχετικά δεδομένα θα καταστούν μη ανακτήσιμα.",
"events": "Γεγονότα", "events": "Γεγονότα",
"add": "Προσθήκη μετατροπέα δεδομένων", "add": "Προσθήκη μετατροπέα δεδομένων",
@ -477,8 +477,8 @@
"customer-details": "Λεπτομέρειες πελάτη", "customer-details": "Λεπτομέρειες πελάτη",
"delete-customer-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε τον πελάτη '{{customerTitle}}'?", "delete-customer-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε τον πελάτη '{{customerTitle}}'?",
"delete-customer-text": "Προσέξτε, μετά την επιβεβαίωση, ο πελάτης και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-customer-text": "Προσέξτε, μετά την επιβεβαίωση, ο πελάτης και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-customers-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 customer} other {# customers} }?", "delete-customers-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 customer} other {# customers} }?",
"delete-customers-action-title": "Διαγραφή { count, plural, 1 {1 customer} other {# customers} }", "delete-customers-action-title": "Διαγραφή { count, plural, =1 {1 customer} other {# customers} }",
"delete-customers-text": "Προσέξτε, μετά την επιβεβαίωση, οι πελάτες και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-customers-text": "Προσέξτε, μετά την επιβεβαίωση, οι πελάτες και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"manage-user-groups": "Διαχείρηση ομαδών χρηστών", "manage-user-groups": "Διαχείρηση ομαδών χρηστών",
"manage-asset-groups": "Διαχείρηση ομαδών οντοτήτων", "manage-asset-groups": "Διαχείρηση ομαδών οντοτήτων",
@ -499,13 +499,13 @@
"select-customer": "Επιλέξτε πελάτη", "select-customer": "Επιλέξτε πελάτη",
"no-customers-matching": "Δεν βρέθηκαν πελάτες που να αντιστοιχούν σε '{{entity}}'.", "no-customers-matching": "Δεν βρέθηκαν πελάτες που να αντιστοιχούν σε '{{entity}}'.",
"customer-required": "Απαιτείται πελάτης", "customer-required": "Απαιτείται πελάτης",
"selected-customers": "{ count, plural, 1 {1 customer} other {# customers} } επιλέχθηκαν", "selected-customers": "{ count, plural, =1 {1 customer} other {# customers} } επιλέχθηκαν",
"search": "Αναζήτηση πελατών", "search": "Αναζήτηση πελατών",
"select-group-to-add": "Επιλέξτε ομάδα για να προσθέσετε τους επιλεγμένους πελάτες", "select-group-to-add": "Επιλέξτε ομάδα για να προσθέσετε τους επιλεγμένους πελάτες",
"select-group-to-move": "Επιλέξτε ομάδα για να μετακινήσετε τους επιλεγμένους πελάτες", "select-group-to-move": "Επιλέξτε ομάδα για να μετακινήσετε τους επιλεγμένους πελάτες",
"remove-customers-from-group": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, 1 {1 customer} other {# customers} } από την ομάδα '{entityGroup}'?", "remove-customers-from-group": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, =1 {1 customer} other {# customers} } από την ομάδα '{entityGroup}'?",
"group": "Ομάδα πελατών", "group": "Ομάδα πελατών",
"list-of-groups": "{ count, plural, 1 {One customer group} other {List of # customer groups} }", "list-of-groups": "{ count, plural, =1 {One customer group} other {List of # customer groups} }",
"group-name-starts-with": "Πελάτες των οποίων το όνομα αρχίζει από '{{prefix}}'", "group-name-starts-with": "Πελάτες των οποίων το όνομα αρχίζει από '{{prefix}}'",
"select-default-customer": "Επιλογή προεπιλεγμένου πελάτη", "select-default-customer": "Επιλογή προεπιλεγμένου πελάτη",
"default-customer": "Προεπιλεγμένος πελάτης", "default-customer": "Προεπιλεγμένος πελάτης",
@ -573,20 +573,20 @@
"add-dashboard-text": "Προσθέστε νέο dashboard", "add-dashboard-text": "Προσθέστε νέο dashboard",
"assign-dashboards": "Αναθέστε dashboards", "assign-dashboards": "Αναθέστε dashboards",
"assign-new-dashboard": "Ανάθεση νέου dashboard", "assign-new-dashboard": "Ανάθεση νέου dashboard",
"assign-dashboards-text": "Ανάθεση { count, plural, 1 {1 dashboard} other {# dashboards} } σε πελάτες", "assign-dashboards-text": "Ανάθεση { count, plural, =1 {1 dashboard} other {# dashboards} } σε πελάτες",
"unassign-dashboards-action-text": "Μη ανατεθειμένο/α { count, plural, 1 {1 dashboard} other {# dashboards} } από πελάτες", "unassign-dashboards-action-text": "Μη ανατεθειμένο/α { count, plural, =1 {1 dashboard} other {# dashboards} } από πελάτες",
"delete-dashboards": "Διαγραφή dashboards", "delete-dashboards": "Διαγραφή dashboards",
"unassign-dashboards": "Αφαίρεση dashboards", "unassign-dashboards": "Αφαίρεση dashboards",
"unassign-dashboards-action-title": "Αφαίρεση { count, plural, 1 {1 dashboard} other {# dashboards} } από πελάτη", "unassign-dashboards-action-title": "Αφαίρεση { count, plural, =1 {1 dashboard} other {# dashboards} } από πελάτη",
"delete-dashboard-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε το dashboard '{{dashboardTitle}}'?", "delete-dashboard-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε το dashboard '{{dashboardTitle}}'?",
"delete-dashboard-text": "Προσοχή, μετά την επιβεβαίωση, το dashboard και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-dashboard-text": "Προσοχή, μετά την επιβεβαίωση, το dashboard και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-dashboards-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 dashboard} other {# dashboards} }?", "delete-dashboards-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"delete-dashboards-action-title": "Διααγραφή { count, plural, 1 {1 dashboard} other {# dashboards} }", "delete-dashboards-action-title": "Διααγραφή { count, plural, =1 {1 dashboard} other {# dashboards} }",
"delete-dashboards-text": "Προσοχή, μετά την επιβεβαίωση, όλα τα επιλεγμένα dashboards και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-dashboards-text": "Προσοχή, μετά την επιβεβαίωση, όλα τα επιλεγμένα dashboards και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"unassign-dashboard-title": "Είστε σίγουρου ότι θέλετε να αφαιρέσετε το dashboard '{{dashboardTitle}}'?", "unassign-dashboard-title": "Είστε σίγουρου ότι θέλετε να αφαιρέσετε το dashboard '{{dashboardTitle}}'?",
"unassign-dashboard-text": "Μετά την επιβεβαίωση το dashboard θα αφαιρεθεί και δεν θα είναι διαθέσιμο στον πελάτη.", "unassign-dashboard-text": "Μετά την επιβεβαίωση το dashboard θα αφαιρεθεί και δεν θα είναι διαθέσιμο στον πελάτη.",
"unassign-dashboard": "Αφαίρεση dashboard", "unassign-dashboard": "Αφαίρεση dashboard",
"unassign-dashboards-title": "Είστε σίγουρου ότι θέλετε να αφαιρέσετε { count, plural, 1 {1 dashboard} other {# dashboards} }?", "unassign-dashboards-title": "Είστε σίγουρου ότι θέλετε να αφαιρέσετε { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"unassign-dashboards-text": "Μετά την επιβεβαίωση όλα τα επιλεγμένα dashboards θα αφαιρεθούν και δεν θα είναι διαθέσιμα στον πελάτη.", "unassign-dashboards-text": "Μετά την επιβεβαίωση όλα τα επιλεγμένα dashboards θα αφαιρεθούν και δεν θα είναι διαθέσιμα στον πελάτη.",
"public-dashboard-title": "Το dashboard είναι δημόσιο", "public-dashboard-title": "Το dashboard είναι δημόσιο",
"public-dashboard-text": "Το dashboard <b>{{dashboardTitle}}</b> είναι δημόσιο και διαθέσιμο μέσω του παρακάτω <a href='{{publicLink}}' target='_blank'>συνδέσμου</a>:", "public-dashboard-text": "Το dashboard <b>{{dashboardTitle}}</b> είναι δημόσιο και διαθέσιμο μέσω του παρακάτω <a href='{{publicLink}}' target='_blank'>συνδέσμου</a>:",
@ -671,7 +671,7 @@
"manage-states": "Διαχείρηση κατάστασης dashboard", "manage-states": "Διαχείρηση κατάστασης dashboard",
"states": "Κατάσταση dashboard", "states": "Κατάσταση dashboard",
"search-states": "Αναζήτηση σε κατάσταση dashboard", "search-states": "Αναζήτηση σε κατάσταση dashboard",
"selected-states": "{ count, plural, 1 {1 dashboard state} other {# dashboard states} } επιλεγμένα", "selected-states": "{ count, plural, =1 {1 dashboard state} other {# dashboard states} } επιλεγμένα",
"edit-state": "Επεξεργασία κατάστασης dashboard", "edit-state": "Επεξεργασία κατάστασης dashboard",
"delete-state": "Διαγραφή κατάστασης dashboard", "delete-state": "Διαγραφή κατάστασης dashboard",
"add-state": "Προσθήκη κατάστασης dashboard", "add-state": "Προσθήκη κατάστασης dashboard",
@ -688,13 +688,13 @@
"hide-details": "Απόκρυψη λεπτομερειών", "hide-details": "Απόκρυψη λεπτομερειών",
"select-state": "Επιλογή κατάστασης", "select-state": "Επιλογή κατάστασης",
"state-controller": "Έλεγχος κατάστασης", "state-controller": "Έλεγχος κατάστασης",
"selected-dashboards": "{ count, plural, 1 {1 dashboard} other {# dashboards} } επιλεγμένα", "selected-dashboards": "{ count, plural, =1 {1 dashboard} other {# dashboards} } επιλεγμένα",
"search": "Αναζήτηση dashboards", "search": "Αναζήτηση dashboards",
"select-group-to-add": "Επιλογή ομάδας για να προστεθεί στα επιλεγμένα dashboards", "select-group-to-add": "Επιλογή ομάδας για να προστεθεί στα επιλεγμένα dashboards",
"select-group-to-move": "Επιλογή ομάδας για να μετακινηθεί στα επιλεγμένα dashboards", "select-group-to-move": "Επιλογή ομάδας για να μετακινηθεί στα επιλεγμένα dashboards",
"remove-dashboards-from-group": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, 1 {1 dashboard} other {# dashboards} } from group '{entityGroup}'?", "remove-dashboards-from-group": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, =1 {1 dashboard} other {# dashboards} } from group '{entityGroup}'?",
"group": "Ομάδα dashboards", "group": "Ομάδα dashboards",
"list-of-groups": "{ count, plural, 1 {One dashboard group} other {List of # dashboard groups} }", "list-of-groups": "{ count, plural, =1 {One dashboard group} other {List of # dashboard groups} }",
"group-name-starts-with": "Ομάδες dashboard των οποίων το όνομα αρχίζει από '{{prefix}}'" "group-name-starts-with": "Ομάδες dashboard των οποίων το όνομα αρχίζει από '{{prefix}}'"
}, },
"datakey": { "datakey": {
@ -712,11 +712,11 @@
"alarm": "Πεδία alarm", "alarm": "Πεδία alarm",
"timeseries-required": "Απαιτείται χρονική σειρά οντοτήτων.", "timeseries-required": "Απαιτείται χρονική σειρά οντοτήτων.",
"timeseries-or-attributes-required": "Απαιτείται χρονική σειρά/ιδιώτητες οντοτήτων.", "timeseries-or-attributes-required": "Απαιτείται χρονική σειρά/ιδιώτητες οντοτήτων.",
"maximum-timeseries-or-attributes": "Μέγιστο { count, plural, 1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }", "maximum-timeseries-or-attributes": "Μέγιστο { count, plural, =1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }",
"alarm-fields-required": "Απαιτούνται πεδία alarm.", "alarm-fields-required": "Απαιτούνται πεδία alarm.",
"function-types": "Τύποι λειτουργιών", "function-types": "Τύποι λειτουργιών",
"function-types-required": "Απαιτούνται τύποι λειτουργιών.", "function-types-required": "Απαιτούνται τύποι λειτουργιών.",
"maximum-function-types": "Μέγιστο { count, plural, 1 {1 function type is allowed.} other {# function types are allowed} }", "maximum-function-types": "Μέγιστο { count, plural, =1 {1 function type is allowed.} other {# function types are allowed} }",
"time-description": "χρονικό σημείο της συγκεκριμένης τιμής", "time-description": "χρονικό σημείο της συγκεκριμένης τιμής",
"value-description": "η συγκεκριμένη τιμή", "value-description": "η συγκεκριμένη τιμή",
"prev-value-description": "αποτέλεσμα της προηγούμενης λειτουργίας", "prev-value-description": "αποτέλεσμα της προηγούμενης λειτουργίας",
@ -774,11 +774,11 @@
"manage-credentials": "Διαχείρηση διαπιστευτηρίων", "manage-credentials": "Διαχείρηση διαπιστευτηρίων",
"delete": "Διαγραφή συσκευής", "delete": "Διαγραφή συσκευής",
"assign-devices": "Ανάθεση συσκευών", "assign-devices": "Ανάθεση συσκευών",
"assign-devices-text": "Ανάθεση { count, plural, 1 {1 device} other {# devices} } σε πελάτη", "assign-devices-text": "Ανάθεση { count, plural, =1 {1 device} other {# devices} } σε πελάτη",
"delete-devices": "Διαγραφή συσκευών", "delete-devices": "Διαγραφή συσκευών",
"unassign-from-customer": "Αφαίρεση από πελάτη", "unassign-from-customer": "Αφαίρεση από πελάτη",
"unassign-devices": "Αφαίρεση συσκευών", "unassign-devices": "Αφαίρεση συσκευών",
"unassign-devices-action-title": "Αφαίρεση { count, plural, 1 {1 device} other {# devices} } από πελάτη", "unassign-devices-action-title": "Αφαίρεση { count, plural, =1 {1 device} other {# devices} } από πελάτη",
"assign-new-device": "Ανάθεση νέων συσκευών", "assign-new-device": "Ανάθεση νέων συσκευών",
"make-public-device-title": "Είστε σίγουροι ότι θέλετε να κάνετε τη συσκευή '{{deviceName}}' δημόσια;", "make-public-device-title": "Είστε σίγουροι ότι θέλετε να κάνετε τη συσκευή '{{deviceName}}' δημόσια;",
"make-public-device-text": "Μετά από την επιβεβαίωσή σας η συσκευή και όλα τα δεδομένα της θα είναι δημόσια και διαθέσιμα σε τρίτους.", "make-public-device-text": "Μετά από την επιβεβαίωσή σας η συσκευή και όλα τα δεδομένα της θα είναι δημόσια και διαθέσιμα σε τρίτους.",
@ -787,13 +787,13 @@
"view-credentials": "Προβολή διαπιστευτηρίων", "view-credentials": "Προβολή διαπιστευτηρίων",
"delete-device-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την συσκευή '{{deviceName}}';", "delete-device-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την συσκευή '{{deviceName}}';",
"delete-device-text": "Προσοχή, μετά την επιβεβαίωση, η συσκευή και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-device-text": "Προσοχή, μετά την επιβεβαίωση, η συσκευή και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-devices-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 device} other {# devices} };", "delete-devices-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 device} other {# devices} };",
"delete-devices-action-title": "Διαγραφή { count, plural, 1 {1 device} other {# devices} }", "delete-devices-action-title": "Διαγραφή { count, plural, =1 {1 device} other {# devices} }",
"delete-devices-text": "Προσοχή, μετά την επιβεβαίωση, όλες οι επιλεγμένες συσκευές θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-devices-text": "Προσοχή, μετά την επιβεβαίωση, όλες οι επιλεγμένες συσκευές θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"unassign-device-title": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε την συσκευή '{{deviceName}}'?", "unassign-device-title": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε την συσκευή '{{deviceName}}'?",
"unassign-device-text": "Μετά την επιβεβαίωση, η συσκευή θα αφαιρεθεί και δεν θα είναι προσβάσιμες από τον πελάτη.", "unassign-device-text": "Μετά την επιβεβαίωση, η συσκευή θα αφαιρεθεί και δεν θα είναι προσβάσιμες από τον πελάτη.",
"unassign-device": "Αφαίρεση συσκευής", "unassign-device": "Αφαίρεση συσκευής",
"unassign-devices-title": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, 1 {1 device} other {# devices} }?", "unassign-devices-title": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, =1 {1 device} other {# devices} }?",
"unassign-devices-text": "Μετά την επιβεβαίωση, όλες οι επιλεγμένες συσκευές θα καταργηθούν και δεν θα είναι προσβάσιμες από τον πελάτη.", "unassign-devices-text": "Μετά την επιβεβαίωση, όλες οι επιλεγμένες συσκευές θα καταργηθούν και δεν θα είναι προσβάσιμες από τον πελάτη.",
"device-credentials": "Πιστοποιητικά συσκευής", "device-credentials": "Πιστοποιητικά συσκευής",
"credentials-type": "Τύπος διαπιστευτηρίων", "credentials-type": "Τύπος διαπιστευτηρίων",
@ -827,13 +827,13 @@
"public": "Δημόσιο", "public": "Δημόσιο",
"device-public": "Η συσκευή είναι δημόσια", "device-public": "Η συσκευή είναι δημόσια",
"select-device": "Επιλογή συσκευής", "select-device": "Επιλογή συσκευής",
"selected-devices": "{ count, plural, 1 {1 device} other {# devices} } επιλέχθηκαν", "selected-devices": "{ count, plural, =1 {1 device} other {# devices} } επιλέχθηκαν",
"search": "Αναζήτηση συσκευών", "search": "Αναζήτηση συσκευών",
"select-group-to-add": "Επιλέξτε την ομάδα στην οποία θα προστεθουν οι επιλεγμένες συσκευές", "select-group-to-add": "Επιλέξτε την ομάδα στην οποία θα προστεθουν οι επιλεγμένες συσκευές",
"select-group-to-move": "Επιλέξτε την ομάδα στην οποία θα μετακινηθούν οι επιλεγμένες συσκευές", "select-group-to-move": "Επιλέξτε την ομάδα στην οποία θα μετακινηθούν οι επιλεγμένες συσκευές",
"remove-devices-from-group": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, 1 {1 device} other {# devices} } from group '{entityGroup}'?", "remove-devices-from-group": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, =1 {1 device} other {# devices} } from group '{entityGroup}'?",
"group": "Ομάδα Συσκευών", "group": "Ομάδα Συσκευών",
"list-of-groups": "{ count, plural, 1 {One device group} other {List of # device groups} }", "list-of-groups": "{ count, plural, =1 {One device group} other {List of # device groups} }",
"group-name-starts-with": "Ομάδες συσκευών των οποίων το όνομα αρχίζει από '{{prefix}}'", "group-name-starts-with": "Ομάδες συσκευών των οποίων το όνομα αρχίζει από '{{prefix}}'",
"import": "Εισαγωγή συσκευής", "import": "Εισαγωγή συσκευής",
"device-file": "Αρχείο συσκευής" "device-file": "Αρχείο συσκευής"
@ -892,63 +892,63 @@
"type-required": "Απαιτείται τύπος οντότητας.", "type-required": "Απαιτείται τύπος οντότητας.",
"type-device": "Συσκευή", "type-device": "Συσκευή",
"type-devices": "Συσκευές", "type-devices": "Συσκευές",
"list-of-devices": "{ count, plural, 1 {One device} other {List of # devices} }", "list-of-devices": "{ count, plural, =1 {One device} other {List of # devices} }",
"device-name-starts-with": "Συσκευές των οποίων το όνομα αρχίζει από '{{prefix}}'", "device-name-starts-with": "Συσκευές των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-asset": "Asset", "type-asset": "Asset",
"type-assets": "Assets", "type-assets": "Assets",
"list-of-assets": "{ count, plural, 1 {One asset} other {List of # assets} }", "list-of-assets": "{ count, plural, =1 {One asset} other {List of # assets} }",
"asset-name-starts-with": "Assets των οποίων το όνομα αρχίζει από '{{prefix}}'", "asset-name-starts-with": "Assets των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-entity-view": "Προβολή οντότητας", "type-entity-view": "Προβολή οντότητας",
"type-entity-views": "Προβολές οντότητας", "type-entity-views": "Προβολές οντότητας",
"list-of-entity-views": "{ count, plural, 1 {One entity view} other {List of # entity views} }", "list-of-entity-views": "{ count, plural, =1 {One entity view} other {List of # entity views} }",
"entity-view-name-starts-with": "Προβολές οντότητας των οποίων το όνομα αρχίζει από '{{prefix}}'", "entity-view-name-starts-with": "Προβολές οντότητας των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-rule": "Κανόνας", "type-rule": "Κανόνας",
"type-rules": "Κανόνες", "type-rules": "Κανόνες",
"list-of-rules": "{ count, plural, 1 {One rule} other {List of # rules} }", "list-of-rules": "{ count, plural, =1 {One rule} other {List of # rules} }",
"rule-name-starts-with": "Κανόνες των οποίων το όνομα αρχίζει από '{{prefix}}'", "rule-name-starts-with": "Κανόνες των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-plugin": "Πρόσθετο", "type-plugin": "Πρόσθετο",
"type-plugins": "Προσθετα", "type-plugins": "Προσθετα",
"list-of-plugins": "{ count, plural, 1 {One plugin} other {List of # plugins} }", "list-of-plugins": "{ count, plural, =1 {One plugin} other {List of # plugins} }",
"plugin-name-starts-with": "Πρόσθετα των οποίων το όνομα αρχίζει από '{{prefix}}'", "plugin-name-starts-with": "Πρόσθετα των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-tenant": "Μισθωτής", "type-tenant": "Μισθωτής",
"type-tenants": "Μισθωτές", "type-tenants": "Μισθωτές",
"list-of-tenants": "{ count, plural, 1 {One tenant} other {List of # tenants} }", "list-of-tenants": "{ count, plural, =1 {One tenant} other {List of # tenants} }",
"tenant-name-starts-with": "Μισθωτές των οποίων το όνομα αρχίζει από '{{prefix}}'", "tenant-name-starts-with": "Μισθωτές των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-customer": "Πελάτης", "type-customer": "Πελάτης",
"type-customers": "Πελάτες", "type-customers": "Πελάτες",
"list-of-customers": "{ count, plural, 1 {One customer} other {List of # customers} }", "list-of-customers": "{ count, plural, =1 {One customer} other {List of # customers} }",
"customer-name-starts-with": "Πελάτες των οποίων το όνομα αρχίζει από '{{prefix}}'", "customer-name-starts-with": "Πελάτες των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-user": "Χρήστης", "type-user": "Χρήστης",
"type-users": "Χρήστες", "type-users": "Χρήστες",
"list-of-users": "{ count, plural, 1 {One user} other {List of # users} }", "list-of-users": "{ count, plural, =1 {One user} other {List of # users} }",
"user-name-starts-with": "Χρήστες των οποίων το όνομα αρχίζει από '{{prefix}}'", "user-name-starts-with": "Χρήστες των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-dashboard": "Dashboard", "type-dashboard": "Dashboard",
"type-dashboards": "Dashboards", "type-dashboards": "Dashboards",
"list-of-dashboards": "{ count, plural, 1 {One dashboard} other {List of # dashboards} }", "list-of-dashboards": "{ count, plural, =1 {One dashboard} other {List of # dashboards} }",
"dashboard-name-starts-with": "Dashboards των οποίων το όνομα αρχίζει από '{{prefix}}'", "dashboard-name-starts-with": "Dashboards των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-alarm": "Alarm", "type-alarm": "Alarm",
"type-alarms": "Alarms", "type-alarms": "Alarms",
"list-of-alarms": "{ count, plural, 1 {One alarms} other {List of # alarms} }", "list-of-alarms": "{ count, plural, =1 {One alarms} other {List of # alarms} }",
"alarm-name-starts-with": "Alarms των οποίων το όνομα αρχίζει από '{{prefix}}'", "alarm-name-starts-with": "Alarms των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-rulechain": "Αλυσίδα Κανόνων", "type-rulechain": "Αλυσίδα Κανόνων",
"type-rulechains": "Αλυσίδες Κανόνων", "type-rulechains": "Αλυσίδες Κανόνων",
"list-of-rulechains": "{ count, plural, 1 {One rule chain} other {List of # rule chains} }", "list-of-rulechains": "{ count, plural, =1 {One rule chain} other {List of # rule chains} }",
"rulechain-name-starts-with": "Αλυσίδες Κανόνων των οποίων το όνομα αρχίζει από '{{prefix}}'", "rulechain-name-starts-with": "Αλυσίδες Κανόνων των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-scheduler-event": "Προγραμματιστής", "type-scheduler-event": "Προγραμματιστής",
"type-scheduler-events": "Προγραμματιστής", "type-scheduler-events": "Προγραμματιστής",
"list-of-scheduler-events": "{ count, plural, 1 {One scheduler event} other {List of # scheduler events} }", "list-of-scheduler-events": "{ count, plural, =1 {One scheduler event} other {List of # scheduler events} }",
"scheduler-event-name-starts-with": "Προγραμματιστές γεγονότων των οποίων το όνομα αρχίζει από '{{prefix}}'", "scheduler-event-name-starts-with": "Προγραμματιστές γεγονότων των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-blob-entity": "Ογκώδη οντότητα", "type-blob-entity": "Ογκώδη οντότητα",
"type-blob-entities": "Ογκώδεις οντότητες", "type-blob-entities": "Ογκώδεις οντότητες",
"list-of-blob-entities": "{ count, plural, 1 {One blob entity} other {List of # blob entities} }", "list-of-blob-entities": "{ count, plural, =1 {One blob entity} other {List of # blob entities} }",
"blob-entity-name-starts-with": "Ογκώδεις οντότητες των οποίων το όνομα αρχίζει από '{{prefix}}'", "blob-entity-name-starts-with": "Ογκώδεις οντότητες των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-rulenode": "Κόμβος κανόνα", "type-rulenode": "Κόμβος κανόνα",
"type-rulenodes": "Κόμβοι κανόνων", "type-rulenodes": "Κόμβοι κανόνων",
"list-of-rulenodes": "{ count, plural, 1 {One rule node} other {List of # rule nodes} }", "list-of-rulenodes": "{ count, plural, =1 {One rule node} other {List of # rule nodes} }",
"rulenode-name-starts-with": "Κόμβοι κανόνων των οποίων το όνομα αρχίζει από '{{prefix}}'", "rulenode-name-starts-with": "Κόμβοι κανόνων των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-current-customer": "Τρέχον Πελάτης", "type-current-customer": "Τρέχον Πελάτης",
"search": "Αναζήτηση Οντότητες", "search": "Αναζήτηση Οντότητες",
"selected-entities": "{ count, plural, 1 {1 entity} other {# entities} } επιλεγμένα", "selected-entities": "{ count, plural, =1 {1 entity} other {# entities} } επιλεγμένα",
"entity-name": "Όνομα οντότητας", "entity-name": "Όνομα οντότητας",
"details": "Λεπτομέρειες οντότητας", "details": "Λεπτομέρειες οντότητας",
"no-entities-prompt": "Δεν βρέθηκαν οντότητες", "no-entities-prompt": "Δεν βρέθηκαν οντότητες",
@ -957,15 +957,15 @@
"type-entity-group": "Ομάδα Οντότητας", "type-entity-group": "Ομάδα Οντότητας",
"type-converter": "Μετατροπέας Δεδομένων", "type-converter": "Μετατροπέας Δεδομένων",
"type-converters": "Μετατροπείς Δεδομένων", "type-converters": "Μετατροπείς Δεδομένων",
"list-of-converters": "{ count, plural, 1 {One data converter} other {List of # data converters} }", "list-of-converters": "{ count, plural, =1 {One data converter} other {List of # data converters} }",
"converter-name-starts-with": "Μετατροπείς δεδομένων των οποίων το όνομα αρχίζει από '{{prefix}}'", "converter-name-starts-with": "Μετατροπείς δεδομένων των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-integration": "Ενσωμάτωση", "type-integration": "Ενσωμάτωση",
"type-integrations": "Ενσωματώσεις", "type-integrations": "Ενσωματώσεις",
"list-of-integrations": "{ count, plural, 1 {One integration} other {List of # integrations} }", "list-of-integrations": "{ count, plural, =1 {One integration} other {List of # integrations} }",
"integration-name-starts-with": "Ενσωματώσεις των οποίων το όνομα αρχίζει από '{{prefix}}'", "integration-name-starts-with": "Ενσωματώσεις των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-role": "Ρόλος", "type-role": "Ρόλος",
"type-roles": "Ρόλοι", "type-roles": "Ρόλοι",
"list-of-roles": "{ count, plural, 1 {One role} other {List of # roles} }", "list-of-roles": "{ count, plural, =1 {One role} other {List of # roles} }",
"role-name-starts-with": "Ρόλοι των οποίων το όνομα αρχίζει από '{{prefix}}'", "role-name-starts-with": "Ρόλοι των οποίων το όνομα αρχίζει από '{{prefix}}'",
"type-group-permission": "Άδεια Ομάδας" "type-group-permission": "Άδεια Ομάδας"
}, },
@ -997,8 +997,8 @@
"delete-entity-groups": "Διαγραφή ομαδών οντοτήτων", "delete-entity-groups": "Διαγραφή ομαδών οντοτήτων",
"delete-entity-group-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την ομάδα οντοτήτων '{{entityGroupName}}'?", "delete-entity-group-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την ομάδα οντοτήτων '{{entityGroupName}}'?",
"delete-entity-group-text": "Προσοχή, μετά την επιβεβαίωση, η ομάδα οντοτήτων και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-entity-group-text": "Προσοχή, μετά την επιβεβαίωση, η ομάδα οντοτήτων και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-entity-groups-title": "Είστε σίγουροι ότι θέλετε να διαγραφούν { count, plural, 1 {1 entity group} other {# entity groups} }?", "delete-entity-groups-title": "Είστε σίγουροι ότι θέλετε να διαγραφούν { count, plural, =1 {1 entity group} other {# entity groups} }?",
"delete-entity-groups-action-title": "Διαγραφή { count, plural, 1 {1 entity group} other {# entity groups} }", "delete-entity-groups-action-title": "Διαγραφή { count, plural, =1 {1 entity group} other {# entity groups} }",
"delete-entity-groups-text": "Προσοχή, αφού ολοκληρωθεί η επιβεβαίωση, όλες οι επιλεγμένες ομάδες οντοτήτων θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-entity-groups-text": "Προσοχή, αφού ολοκληρωθεί η επιβεβαίωση, όλες οι επιλεγμένες ομάδες οντοτήτων θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"device-groups": "Ομάδες Συσκευών", "device-groups": "Ομάδες Συσκευών",
"asset-groups": "Ομάδες Asset", "asset-groups": "Ομάδες Asset",
@ -1054,7 +1054,7 @@
"select-target-owner": "Επιλογή ιδιοκτήτη", "select-target-owner": "Επιλογή ιδιοκτήτη",
"no-owners-matching": "Δεν βρέθηκε ιδιοκτήτης που να αντιστοιχεί σε '{{owner}}'.", "no-owners-matching": "Δεν βρέθηκε ιδιοκτήτης που να αντιστοιχεί σε '{{owner}}'.",
"target-owner-required": "Απαιτείται επιλεγμένος ιδιοκτήτης.", "target-owner-required": "Απαιτείται επιλεγμένος ιδιοκτήτης.",
"confirm-change-owner-title": "Είστε σίγουροι ότι θέλετε να αλλάξετε ιδιοκτήτη για { count, plural, 1 {1 selected entity} other {# selected entities} }?", "confirm-change-owner-title": "Είστε σίγουροι ότι θέλετε να αλλάξετε ιδιοκτήτη για { count, plural, =1 {1 selected entity} other {# selected entities} }?",
"confirm-change-owner-text": "Προσοχή, μετά την επιβεβαίωση, όλες οι επιλεγμένες οντότητες θα αφαιρεθούν από τον τρέχοντα ιδιοκτήτη και θα τοποθετηθούν στην ομάδα 'Όλα' του επιλεγμένου ιδιοκτήτη.", "confirm-change-owner-text": "Προσοχή, μετά την επιβεβαίωση, όλες οι επιλεγμένες οντότητες θα αφαιρεθούν από τον τρέχοντα ιδιοκτήτη και θα τοποθετηθούν στην ομάδα 'Όλα' του επιλεγμένου ιδιοκτήτη.",
"add-to-group": "Προσθήκη σε ομάδα", "add-to-group": "Προσθήκη σε ομάδα",
"move-to-group": "Μετακίνηση σε ομάδα", "move-to-group": "Μετακίνηση σε ομάδα",
@ -1156,18 +1156,18 @@
"add-entity-view-text": "Προσθήκη νέας προβολής οντότητας", "add-entity-view-text": "Προσθήκη νέας προβολής οντότητας",
"delete": "Διαγραφή προβολής οντότητας", "delete": "Διαγραφή προβολής οντότητας",
"assign-entity-views": "Ανάθεση προβολών οντότητας", "assign-entity-views": "Ανάθεση προβολών οντότητας",
"assign-entity-views-text": "Ανάθεση { count, plural, 1 {1 entityView} other {# entityViews} } σε πελάτη", "assign-entity-views-text": "Ανάθεση { count, plural, =1 {1 entityView} other {# entityViews} } σε πελάτη",
"delete-entity-views": "Διαγραφή προβολών οντότητας", "delete-entity-views": "Διαγραφή προβολών οντότητας",
"make-public": "Δημοσιοποίηση προβολής οντότητας", "make-public": "Δημοσιοποίηση προβολής οντότητας",
"make-private": "Ιδιωτικοποίηση προβολής οντότητας", "make-private": "Ιδιωτικοποίηση προβολής οντότητας",
"unassign-from-customer": "Αφαίρεση από πελάτη", "unassign-from-customer": "Αφαίρεση από πελάτη",
"unassign-entity-views": "Αφαίρεση προβολών οντότητας", "unassign-entity-views": "Αφαίρεση προβολών οντότητας",
"unassign-entity-views-action-title": "Αφαίρεση { count, plural, 1 {1 entityView} other {# entityViews} } από πελάτη", "unassign-entity-views-action-title": "Αφαίρεση { count, plural, =1 {1 entityView} other {# entityViews} } από πελάτη",
"assign-new-entity-view": "Ανάθεση νέας προβολής οντότητας", "assign-new-entity-view": "Ανάθεση νέας προβολής οντότητας",
"delete-entity-view-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την προβολή οντότητας '{{entityViewName}}'?", "delete-entity-view-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την προβολή οντότητας '{{entityViewName}}'?",
"delete-entity-view-text": "Προσοχή, μετά την επιβεβαίωση, η προβολή της οντότητας και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-entity-view-text": "Προσοχή, μετά την επιβεβαίωση, η προβολή της οντότητας και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-entity-views-title": "Είστε σίγουροι ότι θέλετε να προβάλετε την οντότητα { count, plural, 1 {1 entityView} other {# entityViews} };", "delete-entity-views-title": "Είστε σίγουροι ότι θέλετε να προβάλετε την οντότητα { count, plural, =1 {1 entityView} other {# entityViews} };",
"delete-entity-views-action-title": "Διαγραφή { count, plural, 1 {1 entityView} other {# entityViews} }", "delete-entity-views-action-title": "Διαγραφή { count, plural, =1 {1 entityView} other {# entityViews} }",
"delete-entity-views-text": "Προσοχή, μετά την επιβεβαίωση, όλες οι επιλεγμένες προβολές της οντότητας και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-entity-views-text": "Προσοχή, μετά την επιβεβαίωση, όλες οι επιλεγμένες προβολές της οντότητας και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"make-public-entity-view-title": "Είστε σίγουροι ότι θέλετε να κάνετε την προβολή οντότητας '{{entityViewName}}' δημόσια?", "make-public-entity-view-title": "Είστε σίγουροι ότι θέλετε να κάνετε την προβολή οντότητας '{{entityViewName}}' δημόσια?",
"make-public-entity-view-text": "Μετά την επιβεβαίωση, η προβολή της οντότητας και όλα τα δεδομένα της θα δημοσιοποιηθούν και θα είναι προσβάσιμα από τρίτους.", "make-public-entity-view-text": "Μετά την επιβεβαίωση, η προβολή της οντότητας και όλα τα δεδομένα της θα δημοσιοποιηθούν και θα είναι προσβάσιμα από τρίτους.",
@ -1176,7 +1176,7 @@
"unassign-entity-view-title": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε την προβολη οντότητας '{{entityViewName}}';", "unassign-entity-view-title": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε την προβολη οντότητας '{{entityViewName}}';",
"unassign-entity-view-text": "Μετά την επιβεβαίωση, η προβολή της οντότητας θα καταργηθεί και δεν θα είναι προσβάσιμη από τον πελάτη.", "unassign-entity-view-text": "Μετά την επιβεβαίωση, η προβολή της οντότητας θα καταργηθεί και δεν θα είναι προσβάσιμη από τον πελάτη.",
"unassign-entity-view": "Αφαίρεση προβολής οντότητας", "unassign-entity-view": "Αφαίρεση προβολής οντότητας",
"unassign-entity-views-title": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, 1 {1 entityView} other {# entityViews} };", "unassign-entity-views-title": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, =1 {1 entityView} other {# entityViews} };",
"unassign-entity-views-text": "Μετά την επιβεβαίωση, όλες οι επιλεγμένες προβολές οντοτήτων θα αφαιρεθούν και δεν θα είναι προσβάσιμες από τον πελάτη.", "unassign-entity-views-text": "Μετά την επιβεβαίωση, όλες οι επιλεγμένες προβολές οντοτήτων θα αφαιρεθούν και δεν θα είναι προσβάσιμες από τον πελάτη.",
"entity-view-type": "Τύπος Προβολής Οντότητας", "entity-view-type": "Τύπος Προβολής Οντότητας",
"entity-view-type-required": "Απαιτείται τύπος προβολής οντότητας.", "entity-view-type-required": "Απαιτείται τύπος προβολής οντότητας.",
@ -1215,13 +1215,13 @@
"attributes-propagation-hint": "Η προβολή οντοτήτων θα αντιγράφει αυτόματα καθορισμένα χαρακτηριστικά από την στοχευμένη οντότητα κάθε φορά που αποθηκεύετε ή ενημερώνετε αυτήν την προβολή οντότητας. Για λόγους απόδοσης, τα χαρακτηριστικά της στοχευμένης οντότητας δεν μεταδίδονται στην προβολή οντότητας με κάθε αλλαγή χαρακτηριστικών. Μπορείτε να ενεργοποιήσετε την αυτόματη διάδοση ρυθμίζοντας τον κόμβο \"αντιγραφή για προβολή \" στην αλυσίδα κανόνων σας και συνδέοντας τα μηνύματα \"Χαρακτηριστικά Post \" και \"Ενημερωμένα Χαρακτηριστικά \" στον νέο κόμβο.", "attributes-propagation-hint": "Η προβολή οντοτήτων θα αντιγράφει αυτόματα καθορισμένα χαρακτηριστικά από την στοχευμένη οντότητα κάθε φορά που αποθηκεύετε ή ενημερώνετε αυτήν την προβολή οντότητας. Για λόγους απόδοσης, τα χαρακτηριστικά της στοχευμένης οντότητας δεν μεταδίδονται στην προβολή οντότητας με κάθε αλλαγή χαρακτηριστικών. Μπορείτε να ενεργοποιήσετε την αυτόματη διάδοση ρυθμίζοντας τον κόμβο \"αντιγραφή για προβολή \" στην αλυσίδα κανόνων σας και συνδέοντας τα μηνύματα \"Χαρακτηριστικά Post \" και \"Ενημερωμένα Χαρακτηριστικά \" στον νέο κόμβο.",
"timeseries-data": "Δεδομένα χρονικής σειράς", "timeseries-data": "Δεδομένα χρονικής σειράς",
"timeseries-data-hint": "Ρυθμίστε τα δεδομένα της χρονικής σειράς της στοχευμένης οντότητας που θα είναι διαθέσιμα στην προβολή οντοτητας. Αυτά τα δεδομένα χρονικής σειράς είναι μόνο για ανάγνωση.", "timeseries-data-hint": "Ρυθμίστε τα δεδομένα της χρονικής σειράς της στοχευμένης οντότητας που θα είναι διαθέσιμα στην προβολή οντοτητας. Αυτά τα δεδομένα χρονικής σειράς είναι μόνο για ανάγνωση.",
"selected-entity-views": "{ count, plural, 1 {1 entity view} other {# entity views} } επιλεγμένα", "selected-entity-views": "{ count, plural, =1 {1 entity view} other {# entity views} } επιλεγμένα",
"search": "Αναζήτηση προβολών οντότητας", "search": "Αναζήτηση προβολών οντότητας",
"select-group-to-add": "Επιλογή ομάδας για προσθήκη των επιλεγμένων προβολών οντότητας", "select-group-to-add": "Επιλογή ομάδας για προσθήκη των επιλεγμένων προβολών οντότητας",
"select-group-to-move": "Επιλογή ομάδας για μετακίνηση των επιλεγμένων προβολών οντότητας", "select-group-to-move": "Επιλογή ομάδας για μετακίνηση των επιλεγμένων προβολών οντότητας",
"remove-entity-views-from-group": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, 1 {1 entity view} other {# entity views} } from group '{entityGroup}'?", "remove-entity-views-from-group": "Είστε σίγουροι ότι θέλετε να αφαιρέσετε { count, plural, =1 {1 entity view} other {# entity views} } from group '{entityGroup}'?",
"group": "Ομάδα προβολών οντότητας", "group": "Ομάδα προβολών οντότητας",
"list-of-groups": "{ count, plural, 1 {One entity view group} other {List of # entity view groups} }", "list-of-groups": "{ count, plural, =1 {One entity view group} other {List of # entity view groups} }",
"group-name-starts-with": "Ομάδες προβολής οντότητας των οποίων το όνομα αρχίζει από '{{prefix}}'" "group-name-starts-with": "Ομάδες προβολής οντότητας των οποίων το όνομα αρχίζει από '{{prefix}}'"
}, },
"event": { "event": {
@ -1262,7 +1262,7 @@
}, },
"extension": { "extension": {
"extensions": "Επεκτάσεις", "extensions": "Επεκτάσεις",
"selected-extensions": "{ count, plural, 1 {1 extension} other {# extensions} } επιλέχθηκαν", "selected-extensions": "{ count, plural, =1 {1 extension} other {# extensions} } επιλέχθηκαν",
"type": "Τύπος", "type": "Τύπος",
"key": "Κλειδί", "key": "Κλειδί",
"value": "Τιμή", "value": "Τιμή",
@ -1277,7 +1277,7 @@
"view": "Προβολή επέκτασης", "view": "Προβολή επέκτασης",
"delete-extension-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την επέκταση '{{extensionId}}';", "delete-extension-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την επέκταση '{{extensionId}}';",
"delete-extension-text": "Προσοχή, μετά την επιβεβαίωση, η επέκταση και όλα τα σχετικά δεδομένα θα διαγραφούν μόνιμα.", "delete-extension-text": "Προσοχή, μετά την επιβεβαίωση, η επέκταση και όλα τα σχετικά δεδομένα θα διαγραφούν μόνιμα.",
"delete-extensions-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 extension} other {# extensions} }?", "delete-extensions-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 extension} other {# extensions} }?",
"delete-extensions-text": "Προσέξτε, μετά την επιβεβαίωση θα αφαιρεθούν όλες οι επιλεγμένες επεκτάσεις.", "delete-extensions-text": "Προσέξτε, μετά την επιβεβαίωση θα αφαιρεθούν όλες οι επιλεγμένες επεκτάσεις.",
"converters": "Μετατροπείς", "converters": "Μετατροπείς",
"converter-id": "ID Μετατροπέα", "converter-id": "ID Μετατροπέα",
@ -1430,8 +1430,8 @@
"grid": { "grid": {
"delete-item-title": "Είστε σίγουροι ότι θέλετε να διαγραφεί αυτό το αντικείμενο?", "delete-item-title": "Είστε σίγουροι ότι θέλετε να διαγραφεί αυτό το αντικείμενο?",
"delete-item-text": "Προσοχή, μετά την επιβεβαίωση, αυτό το στοιχείο και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-item-text": "Προσοχή, μετά την επιβεβαίωση, αυτό το στοιχείο και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-items-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε { count, plural, 1 {1 item} other {# items} }?", "delete-items-title": "Είστε βέβαιοι ότι θέλετε να διαγράψετε { count, plural, =1 {1 item} other {# items} }?",
"delete-items-action-title": "Διαγραφή { count, plural, 1 {1 item} other {# items} }", "delete-items-action-title": "Διαγραφή { count, plural, =1 {1 item} other {# items} }",
"delete-items-text": "Προσοχή, μετά την επιβεβαίωση, όλα τα επιλεγμένα στοιχεία θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-items-text": "Προσοχή, μετά την επιβεβαίωση, όλα τα επιλεγμένα στοιχεία θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"add-item-text": "Προσθήκη νέου αντικειμένου", "add-item-text": "Προσθήκη νέου αντικειμένου",
"no-items-text": "Δεν βρέθηκαν αντικείμενα", "no-items-text": "Δεν βρέθηκαν αντικείμενα",
@ -1498,11 +1498,11 @@
"management": "Διαχείριση Ενσωματώσεων", "management": "Διαχείριση Ενσωματώσεων",
"add-integration-text": "Προσθήκη νέας ενσωμάτωσης", "add-integration-text": "Προσθήκη νέας ενσωμάτωσης",
"no-integrations-text": "Δεν βρέθηκαν ενσωματώσεις", "no-integrations-text": "Δεν βρέθηκαν ενσωματώσεις",
"selected-integrations": "{ count, plural, 1 {1 integration} other {# integrations} } επιλέχθηκαν", "selected-integrations": "{ count, plural, =1 {1 integration} other {# integrations} } επιλέχθηκαν",
"delete-integration-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την ενσωμάτωση '{{integrationName}}';", "delete-integration-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την ενσωμάτωση '{{integrationName}}';",
"delete-integration-text": "Προσοχή, μετά την επιβεβαίωση, η ενσωμάτωση και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-integration-text": "Προσοχή, μετά την επιβεβαίωση, η ενσωμάτωση και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-integrations-title": "Είστε σίγουροι ότι θέλετε { count, plural, 1 {1 integration} other {# integrations} };", "delete-integrations-title": "Είστε σίγουροι ότι θέλετε { count, plural, =1 {1 integration} other {# integrations} };",
"delete-integrations-action-title": "Διαγραφή { count, plural, 1 {1 integration} other {# integrations} }", "delete-integrations-action-title": "Διαγραφή { count, plural, =1 {1 integration} other {# integrations} }",
"delete-integrations-text": "Προσοχή, αφού ολοκληρωθεί η επιβεβαίωση, όλες οι επιλεγμένες ενσωματώσεις θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-integrations-text": "Προσοχή, αφού ολοκληρωθεί η επιβεβαίωση, όλες οι επιλεγμένες ενσωματώσεις θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"events": "Γεγονότα", "events": "Γεγονότα",
"add": "Προσθήκη Ενσωμάτωσης", "add": "Προσθήκη Ενσωμάτωσης",
@ -1758,7 +1758,7 @@
}, },
"from-relations": "Εξωτερικές σχέσεις", "from-relations": "Εξωτερικές σχέσεις",
"to-relations": "Εσωτερικές σχέσεις", "to-relations": "Εσωτερικές σχέσεις",
"selected-relations": "{ count, plural, 1 {1 relation} other {# relations} } επιλέχθηκαν", "selected-relations": "{ count, plural, =1 {1 relation} other {# relations} } επιλέχθηκαν",
"type": "Τύπος", "type": "Τύπος",
"to-entity-type": "Στον τύπο οντότητας", "to-entity-type": "Στον τύπο οντότητας",
"to-entity-name": "Στο όνομα οντότητας", "to-entity-name": "Στο όνομα οντότητας",
@ -1774,11 +1774,11 @@
"edit": "Επεξεργασία σχέσης", "edit": "Επεξεργασία σχέσης",
"delete-to-relation-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε τη σχέση με την οντότητα '{{entityName}}'?", "delete-to-relation-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε τη σχέση με την οντότητα '{{entityName}}'?",
"delete-to-relation-text": "Προσοχή, μετά την επιβεβαίωση η οντότητα '{{entityName}}' δεν θα σχετίζεται με την τρέχουσα οντότητα.", "delete-to-relation-text": "Προσοχή, μετά την επιβεβαίωση η οντότητα '{{entityName}}' δεν θα σχετίζεται με την τρέχουσα οντότητα.",
"delete-to-relations-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 relation} other {# relations} };", "delete-to-relations-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 relation} other {# relations} };",
"delete-to-relations-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες σχέσεις θα αφαιρεθούν και οι αντίστοιχες οντότητες δεν θα σχετίζονται με την τρέχουσα οντότητα.", "delete-to-relations-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες σχέσεις θα αφαιρεθούν και οι αντίστοιχες οντότητες δεν θα σχετίζονται με την τρέχουσα οντότητα.",
"delete-from-relation-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε σχέση από την οντότητα '{{entityName}}';", "delete-from-relation-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε σχέση από την οντότητα '{{entityName}}';",
"delete-from-relation-text": "Προσοχή, μετά την επιβεβαίωση η τρέχουσα οντότητα δεν θα σχετίζεται με την οντότητα '{{entityName}}'.", "delete-from-relation-text": "Προσοχή, μετά την επιβεβαίωση η τρέχουσα οντότητα δεν θα σχετίζεται με την οντότητα '{{entityName}}'.",
"delete-from-relations-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 relation} other {# relations} };", "delete-from-relations-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 relation} other {# relations} };",
"delete-from-relations-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες σχέσεις θα αφαιρεθούν και η τρέχουσα οντότητα δεν θα σχετίζεται με τις αντίστοιχες οντότητες.", "delete-from-relations-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες σχέσεις θα αφαιρεθούν και η τρέχουσα οντότητα δεν θα σχετίζεται με τις αντίστοιχες οντότητες.",
"remove-relation-filter": "Αφαίρεση φίλτρου σχέσης", "remove-relation-filter": "Αφαίρεση φίλτρου σχέσης",
"add-relation-filter": "Προσθήκη φίλτρου σχέσης", "add-relation-filter": "Προσθήκη φίλτρου σχέσης",
@ -1801,8 +1801,8 @@
"set-root-rulechain-text": "Μετά την επιβεβαίωση, η Αλυσίδα Κανόνων θα γίνει ριζική και θα χειριστεί όλα τα εισερχόμενα μηνύματα μεταφοράς.", "set-root-rulechain-text": "Μετά την επιβεβαίωση, η Αλυσίδα Κανόνων θα γίνει ριζική και θα χειριστεί όλα τα εισερχόμενα μηνύματα μεταφοράς.",
"delete-rulechain-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την Αλυσίδα Κανόνων '{{ruleChainName}}';", "delete-rulechain-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την Αλυσίδα Κανόνων '{{ruleChainName}}';",
"delete-rulechain-text": "Προσοχή, μετά την επιβεβαίωση η Αλυσίδα Κανόνων θα αφαιρεθεί και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-rulechain-text": "Προσοχή, μετά την επιβεβαίωση η Αλυσίδα Κανόνων θα αφαιρεθεί και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-rulechains-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 rule chain} other {# rule chains} };", "delete-rulechains-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 rule chain} other {# rule chains} };",
"delete-rulechains-action-title": "Διαγραφή { count, plural, 1 {1 rule chain} other {# rule chains} }", "delete-rulechains-action-title": "Διαγραφή { count, plural, =1 {1 rule chain} other {# rule chains} }",
"delete-rulechains-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες αλυσίδες κανόνων θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-rulechains-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες αλυσίδες κανόνων θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"add-rulechain-text": "Προσθήκη νέας Αλυσίδας Κανόνων", "add-rulechain-text": "Προσθήκη νέας Αλυσίδας Κανόνων",
"no-rulechains-text": "Δεν βρέθηκαν Αλυσίδες Κανόνων", "no-rulechains-text": "Δεν βρέθηκαν Αλυσίδες Κανόνων",
@ -1906,8 +1906,8 @@
"delete-roles": "Διαγραφή ρόλων", "delete-roles": "Διαγραφή ρόλων",
"delete-role-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε το ρόλο '{{roleName}}';", "delete-role-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε το ρόλο '{{roleName}}';",
"delete-role-text": "Προσοχή, μετά την επιβεβαίωση ο ρόλος και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-role-text": "Προσοχή, μετά την επιβεβαίωση ο ρόλος και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-roles-title": "Είστε σίγουροι ότι θέλετε να παίξετε { count, plural, 1 {1 role} other {# roles} };", "delete-roles-title": "Είστε σίγουροι ότι θέλετε να παίξετε { count, plural, =1 {1 role} other {# roles} };",
"delete-roles-action-title": "Διαγραφή { count, plural, 1 {1 role} other {# roles} }", "delete-roles-action-title": "Διαγραφή { count, plural, =1 {1 role} other {# roles} }",
"delete-roles-text": "Προσοχή, μετά την επιβεβαίωση όλοι οι επιλεγμένοι ρόλοι θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-roles-text": "Προσοχή, μετά την επιβεβαίωση όλοι οι επιλεγμένοι ρόλοι θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"role-type": "΄Τύπος ρόλου", "role-type": "΄Τύπος ρόλου",
"role-type-required": "Απαιτείται τύπος ρόλου.", "role-type-required": "Απαιτείται τύπος ρόλου.",
@ -1943,11 +1943,11 @@
"user-group-owner": "Κάτοχος χρήστη ομάδας", "user-group-owner": "Κάτοχος χρήστη ομάδας",
"edit": "Επεξεργασία Αδειών", "edit": "Επεξεργασία Αδειών",
"delete": "Διαγραφή αδειών", "delete": "Διαγραφή αδειών",
"selected-group-permissions": "{ count, plural, 1 {1 group permission} other {# group permissions} } επιλέχθηκαν", "selected-group-permissions": "{ count, plural, =1 {1 group permission} other {# group permissions} } επιλέχθηκαν",
"delete-group-permission-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την άδεια ομάδας '{{roleName}}';", "delete-group-permission-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε την άδεια ομάδας '{{roleName}}';",
"delete-group-permission-text": "Προσοχή, μετά την επιβεβαίωση η άδεια ομάδας και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-group-permission-text": "Προσοχή, μετά την επιβεβαίωση η άδεια ομάδας και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-group-permission": "Διαγραφή άδειας ομάδας", "delete-group-permission": "Διαγραφή άδειας ομάδας",
"delete-group-permissions-title": "Έίστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 group permission} other {# group permission} };", "delete-group-permissions-title": "Έίστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 group permission} other {# group permission} };",
"delete-group-permissions-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες άδειες ομάδας θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-group-permissions-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες άδειες ομάδας θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-group-permissions": "Διαγραφή αδειών ομάδας", "delete-group-permissions": "Διαγραφή αδειών ομάδας",
"add-group-permission": "Προσθήκη ομαδικής άδειας", "add-group-permission": "Προσθήκη ομαδικής άδειας",
@ -2044,10 +2044,10 @@
"view-scheduler-event": "Προβολή προγραμματισμένου γεγονότος", "view-scheduler-event": "Προβολή προγραμματισμένου γεγονότος",
"delete-scheduler-event": "Διαγραφή προγραμματισμένου γεγονότος", "delete-scheduler-event": "Διαγραφή προγραμματισμένου γεγονότος",
"no-scheduler-events": "Δεν βρέθηκαν προγραμματισμένα γεγονότα", "no-scheduler-events": "Δεν βρέθηκαν προγραμματισμένα γεγονότα",
"selected-scheduler-events": "{ count, plural, 1 {1 scheduler event} other {# scheduler events} } επιλέχθηκαν", "selected-scheduler-events": "{ count, plural, =1 {1 scheduler event} other {# scheduler events} } επιλέχθηκαν",
"delete-scheduler-event-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε το προγραμματισμένο γεγονός '{{schedulerEventName}}';", "delete-scheduler-event-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε το προγραμματισμένο γεγονός '{{schedulerEventName}}';",
"delete-scheduler-event-text": "Προσοχή, μετά την επιβεβαίωση το προγραμματισμένο γεγονός και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-scheduler-event-text": "Προσοχή, μετά την επιβεβαίωση το προγραμματισμένο γεγονός και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-scheduler-events-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 scheduler event} other {# scheduler events} };", "delete-scheduler-events-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 scheduler event} other {# scheduler events} };",
"delete-scheduler-events-text": "Προσοχή, μετά την επιβεβαίωση όλα τα επιλεγμένα προγραμματισμένα γεγονότα θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-scheduler-events-text": "Προσοχή, μετά την επιβεβαίωση όλα τα επιλεγμένα προγραμματισμένα γεγονότα θα καταργηθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"create": "Δημιουργία προγραμματισμένου γεγονότος", "create": "Δημιουργία προγραμματισμένου γεγονότος",
"edit": "Επεξεργασία προγραμματισμένου γεγονότος", "edit": "Επεξεργασία προγραμματισμένου γεγονότος",
@ -2189,8 +2189,8 @@
"tenant-details": "Λεπτομέρειες Μισθωτή", "tenant-details": "Λεπτομέρειες Μισθωτή",
"delete-tenant-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε τον Μισθωτή '{{tenantTitle}}';", "delete-tenant-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε τον Μισθωτή '{{tenantTitle}}';",
"delete-tenant-text": "Προσοχή, μετά την επιβεβαίωση ο Μισθωτής και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-tenant-text": "Προσοχή, μετά την επιβεβαίωση ο Μισθωτής και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-tenants-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 tenant} other {# tenants} };", "delete-tenants-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 tenant} other {# tenants} };",
"delete-tenants-action-title": "Διαγραφή { count, plural, 1 {1 tenant} other {# tenants} }", "delete-tenants-action-title": "Διαγραφή { count, plural, =1 {1 tenant} other {# tenants} }",
"delete-tenants-text": "Προσοχή, μετά την επιβεβαίωση όλοι οι επιλεγμένοι Μισθωτές θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-tenants-text": "Προσοχή, μετά την επιβεβαίωση όλοι οι επιλεγμένοι Μισθωτές θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"title": "Τίτλος", "title": "Τίτλος",
"title-required": "Απαιτείται Τίτλος.", "title-required": "Απαιτείται Τίτλος.",
@ -2202,16 +2202,16 @@
"select-tenant": "Επιλογή Μισθωτή", "select-tenant": "Επιλογή Μισθωτή",
"no-tenants-matching": "Δεν βρέθηκαν Μισθωτές που να ταιριάζουν '{{entity}}'.", "no-tenants-matching": "Δεν βρέθηκαν Μισθωτές που να ταιριάζουν '{{entity}}'.",
"tenant-required": "Απαιτείται Μισθωτής", "tenant-required": "Απαιτείται Μισθωτής",
"selected-tenants": "{ count, plural, 1 {1 tenant} other {# tenants} } επιλέχθηκαν", "selected-tenants": "{ count, plural, =1 {1 tenant} other {# tenants} } επιλέχθηκαν",
"search": "Αναζήτηση Μισθωτών", "search": "Αναζήτηση Μισθωτών",
"allow-white-labeling": "Επιτρέπεται Προσαρμογή Εμφάνισης", "allow-white-labeling": "Επιτρέπεται Προσαρμογή Εμφάνισης",
"allow-customer-white-labeling": "Επιτρέπεται Προσαρμογή Εμφάνισης Πελάτη" "allow-customer-white-labeling": "Επιτρέπεται Προσαρμογή Εμφάνισης Πελάτη"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 second} other {# seconds} }", "seconds-interval": "{ seconds, plural, =1 {1 second} other {# seconds} }",
"minutes-interval": "{ minutes, plural, 1 {1 minute} other {# minutes} }", "minutes-interval": "{ minutes, plural, =1 {1 minute} other {# minutes} }",
"hours-interval": "{ hours, plural, 1 {1 hour} other {# hours} }", "hours-interval": "{ hours, plural, =1 {1 hour} other {# hours} }",
"days-interval": "{ days, plural, 1 {1 day} other {# days} }", "days-interval": "{ days, plural, =1 {1 day} other {# days} }",
"days": "Ημέρες", "days": "Ημέρες",
"hours": "Ώρες", "hours": "Ώρες",
"minutes": "Λεπτά", "minutes": "Λεπτά",
@ -2219,10 +2219,10 @@
"advanced": "Προηγμένος" "advanced": "Προηγμένος"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { day } other {# days } }", "days": "{ days, plural, =1 { day } other {# days } }",
"hours": "{ hours, plural, 0 { hour } 1 {1 hour } other {# hours } }", "hours": "{ hours, plural, =0 { hour } =1 {1 hour } other {# hours } }",
"minutes": "{ minutes, plural, 0 { minute } 1 {1 minute } other {# minutes } }", "minutes": "{ minutes, plural, =0 { minute } =1 {1 minute } other {# minutes } }",
"seconds": "{ seconds, plural, 0 { second } 1 {1 second } other {# seconds } }", "seconds": "{ seconds, plural, =0 { second } =1 {1 second } other {# seconds } }",
"realtime": "Πραγματικός Χρόνος", "realtime": "Πραγματικός Χρόνος",
"history": "Ιστορικό", "history": "Ιστορικό",
"last-prefix": "Τελευταίος", "last-prefix": "Τελευταίος",
@ -2250,8 +2250,8 @@
"delete-users": "Διαγραφή Χρηστών", "delete-users": "Διαγραφή Χρηστών",
"delete-user-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε το Χρήστη '{{userEmail}}'?", "delete-user-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε το Χρήστη '{{userEmail}}'?",
"delete-user-text": "Προσοχή, μετά την επιβεβαίωση ο Χρήστης και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-user-text": "Προσοχή, μετά την επιβεβαίωση ο Χρήστης και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-users-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 user} other {# users} };", "delete-users-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 user} other {# users} };",
"delete-users-action-title": "Διαγραφή { count, plural, 1 {1 user} other {# users} }", "delete-users-action-title": "Διαγραφή { count, plural, =1 {1 user} other {# users} }",
"delete-users-text": "Προσοχή, μετά την επιβεβαίωση όλοι οι επιλεγμένοι Χρήστες θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-users-text": "Προσοχή, μετά την επιβεβαίωση όλοι οι επιλεγμένοι Χρήστες θα αφαιρεθούν και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"activation-email-sent-message": "Το email ενεργοποίησης στάλθηκε με επιτυχία!", "activation-email-sent-message": "Το email ενεργοποίησης στάλθηκε με επιτυχία!",
"resend-activation": "Επανάληψη ενεργοποίησης", "resend-activation": "Επανάληψη ενεργοποίησης",
@ -2273,16 +2273,16 @@
"activation-link-text": "΄Προκειμένου να ενεργοποιήσετε το Χρήστη, χρησιμοποιήστε το εξής <a href='{{activationLink}}' target='_blank'>activation link</a> :", "activation-link-text": "΄Προκειμένου να ενεργοποιήσετε το Χρήστη, χρησιμοποιήστε το εξής <a href='{{activationLink}}' target='_blank'>activation link</a> :",
"copy-activation-link": "Αντιγραφή συνδέσμου ενεργοποίησης", "copy-activation-link": "Αντιγραφή συνδέσμου ενεργοποίησης",
"activation-link-copied-message": "Ο σύνδεσμος ενεργοποίησης χρήστη έχει αντιγραφεί στο πρόχειρο", "activation-link-copied-message": "Ο σύνδεσμος ενεργοποίησης χρήστη έχει αντιγραφεί στο πρόχειρο",
"selected-users": "{ count, plural, 1 {1 user} other {# users} } επιλέχθηκαν", "selected-users": "{ count, plural, =1 {1 user} other {# users} } επιλέχθηκαν",
"search": "Αναζήτηση Χρηστών", "search": "Αναζήτηση Χρηστών",
"details": "Λεπτομέρειες", "details": "Λεπτομέρειες",
"login-as-tenant-admin": "Συνδεθείτε ως Διαχειριστής Μισθωτή", "login-as-tenant-admin": "Συνδεθείτε ως Διαχειριστής Μισθωτή",
"login-as-customer-user": "Συνδεθείτε ως Χρήστης του Πελάτη", "login-as-customer-user": "Συνδεθείτε ως Χρήστης του Πελάτη",
"select-group-to-add": "Επιλέξτε την ομάδα προορισμού για να προσθέσετε επιλεγμένους Χρήστες", "select-group-to-add": "Επιλέξτε την ομάδα προορισμού για να προσθέσετε επιλεγμένους Χρήστες",
"select-group-to-move": "Επιλέξτε την ομάδα προορισμού για να μετακινήσετε επιλεγμένους χρήστες", "select-group-to-move": "Επιλέξτε την ομάδα προορισμού για να μετακινήσετε επιλεγμένους χρήστες",
"remove-users-from-group": "Είστε σίγουροι ότι θέλετε να καταργήσετε { count, plural, 1 {1 user} other {# users} } από την ομάδα '{entityGroup}';", "remove-users-from-group": "Είστε σίγουροι ότι θέλετε να καταργήσετε { count, plural, =1 {1 user} other {# users} } από την ομάδα '{entityGroup}';",
"group": "Ομάδα από Χρήστες", "group": "Ομάδα από Χρήστες",
"list-of-groups": "{ count, plural, 1 {One user group} other {List of # user groups} }", "list-of-groups": "{ count, plural, =1 {One user group} other {List of # user groups} }",
"group-name-starts-with": "Ομάδες Χρηστών των οποίων τα ονόματα ξεκινούν με'{{prefix}}'" "group-name-starts-with": "Ομάδες Χρηστών των οποίων τα ονόματα ξεκινούν με'{{prefix}}'"
}, },
"value": { "value": {
@ -2381,8 +2381,8 @@
"widgets-bundle-details": "Λεπτομέρειες δέσμης Widgets", "widgets-bundle-details": "Λεπτομέρειες δέσμης Widgets",
"delete-widgets-bundle-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε τη δέσμη Widgets '{{widgetsBundleTitle}}';", "delete-widgets-bundle-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε τη δέσμη Widgets '{{widgetsBundleTitle}}';",
"delete-widgets-bundle-text": "Προσοχή, μετά την επιβεβαίωση η δέσμη Widget και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-widgets-bundle-text": "Προσοχή, μετά την επιβεβαίωση η δέσμη Widget και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"delete-widgets-bundles-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, 1 {1 widgets bundle} other {# widgets bundles} };", "delete-widgets-bundles-title": "Είστε σίγουροι ότι θέλετε να διαγράψετε { count, plural, =1 {1 widgets bundle} other {# widgets bundles} };",
"delete-widgets-bundles-action-title": "Διαγραφή { count, plural, 1 {1 widgets bundle} other {# widgets bundles} }", "delete-widgets-bundles-action-title": "Διαγραφή { count, plural, =1 {1 widgets bundle} other {# widgets bundles} }",
"delete-widgets-bundles-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες δέσμες Widget και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.", "delete-widgets-bundles-text": "Προσοχή, μετά την επιβεβαίωση όλες οι επιλεγμένες δέσμες Widget και όλα τα σχετικά δεδομένα θα διαγραφούν οριστικά.",
"no-widgets-bundles-matching": "Δεν βρέθηκαν δέσμες Widgets που να ταιριάζουν'{{widgetsBundle}}'.", "no-widgets-bundles-matching": "Δεν βρέθηκαν δέσμες Widgets που να ταιριάζουν'{{widgetsBundle}}'.",
"widgets-bundle-required": "Απαιτείται δέσμη Widgets.", "widgets-bundle-required": "Απαιτείται δέσμη Widgets.",
@ -2420,7 +2420,7 @@
"display-timewindow": "Απεικόνιση timewindow", "display-timewindow": "Απεικόνιση timewindow",
"display-legend": "Απεικόνιση λεζάντας", "display-legend": "Απεικόνιση λεζάντας",
"datasources": "Πηγές δεδομένων", "datasources": "Πηγές δεδομένων",
"maximum-datasources": "Το μέγιστο { count, plural, 1 {1 datasource is allowed.} other {# datasources are allowed} }", "maximum-datasources": "Το μέγιστο { count, plural, =1 {1 datasource is allowed.} other {# datasources are allowed} }",
"datasource-type": "Τύπος", "datasource-type": "Τύπος",
"datasource-parameters": "Παράμετροι", "datasource-parameters": "Παράμετροι",
"remove-datasource": "Κατάργηση της πηγής δεδομένων", "remove-datasource": "Κατάργηση της πηγής δεδομένων",

272
ui-ngx/src/assets/locale/locale.constant-en_US.json

@ -451,17 +451,17 @@
"acknowledge": "Acknowledge", "acknowledge": "Acknowledge",
"clear": "Clear", "clear": "Clear",
"search": "Search alarms", "search": "Search alarms",
"selected-alarms": "{ count, plural, 1 {1 alarm} other {# alarms} } selected", "selected-alarms": "{ count, plural, =1 {1 alarm} other {# alarms} } selected",
"no-data": "No data to display", "no-data": "No data to display",
"polling-interval": "Alarms polling interval (sec)", "polling-interval": "Alarms polling interval (sec)",
"polling-interval-required": "Alarms polling interval is required.", "polling-interval-required": "Alarms polling interval is required.",
"min-polling-interval-message": "At least 1 sec polling interval is allowed.", "min-polling-interval-message": "At least 1 sec polling interval is allowed.",
"aknowledge-alarms-title": "Acknowledge { count, plural, 1 {1 alarm} other {# alarms} }", "aknowledge-alarms-title": "Acknowledge { count, plural, =1 {1 alarm} other {# alarms} }",
"aknowledge-alarms-text": "Are you sure you want to acknowledge { count, plural, 1 {1 alarm} other {# alarms} }?", "aknowledge-alarms-text": "Are you sure you want to acknowledge { count, plural, =1 {1 alarm} other {# alarms} }?",
"aknowledge-alarm-title": "Acknowledge Alarm", "aknowledge-alarm-title": "Acknowledge Alarm",
"aknowledge-alarm-text": "Are you sure you want to acknowledge Alarm?", "aknowledge-alarm-text": "Are you sure you want to acknowledge Alarm?",
"clear-alarms-title": "Clear { count, plural, 1 {1 alarm} other {# alarms} }", "clear-alarms-title": "Clear { count, plural, =1 {1 alarm} other {# alarms} }",
"clear-alarms-text": "Are you sure you want to clear { count, plural, 1 {1 alarm} other {# alarms} }?", "clear-alarms-text": "Are you sure you want to clear { count, plural, =1 {1 alarm} other {# alarms} }?",
"clear-alarm-title": "Clear Alarm", "clear-alarm-title": "Clear Alarm",
"clear-alarm-text": "Are you sure you want to clear Alarm?", "clear-alarm-text": "Are you sure you want to clear Alarm?",
"alarm-status-filter": "Alarm Status Filter", "alarm-status-filter": "Alarm Status Filter",
@ -568,17 +568,17 @@
"add-asset-text": "Add new asset", "add-asset-text": "Add new asset",
"asset-details": "Asset details", "asset-details": "Asset details",
"assign-assets": "Assign assets", "assign-assets": "Assign assets",
"assign-assets-text": "Assign { count, plural, 1 {1 asset} other {# assets} } to customer", "assign-assets-text": "Assign { count, plural, =1 {1 asset} other {# assets} } to customer",
"assign-asset-to-edge-title": "Assign Asset(s) To Edge", "assign-asset-to-edge-title": "Assign Asset(s) To Edge",
"assign-asset-to-edge-text":"Please select the assets to assign to the edge", "assign-asset-to-edge-text":"Please select the assets to assign to the edge",
"delete-assets": "Delete assets", "delete-assets": "Delete assets",
"unassign-assets": "Unassign assets", "unassign-assets": "Unassign assets",
"unassign-assets-action-title": "Unassign { count, plural, 1 {1 asset} other {# assets} } from customer", "unassign-assets-action-title": "Unassign { count, plural, =1 {1 asset} other {# assets} } from customer",
"assign-new-asset": "Assign new asset", "assign-new-asset": "Assign new asset",
"delete-asset-title": "Are you sure you want to delete the asset '{{assetName}}'?", "delete-asset-title": "Are you sure you want to delete the asset '{{assetName}}'?",
"delete-asset-text": "Be careful, after the confirmation the asset and all related data will become unrecoverable.", "delete-asset-text": "Be careful, after the confirmation the asset and all related data will become unrecoverable.",
"delete-assets-title": "Are you sure you want to delete { count, plural, 1 {1 asset} other {# assets} }?", "delete-assets-title": "Are you sure you want to delete { count, plural, =1 {1 asset} other {# assets} }?",
"delete-assets-action-title": "Delete { count, plural, 1 {1 asset} other {# assets} }", "delete-assets-action-title": "Delete { count, plural, =1 {1 asset} other {# assets} }",
"delete-assets-text": "Be careful, after the confirmation all selected assets will be removed and all related data will become unrecoverable.", "delete-assets-text": "Be careful, after the confirmation all selected assets will be removed and all related data will become unrecoverable.",
"make-public-asset-title": "Are you sure you want to make the asset '{{assetName}}' public?", "make-public-asset-title": "Are you sure you want to make the asset '{{assetName}}' public?",
"make-public-asset-text": "After the confirmation the asset and all its data will be made public and accessible by others.", "make-public-asset-text": "After the confirmation the asset and all its data will be made public and accessible by others.",
@ -587,7 +587,7 @@
"unassign-asset-title": "Are you sure you want to unassign the asset '{{assetName}}'?", "unassign-asset-title": "Are you sure you want to unassign the asset '{{assetName}}'?",
"unassign-asset-text": "After the confirmation the asset will be unassigned and won't be accessible by the customer.", "unassign-asset-text": "After the confirmation the asset will be unassigned and won't be accessible by the customer.",
"unassign-asset": "Unassign asset", "unassign-asset": "Unassign asset",
"unassign-assets-title": "Are you sure you want to unassign { count, plural, 1 {1 asset} other {# assets} }?", "unassign-assets-title": "Are you sure you want to unassign { count, plural, =1 {1 asset} other {# assets} }?",
"unassign-assets-text": "After the confirmation all selected assets will be unassigned and won't be accessible by the customer.", "unassign-assets-text": "After the confirmation all selected assets will be unassigned and won't be accessible by the customer.",
"unassign-assets-from-edge": "Unassign assets from edge", "unassign-assets-from-edge": "Unassign assets from edge",
"copyId": "Copy asset Id", "copyId": "Copy asset Id",
@ -605,9 +605,9 @@
"unassign-asset-from-edge": "Unassign asset", "unassign-asset-from-edge": "Unassign asset",
"unassign-asset-from-edge-title": "Are you sure you want to unassign the asset '{{assetName}}'?", "unassign-asset-from-edge-title": "Are you sure you want to unassign the asset '{{assetName}}'?",
"unassign-asset-from-edge-text": "After the confirmation the asset will be unassigned and won't be accessible by the edge.", "unassign-asset-from-edge-text": "After the confirmation the asset will be unassigned and won't be accessible by the edge.",
"unassign-assets-from-edge-title": "Are you sure you want to unassign { count, plural, 1 {1 asset} other {# assets} }?", "unassign-assets-from-edge-title": "Are you sure you want to unassign { count, plural, =1 {1 asset} other {# assets} }?",
"unassign-assets-from-edge-text": "After the confirmation all selected assets will be unassigned and won't be accessible by the edge.", "unassign-assets-from-edge-text": "After the confirmation all selected assets will be unassigned and won't be accessible by the edge.",
"selected-assets": "{ count, plural, 1 {1 asset} other {# assets} } selected" "selected-assets": "{ count, plural, =1 {1 asset} other {# assets} } selected"
}, },
"attribute": { "attribute": {
"attributes": "Attributes", "attributes": "Attributes",
@ -624,7 +624,7 @@
"key-required": "Attribute key is required.", "key-required": "Attribute key is required.",
"value": "Value", "value": "Value",
"value-required": "Attribute value is required.", "value-required": "Attribute value is required.",
"delete-attributes-title": "Are you sure you want to delete { count, plural, 1 {1 attribute} other {# attributes} }?", "delete-attributes-title": "Are you sure you want to delete { count, plural, =1 {1 attribute} other {# attributes} }?",
"delete-attributes-text": "Be careful, after the confirmation all selected attributes will be removed.", "delete-attributes-text": "Be careful, after the confirmation all selected attributes will be removed.",
"delete-attributes": "Delete attributes", "delete-attributes": "Delete attributes",
"enter-attribute-value": "Enter attribute value", "enter-attribute-value": "Enter attribute value",
@ -634,8 +634,8 @@
"prev-widget": "Previous widget", "prev-widget": "Previous widget",
"add-to-dashboard": "Add to dashboard", "add-to-dashboard": "Add to dashboard",
"add-widget-to-dashboard": "Add widget to dashboard", "add-widget-to-dashboard": "Add widget to dashboard",
"selected-attributes": "{ count, plural, 1 {1 attribute} other {# attributes} } selected", "selected-attributes": "{ count, plural, =1 {1 attribute} other {# attributes} } selected",
"selected-telemetry": "{ count, plural, 1 {1 telemetry unit} other {# telemetry units} } selected", "selected-telemetry": "{ count, plural, =1 {1 telemetry unit} other {# telemetry units} } selected",
"no-attributes-text": "No attributes found", "no-attributes-text": "No attributes found",
"no-telemetry-text": "No telemetry found" "no-telemetry-text": "No telemetry found"
}, },
@ -815,8 +815,8 @@
"customer-details": "Customer details", "customer-details": "Customer details",
"delete-customer-title": "Are you sure you want to delete the customer '{{customerTitle}}'?", "delete-customer-title": "Are you sure you want to delete the customer '{{customerTitle}}'?",
"delete-customer-text": "Be careful, after the confirmation the customer and all related data will become unrecoverable.", "delete-customer-text": "Be careful, after the confirmation the customer and all related data will become unrecoverable.",
"delete-customers-title": "Are you sure you want to delete { count, plural, 1 {1 customer} other {# customers} }?", "delete-customers-title": "Are you sure you want to delete { count, plural, =1 {1 customer} other {# customers} }?",
"delete-customers-action-title": "Delete { count, plural, 1 {1 customer} other {# customers} }", "delete-customers-action-title": "Delete { count, plural, =1 {1 customer} other {# customers} }",
"delete-customers-text": "Be careful, after the confirmation all selected customers will be removed and all related data will become unrecoverable.", "delete-customers-text": "Be careful, after the confirmation all selected customers will be removed and all related data will become unrecoverable.",
"manage-users": "Manage users", "manage-users": "Manage users",
"manage-assets": "Manage assets", "manage-assets": "Manage assets",
@ -837,7 +837,7 @@
"default-customer": "Default customer", "default-customer": "Default customer",
"default-customer-required": "Default customer is required in order to debug dashboard on Tenant level", "default-customer-required": "Default customer is required in order to debug dashboard on Tenant level",
"search": "Search customers", "search": "Search customers",
"selected-customers": "{ count, plural, 1 {1 customer} other {# customers} } selected", "selected-customers": "{ count, plural, =1 {1 customer} other {# customers} } selected",
"edges": "Customer edge instances", "edges": "Customer edge instances",
"manage-edges": "Manage edges" "manage-edges": "Manage edges"
}, },
@ -889,20 +889,20 @@
"add-dashboard-text": "Add new dashboard", "add-dashboard-text": "Add new dashboard",
"assign-dashboards": "Assign dashboards", "assign-dashboards": "Assign dashboards",
"assign-new-dashboard": "Assign new dashboard", "assign-new-dashboard": "Assign new dashboard",
"assign-dashboards-text": "Assign { count, plural, 1 {1 dashboard} other {# dashboards} } to customers", "assign-dashboards-text": "Assign { count, plural, =1 {1 dashboard} other {# dashboards} } to customers",
"unassign-dashboards-action-text": "Unassign { count, plural, 1 {1 dashboard} other {# dashboards} } from customers", "unassign-dashboards-action-text": "Unassign { count, plural, =1 {1 dashboard} other {# dashboards} } from customers",
"delete-dashboards": "Delete dashboards", "delete-dashboards": "Delete dashboards",
"unassign-dashboards": "Unassign dashboards", "unassign-dashboards": "Unassign dashboards",
"unassign-dashboards-action-title": "Unassign { count, plural, 1 {1 dashboard} other {# dashboards} } from customer", "unassign-dashboards-action-title": "Unassign { count, plural, =1 {1 dashboard} other {# dashboards} } from customer",
"delete-dashboard-title": "Are you sure you want to delete the dashboard '{{dashboardTitle}}'?", "delete-dashboard-title": "Are you sure you want to delete the dashboard '{{dashboardTitle}}'?",
"delete-dashboard-text": "Be careful, after the confirmation the dashboard and all related data will become unrecoverable.", "delete-dashboard-text": "Be careful, after the confirmation the dashboard and all related data will become unrecoverable.",
"delete-dashboards-title": "Are you sure you want to delete { count, plural, 1 {1 dashboard} other {# dashboards} }?", "delete-dashboards-title": "Are you sure you want to delete { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"delete-dashboards-action-title": "Delete { count, plural, 1 {1 dashboard} other {# dashboards} }", "delete-dashboards-action-title": "Delete { count, plural, =1 {1 dashboard} other {# dashboards} }",
"delete-dashboards-text": "Be careful, after the confirmation all selected dashboards will be removed and all related data will become unrecoverable.", "delete-dashboards-text": "Be careful, after the confirmation all selected dashboards will be removed and all related data will become unrecoverable.",
"unassign-dashboard-title": "Are you sure you want to unassign the dashboard '{{dashboardTitle}}'?", "unassign-dashboard-title": "Are you sure you want to unassign the dashboard '{{dashboardTitle}}'?",
"unassign-dashboard-text": "After the confirmation the dashboard will be unassigned and won't be accessible by the customer.", "unassign-dashboard-text": "After the confirmation the dashboard will be unassigned and won't be accessible by the customer.",
"unassign-dashboard": "Unassign dashboard", "unassign-dashboard": "Unassign dashboard",
"unassign-dashboards-title": "Are you sure you want to unassign { count, plural, 1 {1 dashboard} other {# dashboards} }?", "unassign-dashboards-title": "Are you sure you want to unassign { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"unassign-dashboards-text": "After the confirmation all selected dashboards will be unassigned and won't be accessible by the customer.", "unassign-dashboards-text": "After the confirmation all selected dashboards will be unassigned and won't be accessible by the customer.",
"public-dashboard-title": "Dashboard is now public", "public-dashboard-title": "Dashboard is now public",
"public-dashboard-text": "Your dashboard <b>{{dashboardTitle}}</b> is now public and accessible via next public <a href='{{publicLink}}' target='_blank'>link</a>:", "public-dashboard-text": "Your dashboard <b>{{dashboardTitle}}</b> is now public and accessible via next public <a href='{{publicLink}}' target='_blank'>link</a>:",
@ -998,7 +998,7 @@
"manage-states": "Manage dashboard states", "manage-states": "Manage dashboard states",
"states": "Dashboard states", "states": "Dashboard states",
"search-states": "Search dashboard states", "search-states": "Search dashboard states",
"selected-states": "{ count, plural, 1 {1 dashboard state} other {# dashboard states} } selected", "selected-states": "{ count, plural, =1 {1 dashboard state} other {# dashboard states} } selected",
"edit-state": "Edit dashboard state", "edit-state": "Edit dashboard state",
"delete-state": "Delete dashboard state", "delete-state": "Delete dashboard state",
"add-state": "Add dashboard state", "add-state": "Add dashboard state",
@ -1017,11 +1017,11 @@
"select-state": "Select target state", "select-state": "Select target state",
"state-controller": "State controller", "state-controller": "State controller",
"search": "Search dashboards", "search": "Search dashboards",
"selected-dashboards": "{ count, plural, 1 {1 dashboard} other {# dashboards} } selected", "selected-dashboards": "{ count, plural, =1 {1 dashboard} other {# dashboards} } selected",
"home-dashboard": "Home dashboard", "home-dashboard": "Home dashboard",
"home-dashboard-hide-toolbar": "Hide home dashboard toolbar", "home-dashboard-hide-toolbar": "Hide home dashboard toolbar",
"unassign-dashboard-from-edge-text": "After the confirmation the dashboard will be unassigned and won't be accessible by the edge.", "unassign-dashboard-from-edge-text": "After the confirmation the dashboard will be unassigned and won't be accessible by the edge.",
"unassign-dashboards-from-edge-title": "Are you sure you want to unassign { count, plural, 1 {1 dashboard} other {# dashboards} }?", "unassign-dashboards-from-edge-title": "Are you sure you want to unassign { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"unassign-dashboards-from-edge-text": "After the confirmation all selected dashboards will be unassigned and won't be accessible by the edge.", "unassign-dashboards-from-edge-text": "After the confirmation all selected dashboards will be unassigned and won't be accessible by the edge.",
"assign-dashboard-to-edge": "Assign Dashboard(s) To Edge", "assign-dashboard-to-edge": "Assign Dashboard(s) To Edge",
"assign-dashboard-to-edge-text": "Please select the dashboards to assign to the edge", "assign-dashboard-to-edge-text": "Please select the dashboards to assign to the edge",
@ -1044,7 +1044,7 @@
"timeseries-required": "Entity timeseries are required.", "timeseries-required": "Entity timeseries are required.",
"timeseries-or-attributes-required": "Entity timeseries/attributes are required.", "timeseries-or-attributes-required": "Entity timeseries/attributes are required.",
"alarm-fields-timeseries-or-attributes-required": "Alarm fields or entity timeseries/attributes are required.", "alarm-fields-timeseries-or-attributes-required": "Alarm fields or entity timeseries/attributes are required.",
"maximum-timeseries-or-attributes": "Maximum { count, plural, 1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }", "maximum-timeseries-or-attributes": "Maximum { count, plural, =1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }",
"alarm-fields-required": "Alarm fields are required.", "alarm-fields-required": "Alarm fields are required.",
"function-types": "Function types", "function-types": "Function types",
"function-type": "Function type", "function-type": "Function type",
@ -1061,7 +1061,7 @@
"timeseries-key": "Timeseries data key", "timeseries-key": "Timeseries data key",
"timeseries-key-functions": "Timeseries key functions", "timeseries-key-functions": "Timeseries key functions",
"timeseries-key-function": "Timeseries key function", "timeseries-key-function": "Timeseries key function",
"maximum-function-types": "Maximum { count, plural, 1 {1 function type is allowed.} other {# function types are allowed} }", "maximum-function-types": "Maximum { count, plural, =1 {1 function type is allowed.} other {# function types are allowed} }",
"time-description": "timestamp of the current value;", "time-description": "timestamp of the current value;",
"value-description": "the current value;", "value-description": "the current value;",
"prev-value-description": "result of the previous function call;", "prev-value-description": "result of the previous function call;",
@ -1140,11 +1140,11 @@
"manage-credentials": "Manage credentials", "manage-credentials": "Manage credentials",
"delete": "Delete device", "delete": "Delete device",
"assign-devices": "Assign devices", "assign-devices": "Assign devices",
"assign-devices-text": "Assign { count, plural, 1 {1 device} other {# devices} } to customer", "assign-devices-text": "Assign { count, plural, =1 {1 device} other {# devices} } to customer",
"delete-devices": "Delete devices", "delete-devices": "Delete devices",
"unassign-from-customer": "Unassign from customer", "unassign-from-customer": "Unassign from customer",
"unassign-devices": "Unassign devices", "unassign-devices": "Unassign devices",
"unassign-devices-action-title": "Unassign { count, plural, 1 {1 device} other {# devices} } from customer", "unassign-devices-action-title": "Unassign { count, plural, =1 {1 device} other {# devices} } from customer",
"unassign-device-from-edge-title": "Are you sure you want to unassign the device '{{deviceName}}'?", "unassign-device-from-edge-title": "Are you sure you want to unassign the device '{{deviceName}}'?",
"unassign-device-from-edge-text": "After the confirmation the device will be unassigned and won't be accessible by the edge.", "unassign-device-from-edge-text": "After the confirmation the device will be unassigned and won't be accessible by the edge.",
"unassign-devices-from-edge": "Unassign devices from edge", "unassign-devices-from-edge": "Unassign devices from edge",
@ -1156,13 +1156,13 @@
"view-credentials": "View credentials", "view-credentials": "View credentials",
"delete-device-title": "Are you sure you want to delete the device '{{deviceName}}'?", "delete-device-title": "Are you sure you want to delete the device '{{deviceName}}'?",
"delete-device-text": "Be careful, after the confirmation the device and all related data will become unrecoverable.", "delete-device-text": "Be careful, after the confirmation the device and all related data will become unrecoverable.",
"delete-devices-title": "Are you sure you want to delete { count, plural, 1 {1 device} other {# devices} }?", "delete-devices-title": "Are you sure you want to delete { count, plural, =1 {1 device} other {# devices} }?",
"delete-devices-action-title": "Delete { count, plural, 1 {1 device} other {# devices} }", "delete-devices-action-title": "Delete { count, plural, =1 {1 device} other {# devices} }",
"delete-devices-text": "Be careful, after the confirmation all selected devices will be removed and all related data will become unrecoverable.", "delete-devices-text": "Be careful, after the confirmation all selected devices will be removed and all related data will become unrecoverable.",
"unassign-device-title": "Are you sure you want to unassign the device '{{deviceName}}'?", "unassign-device-title": "Are you sure you want to unassign the device '{{deviceName}}'?",
"unassign-device-text": "After the confirmation the device will be unassigned and won't be accessible by the customer.", "unassign-device-text": "After the confirmation the device will be unassigned and won't be accessible by the customer.",
"unassign-device": "Unassign device", "unassign-device": "Unassign device",
"unassign-devices-title": "Are you sure you want to unassign { count, plural, 1 {1 device} other {# devices} }?", "unassign-devices-title": "Are you sure you want to unassign { count, plural, =1 {1 device} other {# devices} }?",
"unassign-devices-text": "After the confirmation all selected devices will be unassigned and won't be accessible by the customer.", "unassign-devices-text": "After the confirmation all selected devices will be unassigned and won't be accessible by the customer.",
"device-credentials": "Device Credentials", "device-credentials": "Device Credentials",
"loading-device-credentials": "Loading device credentials...", "loading-device-credentials": "Loading device credentials...",
@ -1243,7 +1243,7 @@
"import": "Import device", "import": "Import device",
"device-file": "Device file", "device-file": "Device file",
"search": "Search devices", "search": "Search devices",
"selected-devices": "{ count, plural, 1 {1 device} other {# devices} } selected", "selected-devices": "{ count, plural, =1 {1 device} other {# devices} } selected",
"device-configuration": "Device configuration", "device-configuration": "Device configuration",
"transport-configuration": "Transport configuration", "transport-configuration": "Transport configuration",
"wizard": { "wizard": {
@ -1255,7 +1255,7 @@
"customer-to-assign-device": "Customer to assign the device", "customer-to-assign-device": "Customer to assign the device",
"add-credentials": "Add credentials" "add-credentials": "Add credentials"
}, },
"unassign-devices-from-edge-title": "Are you sure you want to unassign { count, plural, 1 {1 device} other {# devices} }?", "unassign-devices-from-edge-title": "Are you sure you want to unassign { count, plural, =1 {1 device} other {# devices} }?",
"unassign-devices-from-edge-text": "After the confirmation all selected devices will be unassigned and won't be accessible by the edge." "unassign-devices-from-edge-text": "After the confirmation all selected devices will be unassigned and won't be accessible by the edge."
}, },
"asset-profile": { "asset-profile": {
@ -1267,7 +1267,7 @@
"asset-profile-details": "Asset profile details", "asset-profile-details": "Asset profile details",
"no-asset-profiles-text": "No asset profiles found", "no-asset-profiles-text": "No asset profiles found",
"search": "Search asset profiles", "search": "Search asset profiles",
"selected-asset-profiles": "{ count, plural, 1 {1 asset profile} other {# asset profiles} } selected", "selected-asset-profiles": "{ count, plural, =1 {1 asset profile} other {# asset profiles} } selected",
"no-asset-profiles-matching": "No asset profile matching '{{entity}}' were found.", "no-asset-profiles-matching": "No asset profile matching '{{entity}}' were found.",
"asset-profile-required": "Asset profile is required", "asset-profile-required": "Asset profile is required",
"idCopiedMessage": "Asset profile Id has been copied to clipboard", "idCopiedMessage": "Asset profile Id has been copied to clipboard",
@ -1290,7 +1290,7 @@
"select-queue-hint": "Select from a drop-down list.", "select-queue-hint": "Select from a drop-down list.",
"delete-asset-profile-title": "Are you sure you want to delete the asset profile '{{assetProfileName}}'?", "delete-asset-profile-title": "Are you sure you want to delete the asset profile '{{assetProfileName}}'?",
"delete-asset-profile-text": "Be careful, after the confirmation the asset profile and all related data will become unrecoverable.", "delete-asset-profile-text": "Be careful, after the confirmation the asset profile and all related data will become unrecoverable.",
"delete-asset-profiles-title": "Are you sure you want to delete { count, plural, 1 {1 asset profile} other {# asset profiles} }?", "delete-asset-profiles-title": "Are you sure you want to delete { count, plural, =1 {1 asset profile} other {# asset profiles} }?",
"delete-asset-profiles-text": "Be careful, after the confirmation all selected asset profiles will be removed and all related data will become unrecoverable.", "delete-asset-profiles-text": "Be careful, after the confirmation all selected asset profiles will be removed and all related data will become unrecoverable.",
"set-default-asset-profile-title": "Are you sure you want to make the asset profile '{{assetProfileName}}' default?", "set-default-asset-profile-title": "Are you sure you want to make the asset profile '{{assetProfileName}}' default?",
"set-default-asset-profile-text": "After the confirmation the asset profile will be marked as default and will be used for new assets with no profile specified.", "set-default-asset-profile-text": "After the confirmation the asset profile will be marked as default and will be used for new assets with no profile specified.",
@ -1312,7 +1312,7 @@
"device-profile-details": "Device profile details", "device-profile-details": "Device profile details",
"no-device-profiles-text": "No device profiles found", "no-device-profiles-text": "No device profiles found",
"search": "Search device profiles", "search": "Search device profiles",
"selected-device-profiles": "{ count, plural, 1 {1 device profile} other {# device profiles} } selected", "selected-device-profiles": "{ count, plural, =1 {1 device profile} other {# device profiles} } selected",
"no-device-profiles-matching": "No device profile matching '{{entity}}' were found.", "no-device-profiles-matching": "No device profile matching '{{entity}}' were found.",
"device-profile-required": "Device profile is required", "device-profile-required": "Device profile is required",
"idCopiedMessage": "Device profile Id has been copied to clipboard", "idCopiedMessage": "Device profile Id has been copied to clipboard",
@ -1352,7 +1352,7 @@
"select-queue-hint": "Select from a drop-down list.", "select-queue-hint": "Select from a drop-down list.",
"delete-device-profile-title": "Are you sure you want to delete the device profile '{{deviceProfileName}}'?", "delete-device-profile-title": "Are you sure you want to delete the device profile '{{deviceProfileName}}'?",
"delete-device-profile-text": "Be careful, after the confirmation the device profile and all related data including associated OTA updates will become unrecoverable.", "delete-device-profile-text": "Be careful, after the confirmation the device profile and all related data including associated OTA updates will become unrecoverable.",
"delete-device-profiles-title": "Are you sure you want to delete { count, plural, 1 {1 device profile} other {# device profiles} }?", "delete-device-profiles-title": "Are you sure you want to delete { count, plural, =1 {1 device profile} other {# device profiles} }?",
"delete-device-profiles-text": "Be careful, after the confirmation all selected device profiles will be removed and all related data including associated OTA updates will become unrecoverable.", "delete-device-profiles-text": "Be careful, after the confirmation all selected device profiles will be removed and all related data including associated OTA updates will become unrecoverable.",
"set-default-device-profile-title": "Are you sure you want to make the device profile '{{deviceProfileName}}' default?", "set-default-device-profile-title": "Are you sure you want to make the device profile '{{deviceProfileName}}' default?",
"set-default-device-profile-text": "After the confirmation the device profile will be marked as default and will be used for new devices with no profile specified.", "set-default-device-profile-text": "After the confirmation the device profile will be marked as default and will be used for new devices with no profile specified.",
@ -1473,8 +1473,8 @@
"condition-repeating-value-range": "Count of events should be in a range from 1 to 2147483647.", "condition-repeating-value-range": "Count of events should be in a range from 1 to 2147483647.",
"condition-repeating-value-pattern": "Count of events should be integers.", "condition-repeating-value-pattern": "Count of events should be integers.",
"condition-repeating-value-required": "Count of events is required.", "condition-repeating-value-required": "Count of events is required.",
"condition-repeat-times": "Repeats { count, plural, 1 {1 time} other {# times} }", "condition-repeat-times": "Repeats { count, plural, =1 {1 time} other {# times} }",
"condition-repeat-times-dynamic": "Repeats \"{ attribute }\" ({ count, plural, 1 {1 time} other {# times} })", "condition-repeat-times-dynamic": "Repeats \"{ attribute }\" ({ count, plural, =1 {1 time} other {# times} })",
"schedule-type": "Scheduler type", "schedule-type": "Scheduler type",
"schedule-type-required": "Scheduler type is required.", "schedule-type-required": "Scheduler type is required.",
"schedule": "Schedule", "schedule": "Schedule",
@ -1716,7 +1716,7 @@
"delete": "Delete edge", "delete": "Delete edge",
"delete-edge-title": "Are you sure you want to delete the edge '{{edgeName}}'?", "delete-edge-title": "Are you sure you want to delete the edge '{{edgeName}}'?",
"delete-edge-text": "Be careful, after the confirmation the edge and all related data will become unrecoverable.", "delete-edge-text": "Be careful, after the confirmation the edge and all related data will become unrecoverable.",
"delete-edges-title": "Are you sure you want to edge { count, plural, 1 {1 edge} other {# edges} }?", "delete-edges-title": "Are you sure you want to edge { count, plural, =1 {1 edge} other {# edges} }?",
"delete-edges-text": "Be careful, after the confirmation all selected edges will be removed and all related data will become unrecoverable.", "delete-edges-text": "Be careful, after the confirmation all selected edges will be removed and all related data will become unrecoverable.",
"name": "Name", "name": "Name",
"name-starts-with": "Edge name starts with", "name-starts-with": "Edge name starts with",
@ -1743,7 +1743,7 @@
"unassign-from-customer": "Unassign from customer", "unassign-from-customer": "Unassign from customer",
"unassign-edge-title": "Are you sure you want to unassign the edge '{{edgeName}}'?", "unassign-edge-title": "Are you sure you want to unassign the edge '{{edgeName}}'?",
"unassign-edge-text": "After the confirmation the edge will be unassigned and won't be accessible by the customer.", "unassign-edge-text": "After the confirmation the edge will be unassigned and won't be accessible by the customer.",
"unassign-edges-title": "Are you sure you want to unassign { count, plural, 1 {1 edge} other {# edges} }?", "unassign-edges-title": "Are you sure you want to unassign { count, plural, =1 {1 edge} other {# edges} }?",
"unassign-edges-text": "After the confirmation all selected edges will be unassigned and won't be accessible by the customer.", "unassign-edges-text": "After the confirmation all selected edges will be unassigned and won't be accessible by the customer.",
"make-public": "Make edge public", "make-public": "Make edge public",
"make-public-edge-title": "Are you sure you want to make the edge '{{edgeName}}' public?", "make-public-edge-title": "Are you sure you want to make the edge '{{edgeName}}' public?",
@ -1777,7 +1777,7 @@
"rulechain-templates": "Rule chain templates", "rulechain-templates": "Rule chain templates",
"rulechains": "Rule chains", "rulechains": "Rule chains",
"search": "Search edges", "search": "Search edges",
"selected-edges": "{ count, plural, 1 {1 edge} other {# edges} } selected", "selected-edges": "{ count, plural, =1 {1 edge} other {# edges} } selected",
"any-edge": "Any edge", "any-edge": "Any edge",
"no-edge-types-matching": "No edge types matching '{{entitySubtype}}' were found.", "no-edge-types-matching": "No edge types matching '{{entitySubtype}}' were found.",
"edge-type-list-empty": "No edge types selected.", "edge-type-list-empty": "No edge types selected.",
@ -1878,63 +1878,63 @@
"type-required": "Entity type is required.", "type-required": "Entity type is required.",
"type-device": "Device", "type-device": "Device",
"type-devices": "Devices", "type-devices": "Devices",
"list-of-devices": "{ count, plural, 1 {One device} other {List of # devices} }", "list-of-devices": "{ count, plural, =1 {One device} other {List of # devices} }",
"device-name-starts-with": "Devices whose names start with '{{prefix}}'", "device-name-starts-with": "Devices whose names start with '{{prefix}}'",
"type-device-profile": "Device profile", "type-device-profile": "Device profile",
"type-device-profiles": "Device profiles", "type-device-profiles": "Device profiles",
"list-of-device-profiles": "{ count, plural, 1 {One device profile} other {List of # device profiles} }", "list-of-device-profiles": "{ count, plural, =1 {One device profile} other {List of # device profiles} }",
"device-profile-name-starts-with": "Device profiles whose names start with '{{prefix}}'", "device-profile-name-starts-with": "Device profiles whose names start with '{{prefix}}'",
"type-asset-profile": "Asset profile", "type-asset-profile": "Asset profile",
"type-asset-profiles": "Asset profiles", "type-asset-profiles": "Asset profiles",
"list-of-asset-profiles": "{ count, plural, 1 {One asset profile} other {List of # asset profiles} }", "list-of-asset-profiles": "{ count, plural, =1 {One asset profile} other {List of # asset profiles} }",
"asset-profile-name-starts-with": "Asset profiles whose names start with '{{prefix}}'", "asset-profile-name-starts-with": "Asset profiles whose names start with '{{prefix}}'",
"type-asset": "Asset", "type-asset": "Asset",
"type-assets": "Assets", "type-assets": "Assets",
"list-of-assets": "{ count, plural, 1 {One asset} other {List of # assets} }", "list-of-assets": "{ count, plural, =1 {One asset} other {List of # assets} }",
"asset-name-starts-with": "Assets whose names start with '{{prefix}}'", "asset-name-starts-with": "Assets whose names start with '{{prefix}}'",
"type-entity-view": "Entity View", "type-entity-view": "Entity View",
"type-entity-views": "Entity Views", "type-entity-views": "Entity Views",
"list-of-entity-views": "{ count, plural, 1 {One entity view} other {List of # entity views} }", "list-of-entity-views": "{ count, plural, =1 {One entity view} other {List of # entity views} }",
"entity-view-name-starts-with": "Entity Views whose names start with '{{prefix}}'", "entity-view-name-starts-with": "Entity Views whose names start with '{{prefix}}'",
"type-rule": "Rule", "type-rule": "Rule",
"type-rules": "Rules", "type-rules": "Rules",
"list-of-rules": "{ count, plural, 1 {One rule} other {List of # rules} }", "list-of-rules": "{ count, plural, =1 {One rule} other {List of # rules} }",
"rule-name-starts-with": "Rules whose names start with '{{prefix}}'", "rule-name-starts-with": "Rules whose names start with '{{prefix}}'",
"type-plugin": "Plugin", "type-plugin": "Plugin",
"type-plugins": "Plugins", "type-plugins": "Plugins",
"list-of-plugins": "{ count, plural, 1 {One plugin} other {List of # plugins} }", "list-of-plugins": "{ count, plural, =1 {One plugin} other {List of # plugins} }",
"plugin-name-starts-with": "Plugins whose names start with '{{prefix}}'", "plugin-name-starts-with": "Plugins whose names start with '{{prefix}}'",
"type-tenant": "Tenant", "type-tenant": "Tenant",
"type-tenants": "Tenants", "type-tenants": "Tenants",
"list-of-tenants": "{ count, plural, 1 {One tenant} other {List of # tenants} }", "list-of-tenants": "{ count, plural, =1 {One tenant} other {List of # tenants} }",
"tenant-name-starts-with": "Tenants whose names start with '{{prefix}}'", "tenant-name-starts-with": "Tenants whose names start with '{{prefix}}'",
"type-tenant-profile": "Tenant profile", "type-tenant-profile": "Tenant profile",
"type-tenant-profiles": "Tenant profiles", "type-tenant-profiles": "Tenant profiles",
"list-of-tenant-profiles": "{ count, plural, 1 {One tenant profile} other {List of # tenant profiles} }", "list-of-tenant-profiles": "{ count, plural, =1 {One tenant profile} other {List of # tenant profiles} }",
"tenant-profile-name-starts-with": "Tenant profiles whose names start with '{{prefix}}'", "tenant-profile-name-starts-with": "Tenant profiles whose names start with '{{prefix}}'",
"type-customer": "Customer", "type-customer": "Customer",
"type-customers": "Customers", "type-customers": "Customers",
"list-of-customers": "{ count, plural, 1 {One customer} other {List of # customers} }", "list-of-customers": "{ count, plural, =1 {One customer} other {List of # customers} }",
"customer-name-starts-with": "Customers whose names start with '{{prefix}}'", "customer-name-starts-with": "Customers whose names start with '{{prefix}}'",
"type-user": "User", "type-user": "User",
"type-users": "Users", "type-users": "Users",
"list-of-users": "{ count, plural, 1 {One user} other {List of # users} }", "list-of-users": "{ count, plural, =1 {One user} other {List of # users} }",
"user-name-starts-with": "Users whose names start with '{{prefix}}'", "user-name-starts-with": "Users whose names start with '{{prefix}}'",
"type-dashboard": "Dashboard", "type-dashboard": "Dashboard",
"type-dashboards": "Dashboards", "type-dashboards": "Dashboards",
"list-of-dashboards": "{ count, plural, 1 {One dashboard} other {List of # dashboards} }", "list-of-dashboards": "{ count, plural, =1 {One dashboard} other {List of # dashboards} }",
"dashboard-name-starts-with": "Dashboards whose names start with '{{prefix}}'", "dashboard-name-starts-with": "Dashboards whose names start with '{{prefix}}'",
"type-alarm": "Alarm", "type-alarm": "Alarm",
"type-alarms": "Alarms", "type-alarms": "Alarms",
"list-of-alarms": "{ count, plural, 1 {One alarms} other {List of # alarms} }", "list-of-alarms": "{ count, plural, =1 {One alarms} other {List of # alarms} }",
"alarm-name-starts-with": "Alarms whose names start with '{{prefix}}'", "alarm-name-starts-with": "Alarms whose names start with '{{prefix}}'",
"type-rulechain": "Rule chain", "type-rulechain": "Rule chain",
"type-rulechains": "Rule chains", "type-rulechains": "Rule chains",
"list-of-rulechains": "{ count, plural, 1 {One rule chain} other {List of # rule chains} }", "list-of-rulechains": "{ count, plural, =1 {One rule chain} other {List of # rule chains} }",
"rulechain-name-starts-with": "Rule chains whose names start with '{{prefix}}'", "rulechain-name-starts-with": "Rule chains whose names start with '{{prefix}}'",
"type-rulenode": "Rule node", "type-rulenode": "Rule node",
"type-rulenodes": "Rule nodes", "type-rulenodes": "Rule nodes",
"list-of-rulenodes": "{ count, plural, 1 {One rule node} other {List of # rule nodes} }", "list-of-rulenodes": "{ count, plural, =1 {One rule node} other {List of # rule nodes} }",
"rulenode-name-starts-with": "Rule nodes whose names start with '{{prefix}}'", "rulenode-name-starts-with": "Rule nodes whose names start with '{{prefix}}'",
"type-current-customer": "Current Customer", "type-current-customer": "Current Customer",
"type-current-tenant": "Current Tenant", "type-current-tenant": "Current Tenant",
@ -1942,9 +1942,9 @@
"type-current-user-owner": "Current User Owner", "type-current-user-owner": "Current User Owner",
"type-widgets-bundle": "Widgets bundle", "type-widgets-bundle": "Widgets bundle",
"type-widgets-bundles": "Widgets bundles", "type-widgets-bundles": "Widgets bundles",
"list-of-widgets-bundles": "{ count, plural, 1 {One widgets bundle} other {List of # widget bundles} }", "list-of-widgets-bundles": "{ count, plural, =1 {One widgets bundle} other {List of # widget bundles} }",
"search": "Search entities", "search": "Search entities",
"selected-entities": "{ count, plural, 1 {1 entity} other {# entities} } selected", "selected-entities": "{ count, plural, =1 {1 entity} other {# entities} } selected",
"entity-name": "Entity name", "entity-name": "Entity name",
"entity-label": "Entity label", "entity-label": "Entity label",
"details": "Entity details", "details": "Entity details",
@ -1954,7 +1954,7 @@
"type-api-usage-state": "Api Usage State", "type-api-usage-state": "Api Usage State",
"type-edge": "Edge", "type-edge": "Edge",
"type-edges": "Edges", "type-edges": "Edges",
"list-of-edges": "{ count, plural, 1 {One edge} other {List of # edges} }", "list-of-edges": "{ count, plural, =1 {One edge} other {List of # edges} }",
"edge-name-starts-with": "Edges whose names start with '{{prefix}}'", "edge-name-starts-with": "Edges whose names start with '{{prefix}}'",
"type-tb-resource": "Resource", "type-tb-resource": "Resource",
"type-ota-package": "OTA package" "type-ota-package": "OTA package"
@ -2017,21 +2017,21 @@
"add-entity-view-text": "Add new entity view", "add-entity-view-text": "Add new entity view",
"delete": "Delete entity view", "delete": "Delete entity view",
"assign-entity-views": "Assign entity views", "assign-entity-views": "Assign entity views",
"assign-entity-views-text": "Assign { count, plural, 1 {1 entity view} other {# entity views} } to customer", "assign-entity-views-text": "Assign { count, plural, =1 {1 entity view} other {# entity views} } to customer",
"delete-entity-views": "Delete entity views", "delete-entity-views": "Delete entity views",
"unassign-from-customer": "Unassign from customer", "unassign-from-customer": "Unassign from customer",
"unassign-entity-views": "Unassign entity views", "unassign-entity-views": "Unassign entity views",
"unassign-entity-views-action-title": "Unassign { count, plural, 1 {1 entity view} other {# entity views} } from customer", "unassign-entity-views-action-title": "Unassign { count, plural, =1 {1 entity view} other {# entity views} } from customer",
"assign-new-entity-view": "Assign new entity view", "assign-new-entity-view": "Assign new entity view",
"delete-entity-view-title": "Are you sure you want to delete the entity view '{{entityViewName}}'?", "delete-entity-view-title": "Are you sure you want to delete the entity view '{{entityViewName}}'?",
"delete-entity-view-text": "Be careful, after the confirmation the entity view and all related data will become unrecoverable.", "delete-entity-view-text": "Be careful, after the confirmation the entity view and all related data will become unrecoverable.",
"delete-entity-views-title": "Are you sure you want to delete { count, plural, 1 {1 entity view} other {# entity views} }?", "delete-entity-views-title": "Are you sure you want to delete { count, plural, =1 {1 entity view} other {# entity views} }?",
"delete-entity-views-action-title": "Delete { count, plural, 1 {1 entity view} other {# entity views} }", "delete-entity-views-action-title": "Delete { count, plural, =1 {1 entity view} other {# entity views} }",
"delete-entity-views-text": "Be careful, after the confirmation all selected entity views will be removed and all related data will become unrecoverable.", "delete-entity-views-text": "Be careful, after the confirmation all selected entity views will be removed and all related data will become unrecoverable.",
"unassign-entity-view-title": "Are you sure you want to unassign the entity view '{{entityViewName}}'?", "unassign-entity-view-title": "Are you sure you want to unassign the entity view '{{entityViewName}}'?",
"unassign-entity-view-text": "After the confirmation the entity view will be unassigned and won't be accessible by the customer.", "unassign-entity-view-text": "After the confirmation the entity view will be unassigned and won't be accessible by the customer.",
"unassign-entity-view": "Unassign entity view", "unassign-entity-view": "Unassign entity view",
"unassign-entity-views-title": "Are you sure you want to unassign { count, plural, 1 {1 entity view} other {# entity views} }?", "unassign-entity-views-title": "Are you sure you want to unassign { count, plural, =1 {1 entity view} other {# entity views} }?",
"unassign-entity-views-text": "After the confirmation all selected entity views will be unassigned and won't be accessible by the customer.", "unassign-entity-views-text": "After the confirmation all selected entity views will be unassigned and won't be accessible by the customer.",
"entity-view-type": "Entity View type", "entity-view-type": "Entity View type",
"entity-view-type-required": "Entity View type is required.", "entity-view-type-required": "Entity View type is required.",
@ -2076,7 +2076,7 @@
"timeseries-data": "Timeseries data", "timeseries-data": "Timeseries data",
"timeseries-data-hint": "Configure timeseries data keys of the target entity that will be accessible to the entity view. This timeseries data is read-only.", "timeseries-data-hint": "Configure timeseries data keys of the target entity that will be accessible to the entity view. This timeseries data is read-only.",
"search": "Search entity views", "search": "Search entity views",
"selected-entity-views": "{ count, plural, 1 {1 entity view} other {# entity views} } selected", "selected-entity-views": "{ count, plural, =1 {1 entity view} other {# entity views} } selected",
"make-public-entity-view-title": "Are you sure you want to make the entity view '{{entityViewName}}' public?", "make-public-entity-view-title": "Are you sure you want to make the entity view '{{entityViewName}}' public?",
"make-public-entity-view-text": "After the confirmation the entity view and all its data will be made public and accessible by others.", "make-public-entity-view-text": "After the confirmation the entity view and all its data will be made public and accessible by others.",
"make-private-entity-view-title": "Are you sure you want to make the entity view '{{entityViewName}}' private?", "make-private-entity-view-title": "Are you sure you want to make the entity view '{{entityViewName}}' private?",
@ -2085,9 +2085,9 @@
"assign-entity-view-to-edge-text":"Please select the entity views to assign to the edge", "assign-entity-view-to-edge-text":"Please select the entity views to assign to the edge",
"unassign-entity-view-from-edge-title": "Are you sure you want to unassign the entity view '{{entityViewName}}'?", "unassign-entity-view-from-edge-title": "Are you sure you want to unassign the entity view '{{entityViewName}}'?",
"unassign-entity-view-from-edge-text": "After the confirmation the entity view will be unassigned and won't be accessible by the edge.", "unassign-entity-view-from-edge-text": "After the confirmation the entity view will be unassigned and won't be accessible by the edge.",
"unassign-entity-views-from-edge-action-title": "Unassign { count, plural, 1 {1 entity view} other {# entity views} } from edge", "unassign-entity-views-from-edge-action-title": "Unassign { count, plural, =1 {1 entity view} other {# entity views} } from edge",
"unassign-entity-view-from-edge": "Unassign entity view", "unassign-entity-view-from-edge": "Unassign entity view",
"unassign-entity-views-from-edge-title": "Are you sure you want to unassign { count, plural, 1 {1 entity view} other {# entity views} }?", "unassign-entity-views-from-edge-title": "Are you sure you want to unassign { count, plural, =1 {1 entity view} other {# entity views} }?",
"unassign-entity-views-from-edge-text": "After the confirmation all selected entity views will be unassigned and won't be accessible by the edge." "unassign-entity-views-from-edge-text": "After the confirmation all selected entity views will be unassigned and won't be accessible by the edge."
}, },
"event": { "event": {
@ -2137,7 +2137,7 @@
}, },
"extension": { "extension": {
"extensions": "Extensions", "extensions": "Extensions",
"selected-extensions": "{ count, plural, 1 {1 extension} other {# extensions} } selected", "selected-extensions": "{ count, plural, =1 {1 extension} other {# extensions} } selected",
"type": "Type", "type": "Type",
"key": "Key", "key": "Key",
"value": "Value", "value": "Value",
@ -2151,7 +2151,7 @@
"edit": "Edit extension", "edit": "Edit extension",
"delete-extension-title": "Are you sure you want to delete the extension '{{extensionId}}'?", "delete-extension-title": "Are you sure you want to delete the extension '{{extensionId}}'?",
"delete-extension-text": "Be careful, after the confirmation the extension and all related data will become unrecoverable.", "delete-extension-text": "Be careful, after the confirmation the extension and all related data will become unrecoverable.",
"delete-extensions-title": "Are you sure you want to delete { count, plural, 1 {1 extension} other {# extensions} }?", "delete-extensions-title": "Are you sure you want to delete { count, plural, =1 {1 extension} other {# extensions} }?",
"delete-extensions-text": "Be careful, after the confirmation all selected extensions will be removed.", "delete-extensions-text": "Be careful, after the confirmation all selected extensions will be removed.",
"converters": "Converters", "converters": "Converters",
"converter-id": "Converter id", "converter-id": "Converter id",
@ -2471,8 +2471,8 @@
"grid": { "grid": {
"delete-item-title": "Are you sure you want to delete this item?", "delete-item-title": "Are you sure you want to delete this item?",
"delete-item-text": "Be careful, after the confirmation this item and all related data will become unrecoverable.", "delete-item-text": "Be careful, after the confirmation this item and all related data will become unrecoverable.",
"delete-items-title": "Are you sure you want to delete { count, plural, 1 {1 item} other {# items} }?", "delete-items-title": "Are you sure you want to delete { count, plural, =1 {1 item} other {# items} }?",
"delete-items-action-title": "Delete { count, plural, 1 {1 item} other {# items} }", "delete-items-action-title": "Delete { count, plural, =1 {1 item} other {# items} }",
"delete-items-text": "Be careful, after the confirmation all selected items will be removed and all related data will become unrecoverable.", "delete-items-text": "Be careful, after the confirmation all selected items will be removed and all related data will become unrecoverable.",
"add-item-text": "Add new item", "add-item-text": "Add new item",
"no-items-text": "No items found", "no-items-text": "No items found",
@ -2656,7 +2656,7 @@
"verify-your-identity": "Verify your identity", "verify-your-identity": "Verify your identity",
"select-way-to-verify": "Select a way to verify", "select-way-to-verify": "Select a way to verify",
"resend-code": "Resend code", "resend-code": "Resend code",
"resend-code-wait": "Resend code in { time, plural, 1 {1 second} other {# seconds} }", "resend-code-wait": "Resend code in { time, plural, =1 {1 second} other {# seconds} }",
"try-another-way": "Try another way", "try-another-way": "Try another way",
"totp-auth-description": "Please enter the security code from your authenticator app.", "totp-auth-description": "Please enter the security code from your authenticator app.",
"totp-auth-placeholder": "Code", "totp-auth-placeholder": "Code",
@ -2684,8 +2684,8 @@
"checksum-hint": "If checksum is empty, it will be generated automatically", "checksum-hint": "If checksum is empty, it will be generated automatically",
"checksum-algorithm": "Checksum algorithm", "checksum-algorithm": "Checksum algorithm",
"checksum-copied-message": "Package checksum has been copied to clipboard", "checksum-copied-message": "Package checksum has been copied to clipboard",
"change-firmware": "Change of the firmware may cause update of { count, plural, 1 {1 device} other {# devices} }.", "change-firmware": "Change of the firmware may cause update of { count, plural, =1 {1 device} other {# devices} }.",
"change-software": "Change of the software may cause update of { count, plural, 1 {1 device} other {# devices} }.", "change-software": "Change of the software may cause update of { count, plural, =1 {1 device} other {# devices} }.",
"chose-compatible-device-profile": "The uploaded package will be available only for devices with the chosen profile.", "chose-compatible-device-profile": "The uploaded package will be available only for devices with the chosen profile.",
"chose-firmware-distributed-device": "Choose firmware that will be distributed to the devices", "chose-firmware-distributed-device": "Choose firmware that will be distributed to the devices",
"chose-software-distributed-device": "Choose software that will be distributed to the devices", "chose-software-distributed-device": "Choose software that will be distributed to the devices",
@ -2698,7 +2698,7 @@
"delete-ota-update-text": "Be careful, after the confirmation the OTA update will become unrecoverable.", "delete-ota-update-text": "Be careful, after the confirmation the OTA update will become unrecoverable.",
"delete-ota-update-title": "Are you sure you want to delete the OTA update '{{title}}'?", "delete-ota-update-title": "Are you sure you want to delete the OTA update '{{title}}'?",
"delete-ota-updates-text": "Be careful, after the confirmation all selected OTA updates will be removed.", "delete-ota-updates-text": "Be careful, after the confirmation all selected OTA updates will be removed.",
"delete-ota-updates-title": "Are you sure you want to delete { count, plural, 1 {1 OTA update} other {# OTA updates} }?", "delete-ota-updates-title": "Are you sure you want to delete { count, plural, =1 {1 OTA update} other {# OTA updates} }?",
"description": "Description", "description": "Description",
"direct-url": "Direct URL", "direct-url": "Direct URL",
"direct-url-copied-message": "Package direct URL has been copied to clipboard", "direct-url-copied-message": "Package direct URL has been copied to clipboard",
@ -2721,7 +2721,7 @@
"package-type": "Package type", "package-type": "Package type",
"packages-repository": "Packages repository", "packages-repository": "Packages repository",
"search": "Search packages", "search": "Search packages",
"selected-package": "{ count, plural, 1 {1 package} other {# packages} } selected", "selected-package": "{ count, plural, =1 {1 package} other {# packages} } selected",
"title": "Title", "title": "Title",
"title-required": "Title is required.", "title-required": "Title is required.",
"title-max-length": "Title should be less than 256", "title-max-length": "Title should be less than 256",
@ -2816,17 +2816,17 @@
}, },
"password-requirement": { "password-requirement": {
"at-least": "At least:", "at-least": "At least:",
"character": "{ count, plural, 1 {1 character} other {# characters} }", "character": "{ count, plural, =1 {1 character} other {# characters} }",
"digit": "{ count, plural, 1 {1 digit} other {# digits} }", "digit": "{ count, plural, =1 {1 digit} other {# digits} }",
"incorrect-password-try-again": "Incorrect password. Try again", "incorrect-password-try-again": "Incorrect password. Try again",
"lowercase-letter": "{ count, plural, 1 {1 lowercase letter} other {# lowercase letters} }", "lowercase-letter": "{ count, plural, =1 {1 lowercase letter} other {# lowercase letters} }",
"new-passwords-not-match": "New password didn't match", "new-passwords-not-match": "New password didn't match",
"password-should-not-contain-spaces": "Your password should not contain spaces", "password-should-not-contain-spaces": "Your password should not contain spaces",
"password-not-meet-requirements": "Password didn't meet requirements", "password-not-meet-requirements": "Password didn't meet requirements",
"password-requirements": "Password requirements", "password-requirements": "Password requirements",
"password-should-difference": "New password should be different from current", "password-should-difference": "New password should be different from current",
"special-character": "{ count, plural, 1 {1 special character} other {# special characters} }", "special-character": "{ count, plural, =1 {1 special character} other {# special characters} }",
"uppercase-letter": "{ count, plural, 1 {1 uppercase letter} other {# uppercase letters} }" "uppercase-letter": "{ count, plural, =1 {1 uppercase letter} other {# uppercase letters} }"
} }
}, },
"relation": { "relation": {
@ -2842,7 +2842,7 @@
}, },
"from-relations": "Outbound relations", "from-relations": "Outbound relations",
"to-relations": "Inbound relations", "to-relations": "Inbound relations",
"selected-relations": "{ count, plural, 1 {1 relation} other {# relations} } selected", "selected-relations": "{ count, plural, =1 {1 relation} other {# relations} } selected",
"type": "Type", "type": "Type",
"to-entity-type": "To entity type", "to-entity-type": "To entity type",
"to-entity-name": "To entity name", "to-entity-name": "To entity name",
@ -2859,11 +2859,11 @@
"edit": "Edit relation", "edit": "Edit relation",
"delete-to-relation-title": "Are you sure you want to delete relation to the entity '{{entityName}}'?", "delete-to-relation-title": "Are you sure you want to delete relation to the entity '{{entityName}}'?",
"delete-to-relation-text": "Be careful, after the confirmation the entity '{{entityName}}' will be unrelated from the current entity.", "delete-to-relation-text": "Be careful, after the confirmation the entity '{{entityName}}' will be unrelated from the current entity.",
"delete-to-relations-title": "Are you sure you want to delete { count, plural, 1 {1 relation} other {# relations} }?", "delete-to-relations-title": "Are you sure you want to delete { count, plural, =1 {1 relation} other {# relations} }?",
"delete-to-relations-text": "Be careful, after the confirmation all selected relations will be removed and corresponding entities will be unrelated from the current entity.", "delete-to-relations-text": "Be careful, after the confirmation all selected relations will be removed and corresponding entities will be unrelated from the current entity.",
"delete-from-relation-title": "Are you sure you want to delete relation from the entity '{{entityName}}'?", "delete-from-relation-title": "Are you sure you want to delete relation from the entity '{{entityName}}'?",
"delete-from-relation-text": "Be careful, after the confirmation current entity will be unrelated from the entity '{{entityName}}'.", "delete-from-relation-text": "Be careful, after the confirmation current entity will be unrelated from the entity '{{entityName}}'.",
"delete-from-relations-title": "Are you sure you want to delete { count, plural, 1 {1 relation} other {# relations} }?", "delete-from-relations-title": "Are you sure you want to delete { count, plural, =1 {1 relation} other {# relations} }?",
"delete-from-relations-text": "Be careful, after the confirmation all selected relations will be removed and current entity will be unrelated from the corresponding entities.", "delete-from-relations-text": "Be careful, after the confirmation all selected relations will be removed and current entity will be unrelated from the corresponding entities.",
"remove-relation-filter": "Remove relation filter", "remove-relation-filter": "Remove relation filter",
"add-relation-filter": "Add relation filter", "add-relation-filter": "Add relation filter",
@ -2879,9 +2879,9 @@
"delete": "Delete resource", "delete": "Delete resource",
"delete-resource-text": "Be careful, after the confirmation the resource will become unrecoverable.", "delete-resource-text": "Be careful, after the confirmation the resource will become unrecoverable.",
"delete-resource-title": "Are you sure you want to delete the resource '{{resourceTitle}}'?", "delete-resource-title": "Are you sure you want to delete the resource '{{resourceTitle}}'?",
"delete-resources-action-title": "Delete { count, plural, 1 {1 resource} other {# resources} }", "delete-resources-action-title": "Delete { count, plural, =1 {1 resource} other {# resources} }",
"delete-resources-text": "Please note that the selected resources, even if they are used in device profiles, will be deleted.", "delete-resources-text": "Please note that the selected resources, even if they are used in device profiles, will be deleted.",
"delete-resources-title": "Are you sure you want to delete { count, plural, 1 {1 resource} other {# resources} }?", "delete-resources-title": "Are you sure you want to delete { count, plural, =1 {1 resource} other {# resources} }?",
"download": "Download resource", "download": "Download resource",
"drop-file": "Drop a resource file or click to select a file to upload.", "drop-file": "Drop a resource file or click to select a file to upload.",
"drop-resource-file-or": "Drag and drop a resource file or", "drop-resource-file-or": "Drag and drop a resource file or",
@ -2896,7 +2896,7 @@
"resource-type": "Resource type", "resource-type": "Resource type",
"resources-library": "Resources library", "resources-library": "Resources library",
"search": "Search resources", "search": "Search resources",
"selected-resources": "{ count, plural, 1 {1 resource} other {# resources} } selected", "selected-resources": "{ count, plural, =1 {1 resource} other {# resources} } selected",
"system": "System", "system": "System",
"title": "Title", "title": "Title",
"title-required": "Title is required.", "title-required": "Title is required.",
@ -2917,8 +2917,8 @@
"set-root-rulechain-text": "After the confirmation the rule chain will become root and will handle all incoming transport messages.", "set-root-rulechain-text": "After the confirmation the rule chain will become root and will handle all incoming transport messages.",
"delete-rulechain-title": "Are you sure you want to delete the rule chain '{{ruleChainName}}'?", "delete-rulechain-title": "Are you sure you want to delete the rule chain '{{ruleChainName}}'?",
"delete-rulechain-text": "Be careful, after the confirmation the rule chain and all related data will become unrecoverable.", "delete-rulechain-text": "Be careful, after the confirmation the rule chain and all related data will become unrecoverable.",
"delete-rulechains-title": "Are you sure you want to delete { count, plural, 1 {1 rule chain} other {# rule chains} }?", "delete-rulechains-title": "Are you sure you want to delete { count, plural, =1 {1 rule chain} other {# rule chains} }?",
"delete-rulechains-action-title": "Delete { count, plural, 1 {1 rule chain} other {# rule chains} }", "delete-rulechains-action-title": "Delete { count, plural, =1 {1 rule chain} other {# rule chains} }",
"delete-rulechains-text": "Be careful, after the confirmation all selected rule chains will be removed and all related data will become unrecoverable.", "delete-rulechains-text": "Be careful, after the confirmation all selected rule chains will be removed and all related data will become unrecoverable.",
"add-rulechain-text": "Add new rule chain", "add-rulechain-text": "Add new rule chain",
"no-rulechains-text": "No rule chains found", "no-rulechains-text": "No rule chains found",
@ -2940,14 +2940,14 @@
"management": "Rules management", "management": "Rules management",
"debug-mode": "Debug mode", "debug-mode": "Debug mode",
"search": "Search rule chains", "search": "Search rule chains",
"selected-rulechains": "{ count, plural, 1 {1 rule chain} other {# rule chains} } selected", "selected-rulechains": "{ count, plural, =1 {1 rule chain} other {# rule chains} } selected",
"open-rulechain": "Open rule chain", "open-rulechain": "Open rule chain",
"assign-new-rulechain": "Assign new rulechain", "assign-new-rulechain": "Assign new rulechain",
"edge-template-root": "Template Root", "edge-template-root": "Template Root",
"assign-to-edge": "Assign to Edge", "assign-to-edge": "Assign to Edge",
"edge-rulechain": "Edge rule chain", "edge-rulechain": "Edge rule chain",
"unassign-rulechain-from-edge-text": "After the confirmation the rulechain will be unassigned and won't be accessible by the edge.", "unassign-rulechain-from-edge-text": "After the confirmation the rulechain will be unassigned and won't be accessible by the edge.",
"unassign-rulechains-from-edge-title": "Are you sure you want to unassign { count, plural, 1 {1 rulechain} other {# rulechains} }?", "unassign-rulechains-from-edge-title": "Are you sure you want to unassign { count, plural, =1 {1 rulechain} other {# rulechains} }?",
"unassign-rulechains-from-edge-text": "After the confirmation all selected rulechains will be unassigned and won't be accessible by the edge.", "unassign-rulechains-from-edge-text": "After the confirmation all selected rulechains will be unassigned and won't be accessible by the edge.",
"assign-rulechain-to-edge-title": "Assign Rule Chain(s) To Edge", "assign-rulechain-to-edge-title": "Assign Rule Chain(s) To Edge",
"assign-rulechain-to-edge-text": "Please select the rulechains to assign to the edge", "assign-rulechain-to-edge-text": "Please select the rulechains to assign to the edge",
@ -3072,9 +3072,9 @@
"submit-strategy-type-required": "Submit strategy type is required!", "submit-strategy-type-required": "Submit strategy type is required!",
"processing-strategy-type-required": "Processing strategy type is required!", "processing-strategy-type-required": "Processing strategy type is required!",
"queues": "Queues", "queues": "Queues",
"selected-queues": "{ count, plural, 1 {1 queue} other {# queues} } selected", "selected-queues": "{ count, plural, =1 {1 queue} other {# queues} } selected",
"delete-queue-title": "Are you sure you want to delete the queue '{{queueName}}'?", "delete-queue-title": "Are you sure you want to delete the queue '{{queueName}}'?",
"delete-queues-title": "Are you sure you want to delete { count, plural, 1 {1 queue} other {# queues} }?", "delete-queues-title": "Are you sure you want to delete { count, plural, =1 {1 queue} other {# queues} }?",
"delete-queue-text": "Be careful, after the confirmation the queue and all related data will become unrecoverable.", "delete-queue-text": "Be careful, after the confirmation the queue and all related data will become unrecoverable.",
"delete-queues-text": "After the confirmation all selected queues will be deleted and won't be accessible.", "delete-queues-text": "After the confirmation all selected queues will be deleted and won't be accessible.",
"search": "Search queue", "search": "Search queue",
@ -3158,8 +3158,8 @@
"title-max-length": "Title should be less than 256", "title-max-length": "Title should be less than 256",
"delete-tenant-title": "Are you sure you want to delete the tenant '{{tenantTitle}}'?", "delete-tenant-title": "Are you sure you want to delete the tenant '{{tenantTitle}}'?",
"delete-tenant-text": "Be careful, after the confirmation the tenant and all related data will become unrecoverable.", "delete-tenant-text": "Be careful, after the confirmation the tenant and all related data will become unrecoverable.",
"delete-tenants-title": "Are you sure you want to delete { count, plural, 1 {1 tenant} other {# tenants} }?", "delete-tenants-title": "Are you sure you want to delete { count, plural, =1 {1 tenant} other {# tenants} }?",
"delete-tenants-action-title": "Delete { count, plural, 1 {1 tenant} other {# tenants} }", "delete-tenants-action-title": "Delete { count, plural, =1 {1 tenant} other {# tenants} }",
"delete-tenants-text": "Be careful, after the confirmation all selected tenants will be removed and all related data will become unrecoverable.", "delete-tenants-text": "Be careful, after the confirmation all selected tenants will be removed and all related data will become unrecoverable.",
"title": "Title", "title": "Title",
"title-required": "Title is required.", "title-required": "Title is required.",
@ -3172,7 +3172,7 @@
"no-tenants-matching": "No tenants matching '{{entity}}' were found.", "no-tenants-matching": "No tenants matching '{{entity}}' were found.",
"tenant-required": "Tenant is required", "tenant-required": "Tenant is required",
"search": "Search tenants", "search": "Search tenants",
"selected-tenants": "{ count, plural, 1 {1 tenant} other {# tenants} } selected", "selected-tenants": "{ count, plural, =1 {1 tenant} other {# tenants} } selected",
"isolated-tb-rule-engine": "Processing in isolated ThingsBoard Rule Engine container", "isolated-tb-rule-engine": "Processing in isolated ThingsBoard Rule Engine container",
"isolated-tb-rule-engine-details": "Requires separate microservice(s) per isolated Tenant" "isolated-tb-rule-engine-details": "Requires separate microservice(s) per isolated Tenant"
}, },
@ -3185,7 +3185,7 @@
"no-tenant-profiles-text": "No tenant profiles found", "no-tenant-profiles-text": "No tenant profiles found",
"name-max-length": "Name should be less than 256", "name-max-length": "Name should be less than 256",
"search": "Search tenant profiles", "search": "Search tenant profiles",
"selected-tenant-profiles": "{ count, plural, 1 {1 tenant profile} other {# tenant profiles} } selected", "selected-tenant-profiles": "{ count, plural, =1 {1 tenant profile} other {# tenant profiles} } selected",
"no-tenant-profiles-matching": "No tenant profile matching '{{entity}}' were found.", "no-tenant-profiles-matching": "No tenant profile matching '{{entity}}' were found.",
"tenant-profile-required": "Tenant profile is required", "tenant-profile-required": "Tenant profile is required",
"idCopiedMessage": "Tenant profile Id has been copied to clipboard", "idCopiedMessage": "Tenant profile Id has been copied to clipboard",
@ -3200,7 +3200,7 @@
"default": "Default", "default": "Default",
"delete-tenant-profile-title": "Are you sure you want to delete the tenant profile '{{tenantProfileName}}'?", "delete-tenant-profile-title": "Are you sure you want to delete the tenant profile '{{tenantProfileName}}'?",
"delete-tenant-profile-text": "Be careful, after the confirmation the tenant profile and all related data will become unrecoverable.", "delete-tenant-profile-text": "Be careful, after the confirmation the tenant profile and all related data will become unrecoverable.",
"delete-tenant-profiles-title": "Are you sure you want to delete { count, plural, 1 {1 tenant profile} other {# tenant profiles} }?", "delete-tenant-profiles-title": "Are you sure you want to delete { count, plural, =1 {1 tenant profile} other {# tenant profiles} }?",
"delete-tenant-profiles-text": "Be careful, after the confirmation all selected tenant profiles will be removed and all related data will become unrecoverable.", "delete-tenant-profiles-text": "Be careful, after the confirmation all selected tenant profiles will be removed and all related data will become unrecoverable.",
"set-default-tenant-profile-title": "Are you sure you want to make the tenant profile '{{tenantProfileName}}' default?", "set-default-tenant-profile-title": "Are you sure you want to make the tenant profile '{{tenantProfileName}}' default?",
"set-default-tenant-profile-text": "After the confirmation the tenant profile will be marked as default and will be used for new tenants with no profile specified.", "set-default-tenant-profile-text": "After the confirmation the tenant profile will be marked as default and will be used for new tenants with no profile specified.",
@ -3345,10 +3345,10 @@
} }
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 second} other {# seconds} }", "seconds-interval": "{ seconds, plural, =1 {1 second} other {# seconds} }",
"minutes-interval": "{ minutes, plural, 1 {1 minute} other {# minutes} }", "minutes-interval": "{ minutes, plural, =1 {1 minute} other {# minutes} }",
"hours-interval": "{ hours, plural, 1 {1 hour} other {# hours} }", "hours-interval": "{ hours, plural, =1 {1 hour} other {# hours} }",
"days-interval": "{ days, plural, 1 {1 day} other {# days} }", "days-interval": "{ days, plural, =1 {1 day} other {# days} }",
"days": "Days", "days": "Days",
"hours": "Hours", "hours": "Hours",
"minutes": "Minutes", "minutes": "Minutes",
@ -3383,13 +3383,13 @@
"days": "Days" "days": "Days"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { day } other {# days } }", "days": "{ days, plural, =1 { day } other {# days } }",
"hours": "{ hours, plural, 0 { hour } 1 {1 hour } other {# hours } }", "hours": "{ hours, plural, =0 { hour } =1 {1 hour } other {# hours } }",
"minutes": "{ minutes, plural, 0 { minute } 1 {1 minute } other {# minutes } }", "minutes": "{ minutes, plural, =0 { minute } =1 {1 minute } other {# minutes } }",
"seconds": "{ seconds, plural, 0 { second } 1 {1 second } other {# seconds } }", "seconds": "{ seconds, plural, =0 { second } =1 {1 second } other {# seconds } }",
"short": { "short": {
"days": "{ days, plural, 1 {1 day } other {# days } }", "days": "{ days, plural, =1 {1 day } other {# days } }",
"hours": "{ hours, plural, 1 {1 hour } other {# hours } }", "hours": "{ hours, plural, =1 {1 hour } other {# hours } }",
"minutes": "{{minutes}} min ", "minutes": "{{minutes}} min ",
"seconds": "{{seconds}} sec " "seconds": "{{seconds}} sec "
}, },
@ -3420,8 +3420,8 @@
"user-details": "User details", "user-details": "User details",
"delete-user-title": "Are you sure you want to delete the user '{{userEmail}}'?", "delete-user-title": "Are you sure you want to delete the user '{{userEmail}}'?",
"delete-user-text": "Be careful, after the confirmation the user and all related data will become unrecoverable.", "delete-user-text": "Be careful, after the confirmation the user and all related data will become unrecoverable.",
"delete-users-title": "Are you sure you want to delete { count, plural, 1 {1 user} other {# users} }?", "delete-users-title": "Are you sure you want to delete { count, plural, =1 {1 user} other {# users} }?",
"delete-users-action-title": "Delete { count, plural, 1 {1 user} other {# users} }", "delete-users-action-title": "Delete { count, plural, =1 {1 user} other {# users} }",
"delete-users-text": "Be careful, after the confirmation all selected users will be removed and all related data will become unrecoverable.", "delete-users-text": "Be careful, after the confirmation all selected users will be removed and all related data will become unrecoverable.",
"activation-email-sent-message": "Activation email was successfully sent!", "activation-email-sent-message": "Activation email was successfully sent!",
"resend-activation": "Resend activation", "resend-activation": "Resend activation",
@ -3447,7 +3447,7 @@
"login-as-tenant-admin": "Login as Tenant Admin", "login-as-tenant-admin": "Login as Tenant Admin",
"login-as-customer-user": "Login as Customer User", "login-as-customer-user": "Login as Customer User",
"search": "Search users", "search": "Search users",
"selected-users": "{ count, plural, 1 {1 user} other {# users} } selected", "selected-users": "{ count, plural, =1 {1 user} other {# users} } selected",
"disable-account": "Disable User Account", "disable-account": "Disable User Account",
"enable-account": "Enable User Account", "enable-account": "Enable User Account",
"enable-account-message": "User account was successfully enabled!", "enable-account-message": "User account was successfully enabled!",
@ -3513,7 +3513,7 @@
"previous-difference": "Previous Difference", "previous-difference": "Previous Difference",
"next-difference": "Next Difference", "next-difference": "Next Difference",
"current": "Current", "current": "Current",
"differences": "{ count, plural, 1 {1 difference} other {# differences} }", "differences": "{ count, plural, =1 {1 difference} other {# differences} }",
"create-entities-version": "Create entities version", "create-entities-version": "Create entities version",
"default-sync-strategy": "Default sync strategy", "default-sync-strategy": "Default sync strategy",
"sync-strategy-merge": "Merge", "sync-strategy-merge": "Merge",
@ -3526,7 +3526,7 @@
"no-entities-to-restore-prompt": "Please specify entities to restore", "no-entities-to-restore-prompt": "Please specify entities to restore",
"add-entity-type": "Add entity type", "add-entity-type": "Add entity type",
"remove-all": "Remove all", "remove-all": "Remove all",
"version-create-result": "{ added, plural, 0 {No entities} 1 {1 entity} other {# entities} } added.<br/>{ modified, plural, 0 {No entities} 1 {1 entity} other {# entities} } modified.<br/>{ removed, plural, 0 {No entities} 1 {1 entity} other {# entities} } removed.", "version-create-result": "{ added, plural, =0 {No entities} =1 {1 entity} other {# entities} } added.<br/>{ modified, plural, =0 {No entities} =1 {1 entity} other {# entities} } modified.<br/>{ removed, plural, =0 {No entities} =1 {1 entity} other {# entities} } removed.",
"remove-other-entities": "Remove other entities", "remove-other-entities": "Remove other entities",
"find-existing-entity-by-name": "Find existing entity by name", "find-existing-entity-by-name": "Find existing entity by name",
"restore-entities-from-version": "Restore entities from version '{{versionName}}'", "restore-entities-from-version": "Restore entities from version '{{versionName}}'",
@ -3684,8 +3684,8 @@
"widgets-bundle-details": "Widgets bundle details", "widgets-bundle-details": "Widgets bundle details",
"delete-widgets-bundle-title": "Are you sure you want to delete the widgets bundle '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Are you sure you want to delete the widgets bundle '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Be careful, after the confirmation the widgets bundle and all related data will become unrecoverable.", "delete-widgets-bundle-text": "Be careful, after the confirmation the widgets bundle and all related data will become unrecoverable.",
"delete-widgets-bundles-title": "Are you sure you want to delete { count, plural, 1 {1 widgets bundle} other {# widgets bundles} }?", "delete-widgets-bundles-title": "Are you sure you want to delete { count, plural, =1 {1 widgets bundle} other {# widgets bundles} }?",
"delete-widgets-bundles-action-title": "Delete { count, plural, 1 {1 widgets bundle} other {# widgets bundles} }", "delete-widgets-bundles-action-title": "Delete { count, plural, =1 {1 widgets bundle} other {# widgets bundles} }",
"delete-widgets-bundles-text": "Be careful, after the confirmation all selected widgets bundles will be removed and all related data will become unrecoverable.", "delete-widgets-bundles-text": "Be careful, after the confirmation all selected widgets bundles will be removed and all related data will become unrecoverable.",
"no-widgets-bundles-matching": "No widgets bundles matching '{{widgetsBundle}}' were found.", "no-widgets-bundles-matching": "No widgets bundles matching '{{widgetsBundle}}' were found.",
"widgets-bundle-required": "Widgets bundle is required.", "widgets-bundle-required": "Widgets bundle is required.",
@ -3697,7 +3697,7 @@
"widgets-bundle-file": "Widgets bundle file", "widgets-bundle-file": "Widgets bundle file",
"invalid-widgets-bundle-file-error": "Unable to import widgets bundle: Invalid widgets bundle data structure.", "invalid-widgets-bundle-file-error": "Unable to import widgets bundle: Invalid widgets bundle data structure.",
"search": "Search widget bundles", "search": "Search widget bundles",
"selected-widgets-bundles": "{ count, plural, 1 {1 widgets bundle} other {# widgets bundles} } selected", "selected-widgets-bundles": "{ count, plural, =1 {1 widgets bundle} other {# widgets bundles} } selected",
"open-widgets-bundle": "Open widgets bundle", "open-widgets-bundle": "Open widgets bundle",
"loading-widgets-bundles": "Loading widgets bundles..." "loading-widgets-bundles": "Loading widgets bundles..."
}, },
@ -3731,7 +3731,7 @@
"legend": "Legend", "legend": "Legend",
"display-legend": "Display legend", "display-legend": "Display legend",
"datasources": "Datasources", "datasources": "Datasources",
"maximum-datasources": "Maximum { count, plural, 1 {1 datasource is allowed.} other {# datasources are allowed} }", "maximum-datasources": "Maximum { count, plural, =1 {1 datasource is allowed.} other {# datasources are allowed} }",
"timeseries-key-error": "At least one timeseries data key should be specified", "timeseries-key-error": "At least one timeseries data key should be specified",
"datasource-type": "Type", "datasource-type": "Type",
"datasource-parameters": "Parameters", "datasource-parameters": "Parameters",
@ -4798,28 +4798,28 @@
"language": { "language": {
"language": "Language", "language": "Language",
"locales": { "locales": {
"ca_ES": "Catalan",
"cs_CZ": "Česky",
"da_DK": "Dansk",
"de_DE": "Deutsch", "de_DE": "Deutsch",
"fr_FR": "Français", "el_GR": "Ελληνικά",
"zh_CN": "简体中文",
"zh_TW": "繁體中文",
"en_US": "English", "en_US": "English",
"it_IT": "Italiano",
"ko_KR": "한국어",
"ru_RU": "Русский",
"es_ES": "Español", "es_ES": "Español",
"ca_ES": "Catalan",
"ja_JP": "日本語",
"tr_TR": "Türkçe",
"fa_IR": "فارسي", "fa_IR": "فارسي",
"uk_UA": "Українська", "fr_FR": "Français",
"cs_CZ": "Česky", "it_IT": "Italiano",
"el_GR": "Ελληνικά", "ja_JP": "日本語",
"ro_RO": "Română",
"lv_LV": "Latviešu",
"ka_GE": "ქართული", "ka_GE": "ქართული",
"ko_KR": "한국어",
"lv_LV": "Latviešu",
"pt_BR": "Português do Brasil", "pt_BR": "Português do Brasil",
"ro_RO": "Română",
"ru_RU": "Русский",
"sl_SI": "Slovenščina", "sl_SI": "Slovenščina",
"da_DK": "Dansk" "tr_TR": "Türkçe",
"uk_UA": "Українська",
"zh_CN": "简体中文",
"zh_TW": "繁體中文"
} }
} }
} }

232
ui-ngx/src/assets/locale/locale.constant-es_ES.json

@ -427,17 +427,17 @@
"acknowledge": "Reconocer", "acknowledge": "Reconocer",
"clear": "Normalizar", "clear": "Normalizar",
"search": "Buscar alarmas", "search": "Buscar alarmas",
"selected-alarms": "{ count, plural, 1 {1 alarma} other {# alarmas} } seleccionadas", "selected-alarms": "{ count, plural, =1 {1 alarma} other {# alarmas} } seleccionadas",
"no-data": "Sin datos que mostrar", "no-data": "Sin datos que mostrar",
"polling-interval": "Ciclo de refresco de alarmas (seg)", "polling-interval": "Ciclo de refresco de alarmas (seg)",
"polling-interval-required": "Se requiere un ciclo de refresco válido.", "polling-interval-required": "Se requiere un ciclo de refresco válido.",
"min-polling-interval-message": "El ciclo debe ser por lo menos de 1 segundo.", "min-polling-interval-message": "El ciclo debe ser por lo menos de 1 segundo.",
"aknowledge-alarms-title": "Reconocer { count, plural, 1 {1 alarma} other {# alarmas} }", "aknowledge-alarms-title": "Reconocer { count, plural, =1 {1 alarma} other {# alarmas} }",
"aknowledge-alarms-text": "Estas seguro de reconocer { count, plural, 1 {1 alarma} other {# alarmas} }?", "aknowledge-alarms-text": "Estas seguro de reconocer { count, plural, =1 {1 alarma} other {# alarmas} }?",
"aknowledge-alarm-title": "Recononcer Alarma", "aknowledge-alarm-title": "Recononcer Alarma",
"aknowledge-alarm-text": "Estas seguro de reconocer Alarma?", "aknowledge-alarm-text": "Estas seguro de reconocer Alarma?",
"clear-alarms-title": "Normalizar { count, plural, 1 {1 alarma} other {# alarmas} }", "clear-alarms-title": "Normalizar { count, plural, =1 {1 alarma} other {# alarmas} }",
"clear-alarms-text": "Limpiar { count, plural, 1 {1 alarma} other {# alarmas} }?", "clear-alarms-text": "Limpiar { count, plural, =1 {1 alarma} other {# alarmas} }?",
"clear-alarm-title": "Limpiar Alarma", "clear-alarm-title": "Limpiar Alarma",
"clear-alarm-text": "Limpiar Alarma?", "clear-alarm-text": "Limpiar Alarma?",
"alarm-status-filter": "Filtro de estados de Alarmas", "alarm-status-filter": "Filtro de estados de Alarmas",
@ -544,17 +544,17 @@
"add-asset-text": "Añadir nuevo activo", "add-asset-text": "Añadir nuevo activo",
"asset-details": "Detalles de activo", "asset-details": "Detalles de activo",
"assign-assets": "Asignar activos", "assign-assets": "Asignar activos",
"assign-assets-text": "Asignar { count, plural, 1 {1 activo} other {# activos} } a cliente", "assign-assets-text": "Asignar { count, plural, =1 {1 activo} other {# activos} } a cliente",
"assign-asset-to-edge-title": "Asignar activo(s) al borde", "assign-asset-to-edge-title": "Asignar activo(s) al borde",
"assign-asset-to-edge-text": "Por favor, selecciona lo activos a asignar al borde", "assign-asset-to-edge-text": "Por favor, selecciona lo activos a asignar al borde",
"delete-assets": "Borrar activos", "delete-assets": "Borrar activos",
"unassign-assets": "Cancelar asignación de activo", "unassign-assets": "Cancelar asignación de activo",
"unassign-assets-action-title": "Cancelar asignación de { count, plural, 1 {1 activo} other {# activos} } del cliente", "unassign-assets-action-title": "Cancelar asignación de { count, plural, =1 {1 activo} other {# activos} } del cliente",
"assign-new-asset": "Asignar nuevo activo", "assign-new-asset": "Asignar nuevo activo",
"delete-asset-title": "Eliminar el activo '{{assetName}}'?", "delete-asset-title": "Eliminar el activo '{{assetName}}'?",
"delete-asset-text": "Atención, tras la confirmación el activo y sus datos serán borrados e irrecuperables.", "delete-asset-text": "Atención, tras la confirmación el activo y sus datos serán borrados e irrecuperables.",
"delete-assets-title": "Eliminar los activos { count, plural, 1 {1 activo} other {# activos} }?", "delete-assets-title": "Eliminar los activos { count, plural, =1 {1 activo} other {# activos} }?",
"delete-assets-action-title": "Borrar { count, plural, 1 {1 activo} other {# activos} }", "delete-assets-action-title": "Borrar { count, plural, =1 {1 activo} other {# activos} }",
"delete-assets-text": "Atención, tras la confirmación todos los activos seleccionados y sus datos serán borrados e irrecuperables.", "delete-assets-text": "Atención, tras la confirmación todos los activos seleccionados y sus datos serán borrados e irrecuperables.",
"make-public-asset-title": "Hacer el activo '{{assetName}}' público?", "make-public-asset-title": "Hacer el activo '{{assetName}}' público?",
"make-public-asset-text": "Tras la confirmación, el activo y sus datos se harán públicos y accesibles por otros.", "make-public-asset-text": "Tras la confirmación, el activo y sus datos se harán públicos y accesibles por otros.",
@ -563,7 +563,7 @@
"unassign-asset-title": "Cancelar la asignación del activo '{{assetName}}'?", "unassign-asset-title": "Cancelar la asignación del activo '{{assetName}}'?",
"unassign-asset-text": "Tras la confirmación, el activo será desasignado y no será accesible por el cliente.", "unassign-asset-text": "Tras la confirmación, el activo será desasignado y no será accesible por el cliente.",
"unassign-asset": "Cancelar asignación de activo", "unassign-asset": "Cancelar asignación de activo",
"unassign-assets-title": "Cancelar las asignaciones { count, plural, 1 {1 activo} other {# activos} }?", "unassign-assets-title": "Cancelar las asignaciones { count, plural, =1 {1 activo} other {# activos} }?",
"unassign-assets-text": "Tras la confirmación todos los activos seleccionados serán desasignados y no serán accesibles por el cliente.", "unassign-assets-text": "Tras la confirmación todos los activos seleccionados serán desasignados y no serán accesibles por el cliente.",
"unassign-assets-from-edge": "Anular activos de borde", "unassign-assets-from-edge": "Anular activos de borde",
"copyId": "Copiar ID de activo", "copyId": "Copiar ID de activo",
@ -581,9 +581,9 @@
"unassign-asset-from-edge": "Anular activo de bodre", "unassign-asset-from-edge": "Anular activo de bodre",
"unassign-asset-from-edge-title": "¿Está seguro de que desea desasignar el activo '{{assetName}}'?", "unassign-asset-from-edge-title": "¿Está seguro de que desea desasignar el activo '{{assetName}}'?",
"unassign-asset-from-edge-text": "Después de la confirmación, el activo no será asignado y el borde no podrá acceder a él", "unassign-asset-from-edge-text": "Después de la confirmación, el activo no será asignado y el borde no podrá acceder a él",
"unassign-assets-from-edge-title": "¿Está seguro de que desea desasignar {count, plural, 1 {1 activo} other {# activos} }?", "unassign-assets-from-edge-title": "¿Está seguro de que desea desasignar {count, plural, =1 {1 activo} other {# activos} }?",
"unassign-assets-from-edge-text": "Después de la confirmación, todos los activos seleccionados quedarán sin asignar y el borde no podrá acceder a ellos.", "unassign-assets-from-edge-text": "Después de la confirmación, todos los activos seleccionados quedarán sin asignar y el borde no podrá acceder a ellos.",
"selected-assets": "{ count, plural, 1 {1 activo} other {# activos} } seleccionados" "selected-assets": "{ count, plural, =1 {1 activo} other {# activos} } seleccionados"
}, },
"attribute": { "attribute": {
"attributes": "Atributos", "attributes": "Atributos",
@ -600,7 +600,7 @@
"key-required": "Clave del atributo requerida.", "key-required": "Clave del atributo requerida.",
"value": "Valor", "value": "Valor",
"value-required": "Valor del atributo requerido.", "value-required": "Valor del atributo requerido.",
"delete-attributes-title": "¿Eliminar { count, plural, 1 {1 atributo} other {# atributos} }?", "delete-attributes-title": "¿Eliminar { count, plural, =1 {1 atributo} other {# atributos} }?",
"delete-attributes-text": "Atención, tras la confirmación el atributo será eliminado, y la información relacionada será irrecuperable.", "delete-attributes-text": "Atención, tras la confirmación el atributo será eliminado, y la información relacionada será irrecuperable.",
"delete-attributes": "Borrar atributo", "delete-attributes": "Borrar atributo",
"enter-attribute-value": "Ingresar valor del atributo", "enter-attribute-value": "Ingresar valor del atributo",
@ -610,8 +610,8 @@
"prev-widget": "Widget anterior", "prev-widget": "Widget anterior",
"add-to-dashboard": "Agregar al Panel", "add-to-dashboard": "Agregar al Panel",
"add-widget-to-dashboard": "Agregar widget al Panel", "add-widget-to-dashboard": "Agregar widget al Panel",
"selected-attributes": "{ count, plural, 1 {1 atributo} other {# atributos} } seleccionados", "selected-attributes": "{ count, plural, =1 {1 atributo} other {# atributos} } seleccionados",
"selected-telemetry": "{ count, plural, 1 {1 telemetría} other {# telemetrías} } seleccionadas", "selected-telemetry": "{ count, plural, =1 {1 telemetría} other {# telemetrías} } seleccionadas",
"no-attributes-text": "No se encontró ningún atributo", "no-attributes-text": "No se encontró ningún atributo",
"no-telemetry-text": "No se encontró ninguna telemetría" "no-telemetry-text": "No se encontró ninguna telemetría"
}, },
@ -788,8 +788,8 @@
"customer-details": "Detalles del cliente", "customer-details": "Detalles del cliente",
"delete-customer-title": "¿Eliminar el cliente '{{customerTitle}}'?", "delete-customer-title": "¿Eliminar el cliente '{{customerTitle}}'?",
"delete-customer-text": "Atención, tras la confirmación el cliente será eliminado y toda la información relacionada será irrecuperable.", "delete-customer-text": "Atención, tras la confirmación el cliente será eliminado y toda la información relacionada será irrecuperable.",
"delete-customers-title": "¿Eliminar { count, plural, 1 {1 cliente} other {# clientes} }?", "delete-customers-title": "¿Eliminar { count, plural, =1 {1 cliente} other {# clientes} }?",
"delete-customers-action-title": "Borrar { count, plural, 1 {1 cliente} other {# clientes} }", "delete-customers-action-title": "Borrar { count, plural, =1 {1 cliente} other {# clientes} }",
"delete-customers-text": "Atención, tras la confirmación todos los clientes seleccionados serán eliminados y su información relacionada será irrecuperable.", "delete-customers-text": "Atención, tras la confirmación todos los clientes seleccionados serán eliminados y su información relacionada será irrecuperable.",
"manage-users": "Gestionar usuarios", "manage-users": "Gestionar usuarios",
"manage-assets": "Gestionar activos", "manage-assets": "Gestionar activos",
@ -810,7 +810,7 @@
"default-customer": "Cliente por defecto", "default-customer": "Cliente por defecto",
"default-customer-required": "Se requiere cliente por defecto para realizar debu a nivel de propietario", "default-customer-required": "Se requiere cliente por defecto para realizar debu a nivel de propietario",
"search": "Buscar clientes", "search": "Buscar clientes",
"selected-customers": "{ count, plural, 1 {1 cliente} other {# clientes} } seleccionados", "selected-customers": "{ count, plural, =1 {1 cliente} other {# clientes} } seleccionados",
"edges": "Instancias de borde del cliente", "edges": "Instancias de borde del cliente",
"manage-edges": "Administrar Bordes" "manage-edges": "Administrar Bordes"
}, },
@ -862,20 +862,20 @@
"add-dashboard-text": "Agregar nuevo panel", "add-dashboard-text": "Agregar nuevo panel",
"assign-dashboards": "Asignar paneles", "assign-dashboards": "Asignar paneles",
"assign-new-dashboard": "Asignar nuevo panel", "assign-new-dashboard": "Asignar nuevo panel",
"assign-dashboards-text": "Asignar { count, plural, 1 {1 panel} other {# paneles} } al cliente", "assign-dashboards-text": "Asignar { count, plural, =1 {1 panel} other {# paneles} } al cliente",
"unassign-dashboards-action-text": "Desasignar { count, plural, 1 {1 panel} other {# paneles} } a los clientes", "unassign-dashboards-action-text": "Desasignar { count, plural, =1 {1 panel} other {# paneles} } a los clientes",
"delete-dashboards": "Eliminar paneles", "delete-dashboards": "Eliminar paneles",
"unassign-dashboards": "Desasignar paneles", "unassign-dashboards": "Desasignar paneles",
"unassign-dashboards-action-title": "Desasignar { count, plural, 1 {1 paneles} other {# paneles} } del cliente", "unassign-dashboards-action-title": "Desasignar { count, plural, =1 {1 paneles} other {# paneles} } del cliente",
"delete-dashboard-title": "¿Eliminar el panel '{{dashboardTitle}}'?", "delete-dashboard-title": "¿Eliminar el panel '{{dashboardTitle}}'?",
"delete-dashboard-text": "Atención, el panel seleccionado será eliminado y la información relacionada sera irrecuperable.", "delete-dashboard-text": "Atención, el panel seleccionado será eliminado y la información relacionada sera irrecuperable.",
"delete-dashboards-title": "¿Eliminar { count, plural, 1 {1 panel} other {# paneles} }?", "delete-dashboards-title": "¿Eliminar { count, plural, =1 {1 panel} other {# paneles} }?",
"delete-dashboards-action-title": "Eliminar { count, plural, 1 {1 panel} other {# paneles} }", "delete-dashboards-action-title": "Eliminar { count, plural, =1 {1 panel} other {# paneles} }",
"delete-dashboards-text": "Atención, los paneles seleccionados serán eliminados y la información relacionada será irrecuperable.", "delete-dashboards-text": "Atención, los paneles seleccionados serán eliminados y la información relacionada será irrecuperable.",
"unassign-dashboard-title": "¿Desasignar el panel '{{dashboardTitle}}'?", "unassign-dashboard-title": "¿Desasignar el panel '{{dashboardTitle}}'?",
"unassign-dashboard-text": "Tras la confirmación, el panel será desasignado y no podrá ser accesible por el cliente.", "unassign-dashboard-text": "Tras la confirmación, el panel será desasignado y no podrá ser accesible por el cliente.",
"unassign-dashboard": "Desasignar panel", "unassign-dashboard": "Desasignar panel",
"unassign-dashboards-title": "¿Desasignar { count, plural, 1 {1 panel} other {# paneles} }?", "unassign-dashboards-title": "¿Desasignar { count, plural, =1 {1 panel} other {# paneles} }?",
"unassign-dashboards-text": "Atención, tras la confirmación los paneles seleccionados serán desasignados y no podrán ser accesibles por el cliente.", "unassign-dashboards-text": "Atención, tras la confirmación los paneles seleccionados serán desasignados y no podrán ser accesibles por el cliente.",
"public-dashboard-title": "El panel ahora es público", "public-dashboard-title": "El panel ahora es público",
"public-dashboard-text": "Tu panel <b>{{dashboardTitle}}</b> es ahora público y podrá ser accedido desde: <a href='{{publicLink}}' target='_blank'>aquí</a>:", "public-dashboard-text": "Tu panel <b>{{dashboardTitle}}</b> es ahora público y podrá ser accedido desde: <a href='{{publicLink}}' target='_blank'>aquí</a>:",
@ -971,7 +971,7 @@
"manage-states": "Administrar estados de paneles", "manage-states": "Administrar estados de paneles",
"states": "Estados de paneles", "states": "Estados de paneles",
"search-states": "Buscar estados de paneles", "search-states": "Buscar estados de paneles",
"selected-states": "{ count, plural, 1 {1 estado panel} other {# estado paneles} } seleccionados", "selected-states": "{ count, plural, =1 {1 estado panel} other {# estado paneles} } seleccionados",
"edit-state": "Editar estado panel", "edit-state": "Editar estado panel",
"delete-state": "Borrar estado panel", "delete-state": "Borrar estado panel",
"add-state": "Añadir estado panel", "add-state": "Añadir estado panel",
@ -990,11 +990,11 @@
"select-state": "Seleccionar estado destino (target state)", "select-state": "Seleccionar estado destino (target state)",
"state-controller": "Controlador de estados", "state-controller": "Controlador de estados",
"search": "Buscar paneles", "search": "Buscar paneles",
"selected-dashboards": "{count, plural, 1 {1 panel} other {# paneles} } seleccionados", "selected-dashboards": "{count, plural, =1 {1 panel} other {# paneles} } seleccionados",
"home-dashboard": "Panel principal", "home-dashboard": "Panel principal",
"home-dashboard-hide-toolbar": "Ocultar barra de herramientas en panel principal", "home-dashboard-hide-toolbar": "Ocultar barra de herramientas en panel principal",
"unassign-dashboard-from-edge-text": "Después de la confirmación, el tablero no será asignado y el borde no podrá acceder a él", "unassign-dashboard-from-edge-text": "Después de la confirmación, el tablero no será asignado y el borde no podrá acceder a él",
"unassign-dashboards-from-edge-title": "Estas seguro de desasignar { count, plural, 1 {1 panel} other {# paneles} }?", "unassign-dashboards-from-edge-title": "Estas seguro de desasignar { count, plural, =1 {1 panel} other {# paneles} }?",
"unassign-dashboards-from-edge-text": "Después de la confirmación, se anulará la asignación de todos los paneles seleccionados y no serán accesibles por de borde", "unassign-dashboards-from-edge-text": "Después de la confirmación, se anulará la asignación de todos los paneles seleccionados y no serán accesibles por de borde",
"assign-dashboard-to-edge": "Asignar panel(es) al borde", "assign-dashboard-to-edge": "Asignar panel(es) al borde",
"assign-dashboard-to-edge-text": "Por favor selecciona los paneles para asignar al borde", "assign-dashboard-to-edge-text": "Por favor selecciona los paneles para asignar al borde",
@ -1017,7 +1017,7 @@
"timeseries-required": "Series de tiempo del dispositivo requerido.", "timeseries-required": "Series de tiempo del dispositivo requerido.",
"timeseries-or-attributes-required": "Series de tiempo/Atributos requeridos.", "timeseries-or-attributes-required": "Series de tiempo/Atributos requeridos.",
"alarm-fields-timeseries-or-attributes-required": "Se requieren campos de alarma o series de tiempo/atributos.", "alarm-fields-timeseries-or-attributes-required": "Se requieren campos de alarma o series de tiempo/atributos.",
"maximum-timeseries-or-attributes": "Máximo { count, plural, 1 {1 timeseries/atributo es permitido.} other {# timeseries/atributos son permitidos} }", "maximum-timeseries-or-attributes": "Máximo { count, plural, =1 {1 timeseries/atributo es permitido.} other {# timeseries/atributos son permitidos} }",
"alarm-fields-required": "Campos de alarma requeridos.", "alarm-fields-required": "Campos de alarma requeridos.",
"function-types": "Tipos de funciones", "function-types": "Tipos de funciones",
"function-type": "Tipos de función", "function-type": "Tipos de función",
@ -1034,7 +1034,7 @@
"timeseries-key": "Clave de series de tiempo", "timeseries-key": "Clave de series de tiempo",
"timeseries-key-functions": "Funciones de series de tiempo", "timeseries-key-functions": "Funciones de series de tiempo",
"timeseries-key-function": "Función de serie de tiempo", "timeseries-key-function": "Función de serie de tiempo",
"maximum-function-types": "Máximo { count, plural, 1 {1 tipo de función está permitida.} other {# tipos de funciones están permitidos} }", "maximum-function-types": "Máximo { count, plural, =1 {1 tipo de función está permitida.} other {# tipos de funciones están permitidos} }",
"time-description": "hora del valor actual", "time-description": "hora del valor actual",
"value-description": "el valor actual", "value-description": "el valor actual",
"prev-value-description": "resultado de la llamada anterior de la función", "prev-value-description": "resultado de la llamada anterior de la función",
@ -1098,11 +1098,11 @@
"manage-credentials": "Gestionar credenciales", "manage-credentials": "Gestionar credenciales",
"delete": "Eliminar dispositivo", "delete": "Eliminar dispositivo",
"assign-devices": "Asignar dispositivo", "assign-devices": "Asignar dispositivo",
"assign-devices-text": "Asignar { count, plural, 1 {1 dispositivo} other {# dispositivos} } al cliente", "assign-devices-text": "Asignar { count, plural, =1 {1 dispositivo} other {# dispositivos} } al cliente",
"delete-devices": "Eliminar dispositivo", "delete-devices": "Eliminar dispositivo",
"unassign-from-customer": "Desasignar del cliente", "unassign-from-customer": "Desasignar del cliente",
"unassign-devices": "Desasignar dispositivos", "unassign-devices": "Desasignar dispositivos",
"unassign-devices-action-title": "Desasignar { count, plural, 1 {1 dispositivo} other {# dispositivos} } del cliente", "unassign-devices-action-title": "Desasignar { count, plural, =1 {1 dispositivo} other {# dispositivos} } del cliente",
"unassign-device-from-edge-title": "¿Está seguro de que desea desasignar el dispositivo '{{deviceName}}'?", "unassign-device-from-edge-title": "¿Está seguro de que desea desasignar el dispositivo '{{deviceName}}'?",
"unassign-device-from-edge-text": "Después de la confirmación, el dispositivo no será asignado y el borde no podrá acceder a él", "unassign-device-from-edge-text": "Después de la confirmación, el dispositivo no será asignado y el borde no podrá acceder a él",
"unassign-devices-from-edge": "Desasignar dispositivos del Borde", "unassign-devices-from-edge": "Desasignar dispositivos del Borde",
@ -1114,13 +1114,13 @@
"view-credentials": "Ver credenciales", "view-credentials": "Ver credenciales",
"delete-device-title": "¿Eliminar el dispositivo '{{deviceName}}'?", "delete-device-title": "¿Eliminar el dispositivo '{{deviceName}}'?",
"delete-device-text": "Atención, tras la confirmación los dispositivos serán eliminados y la información relacionada será irrecuperable.", "delete-device-text": "Atención, tras la confirmación los dispositivos serán eliminados y la información relacionada será irrecuperable.",
"delete-devices-title": "¿Eliminar { count, plural, 1 {1 dispositivo} other {# dispositivos} }?", "delete-devices-title": "¿Eliminar { count, plural, =1 {1 dispositivo} other {# dispositivos} }?",
"delete-devices-action-title": "Eliminar { count, plural, 1 {1 dispositivo} other {# dispositivos} }", "delete-devices-action-title": "Eliminar { count, plural, =1 {1 dispositivo} other {# dispositivos} }",
"delete-devices-text": "Atención, tras la confirmación los dispositivos seleccionados serán eliminados y la información relacionada será irrecuperable.", "delete-devices-text": "Atención, tras la confirmación los dispositivos seleccionados serán eliminados y la información relacionada será irrecuperable.",
"unassign-device-title": "¿Desasignar el dispositivo '{{deviceName}}'?", "unassign-device-title": "¿Desasignar el dispositivo '{{deviceName}}'?",
"unassign-device-text": "Tras la confirmación, el dispositivo será desasignado y no podrá ser accesible por el cliente.", "unassign-device-text": "Tras la confirmación, el dispositivo será desasignado y no podrá ser accesible por el cliente.",
"unassign-device": "Desasignar dispositivo", "unassign-device": "Desasignar dispositivo",
"unassign-devices-title": "¿Desasignar { count, plural, 1 {1 dispositivo} other {# dispositivos} }?", "unassign-devices-title": "¿Desasignar { count, plural, =1 {1 dispositivo} other {# dispositivos} }?",
"unassign-devices-text": "Tras la confirmación, los dispositivos seleccionados serán desasignados y no podrán ser accedidos por el cliente.", "unassign-devices-text": "Tras la confirmación, los dispositivos seleccionados serán desasignados y no podrán ser accedidos por el cliente.",
"device-credentials": "Credenciales del dispositivo", "device-credentials": "Credenciales del dispositivo",
"loading-device-credentials": "Cargando credenciales del dispositivo...", "loading-device-credentials": "Cargando credenciales del dispositivo...",
@ -1201,7 +1201,7 @@
"import": "Importar dispositivo", "import": "Importar dispositivo",
"device-file": "Archivo de dispositivo", "device-file": "Archivo de dispositivo",
"search": "Buscar dispositivos", "search": "Buscar dispositivos",
"selected-devices": "{ count, plural, 1 {1 dispositivo} other {# dispositivos} } seleccionados", "selected-devices": "{ count, plural, =1 {1 dispositivo} other {# dispositivos} } seleccionados",
"device-configuration": "Configuración del dispositivo", "device-configuration": "Configuración del dispositivo",
"transport-configuration": "Configuración del transporte", "transport-configuration": "Configuración del transporte",
"wizard": { "wizard": {
@ -1213,7 +1213,7 @@
"customer-to-assign-device": "Cliente al que asignar el dispositivo", "customer-to-assign-device": "Cliente al que asignar el dispositivo",
"add-credentials": "Añadir credencial" "add-credentials": "Añadir credencial"
}, },
"unassign-devices-from-edge-title": "¿Está seguro de que desea desasignar {count, plural, 1 {1 dispositivo} other {# dispositivos} }?", "unassign-devices-from-edge-title": "¿Está seguro de que desea desasignar {count, plural, =1 {1 dispositivo} other {# dispositivos} }?",
"unassign-devices-from-edge-text": "Después de la confirmación, todos los dispositivos seleccionados quedarán sin asignar y el borde no podrá acceder a ellos." "unassign-devices-from-edge-text": "Después de la confirmación, todos los dispositivos seleccionados quedarán sin asignar y el borde no podrá acceder a ellos."
}, },
"device-profile": { "device-profile": {
@ -1225,7 +1225,7 @@
"device-profile-details": "Detalles de perfil de dispositivo", "device-profile-details": "Detalles de perfil de dispositivo",
"no-device-profiles-text": "No se encontraron perfiles", "no-device-profiles-text": "No se encontraron perfiles",
"search": "Buscar perfiles", "search": "Buscar perfiles",
"selected-device-profiles": "{ count, plural, 1 {1 perfil} other {# perfiles} } seleccionados", "selected-device-profiles": "{ count, plural, =1 {1 perfil} other {# perfiles} } seleccionados",
"no-device-profiles-matching": "No existe perfil que conincida con '{{entity}}'.", "no-device-profiles-matching": "No existe perfil que conincida con '{{entity}}'.",
"device-profile-required": "Se requiere perfil de dispositivo", "device-profile-required": "Se requiere perfil de dispositivo",
"idCopiedMessage": "Se ha copiado el ID de perfil al portapapeles", "idCopiedMessage": "Se ha copiado el ID de perfil al portapapeles",
@ -1263,7 +1263,7 @@
"select-queue-hint": "Selecciona desde el desplegable o añade un nombre personalizado.", "select-queue-hint": "Selecciona desde el desplegable o añade un nombre personalizado.",
"delete-device-profile-title": "Eliminar el perfil '{{deviceProfileName}}'?", "delete-device-profile-title": "Eliminar el perfil '{{deviceProfileName}}'?",
"delete-device-profile-text": "Atención, tras la confirmación el perfil y todos sus datos serán borrados e irrecuperables.", "delete-device-profile-text": "Atención, tras la confirmación el perfil y todos sus datos serán borrados e irrecuperables.",
"delete-device-profiles-title": "EEliminar { count, plural, 1 {1 perfil} other {# perfiles} }?", "delete-device-profiles-title": "EEliminar { count, plural, =1 {1 perfil} other {# perfiles} }?",
"delete-device-profiles-text": "Atención, tras la confirmación los perfiles seleccionados y todos sus datos serán borrados e irrecuperables.", "delete-device-profiles-text": "Atención, tras la confirmación los perfiles seleccionados y todos sus datos serán borrados e irrecuperables.",
"set-default-device-profile-title": "Establecer el perfil '{{deviceProfileName}}' como perfil por defecto?", "set-default-device-profile-title": "Establecer el perfil '{{deviceProfileName}}' como perfil por defecto?",
"set-default-device-profile-text": "Tras la confirmación, el perfil será marcado como por defecto y será usado por todos los nuevos dispositivos que no tengan perfil especificado.", "set-default-device-profile-text": "Tras la confirmación, el perfil será marcado como por defecto y será usado por todos los nuevos dispositivos que no tengan perfil especificado.",
@ -1384,8 +1384,8 @@
"condition-repeating-value-range": "El Nº de eventos debe estar en un rango de 1 to 2147483647.", "condition-repeating-value-range": "El Nº de eventos debe estar en un rango de 1 to 2147483647.",
"condition-repeating-value-pattern": "Nº de eventos debe ser un número entero.", "condition-repeating-value-pattern": "Nº de eventos debe ser un número entero.",
"condition-repeating-value-required": "Se requiere Nº de eventos.", "condition-repeating-value-required": "Se requiere Nº de eventos.",
"condition-repeat-times": "Repetición { count, plural, 1 {1 vez} other {# veces} }", "condition-repeat-times": "Repetición { count, plural, =1 {1 vez} other {# veces} }",
"condition-repeat-times-dynamic": "Repetición \"{ atributo }\" ({ count, plural, 1 {1 vez} other {# veces} })", "condition-repeat-times-dynamic": "Repetición \"{ atributo }\" ({ count, plural, =1 {1 vez} other {# veces} })",
"schedule-type": "Tipo de horario", "schedule-type": "Tipo de horario",
"schedule-type-required": "Tipo de horario requerido.", "schedule-type-required": "Tipo de horario requerido.",
"schedule": "Horario", "schedule": "Horario",
@ -1627,7 +1627,7 @@
"delete": "Eliminar borde", "delete": "Eliminar borde",
"delete-edge-title": "¿Está seguro de que desea eliminar el borde '{{edgeName}}'?", "delete-edge-title": "¿Está seguro de que desea eliminar el borde '{{edgeName}}'?",
"delete-edge-text": "Tenga cuidado, después de la confirmación, el borde y todos los datos relacionados serán irrecuperables", "delete-edge-text": "Tenga cuidado, después de la confirmación, el borde y todos los datos relacionados serán irrecuperables",
"delete-edges-title": "¿Está seguro de que desea edge {count, plural, 1 {1 borde} other {# bordes} }?", "delete-edges-title": "¿Está seguro de que desea edge {count, plural, =1 {1 borde} other {# bordes} }?",
"delete-edges-text": "Tenga cuidado, después de la confirmación se eliminarán todos los bordes seleccionados y todos los datos relacionados se volverán irrecuperables", "delete-edges-text": "Tenga cuidado, después de la confirmación se eliminarán todos los bordes seleccionados y todos los datos relacionados se volverán irrecuperables",
"name": "Nombre", "name": "Nombre",
"name-starts-with": "Nombre de Borde comienza con", "name-starts-with": "Nombre de Borde comienza con",
@ -1654,7 +1654,7 @@
"unassign-from-customer": "Anular asignación del cliente", "unassign-from-customer": "Anular asignación del cliente",
"unassign-edge-title": "¿Está seguro de que desea desasignar el borde '{{edgeName}}'?", "unassign-edge-title": "¿Está seguro de que desea desasignar el borde '{{edgeName}}'?",
"unassign-edge-text": "Después de la confirmación, el borde quedará sin asignar y el cliente no podrá acceder a él", "unassign-edge-text": "Después de la confirmación, el borde quedará sin asignar y el cliente no podrá acceder a él",
"unassign-edges-title": "¿Está seguro de que desea anular la asignación de {count, plural, 1 {1 borde} other {# bordes} }?", "unassign-edges-title": "¿Está seguro de que desea anular la asignación de {count, plural, =1 {1 borde} other {# bordes} }?",
"unassign-edges-text": "Después de la confirmación de todos los bordes seleccionados, se anulará la asignación y el cliente no podrá acceder a ellos.", "unassign-edges-text": "Después de la confirmación de todos los bordes seleccionados, se anulará la asignación y el cliente no podrá acceder a ellos.",
"make-public": "Hacer público el borde", "make-public": "Hacer público el borde",
"make-public-edge-title": "¿Estás seguro de que quieres hacer público el edge '{{edgeName}}'?", "make-public-edge-title": "¿Estás seguro de que quieres hacer público el edge '{{edgeName}}'?",
@ -1687,7 +1687,7 @@
"rulechain-templates": "Plantillas, de cadena de reglas", "rulechain-templates": "Plantillas, de cadena de reglas",
"rulechains": "Cadenas de regla de borde", "rulechains": "Cadenas de regla de borde",
"search": "Bordes de búsqueda", "search": "Bordes de búsqueda",
"selected-edges": "{count, plural, 1 {1 borde} other {# bordes} } seleccionadas", "selected-edges": "{count, plural, =1 {1 borde} other {# bordes} } seleccionadas",
"any-edge": "Cualquier bordee", "any-edge": "Cualquier bordee",
"no-edge-types-matching": "No se encontraron tipos de aristas que coincidan con '{{entitySubtype}}'.", "no-edge-types-matching": "No se encontraron tipos de aristas que coincidan con '{{entitySubtype}}'.",
"edge-type-list-empty": "No se seleccionó ningún tipo de borde.", "edge-type-list-empty": "No se seleccionó ningún tipo de borde.",
@ -1787,59 +1787,59 @@
"type-required": "Tipo de entidad requerido.", "type-required": "Tipo de entidad requerido.",
"type-device": "Dispositivo", "type-device": "Dispositivo",
"type-devices": "Dispositivos", "type-devices": "Dispositivos",
"list-of-devices": "{ count, plural, 1 {Un dispositivo} other {Lista de # Dispositivos} }", "list-of-devices": "{ count, plural, =1 {Un dispositivo} other {Lista de # Dispositivos} }",
"device-name-starts-with": "Dispositivos cuyos nombres comiencen por '{{prefix}}'", "device-name-starts-with": "Dispositivos cuyos nombres comiencen por '{{prefix}}'",
"type-device-profile": "Perfil de dispositivo", "type-device-profile": "Perfil de dispositivo",
"type-device-profiles": "Perfiles de dispositivo", "type-device-profiles": "Perfiles de dispositivo",
"list-of-device-profiles": "{ count, plural, 1 {un perfil} other {Lista de # perfiles} }", "list-of-device-profiles": "{ count, plural, =1 {un perfil} other {Lista de # perfiles} }",
"device-profile-name-starts-with": "Perfiles cuyo nombre empiece por '{{prefix}}'", "device-profile-name-starts-with": "Perfiles cuyo nombre empiece por '{{prefix}}'",
"type-asset": "Activo", "type-asset": "Activo",
"type-assets": "Activos", "type-assets": "Activos",
"list-of-assets": "{ count, plural, 1 {Un activo} other {Lista de # activos} }", "list-of-assets": "{ count, plural, =1 {Un activo} other {Lista de # activos} }",
"asset-name-starts-with": "Activos cuyos nombres comiencen por '{{prefix}}'", "asset-name-starts-with": "Activos cuyos nombres comiencen por '{{prefix}}'",
"type-entity-view": "Vista Entidad", "type-entity-view": "Vista Entidad",
"type-entity-views": "Vistas Entidades", "type-entity-views": "Vistas Entidades",
"list-of-entity-views": "{ count, plural, 1 {Una vista de entidad} other {Lista de # Vistas de Entidades} }", "list-of-entity-views": "{ count, plural, =1 {Una vista de entidad} other {Lista de # Vistas de Entidades} }",
"entity-view-name-starts-with": "Vistas de Entidades cuyo nombre comiencen por '{{prefix}}'", "entity-view-name-starts-with": "Vistas de Entidades cuyo nombre comiencen por '{{prefix}}'",
"type-rule": "Regla", "type-rule": "Regla",
"type-rules": "Reglas", "type-rules": "Reglas",
"list-of-rules": "{ count, plural, 1 {Una regla} other {Lista de # reglas} }", "list-of-rules": "{ count, plural, =1 {Una regla} other {Lista de # reglas} }",
"rule-name-starts-with": "Reglas cuyos nombres comiencen por '{{prefix}}'", "rule-name-starts-with": "Reglas cuyos nombres comiencen por '{{prefix}}'",
"type-plugin": "Plugin", "type-plugin": "Plugin",
"type-plugins": "Plugins", "type-plugins": "Plugins",
"list-of-plugins": "{ count, plural, 1 {Un plugin} other {Lista de # plugins} }", "list-of-plugins": "{ count, plural, =1 {Un plugin} other {Lista de # plugins} }",
"plugin-name-starts-with": "Plugins cuyos nombres comiencen por '{{prefix}}'", "plugin-name-starts-with": "Plugins cuyos nombres comiencen por '{{prefix}}'",
"type-tenant": "Propietario", "type-tenant": "Propietario",
"type-tenants": "Propietarios", "type-tenants": "Propietarios",
"list-of-tenants": "{ count, plural, 1 {Un propietario} other {Lista de # propietarios} }", "list-of-tenants": "{ count, plural, =1 {Un propietario} other {Lista de # propietarios} }",
"tenant-name-starts-with": "Propietarios cuyo nombre comience por '{{prefix}}'", "tenant-name-starts-with": "Propietarios cuyo nombre comience por '{{prefix}}'",
"type-tenant-profile": "Perfil de Propietario", "type-tenant-profile": "Perfil de Propietario",
"type-tenant-profiles": "Perfiles de propietario", "type-tenant-profiles": "Perfiles de propietario",
"list-of-tenant-profiles": "{ count, plural, 1 {Un perfil de propietario} other {Lista de # perfiles de propietario} }", "list-of-tenant-profiles": "{ count, plural, =1 {Un perfil de propietario} other {Lista de # perfiles de propietario} }",
"tenant-profile-name-starts-with": "Pefiles de propietario cuyo nombre empiece por '{{prefix}}'", "tenant-profile-name-starts-with": "Pefiles de propietario cuyo nombre empiece por '{{prefix}}'",
"type-customer": "Cliente", "type-customer": "Cliente",
"type-customers": "Clientes", "type-customers": "Clientes",
"list-of-customers": "{ count, plural, 1 {Un cliente} other {Lista de # clientes} }", "list-of-customers": "{ count, plural, =1 {Un cliente} other {Lista de # clientes} }",
"customer-name-starts-with": "Clientes cuyos nombres comiencen por '{{prefix}}'", "customer-name-starts-with": "Clientes cuyos nombres comiencen por '{{prefix}}'",
"type-user": "Usuario", "type-user": "Usuario",
"type-users": "Usuarios", "type-users": "Usuarios",
"list-of-users": "{ count, plural, 1 {Un usuario} other {Lista de # usuarios} }", "list-of-users": "{ count, plural, =1 {Un usuario} other {Lista de # usuarios} }",
"user-name-starts-with": "Usuarios cuyos nombres comiencen por '{{prefix}}'", "user-name-starts-with": "Usuarios cuyos nombres comiencen por '{{prefix}}'",
"type-dashboard": "Panel", "type-dashboard": "Panel",
"type-dashboards": "Paneles", "type-dashboards": "Paneles",
"list-of-dashboards": "{ count, plural, 1 {Un panel} other {Lista de # paneles} }", "list-of-dashboards": "{ count, plural, =1 {Un panel} other {Lista de # paneles} }",
"dashboard-name-starts-with": "Paneles cuyos nombres comiencen por '{{prefix}}'", "dashboard-name-starts-with": "Paneles cuyos nombres comiencen por '{{prefix}}'",
"type-alarm": "Alarma", "type-alarm": "Alarma",
"type-alarms": "Alarmas", "type-alarms": "Alarmas",
"list-of-alarms": "{ count, plural, 1 {Una alarma} other {Lista de # alarmas} }", "list-of-alarms": "{ count, plural, =1 {Una alarma} other {Lista de # alarmas} }",
"alarm-name-starts-with": "Alarmas cuyos nombres comienzan con '{{prefix}}'", "alarm-name-starts-with": "Alarmas cuyos nombres comienzan con '{{prefix}}'",
"type-rulechain": "Cadena de reglas", "type-rulechain": "Cadena de reglas",
"type-rulechains": "Cadenas de reglas", "type-rulechains": "Cadenas de reglas",
"list-of-rulechains": "{ count, plural, 1 {Una cadena de reglas} other {Lista de # cadenas de reglas} }", "list-of-rulechains": "{ count, plural, =1 {Una cadena de reglas} other {Lista de # cadenas de reglas} }",
"rulechain-name-starts-with": "Cadenas de reglas cuyos nombres comienzan con '{{prefix}}'", "rulechain-name-starts-with": "Cadenas de reglas cuyos nombres comienzan con '{{prefix}}'",
"type-rulenode": "Nodo de reglas", "type-rulenode": "Nodo de reglas",
"type-rulenodes": "Nodos de reglas", "type-rulenodes": "Nodos de reglas",
"list-of-rulenodes": "{ count, plural, 1 {Un nodo de reglas} other {Lista de # nodos de reglas} }", "list-of-rulenodes": "{ count, plural, =1 {Un nodo de reglas} other {Lista de # nodos de reglas} }",
"rulenode-name-starts-with": "Nodos de reglas cuyos nombres comienzan con '{{prefix}}'", "rulenode-name-starts-with": "Nodos de reglas cuyos nombres comienzan con '{{prefix}}'",
"type-current-customer": "Cliente Actual", "type-current-customer": "Cliente Actual",
"type-current-tenant": "Propietario Actual", "type-current-tenant": "Propietario Actual",
@ -1847,9 +1847,9 @@
"type-current-user-owner": "Usuario Propietario Actual", "type-current-user-owner": "Usuario Propietario Actual",
"type-widgets-bundle": "Paquete de widgets", "type-widgets-bundle": "Paquete de widgets",
"type-widgets-bundles": "Paquetes de widgets", "type-widgets-bundles": "Paquetes de widgets",
"list-of-widgets-bundles": "{ count, plural, 1 {Un paquete de widget} other {Lista de # paquetes de widgets} }", "list-of-widgets-bundles": "{ count, plural, =1 {Un paquete de widget} other {Lista de # paquetes de widgets} }",
"search": "Buscar entidades", "search": "Buscar entidades",
"selected-entities": "{ count, plural, 1 {1 entidad} other {# entidades} } seleccionadas", "selected-entities": "{ count, plural, =1 {1 entidad} other {# entidades} } seleccionadas",
"entity-label": "Etiqueta de entidad", "entity-label": "Etiqueta de entidad",
"entity-name": "Nombre de entidad", "entity-name": "Nombre de entidad",
"details": "Detalles de entidad", "details": "Detalles de entidad",
@ -1859,7 +1859,7 @@
"type-api-usage-state": "Estado de uso de la API", "type-api-usage-state": "Estado de uso de la API",
"type-edge": "Borde", "type-edge": "Borde",
"type-edges": "Bordes", "type-edges": "Bordes",
"list-of-edges": "{count, plural, 1 {Un borde} other {Lista de # bordes} }", "list-of-edges": "{count, plural, =1 {Un borde} other {Lista de # bordes} }",
"edge-name-starts-with": "Bordes cuyos nombres comienzan con '{{prefijo}}'", "edge-name-starts-with": "Bordes cuyos nombres comienzan con '{{prefijo}}'",
"type-tb-resource": "Recurso", "type-tb-resource": "Recurso",
"type-ota-package": "Paquete OTA" "type-ota-package": "Paquete OTA"
@ -1922,21 +1922,21 @@
"add-entity-view-text": "Añadir nueva vista de entidad", "add-entity-view-text": "Añadir nueva vista de entidad",
"delete": "Borrar vista de entidad", "delete": "Borrar vista de entidad",
"assign-entity-views": "Asignar vistas de entidad", "assign-entity-views": "Asignar vistas de entidad",
"assign-entity-views-text": "Asignar { count, plural, 1 {1 vista de entidad} other {# vistas de entidad} } a cliente", "assign-entity-views-text": "Asignar { count, plural, =1 {1 vista de entidad} other {# vistas de entidad} } a cliente",
"delete-entity-views": "Borrar vistas de entidad", "delete-entity-views": "Borrar vistas de entidad",
"unassign-from-customer": "Anular asignación a cliente", "unassign-from-customer": "Anular asignación a cliente",
"unassign-entity-views": "Anular asignación de vistas de entidad", "unassign-entity-views": "Anular asignación de vistas de entidad",
"unassign-entity-views-action-title": "Anular asignación { count, plural, 1 {1 vista de entidad} other {# vistas de entidad} } al cliente", "unassign-entity-views-action-title": "Anular asignación { count, plural, =1 {1 vista de entidad} other {# vistas de entidad} } al cliente",
"assign-new-entity-view": "Asignar nueva vista de entidad", "assign-new-entity-view": "Asignar nueva vista de entidad",
"delete-entity-view-title": "¿Está seguro que quiere borrar la vista de entidad '{{entityViewName}}'?", "delete-entity-view-title": "¿Está seguro que quiere borrar la vista de entidad '{{entityViewName}}'?",
"delete-entity-view-text": "¡Cuidado! Tras la confirmación, la vista de la entidad y todos los datos relacionados serán irrecuperables.", "delete-entity-view-text": "¡Cuidado! Tras la confirmación, la vista de la entidad y todos los datos relacionados serán irrecuperables.",
"delete-entity-views-title": "¿Está seguro que quiere borrar las vistas de entidad { count, plural, 1 {1 entityView} other {# entityViews} }?", "delete-entity-views-title": "¿Está seguro que quiere borrar las vistas de entidad { count, plural, =1 {1 entityView} other {# entityViews} }?",
"delete-entity-views-action-title": "Borrar { count, plural, 1 {1 vista de entidad} other {# vistas de entidad} }", "delete-entity-views-action-title": "Borrar { count, plural, =1 {1 vista de entidad} other {# vistas de entidad} }",
"delete-entity-views-text": "¡Cuidado! Tras la confirmación, todas las vistas de entidades seleccionadas se eliminarán y todos los datos relacionados serán irrecuperables.", "delete-entity-views-text": "¡Cuidado! Tras la confirmación, todas las vistas de entidades seleccionadas se eliminarán y todos los datos relacionados serán irrecuperables.",
"unassign-entity-view-title": "¿Está seguro que quiere anular la asignación de la vista de entidad '{{entityViewName}}'?", "unassign-entity-view-title": "¿Está seguro que quiere anular la asignación de la vista de entidad '{{entityViewName}}'?",
"unassign-entity-view-text": "Tras la confirmación, la vista de la entidad quedará sin asignar y el cliente no podrá acceder a ella.", "unassign-entity-view-text": "Tras la confirmación, la vista de la entidad quedará sin asignar y el cliente no podrá acceder a ella.",
"unassign-entity-view": "Anular asignación de la vista de entidad", "unassign-entity-view": "Anular asignación de la vista de entidad",
"unassign-entity-views-title": "¿Está seguro que quiere anular la asignación de { count, plural, 1 {1 vista de entidad} other {# vistas de entidad} }?", "unassign-entity-views-title": "¿Está seguro que quiere anular la asignación de { count, plural, =1 {1 vista de entidad} other {# vistas de entidad} }?",
"unassign-entity-views-text": "Tras la confirmación, todas las vistas de entidades seleccionadas quedarán sin asignar y el cliente no podrá acceder a ellas.", "unassign-entity-views-text": "Tras la confirmación, todas las vistas de entidades seleccionadas quedarán sin asignar y el cliente no podrá acceder a ellas.",
"entity-view-type": "Tipo de vista de entidad", "entity-view-type": "Tipo de vista de entidad",
"entity-view-type-required": "Tipo de vista de entidad es requerido.", "entity-view-type-required": "Tipo de vista de entidad es requerido.",
@ -1981,7 +1981,7 @@
"timeseries-data": "Datos de series temporales", "timeseries-data": "Datos de series temporales",
"timeseries-data-hint": "Configure las claves de los datos de las series temporales de la entidad de destino que serán accesibles para la vista de la entidad. Los datos de esta serie temporal son de solo lectura.", "timeseries-data-hint": "Configure las claves de los datos de las series temporales de la entidad de destino que serán accesibles para la vista de la entidad. Los datos de esta serie temporal son de solo lectura.",
"search": "Buscar vistas de entidad", "search": "Buscar vistas de entidad",
"selected-entity-views": "{ count, plural, 1 {1 vista de entidad} other {# vistas de entidad} } seleccionadas", "selected-entity-views": "{ count, plural, =1 {1 vista de entidad} other {# vistas de entidad} } seleccionadas",
"make-public-entity-view-title": "¿Está seguro de que desea que la vista de entidad '{{entityViewName}}' sea pública?", "make-public-entity-view-title": "¿Está seguro de que desea que la vista de entidad '{{entityViewName}}' sea pública?",
"make-public-entity-view-text": "Tras la confirmación, la vista de la entidad y todos sus datos se harán públicos y accesibles para otros.", "make-public-entity-view-text": "Tras la confirmación, la vista de la entidad y todos sus datos se harán públicos y accesibles para otros.",
"make-private-entity-view-title": "¿Está seguro de que desea que la vista de entidad '{{entityViewName}}' sea privada?", "make-private-entity-view-title": "¿Está seguro de que desea que la vista de entidad '{{entityViewName}}' sea privada?",
@ -1990,9 +1990,9 @@
"assign-entity-view-to-edge-text": "Seleccione las vistas de entidad para asignar al borde", "assign-entity-view-to-edge-text": "Seleccione las vistas de entidad para asignar al borde",
"unassign-entity-view-from-edge-title": "¿Está seguro de que desea anular la asignación de la vista de entidad '{{entityViewName}}'?", "unassign-entity-view-from-edge-title": "¿Está seguro de que desea anular la asignación de la vista de entidad '{{entityViewName}}'?",
"unassign-entity-view-from-edge-text": "Después de la confirmación, la vista de entidad quedará sin asignar y el borde no podrá acceder a ella", "unassign-entity-view-from-edge-text": "Después de la confirmación, la vista de entidad quedará sin asignar y el borde no podrá acceder a ella",
"unassign-entity-views-from-edge-action-title": "Anular asignación {count, plural, 1 {1 vista de entidad} other {# vistas de entidad} } del borde", "unassign-entity-views-from-edge-action-title": "Anular asignación {count, plural, =1 {1 vista de entidad} other {# vistas de entidad} } del borde",
"unassign-entity-view-from-edge": "Anular asignación de vista de entidad", "unassign-entity-view-from-edge": "Anular asignación de vista de entidad",
"unassign-entity-views-from-edge-title": "¿Está seguro de que desea desasignar {count, plural, 1 {1 vista de entidad} other {# vistas de entidad} }?", "unassign-entity-views-from-edge-title": "¿Está seguro de que desea desasignar {count, plural, =1 {1 vista de entidad} other {# vistas de entidad} }?",
"unassign-entity-views-from-edge-text": "Después de la confirmación, todas las vistas de entidad seleccionadas no serán asignadas y el borde no podrá acceder a ellas" "unassign-entity-views-from-edge-text": "Después de la confirmación, todas las vistas de entidad seleccionadas no serán asignadas y el borde no podrá acceder a ellas"
}, },
"event": { "event": {
@ -2037,7 +2037,7 @@
}, },
"extension": { "extension": {
"extensions": "Extensiones", "extensions": "Extensiones",
"selected-extensions": "{ count, plural, 1 {1 extensión} other {# extensiones} } seleccionadas", "selected-extensions": "{ count, plural, =1 {1 extensión} other {# extensiones} } seleccionadas",
"type": "Tipo", "type": "Tipo",
"key": "Clave", "key": "Clave",
"value": "Valor", "value": "Valor",
@ -2051,7 +2051,7 @@
"edit": "Editar Extensión", "edit": "Editar Extensión",
"delete-extension-title": "Eliminar la extensión '{{extensionId}}'?", "delete-extension-title": "Eliminar la extensión '{{extensionId}}'?",
"delete-extension-text": "Atención, tras la confirmación la extensión y sus datos serán borrados e irrecuperables.", "delete-extension-text": "Atención, tras la confirmación la extensión y sus datos serán borrados e irrecuperables.",
"delete-extensions-title": "Eliminar las extensiones { count, plural, 1 {1 extensión} other {# extensiones} }?", "delete-extensions-title": "Eliminar las extensiones { count, plural, =1 {1 extensión} other {# extensiones} }?",
"delete-extensions-text": "Atención, tras la confirmación todas las extensiones seleccionadas y sus datos serán borrados e irrecuperables.", "delete-extensions-text": "Atención, tras la confirmación todas las extensiones seleccionadas y sus datos serán borrados e irrecuperables.",
"converters": "Convertidores", "converters": "Convertidores",
"converter-id": "Id de convertidor", "converter-id": "Id de convertidor",
@ -2371,8 +2371,8 @@
"grid": { "grid": {
"delete-item-title": "¿Quieres eliminar este item?", "delete-item-title": "¿Quieres eliminar este item?",
"delete-item-text": "Atención, tras la confirmación el item será eliminado y la información relacionada será irrecuperable.", "delete-item-text": "Atención, tras la confirmación el item será eliminado y la información relacionada será irrecuperable.",
"delete-items-title": "¿Quieres eliminar { count, plural, 1 {1 item} other {# items} }?", "delete-items-title": "¿Quieres eliminar { count, plural, =1 {1 item} other {# items} }?",
"delete-items-action-title": "Eliminar { count, plural, 1 {1 item} other {# items} }", "delete-items-action-title": "Eliminar { count, plural, =1 {1 item} other {# items} }",
"delete-items-text": "Atención, tras la confirmación los items seleccionados serán eliminados y la información relacionada será irrecuperable.", "delete-items-text": "Atención, tras la confirmación los items seleccionados serán eliminados y la información relacionada será irrecuperable.",
"add-item-text": "Agregar nuevo item", "add-item-text": "Agregar nuevo item",
"no-items-text": "Ningún item encontrado", "no-items-text": "Ningún item encontrado",
@ -2539,7 +2539,7 @@
"verify-your-identity": "Verificar identidad", "verify-your-identity": "Verificar identidad",
"select-way-to-verify": "Selecciona el modo de verificación", "select-way-to-verify": "Selecciona el modo de verificación",
"resend-code": "Reenviar código", "resend-code": "Reenviar código",
"resend-code-wait": "Reenviar código en { time, plural, 1 {1 segundo} other {# segundos} }", "resend-code-wait": "Reenviar código en { time, plural, =1 {1 segundo} other {# segundos} }",
"try-another-way": "Otros modos de verificación", "try-another-way": "Otros modos de verificación",
"totp-auth-description": "Por favor, introduce el código de seguridad de tu aplicación de autenticación.", "totp-auth-description": "Por favor, introduce el código de seguridad de tu aplicación de autenticación.",
"totp-auth-placeholder": "Código", "totp-auth-placeholder": "Código",
@ -2567,8 +2567,8 @@
"checksum-hint": "Si el checksum está vacío, se generará automáticamente", "checksum-hint": "Si el checksum está vacío, se generará automáticamente",
"checksum-algorithm": "Algoritmo checksum", "checksum-algorithm": "Algoritmo checksum",
"checksum-copied-message": "El checksum del paquete se ha copiado al portapapeles", "checksum-copied-message": "El checksum del paquete se ha copiado al portapapeles",
"change-firmware": "El cambio del firmware provocará la actualización de { count, plural, 1 {1 dispositivo} other {# dispositivos} }.", "change-firmware": "El cambio del firmware provocará la actualización de { count, plural, =1 {1 dispositivo} other {# dispositivos} }.",
"change-software": "El cambio del software provocará la actualización de { count, plural, 1 {1 dispositivo} other {# dispositivos} }.", "change-software": "El cambio del software provocará la actualización de { count, plural, =1 {1 dispositivo} other {# dispositivos} }.",
"chose-compatible-device-profile": "El paquete subido, sólamente estará disponible para los dispositivos con el perfil seleccionado.", "chose-compatible-device-profile": "El paquete subido, sólamente estará disponible para los dispositivos con el perfil seleccionado.",
"chose-firmware-distributed-device": "Elige el firmware que se distribuirá a los dispositivos", "chose-firmware-distributed-device": "Elige el firmware que se distribuirá a los dispositivos",
"chose-software-distributed-device": "Elige el software que se distribuirá a los dispositivos", "chose-software-distributed-device": "Elige el software que se distribuirá a los dispositivos",
@ -2581,7 +2581,7 @@
"delete-ota-update-text": "Atención, tras la confirmación la actualización OTA será irrecuperable.", "delete-ota-update-text": "Atención, tras la confirmación la actualización OTA será irrecuperable.",
"delete-ota-update-title": "Estás seguro de borrar la actualización OTA '{{title}}'?", "delete-ota-update-title": "Estás seguro de borrar la actualización OTA '{{title}}'?",
"delete-ota-updates-text": "Atención, tras la confirmación todas las actualizaciones OTA seleccionadas se borrarán.", "delete-ota-updates-text": "Atención, tras la confirmación todas las actualizaciones OTA seleccionadas se borrarán.",
"delete-ota-updates-title": "Estás seguro de borrar { count, plural, 1 {1 Actualización OTA} other {# Actualizaciones OTA} }?", "delete-ota-updates-title": "Estás seguro de borrar { count, plural, =1 {1 Actualización OTA} other {# Actualizaciones OTA} }?",
"description": "Descripción", "description": "Descripción",
"direct-url": "URL Directa", "direct-url": "URL Directa",
"direct-url-copied-message": "La URL directa del paquete se ha copiado al portapapeles", "direct-url-copied-message": "La URL directa del paquete se ha copiado al portapapeles",
@ -2604,7 +2604,7 @@
"package-type": "Tipo de paquete", "package-type": "Tipo de paquete",
"packages-repository": "Repositorio de paquetes", "packages-repository": "Repositorio de paquetes",
"search": "Buscar paquetes", "search": "Buscar paquetes",
"selected-package": "{ count, plural, 1 {1 paquete} other {# paquetes} } selected", "selected-package": "{ count, plural, =1 {1 paquete} other {# paquetes} } selected",
"title": "Título", "title": "Título",
"title-required": "Título requerido.", "title-required": "Título requerido.",
"title-max-length": "El título debe ser menor de 256", "title-max-length": "El título debe ser menor de 256",
@ -2696,17 +2696,17 @@
}, },
"password-requirement": { "password-requirement": {
"at-least": "Al menos:", "at-least": "Al menos:",
"character": "{ count, plural, 1 {1 caracter} other {# caracteres} }", "character": "{ count, plural, =1 {1 caracter} other {# caracteres} }",
"digit": "{ count, plural, 1 {1 dígito} other {# dígitos} }", "digit": "{ count, plural, =1 {1 dígito} other {# dígitos} }",
"incorrect-password-try-again": "Contraseña incorrecta. Prueba otra vez", "incorrect-password-try-again": "Contraseña incorrecta. Prueba otra vez",
"lowercase-letter": "{ count, plural, 1 {1 minúscula} other {# mínusculas} }", "lowercase-letter": "{ count, plural, =1 {1 minúscula} other {# mínusculas} }",
"new-passwords-not-match": "Las contraseñas no coinciden", "new-passwords-not-match": "Las contraseñas no coinciden",
"password-should-not-contain-spaces": "La contraseña no puede contener espacios", "password-should-not-contain-spaces": "La contraseña no puede contener espacios",
"password-not-meet-requirements": "La contraseña no reune los requisitos necesarios", "password-not-meet-requirements": "La contraseña no reune los requisitos necesarios",
"password-requirements": "Requisitos de contraseña", "password-requirements": "Requisitos de contraseña",
"password-should-difference": "La nueva contraseña debe ser diferente a la actual", "password-should-difference": "La nueva contraseña debe ser diferente a la actual",
"special-character": "{ count, plural, 1 {1 caracter especial} other {# caracteres especiales} }", "special-character": "{ count, plural, =1 {1 caracter especial} other {# caracteres especiales} }",
"uppercase-letter": "{ count, plural, 1 {1 mayúscula} other {# mayúsculas} }" "uppercase-letter": "{ count, plural, =1 {1 mayúscula} other {# mayúsculas} }"
} }
}, },
"relation": { "relation": {
@ -2722,7 +2722,7 @@
}, },
"from-relations": "Relaciones salientes (outbound)", "from-relations": "Relaciones salientes (outbound)",
"to-relations": "Relaciones entrantes (inbound)", "to-relations": "Relaciones entrantes (inbound)",
"selected-relations": "{ count, plural, 1 {1 relación} other {# relaciones} } seleccionadas", "selected-relations": "{ count, plural, =1 {1 relación} other {# relaciones} } seleccionadas",
"type": "Tipo", "type": "Tipo",
"to-entity-type": "Hacia tipo de entidad", "to-entity-type": "Hacia tipo de entidad",
"to-entity-name": "Hacia nombre de entidad", "to-entity-name": "Hacia nombre de entidad",
@ -2739,11 +2739,11 @@
"edit": "Editar relación", "edit": "Editar relación",
"delete-to-relation-title": "¿Quieres eliminar la relación con la entidad '{{entityName}}'?", "delete-to-relation-title": "¿Quieres eliminar la relación con la entidad '{{entityName}}'?",
"delete-to-relation-text": "Atención, tras la confirmación la entidad '{{entityName}}' no estará relacionada con la entidad actual.", "delete-to-relation-text": "Atención, tras la confirmación la entidad '{{entityName}}' no estará relacionada con la entidad actual.",
"delete-to-relations-title": "¿Quieres eliminar { count, plural, 1 {1 relación} other {# relaciones} }?", "delete-to-relations-title": "¿Quieres eliminar { count, plural, =1 {1 relación} other {# relaciones} }?",
"delete-to-relations-text": "Atención, tras la confirmación todas las relaciones seleccionadas se eliminarán y sus entidades correspondientes no estarán relacionadas con la entidad actual.", "delete-to-relations-text": "Atención, tras la confirmación todas las relaciones seleccionadas se eliminarán y sus entidades correspondientes no estarán relacionadas con la entidad actual.",
"delete-from-relation-title": "¿Quieres eliminar la relación con la entidad '{{entityName}}'?", "delete-from-relation-title": "¿Quieres eliminar la relación con la entidad '{{entityName}}'?",
"delete-from-relation-text": "Atención, tras la confirmación la entidad actual no estará relacionada con la entidad '{{entityName}}'.", "delete-from-relation-text": "Atención, tras la confirmación la entidad actual no estará relacionada con la entidad '{{entityName}}'.",
"delete-from-relations-title": "¿Quieres eliminar { count, plural, 1 {1 relación} other {# relaciones} }?", "delete-from-relations-title": "¿Quieres eliminar { count, plural, =1 {1 relación} other {# relaciones} }?",
"delete-from-relations-text": "Atención, tras la confirmación todas las relaciones seleccionadas se eliminarán y sus entidades correspondientes no estarán relacionadas con sus entidades correspondientes.", "delete-from-relations-text": "Atención, tras la confirmación todas las relaciones seleccionadas se eliminarán y sus entidades correspondientes no estarán relacionadas con sus entidades correspondientes.",
"remove-relation-filter": "Quitar filtro de relación", "remove-relation-filter": "Quitar filtro de relación",
"add-relation-filter": "Añadir filtro de relación", "add-relation-filter": "Añadir filtro de relación",
@ -2759,9 +2759,9 @@
"delete": "Borrar recurso", "delete": "Borrar recurso",
"delete-resource-text": "Atención, tras la confirmación el recurso será irrecuperable.", "delete-resource-text": "Atención, tras la confirmación el recurso será irrecuperable.",
"delete-resource-title": "Estás seguro de borrar el recurso '{{resourceTitle}}'?", "delete-resource-title": "Estás seguro de borrar el recurso '{{resourceTitle}}'?",
"delete-resources-action-title": "Borrar { count, plural, 1 {1 recurso} other {# recursos} }", "delete-resources-action-title": "Borrar { count, plural, =1 {1 recurso} other {# recursos} }",
"delete-resources-text": "Los recursos serán borrados, incluso si están siendo usados en los perfiles de dispositivo.", "delete-resources-text": "Los recursos serán borrados, incluso si están siendo usados en los perfiles de dispositivo.",
"delete-resources-title": "Estás seguro de borrar { count, plural, 1 {1 recurso} other {# recursos} }?", "delete-resources-title": "Estás seguro de borrar { count, plural, =1 {1 recurso} other {# recursos} }?",
"download": "Descargar recurso", "download": "Descargar recurso",
"drop-file": "Arrastra un fichero o haz click para seleccionar un fichero a subir.", "drop-file": "Arrastra un fichero o haz click para seleccionar un fichero a subir.",
"drop-resource-file-or": "Arrastrar y soltar un fichero o", "drop-resource-file-or": "Arrastrar y soltar un fichero o",
@ -2776,7 +2776,7 @@
"resource-type": "Tipo de recurso", "resource-type": "Tipo de recurso",
"resources-library": "Librería de recursos", "resources-library": "Librería de recursos",
"search": "Buscar recursos", "search": "Buscar recursos",
"selected-resources": "{ count, plural, 1 {1 recurso} other {# recursos} } seleccionados", "selected-resources": "{ count, plural, =1 {1 recurso} other {# recursos} } seleccionados",
"system": "Sistema", "system": "Sistema",
"title": "Título", "title": "Título",
"title-required": "Título requerido.", "title-required": "Título requerido.",
@ -2797,8 +2797,8 @@
"set-root-rulechain-text": "Tras la confirmación, la cadena de reglas se volverá raíz y manejará todos los mensajes de transporte entrantes.", "set-root-rulechain-text": "Tras la confirmación, la cadena de reglas se volverá raíz y manejará todos los mensajes de transporte entrantes.",
"delete-rulechain-title": "¿Quieres eliminar la cadena de reglas '{{ruleChainName}}'?", "delete-rulechain-title": "¿Quieres eliminar la cadena de reglas '{{ruleChainName}}'?",
"delete-rulechain-text": "Atención, tras la confirmación la cadena de reglas y todos los datos serán irrecuperables.", "delete-rulechain-text": "Atención, tras la confirmación la cadena de reglas y todos los datos serán irrecuperables.",
"delete-rulechains-title": "¿Está seguro que quieres eliminar { count, plural, 1 {1 cadena de reglas} other {# cadenas de reglas} }?", "delete-rulechains-title": "¿Está seguro que quieres eliminar { count, plural, =1 {1 cadena de reglas} other {# cadenas de reglas} }?",
"delete-rulechains-action-title": "Eliminar { count, plural, 1 {1 cadena de reglas} other {# cadenas de reglas} }", "delete-rulechains-action-title": "Eliminar { count, plural, =1 {1 cadena de reglas} other {# cadenas de reglas} }",
"delete-rulechains-text": "Atención, tras la confirmación todas las cadena de reglas seleccionadas y todos sus datos serán irrecuperables.", "delete-rulechains-text": "Atención, tras la confirmación todas las cadena de reglas seleccionadas y todos sus datos serán irrecuperables.",
"add-rulechain-text": "Añadir nueva cadena de reglas", "add-rulechain-text": "Añadir nueva cadena de reglas",
"no-rulechains-text": "Cadenas de reglas no encontradas", "no-rulechains-text": "Cadenas de reglas no encontradas",
@ -2820,14 +2820,14 @@
"management": "Gestión de reglas", "management": "Gestión de reglas",
"debug-mode": "Modo Debug", "debug-mode": "Modo Debug",
"search": "Buscar cadenas de reglas", "search": "Buscar cadenas de reglas",
"selected-rulechains": "{ count, plural, 1 {1 cadena de reglas} other {# cadenas de reglas} } seleccionadas", "selected-rulechains": "{ count, plural, =1 {1 cadena de reglas} other {# cadenas de reglas} } seleccionadas",
"open-rulechain": "Abrir cadena de reglas", "open-rulechain": "Abrir cadena de reglas",
"assign-new-rulechain": "Asignar nueva cadena de reglas", "assign-new-rulechain": "Asignar nueva cadena de reglas",
"edge-template-root": "Raíz de plantilla", "edge-template-root": "Raíz de plantilla",
"assign-to-edge": "Asignar a Edge", "assign-to-edge": "Asignar a Edge",
"edge-rulechain": "Cadena de reglas de borde", "edge-rulechain": "Cadena de reglas de borde",
"unassign-rulechain-from-edge-text": "Después de la confirmación, la cadena de reglas quedará sin asignar y el borde no podrá acceder a ella", "unassign-rulechain-from-edge-text": "Después de la confirmación, la cadena de reglas quedará sin asignar y el borde no podrá acceder a ella",
"unassign-rulechains-from-edge-title": "Estás seguro de desasignar { count, plural, 1 {1 cadena de reglas} other {# cadenas de reglas} }?", "unassign-rulechains-from-edge-title": "Estás seguro de desasignar { count, plural, =1 {1 cadena de reglas} other {# cadenas de reglas} }?",
"unassign-rulechains-from-edge-text": "Después de la confirmación, todas las cadenas de reglas seleccionadas quedarán sin asignar y el borde no podrá acceder a ellas", "unassign-rulechains-from-edge-text": "Después de la confirmación, todas las cadenas de reglas seleccionadas quedarán sin asignar y el borde no podrá acceder a ellas",
"assign-rulechain-to-edge-title": "Asignar cadena (s) de reglas a borde", "assign-rulechain-to-edge-title": "Asignar cadena (s) de reglas a borde",
"assign-rulechain-to-edge-text": "Seleccione las cadenas de reglas para asignar al borde", "assign-rulechain-to-edge-text": "Seleccione las cadenas de reglas para asignar al borde",
@ -2948,9 +2948,9 @@
"submit-strategy-type-required": "Estrategia de envío requerida!", "submit-strategy-type-required": "Estrategia de envío requerida!",
"processing-strategy-type-required": "Estrategia de procesamiento requerida!", "processing-strategy-type-required": "Estrategia de procesamiento requerida!",
"queues": "Colas", "queues": "Colas",
"selected-queues": "{ count, plural, 1 {1 cola} other {# colas} } seleccionadas", "selected-queues": "{ count, plural, =1 {1 cola} other {# colas} } seleccionadas",
"delete-queue-title": "Estás seguro de borrar la cola '{{queueName}}'?", "delete-queue-title": "Estás seguro de borrar la cola '{{queueName}}'?",
"delete-queues-title": "Estás seguro de borrar { count, plural, 1 {1 cola} other {# colas} }?", "delete-queues-title": "Estás seguro de borrar { count, plural, =1 {1 cola} other {# colas} }?",
"delete-queue-text": "Atención, tras la confirmacion la cola y todos sus datos relacionados serán irrecuperables.", "delete-queue-text": "Atención, tras la confirmacion la cola y todos sus datos relacionados serán irrecuperables.",
"delete-queues-text": "Atención, tras la confirmación todas las colas se borrarán y no serán accesibles.", "delete-queues-text": "Atención, tras la confirmación todas las colas se borrarán y no serán accesibles.",
"search": "Buscar cola", "search": "Buscar cola",
@ -3014,8 +3014,8 @@
"title-max-length": "Título debe ser menor de 256", "title-max-length": "Título debe ser menor de 256",
"delete-tenant-title": "¿Quieres eliminar el propietario '{{tenantTitle}}'?", "delete-tenant-title": "¿Quieres eliminar el propietario '{{tenantTitle}}'?",
"delete-tenant-text": "Atención, tras la confirmación el propietario será eliminado y la información relacionada será irrecuperable.", "delete-tenant-text": "Atención, tras la confirmación el propietario será eliminado y la información relacionada será irrecuperable.",
"delete-tenants-title": "¿Quieres eliminar { count, plural, 1 {1 propietario} other {# propietarios} }?", "delete-tenants-title": "¿Quieres eliminar { count, plural, =1 {1 propietario} other {# propietarios} }?",
"delete-tenants-action-title": "Eliminar { count, plural, 1 {1 propietario} other {# propietarios} }", "delete-tenants-action-title": "Eliminar { count, plural, =1 {1 propietario} other {# propietarios} }",
"delete-tenants-text": "Atención, tras la confirmación los propietarios seleccionados serán eliminados y la información relacionada será irrecuperable.", "delete-tenants-text": "Atención, tras la confirmación los propietarios seleccionados serán eliminados y la información relacionada será irrecuperable.",
"title": "Título", "title": "Título",
"title-required": "Título requerido.", "title-required": "Título requerido.",
@ -3028,7 +3028,7 @@
"no-tenants-matching": "No hay propietarios que coincidan con '{{entity}}' .", "no-tenants-matching": "No hay propietarios que coincidan con '{{entity}}' .",
"tenant-required": "Propietario requerido", "tenant-required": "Propietario requerido",
"search": "Buscar propietarios", "search": "Buscar propietarios",
"selected-tenants": "{ count, plural, 1 {1 propietario} other {# propietarios} } seleccionados", "selected-tenants": "{ count, plural, =1 {1 propietario} other {# propietarios} } seleccionados",
"isolated-tb-rule-engine": "Procesando en contenedor Motor de Reglas aislado", "isolated-tb-rule-engine": "Procesando en contenedor Motor de Reglas aislado",
"isolated-tb-rule-engine-details": "Requiere microservicios separados por propietario aislado" "isolated-tb-rule-engine-details": "Requiere microservicios separados por propietario aislado"
}, },
@ -3041,7 +3041,7 @@
"no-tenant-profiles-text": "No se encontraron perfiles de propietario", "no-tenant-profiles-text": "No se encontraron perfiles de propietario",
"name-max-length": "El nombre debe ser menor de 256", "name-max-length": "El nombre debe ser menor de 256",
"search": "Buscar perfiles de propietario", "search": "Buscar perfiles de propietario",
"selected-tenant-profiles": "{ count, plural, 1 {1 perfil de propietario} other {# perfiles de propietario} } seleccionados", "selected-tenant-profiles": "{ count, plural, =1 {1 perfil de propietario} other {# perfiles de propietario} } seleccionados",
"no-tenant-profiles-matching": "No se han encontrado perfiles de propietario que coincidan con '{{entity}}'.", "no-tenant-profiles-matching": "No se han encontrado perfiles de propietario que coincidan con '{{entity}}'.",
"tenant-profile-required": "Se requiere perfil de propietario", "tenant-profile-required": "Se requiere perfil de propietario",
"idCopiedMessage": "El ID de perfil de propietario se ha copiado al portapapeles", "idCopiedMessage": "El ID de perfil de propietario se ha copiado al portapapeles",
@ -3056,7 +3056,7 @@
"default": "Defecto", "default": "Defecto",
"delete-tenant-profile-title": "Eliminar el perfil propietario '{{tenantProfileName}}'?", "delete-tenant-profile-title": "Eliminar el perfil propietario '{{tenantProfileName}}'?",
"delete-tenant-profile-text": "Atención, tras la confirmación, el perfil de propietario será borrado y su información relacionada será irrecuperable.", "delete-tenant-profile-text": "Atención, tras la confirmación, el perfil de propietario será borrado y su información relacionada será irrecuperable.",
"delete-tenant-profiles-title": "Eliminar { count, plural, 1 {1 perfil propietario} other {# perfiles propietarios} }?", "delete-tenant-profiles-title": "Eliminar { count, plural, =1 {1 perfil propietario} other {# perfiles propietarios} }?",
"delete-tenant-profiles-text": "Atención, tras la confirmación, los perfiles seleccionados se eliminarán y su información relacionada será irrecuperable.", "delete-tenant-profiles-text": "Atención, tras la confirmación, los perfiles seleccionados se eliminarán y su información relacionada será irrecuperable.",
"set-default-tenant-profile-title": "Quieres hacer el perfil propietario '{{tenantProfileName}}' por defecto?", "set-default-tenant-profile-title": "Quieres hacer el perfil propietario '{{tenantProfileName}}' por defecto?",
"set-default-tenant-profile-text": "Tras la confirmación, el perfil propietario será marcado por defecto y será usado por los nuevos perfiles propietarios que no tengan perfil específico.", "set-default-tenant-profile-text": "Tras la confirmación, el perfil propietario será marcado por defecto y será usado por los nuevos perfiles propietarios que no tengan perfil específico.",
@ -3156,10 +3156,10 @@
"ws-limit-updates-per-session": "Rate limit for WS updates per session" "ws-limit-updates-per-session": "Rate limit for WS updates per session"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 segundo} other {# segundos} }", "seconds-interval": "{ seconds, plural, =1 {1 segundo} other {# segundos} }",
"minutes-interval": "{ minutes, plural, 1 {1 minuto} other {# minutos} }", "minutes-interval": "{ minutes, plural, =1 {1 minuto} other {# minutos} }",
"hours-interval": "{ hours, plural, 1 {1 hora} other {# horas} }", "hours-interval": "{ hours, plural, =1 {1 hora} other {# horas} }",
"days-interval": "{ days, plural, 1 {1 día} other {# días} }", "days-interval": "{ days, plural, =1 {1 día} other {# días} }",
"days": "Días", "days": "Días",
"hours": "Horas", "hours": "Horas",
"minutes": "Minutos", "minutes": "Minutos",
@ -3194,10 +3194,10 @@
"days": "Días" "days": "Días"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { día } other {# días } }", "days": "{ days, plural, =1 { día } other {# días } }",
"hours": "{ hours, plural, 0 { horas } 1 {1 hora } other {# horas } }", "hours": "{ hours, plural, =0 { horas } =1 {1 hora } other {# horas } }",
"minutes": "{ minutes, plural, 0 { minutos } 1 {1 minuto } other {# minutos } }", "minutes": "{ minutes, plural, =0 { minutos } =1 {1 minuto } other {# minutos } }",
"seconds": "{ seconds, plural, 0 { segundos } 1 {1 segundo } other {# segundos } }", "seconds": "{ seconds, plural, =0 { segundos } =1 {1 segundo } other {# segundos } }",
"realtime": "Tiempo-real", "realtime": "Tiempo-real",
"history": "Histórico", "history": "Histórico",
"last-prefix": "último(s)", "last-prefix": "último(s)",
@ -3225,8 +3225,8 @@
"user-details": "Detalles del usuario", "user-details": "Detalles del usuario",
"delete-user-title": "¿Eliminar el usuario '{{userEmail}}'?", "delete-user-title": "¿Eliminar el usuario '{{userEmail}}'?",
"delete-user-text": "Atención, tras la confirmación el usuario seleccionado será eliminado y la información relacionada será irrecuperable.", "delete-user-text": "Atención, tras la confirmación el usuario seleccionado será eliminado y la información relacionada será irrecuperable.",
"delete-users-title": "¿Eliminar { count, plural, 1 {1 usuario} other {# usuarios} }?", "delete-users-title": "¿Eliminar { count, plural, =1 {1 usuario} other {# usuarios} }?",
"delete-users-action-title": "Borrar { count, plural, 1 {1 usuario} other {# usuarios} }", "delete-users-action-title": "Borrar { count, plural, =1 {1 usuario} other {# usuarios} }",
"delete-users-text": "Atención, tras la confirmación los usuarios seleccionados serán eliminados y la información relacionada será irrecuperable.", "delete-users-text": "Atención, tras la confirmación los usuarios seleccionados serán eliminados y la información relacionada será irrecuperable.",
"activation-email-sent-message": "Mail de activación enviado con éxito!", "activation-email-sent-message": "Mail de activación enviado con éxito!",
"resend-activation": "Reenviar activación", "resend-activation": "Reenviar activación",
@ -3252,7 +3252,7 @@
"login-as-tenant-admin": "Iniciar sesión como Administrador Propietario", "login-as-tenant-admin": "Iniciar sesión como Administrador Propietario",
"login-as-customer-user": "Iniciar sesión como Usuario Cliente", "login-as-customer-user": "Iniciar sesión como Usuario Cliente",
"search": "Buscar usuarios", "search": "Buscar usuarios",
"selected-users": "{ count, plural, 1 {1 usuario} other {# usuarios} } seleccionados", "selected-users": "{ count, plural, =1 {1 usuario} other {# usuarios} } seleccionados",
"disable-account": "Deshabilitar cuenta de usuario", "disable-account": "Deshabilitar cuenta de usuario",
"enable-account": "Habilitar cuenta de usuario", "enable-account": "Habilitar cuenta de usuario",
"enable-account-message": "¡La cuenta de usuario se ha habilitado correctamente!", "enable-account-message": "¡La cuenta de usuario se ha habilitado correctamente!",
@ -3314,7 +3314,7 @@
"previous-difference": "Anterior diferencia", "previous-difference": "Anterior diferencia",
"next-difference": "Siguiente diferencia", "next-difference": "Siguiente diferencia",
"current": "Actual", "current": "Actual",
"differences": "{ count, plural, 1 {1 diferencia} other {# diferencias} }", "differences": "{ count, plural, =1 {1 diferencia} other {# diferencias} }",
"create-entities-version": "Crear versión de entidades", "create-entities-version": "Crear versión de entidades",
"default-sync-strategy": "Estrategia de sincronización por defecto", "default-sync-strategy": "Estrategia de sincronización por defecto",
"sync-strategy-merge": "Combinar (Merge)", "sync-strategy-merge": "Combinar (Merge)",
@ -3327,7 +3327,7 @@
"no-entities-to-restore-prompt": "Por favor, especifica las entidades a restaurar", "no-entities-to-restore-prompt": "Por favor, especifica las entidades a restaurar",
"add-entity-type": "Añadir tipo de entidad", "add-entity-type": "Añadir tipo de entidad",
"remove-all": "Borrar todo", "remove-all": "Borrar todo",
"version-create-result": "{ added, plural, 0 {Ninguna entidad} 1 {1 entidad} other {# entidades} } añadidas.<br/>{ modified, plural, 0 {Ninguna entidad} 1 {1 entidad} other {# entidades} } modificadas.<br/>{ removed, plural, 0 {Ninguna entidad} 1 {1 entidad} other {# entidades} } borradas.", "version-create-result": "{ added, plural, =0 {Ninguna entidad} =1 {1 entidad} other {# entidades} } añadidas.<br/>{ modified, plural, =0 {Ninguna entidad} =1 {1 entidad} other {# entidades} } modificadas.<br/>{ removed, plural, =0 {Ninguna entidad} =1 {1 entidad} other {# entidades} } borradas.",
"remove-other-entities": "Borrar otras entidades", "remove-other-entities": "Borrar otras entidades",
"find-existing-entity-by-name": "Buscar entidad existente por nombre", "find-existing-entity-by-name": "Buscar entidad existente por nombre",
"restore-entities-from-version": "Restaurar entidades desde la versión '{{versionName}}'", "restore-entities-from-version": "Restaurar entidades desde la versión '{{versionName}}'",
@ -3482,8 +3482,8 @@
"widgets-bundle-details": "Detalles del paquete de Widgets", "widgets-bundle-details": "Detalles del paquete de Widgets",
"delete-widgets-bundle-title": "¿Eliminar el paquete de widgets '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "¿Eliminar el paquete de widgets '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Atención, tras la confirmación todos los paquetes seleccionados serán eliminados y su información relacionada será irrecuperable.", "delete-widgets-bundle-text": "Atención, tras la confirmación todos los paquetes seleccionados serán eliminados y su información relacionada será irrecuperable.",
"delete-widgets-bundles-title": "¿Eliminar { count, plural, 1 {1 paquete de widgets} other {# paquetes de widgets} }?", "delete-widgets-bundles-title": "¿Eliminar { count, plural, =1 {1 paquete de widgets} other {# paquetes de widgets} }?",
"delete-widgets-bundles-action-title": "Eliminar { count, plural, 1 {1 paquete de widgets} other {# paquetes de widgets} }", "delete-widgets-bundles-action-title": "Eliminar { count, plural, =1 {1 paquete de widgets} other {# paquetes de widgets} }",
"delete-widgets-bundles-text": "Atención, tras la confirmación todos los paquetes seleccionados serán eliminados y la información relacionada será irrecuperable.", "delete-widgets-bundles-text": "Atención, tras la confirmación todos los paquetes seleccionados serán eliminados y la información relacionada será irrecuperable.",
"no-widgets-bundles-matching": "Ningún paquete '{{widgetsBundle}}' encontrado.", "no-widgets-bundles-matching": "Ningún paquete '{{widgetsBundle}}' encontrado.",
"widgets-bundle-required": "Paquete de widget requerido.", "widgets-bundle-required": "Paquete de widget requerido.",
@ -3495,7 +3495,7 @@
"widgets-bundle-file": "Archivo de paquete de widgets", "widgets-bundle-file": "Archivo de paquete de widgets",
"invalid-widgets-bundle-file-error": "Imposible importar paquete de widgets: Estructura de datos inválida.", "invalid-widgets-bundle-file-error": "Imposible importar paquete de widgets: Estructura de datos inválida.",
"search": "Buscar paquete de widgets", "search": "Buscar paquete de widgets",
"selected-widgets-bundles": "{ count, plural, 1 {1 paquete de widgets} other {# paquetes de widgets} } seleccionados", "selected-widgets-bundles": "{ count, plural, =1 {1 paquete de widgets} other {# paquetes de widgets} } seleccionados",
"open-widgets-bundle": "Abrir paquete de widgets", "open-widgets-bundle": "Abrir paquete de widgets",
"loading-widgets-bundles": "Cargando paquete de widgets..." "loading-widgets-bundles": "Cargando paquete de widgets..."
}, },
@ -3528,7 +3528,7 @@
"legend": "Leyenda", "legend": "Leyenda",
"display-legend": "Mostrar leyenda", "display-legend": "Mostrar leyenda",
"datasources": "Set de datos", "datasources": "Set de datos",
"maximum-datasources": "Un máximo de { count, plural, 1 {1 set de datos es permitido.} other {# set de datos son permitidos} }", "maximum-datasources": "Un máximo de { count, plural, =1 {1 set de datos es permitido.} other {# set de datos son permitidos} }",
"datasource-type": "Tipo", "datasource-type": "Tipo",
"datasource-parameters": "Parámetros", "datasource-parameters": "Parámetros",
"remove-datasource": "Eliminar set de datos", "remove-datasource": "Eliminar set de datos",

142
ui-ngx/src/assets/locale/locale.constant-fa_IR.json

@ -127,17 +127,17 @@
"acknowledge": "تصديق", "acknowledge": "تصديق",
"clear": "پاک کردن", "clear": "پاک کردن",
"search": "جستجوي هشدارها", "search": "جستجوي هشدارها",
"selected-alarms": "اننخاب شده { count, plural, 1 {1 هشدار} other {# هشدارها} }", "selected-alarms": "اننخاب شده { count, plural, =1 {1 هشدار} other {# هشدارها} }",
"no-data": "هيچ داده اي براي نمايش نيست", "no-data": "هيچ داده اي براي نمايش نيست",
"polling-interval": "هشدار دهنده فاصله نمونه برداري (sec)", "polling-interval": "هشدار دهنده فاصله نمونه برداري (sec)",
"polling-interval-required": ".هشدار دهنده فاصله نمونه برداري مورد نياز است", "polling-interval-required": ".هشدار دهنده فاصله نمونه برداري مورد نياز است",
"min-polling-interval-message": ".حداقل فاصله مجاز نمونه برداري، 1 ثانيه است", "min-polling-interval-message": ".حداقل فاصله مجاز نمونه برداري، 1 ثانيه است",
"aknowledge-alarms-title": "{ count, plural, 1 {1 هشدار} other {# هشدارها} } تصديق", "aknowledge-alarms-title": "{ count, plural, =1 {1 هشدار} other {# هشدارها} } تصديق",
"aknowledge-alarms-text": "اطمينان داريد؟ { count, plural, 1 {1 هشدار} other {# هشدارها} } آيا شما از تصديق", "aknowledge-alarms-text": "اطمينان داريد؟ { count, plural, =1 {1 هشدار} other {# هشدارها} } آيا شما از تصديق",
"aknowledge-alarm-title": "تصديق هشدار", "aknowledge-alarm-title": "تصديق هشدار",
"aknowledge-alarm-text": "آيا شما از تصديق هشدار اطمينان داريد؟", "aknowledge-alarm-text": "آيا شما از تصديق هشدار اطمينان داريد؟",
"clear-alarms-title": "{ count, plural, 1 {1 هشدار} other {# هشدارها} } پاک کردن", "clear-alarms-title": "{ count, plural, =1 {1 هشدار} other {# هشدارها} } پاک کردن",
"clear-alarms-text": "اطمينان داريد؟ { count, plural, 1 {1 هشدار} other {# هشدارها} } آيا شما از پاک کردن", "clear-alarms-text": "اطمينان داريد؟ { count, plural, =1 {1 هشدار} other {# هشدارها} } آيا شما از پاک کردن",
"clear-alarm-title": "پاک کردن هشدار", "clear-alarm-title": "پاک کردن هشدار",
"clear-alarm-text": "آيا شما از پاک کردن هشدار اطمينان داريد؟", "clear-alarm-text": "آيا شما از پاک کردن هشدار اطمينان داريد؟",
"alarm-status-filter": "فيلتر وضعيت هشدار" "alarm-status-filter": "فيلتر وضعيت هشدار"
@ -223,15 +223,15 @@
"add-asset-text": "افزودن دارايي جديد", "add-asset-text": "افزودن دارايي جديد",
"asset-details": "جزئيات دارايي", "asset-details": "جزئيات دارايي",
"assign-assets": "تخصيص دارايي ها", "assign-assets": "تخصيص دارايي ها",
"assign-assets-text": "به مشتري { count, plural, 1 {1 دارايي} other {# دارايي} } تخصيص", "assign-assets-text": "به مشتري { count, plural, =1 {1 دارايي} other {# دارايي} } تخصيص",
"delete-assets": "حذف دارايي ها", "delete-assets": "حذف دارايي ها",
"unassign-assets": "لغو تخصيص دارايي ها", "unassign-assets": "لغو تخصيص دارايي ها",
"unassign-assets-action-title": "از مشتري { count, plural, 1 {1 دارايي} other {# دارايي} } لغو تخصيص", "unassign-assets-action-title": "از مشتري { count, plural, =1 {1 دارايي} other {# دارايي} } لغو تخصيص",
"assign-new-asset": "تخصيص دارايي جديد", "assign-new-asset": "تخصيص دارايي جديد",
"delete-asset-title": "مطمئنيد؟ '{{assetName}}' آيا از حذف دارايي", "delete-asset-title": "مطمئنيد؟ '{{assetName}}' آيا از حذف دارايي",
"delete-asset-text": ".مراقب باشيد، پس از تأييد، دارايي و تمام داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-asset-text": ".مراقب باشيد، پس از تأييد، دارايي و تمام داده هاي مربوطه غير قابل بازيابي مي شوند",
"delete-assets-title": "مطمئنيد؟ { count, plural, 1 {1 دارايي} other {# دارايي} } آيا از حذف", "delete-assets-title": "مطمئنيد؟ { count, plural, =1 {1 دارايي} other {# دارايي} } آيا از حذف",
"delete-assets-action-title": "{ count, plural, 1 {1 دارايي} other {# دارايي} } حذف", "delete-assets-action-title": "{ count, plural, =1 {1 دارايي} other {# دارايي} } حذف",
"delete-assets-text": ".مراقب باشيد، پس از تأييد، تمام دارايي هاي انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-assets-text": ".مراقب باشيد، پس از تأييد، تمام دارايي هاي انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"make-public-asset-title": "مطمئنيد؟ '{{assetName}}' آيا از عمومي سازي", "make-public-asset-title": "مطمئنيد؟ '{{assetName}}' آيا از عمومي سازي",
"make-public-asset-text": ".پس از تأييد، دارايي و تمامي داده هايش عمومي و قابل دسترسي براي ديگران مي شود", "make-public-asset-text": ".پس از تأييد، دارايي و تمامي داده هايش عمومي و قابل دسترسي براي ديگران مي شود",
@ -240,7 +240,7 @@
"unassign-asset-title": "مطمئنيد؟ '{{assetName}}' آيا از لغو تخصيص دارايي", "unassign-asset-title": "مطمئنيد؟ '{{assetName}}' آيا از لغو تخصيص دارايي",
"unassign-asset-text": ".پس از تأييد، دارايي، لغو تخصيص و خارج از دسترس مشتري مي شود", "unassign-asset-text": ".پس از تأييد، دارايي، لغو تخصيص و خارج از دسترس مشتري مي شود",
"unassign-asset": "لغو تخصيص دارايي", "unassign-asset": "لغو تخصيص دارايي",
"unassign-assets-title": "مطمئنيد؟ { count, plural, 1 {1 دارايي} other {# دارايي} } آيا از لغو تخصيص", "unassign-assets-title": "مطمئنيد؟ { count, plural, =1 {1 دارايي} other {# دارايي} } آيا از لغو تخصيص",
"unassign-assets-text": ".پس از تأييد، تمام دارايي هاي انتخاب شده، لغو تخصيص و خارج از دسترس مشتري مي شوند", "unassign-assets-text": ".پس از تأييد، تمام دارايي هاي انتخاب شده، لغو تخصيص و خارج از دسترس مشتري مي شوند",
"copyId": "دارايي ID رونوشت از", "copyId": "دارايي ID رونوشت از",
"idCopiedMessage": "دارايي در حافظه موقت رونوشت شد ID", "idCopiedMessage": "دارايي در حافظه موقت رونوشت شد ID",
@ -264,7 +264,7 @@
"key-required": ".کليد ويژگي مورد نياز است", "key-required": ".کليد ويژگي مورد نياز است",
"value": "مقدار", "value": "مقدار",
"value-required": ".مقدار ويژگي مورد نياز است", "value-required": ".مقدار ويژگي مورد نياز است",
"delete-attributes-title": "مطمئنيد؟ { count, plural, 1 {1 ويژگي} other {# ويژگي} } آيا از حذف", "delete-attributes-title": "مطمئنيد؟ { count, plural, =1 {1 ويژگي} other {# ويژگي} } آيا از حذف",
"delete-attributes-text": ".مراقب باشيد، پس از تأييد، تمام ويژگي هاي انتخاب شده حذف مي گردند", "delete-attributes-text": ".مراقب باشيد، پس از تأييد، تمام ويژگي هاي انتخاب شده حذف مي گردند",
"delete-attributes": "حذف ويژگي ها", "delete-attributes": "حذف ويژگي ها",
"enter-attribute-value": "وارد کردن مقدار ويژگي", "enter-attribute-value": "وارد کردن مقدار ويژگي",
@ -274,8 +274,8 @@
"prev-widget": "ويجت قبل", "prev-widget": "ويجت قبل",
"add-to-dashboard": "افزودن به داشبورد", "add-to-dashboard": "افزودن به داشبورد",
"add-widget-to-dashboard": "افزودن ويجت به داشبورد", "add-widget-to-dashboard": "افزودن ويجت به داشبورد",
"selected-attributes": "انتخاب شدند { count, plural, 1 {1 ويژگي} other {# ويژگي} }", "selected-attributes": "انتخاب شدند { count, plural, =1 {1 ويژگي} other {# ويژگي} }",
"selected-telemetry": "انتخاب شد { count, plural, 1 {1 واحد سنجش} other {# واحد سنجش} }" "selected-telemetry": "انتخاب شد { count, plural, =1 {1 واحد سنجش} other {# واحد سنجش} }"
}, },
"audit-log": { "audit-log": {
"audit": "بازبيني", "audit": "بازبيني",
@ -371,8 +371,8 @@
"customer-details": "جزئيات اطلاعات مشتري", "customer-details": "جزئيات اطلاعات مشتري",
"delete-customer-title": "مطمئنيد؟ '{{customerTitle}}' از حذف مشتري", "delete-customer-title": "مطمئنيد؟ '{{customerTitle}}' از حذف مشتري",
"delete-customer-text": ".مراقب باشيد، پس از تأييد، مشتري و تمامي داده هاي مربوطه، غير قابل بازيابي مي شوند", "delete-customer-text": ".مراقب باشيد، پس از تأييد، مشتري و تمامي داده هاي مربوطه، غير قابل بازيابي مي شوند",
"delete-customers-title": "مطمئنيد؟ { count, plural, 1 {1 مشتري} other {# مشتري} } از حذف", "delete-customers-title": "مطمئنيد؟ { count, plural, =1 {1 مشتري} other {# مشتري} } از حذف",
"delete-customers-action-title": "{ count, plural, 1 {1 مشتري} other {# مشتري} } حذف", "delete-customers-action-title": "{ count, plural, =1 {1 مشتري} other {# مشتري} } حذف",
"delete-customers-text": ".مراقب باشيد، پس از تأييد، تمام مشتريانِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل دسترسي مي شوند", "delete-customers-text": ".مراقب باشيد، پس از تأييد، تمام مشتريانِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل دسترسي مي شوند",
"manage-users": "مديريت کاربرها", "manage-users": "مديريت کاربرها",
"manage-assets": "مديريت دارايي ها", "manage-assets": "مديريت دارايي ها",
@ -431,20 +431,20 @@
"add-dashboard-text": "افزودن داشبورد جديد", "add-dashboard-text": "افزودن داشبورد جديد",
"assign-dashboards": "تخصيص داشبوردها", "assign-dashboards": "تخصيص داشبوردها",
"assign-new-dashboard": "تخصيص داشبورد جديد", "assign-new-dashboard": "تخصيص داشبورد جديد",
"assign-dashboards-text": "به مشتريان { count, plural, 1 {1 داشبورد} other {# داشبورد} } تخصيص", "assign-dashboards-text": "به مشتريان { count, plural, =1 {1 داشبورد} other {# داشبورد} } تخصيص",
"unassign-dashboards-action-text": "از مشتريان { count, plural, 1 {1 داشبورد} other {# داشبورد} } لغو تخصيص", "unassign-dashboards-action-text": "از مشتريان { count, plural, =1 {1 داشبورد} other {# داشبورد} } لغو تخصيص",
"delete-dashboards": "حذف داشبوردها", "delete-dashboards": "حذف داشبوردها",
"unassign-dashboards": "لغو تخصيص داشبوردها", "unassign-dashboards": "لغو تخصيص داشبوردها",
"unassign-dashboards-action-title": "از مشتري { count, plural, 1 {1 داشبورد} other {# داشبورد} } لغو تخصيص", "unassign-dashboards-action-title": "از مشتري { count, plural, =1 {1 داشبورد} other {# داشبورد} } لغو تخصيص",
"delete-dashboard-title": "مطمئنيد؟ '{{dashboardTitle}}' از حذف", "delete-dashboard-title": "مطمئنيد؟ '{{dashboardTitle}}' از حذف",
"delete-dashboard-text": ".مراقب باشيد، پس از تأييد، داشبورد و تمامي داده هاي مربوطه، غير قابل بازيابي مي شوند", "delete-dashboard-text": ".مراقب باشيد، پس از تأييد، داشبورد و تمامي داده هاي مربوطه، غير قابل بازيابي مي شوند",
"delete-dashboards-title": "مطمئنيد؟ { count, plural, 1 {1 داشبورد} other {# داشبورد} } از حذف", "delete-dashboards-title": "مطمئنيد؟ { count, plural, =1 {1 داشبورد} other {# داشبورد} } از حذف",
"delete-dashboards-action-title": "{ count, plural, 1 {1 داشبورد} other {# داشبورد} } حذف", "delete-dashboards-action-title": "{ count, plural, =1 {1 داشبورد} other {# داشبورد} } حذف",
"delete-dashboards-text": ".مراقب باشيد، پس از تأييد، تمام داشبوردهاي انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند ", "delete-dashboards-text": ".مراقب باشيد، پس از تأييد، تمام داشبوردهاي انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند ",
"unassign-dashboard-title": "مطمئنيد؟ '{{dashboardTitle}}' از لغو تخصيص داشبورد", "unassign-dashboard-title": "مطمئنيد؟ '{{dashboardTitle}}' از لغو تخصيص داشبورد",
"unassign-dashboard-text": ".پس از تأييد، داشبورد، لغو تخصيص و خارج از دسترس مشتري مي شود", "unassign-dashboard-text": ".پس از تأييد، داشبورد، لغو تخصيص و خارج از دسترس مشتري مي شود",
"unassign-dashboard": "لغو تخصيص داشبورد", "unassign-dashboard": "لغو تخصيص داشبورد",
"unassign-dashboards-title": "مطمئنيد؟ { count, plural, 1 {1 داشبورد} other {# داشبورد} } از لغو تخصيص", "unassign-dashboards-title": "مطمئنيد؟ { count, plural, =1 {1 داشبورد} other {# داشبورد} } از لغو تخصيص",
"unassign-dashboards-text": ".پس از تأييد، تمام داشبوردهاي انتخاب شده، لغو تخصيص و خارج از دسترس مشتري مي شوند", "unassign-dashboards-text": ".پس از تأييد، تمام داشبوردهاي انتخاب شده، لغو تخصيص و خارج از دسترس مشتري مي شوند",
"public-dashboard-title": "داشبورد اکنون عمومي است", "public-dashboard-title": "داشبورد اکنون عمومي است",
"public-dashboard-text": ":</a>قابل دسترسي است<a href='{{publicLink}}' target='_blank'> اکنون عمومي بوده و از طريق پيوند عمومي ديگر ، <b>{{dashboardTitle}}</b> ،داشبورد شما", "public-dashboard-text": ":</a>قابل دسترسي است<a href='{{publicLink}}' target='_blank'> اکنون عمومي بوده و از طريق پيوند عمومي ديگر ، <b>{{dashboardTitle}}</b> ،داشبورد شما",
@ -521,7 +521,7 @@
"manage-states": "مديريت وضعيت هاي داشبورد", "manage-states": "مديريت وضعيت هاي داشبورد",
"states": "وضعيت هاي داشبورد", "states": "وضعيت هاي داشبورد",
"search-states": "جستجوي وضعيت هاي داشبورد", "search-states": "جستجوي وضعيت هاي داشبورد",
"selected-states": "انتخاب شدند { count, plural, 1 {1 وضعيت داشبورد} other {# وضعيت داشبورد} }", "selected-states": "انتخاب شدند { count, plural, =1 {1 وضعيت داشبورد} other {# وضعيت داشبورد} }",
"edit-state": "ويرايش وضعيت داشبورد", "edit-state": "ويرايش وضعيت داشبورد",
"delete-state": "حذف وضعيت داشبورد", "delete-state": "حذف وضعيت داشبورد",
"add-state": "افزودن وضعيت داشبورد", "add-state": "افزودن وضعيت داشبورد",
@ -554,11 +554,11 @@
"alarm": "حوزه هاي هشدار", "alarm": "حوزه هاي هشدار",
"timeseries-required": ".سري هاي زماني موجودي مورد نياز است", "timeseries-required": ".سري هاي زماني موجودي مورد نياز است",
"timeseries-or-attributes-required": ".سري هاي زماني / ويژگي هاي موجودي مورد نياز است", "timeseries-or-attributes-required": ".سري هاي زماني / ويژگي هاي موجودي مورد نياز است",
"maximum-timeseries-or-attributes": "{ count, plural, 1 {.1 سري زماني / ويژگي مجاز است} other {# سري زماني / ويژگي مجازند} } بيشترين", "maximum-timeseries-or-attributes": "{ count, plural, =1 {.1 سري زماني / ويژگي مجاز است} other {# سري زماني / ويژگي مجازند} } بيشترين",
"alarm-fields-required": ".حوزه هاي هشدار مورد نياز است", "alarm-fields-required": ".حوزه هاي هشدار مورد نياز است",
"function-types": "نوع توابع", "function-types": "نوع توابع",
"function-types-required": ".نوع تابع مورد نياز است", "function-types-required": ".نوع تابع مورد نياز است",
"maximum-function-types": "{ count, plural, 1 {.1 نوع تابع مجاز است} other {# نوع تابع مجازند} } بيشترين", "maximum-function-types": "{ count, plural, =1 {.1 نوع تابع مجاز است} other {# نوع تابع مجازند} } بيشترين",
"time-description": "برچسب زماني مقدار فعلي؛", "time-description": "برچسب زماني مقدار فعلي؛",
"value-description": "مقدار فعلي؛", "value-description": "مقدار فعلي؛",
"prev-value-description": "نتيجه ي فراخوانيِ تابع قبلي؛", "prev-value-description": "نتيجه ي فراخوانيِ تابع قبلي؛",
@ -615,11 +615,11 @@
"manage-credentials": "مديريت اعتبارنامه ها", "manage-credentials": "مديريت اعتبارنامه ها",
"delete": "حذف دستگاه", "delete": "حذف دستگاه",
"assign-devices": "تخصيص دستگاه ها", "assign-devices": "تخصيص دستگاه ها",
"assign-devices-text": "به مشتري { count, plural, 1 {1 دستگاه} other {# دستگاه} } تخصيص", "assign-devices-text": "به مشتري { count, plural, =1 {1 دستگاه} other {# دستگاه} } تخصيص",
"delete-devices": "حذف دستگاه ها", "delete-devices": "حذف دستگاه ها",
"unassign-from-customer": "لغو تخصيص از مشتري", "unassign-from-customer": "لغو تخصيص از مشتري",
"unassign-devices": "لغو تخصيص دستگاه ها", "unassign-devices": "لغو تخصيص دستگاه ها",
"unassign-devices-action-title": "از مشتري { count, plural, 1 {1 دستگاه} other {# دستگاه} } لغو تخصيص", "unassign-devices-action-title": "از مشتري { count, plural, =1 {1 دستگاه} other {# دستگاه} } لغو تخصيص",
"assign-new-device": "تخصيص دستگاه جديد", "assign-new-device": "تخصيص دستگاه جديد",
"make-public-device-title": "مطمئنيد؟ '{{deviceName}}' از عمومي سازي دستگاه", "make-public-device-title": "مطمئنيد؟ '{{deviceName}}' از عمومي سازي دستگاه",
"make-public-device-text": ".پس از تأييد، دستگاه و تمامي داده هايش عمومي و قابل دسترسي براي ديگران مي شود", "make-public-device-text": ".پس از تأييد، دستگاه و تمامي داده هايش عمومي و قابل دسترسي براي ديگران مي شود",
@ -628,13 +628,13 @@
"view-credentials": "نمايش اعتبارنامه ها", "view-credentials": "نمايش اعتبارنامه ها",
"delete-device-title": "مطمئنيد؟ '{{deviceName}}' از حذف", "delete-device-title": "مطمئنيد؟ '{{deviceName}}' از حذف",
"delete-device-text": ".مراقب باشيد، پس از تأييد، دستگاه و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-device-text": ".مراقب باشيد، پس از تأييد، دستگاه و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"delete-devices-title": "مطمئنيد؟ { count, plural, 1 {1 دستگاه} other {# دستگاه} } از حذف", "delete-devices-title": "مطمئنيد؟ { count, plural, =1 {1 دستگاه} other {# دستگاه} } از حذف",
"delete-devices-action-title": "{ count, plural, 1 {1 دستگاه} other {# دستگاه} } حذف", "delete-devices-action-title": "{ count, plural, =1 {1 دستگاه} other {# دستگاه} } حذف",
"delete-devices-text": ".مراقب باشيد، پس از تأييد، تمام دستگاه هاي انتخاب شده، حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-devices-text": ".مراقب باشيد، پس از تأييد، تمام دستگاه هاي انتخاب شده، حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"unassign-device-title": "مطمئنيد؟ '{{deviceName}}' از لغو تخصيص", "unassign-device-title": "مطمئنيد؟ '{{deviceName}}' از لغو تخصيص",
"unassign-device-text": ".پس از تأييد، دستگاه، لغو تخصيص و خارج از دسترس مشتري مي شود", "unassign-device-text": ".پس از تأييد، دستگاه، لغو تخصيص و خارج از دسترس مشتري مي شود",
"unassign-device": "لغو تخصيص دستگاه", "unassign-device": "لغو تخصيص دستگاه",
"unassign-devices-title": "مطمئنيد؟ { count, plural, 1 {1 دستگاه} other {# دستگاه} } از لغو تخصيص", "unassign-devices-title": "مطمئنيد؟ { count, plural, =1 {1 دستگاه} other {# دستگاه} } از لغو تخصيص",
"unassign-devices-text": ".پس از تأييد، تمام دستگاه هاي انتخاب شده، لغو تخصيص و خارج از دسترس مشتري مي شوند", "unassign-devices-text": ".پس از تأييد، تمام دستگاه هاي انتخاب شده، لغو تخصيص و خارج از دسترس مشتري مي شوند",
"device-credentials": "اعتبارنامه هاي دستگاه", "device-credentials": "اعتبارنامه هاي دستگاه",
"credentials-type": "نوع اعتبارنامه ها", "credentials-type": "نوع اعتبارنامه ها",
@ -718,55 +718,55 @@
"type-required": ".نوع موجودي مورد نياز است", "type-required": ".نوع موجودي مورد نياز است",
"type-device": "دستگاه", "type-device": "دستگاه",
"type-devices": "دستگاه ها", "type-devices": "دستگاه ها",
"list-of-devices": "{ count, plural, 1 {يک دستگاه} other {ليست # دستگاه} }", "list-of-devices": "{ count, plural, =1 {يک دستگاه} other {ليست # دستگاه} }",
"device-name-starts-with": "شروع مي شود '{{prefix}}' دستگاه هايي که نامشان با", "device-name-starts-with": "شروع مي شود '{{prefix}}' دستگاه هايي که نامشان با",
"type-asset": "دارايي", "type-asset": "دارايي",
"type-assets": "دارايي ها", "type-assets": "دارايي ها",
"list-of-assets": "{ count, plural, 1 {يک دارايي} other {ليست # دارايي} }", "list-of-assets": "{ count, plural, =1 {يک دارايي} other {ليست # دارايي} }",
"asset-name-starts-with": "شروع مي شود '{{prefix}}' دارايي هايي که نامشان با", "asset-name-starts-with": "شروع مي شود '{{prefix}}' دارايي هايي که نامشان با",
"type-entity-view": "نمايش موجودي", "type-entity-view": "نمايش موجودي",
"type-entity-views": "نمايش هاي موجودي", "type-entity-views": "نمايش هاي موجودي",
"list-of-entity-views": "{ count, plural, 1 {يک نمايش موجودي} other {ليست # نمايش موجودي} }", "list-of-entity-views": "{ count, plural, =1 {يک نمايش موجودي} other {ليست # نمايش موجودي} }",
"entity-view-name-starts-with": "شروع مي شود '{{prefix}}' نمايش هاي موجودي که نامشان با", "entity-view-name-starts-with": "شروع مي شود '{{prefix}}' نمايش هاي موجودي که نامشان با",
"type-rule": "قاعده", "type-rule": "قاعده",
"type-rules": "قواعد", "type-rules": "قواعد",
"list-of-rules": "{ count, plural, 1 {يک قاعده} other {ليست # قاعده} }", "list-of-rules": "{ count, plural, =1 {يک قاعده} other {ليست # قاعده} }",
"rule-name-starts-with": "شروع مي شود '{{prefix}}' قواعدي که نامشان با", "rule-name-starts-with": "شروع مي شود '{{prefix}}' قواعدي که نامشان با",
"type-plugin": "ابزار جانبي", "type-plugin": "ابزار جانبي",
"type-plugins": "ابزارهاي جانبي", "type-plugins": "ابزارهاي جانبي",
"list-of-plugins": "{ count, plural, 1 {يک ابزار جانبي} other {ليست # ابزار جانبي} }", "list-of-plugins": "{ count, plural, =1 {يک ابزار جانبي} other {ليست # ابزار جانبي} }",
"plugin-name-starts-with": "شروع مي شود '{{prefix}}' ابزارهاي جانبي که نامشان با", "plugin-name-starts-with": "شروع مي شود '{{prefix}}' ابزارهاي جانبي که نامشان با",
"type-tenant": "کاربر", "type-tenant": "کاربر",
"type-tenants": "کاربران", "type-tenants": "کاربران",
"list-of-tenants": "{ count, plural, 1 {يک کاربر} other {ليست # کاربر} }", "list-of-tenants": "{ count, plural, =1 {يک کاربر} other {ليست # کاربر} }",
"tenant-name-starts-with": "شروع مي شود '{{prefix}}' کاربرهايي که نامشان با", "tenant-name-starts-with": "شروع مي شود '{{prefix}}' کاربرهايي که نامشان با",
"type-customer": "مشتري", "type-customer": "مشتري",
"type-customers": "مشتريان", "type-customers": "مشتريان",
"list-of-customers": "{ count, plural, 1 {يک مشتري} other {ليست # مشتري} }", "list-of-customers": "{ count, plural, =1 {يک مشتري} other {ليست # مشتري} }",
"customer-name-starts-with": "شروع مي شود '{{prefix}}' مشترياني که نامشان با", "customer-name-starts-with": "شروع مي شود '{{prefix}}' مشترياني که نامشان با",
"type-user": "کاربر", "type-user": "کاربر",
"type-users": "کاربران", "type-users": "کاربران",
"list-of-users": "{ count, plural, 1 {يک کاربر} other {ليست # کاربر} }", "list-of-users": "{ count, plural, =1 {يک کاربر} other {ليست # کاربر} }",
"user-name-starts-with": "شروع مي شود '{{prefix}}' کاربرهايي که نامشان با", "user-name-starts-with": "شروع مي شود '{{prefix}}' کاربرهايي که نامشان با",
"type-dashboard": "داشبورد", "type-dashboard": "داشبورد",
"type-dashboards": "داشبوردها", "type-dashboards": "داشبوردها",
"list-of-dashboards": "{ count, plural, 1 {يک داشبورد} other {ليست # داشبورد} }", "list-of-dashboards": "{ count, plural, =1 {يک داشبورد} other {ليست # داشبورد} }",
"dashboard-name-starts-with": "شروع مي شود '{{prefix}}' داشبوردهايي که نامشان با", "dashboard-name-starts-with": "شروع مي شود '{{prefix}}' داشبوردهايي که نامشان با",
"type-alarm": "هشدار", "type-alarm": "هشدار",
"type-alarms": "هشدارها", "type-alarms": "هشدارها",
"list-of-alarms": "{ count, plural, 1 {يک هشدار} other {ليست # هشدار} }", "list-of-alarms": "{ count, plural, =1 {يک هشدار} other {ليست # هشدار} }",
"alarm-name-starts-with": "شروع مي شود '{{prefix}}' هشدارهايي که نامشان با", "alarm-name-starts-with": "شروع مي شود '{{prefix}}' هشدارهايي که نامشان با",
"type-rulechain": "زنجيره قواعد", "type-rulechain": "زنجيره قواعد",
"type-rulechains": "زنجيره هاي قواعد", "type-rulechains": "زنجيره هاي قواعد",
"list-of-rulechains": "{ count, plural, 1 {يک زنجيره قواعد} other {ليست # زنجيره قواعد} }", "list-of-rulechains": "{ count, plural, =1 {يک زنجيره قواعد} other {ليست # زنجيره قواعد} }",
"rulechain-name-starts-with": "شروع مي شود '{{prefix}}' زنجيره هاي قواعدي که نامشان با", "rulechain-name-starts-with": "شروع مي شود '{{prefix}}' زنجيره هاي قواعدي که نامشان با",
"type-rulenode": "گره قواعد", "type-rulenode": "گره قواعد",
"type-rulenodes": "گره هاي قواعد", "type-rulenodes": "گره هاي قواعد",
"list-of-rulenodes": "{ count, plural, 1 {يک گره قواعد} other {ليست # گره قواعد} }", "list-of-rulenodes": "{ count, plural, =1 {يک گره قواعد} other {ليست # گره قواعد} }",
"rulenode-name-starts-with": "شروع مي شود '{{prefix}}' گره هاي قواعدي که نامشان با", "rulenode-name-starts-with": "شروع مي شود '{{prefix}}' گره هاي قواعدي که نامشان با",
"type-current-customer": "مشتري فعلي", "type-current-customer": "مشتري فعلي",
"search": "جستجوي موجودي ها", "search": "جستجوي موجودي ها",
"selected-entities": "انتخاب شدند { count, plural, 1 {1 موجودي} other {# موجودي} }", "selected-entities": "انتخاب شدند { count, plural, =1 {1 موجودي} other {# موجودي} }",
"entity-name": "نام موجودي", "entity-name": "نام موجودي",
"details": "جزئيات موجودي", "details": "جزئيات موجودي",
"no-entities-prompt": "هيچ موجودي اي يافت نشد", "no-entities-prompt": "هيچ موجودي اي يافت نشد",
@ -810,21 +810,21 @@
"add-entity-view-text": "افزودن نمايش موجودي جديد", "add-entity-view-text": "افزودن نمايش موجودي جديد",
"delete": "حذف نمايش موجودي", "delete": "حذف نمايش موجودي",
"assign-entity-views": "تخصيص نمايش هاي موجودي", "assign-entity-views": "تخصيص نمايش هاي موجودي",
"assign-entity-views-text": "به مشتري { count, plural, 1 {1 نمايش موجودي} other {# نمايش موجودي} } تخصيص", "assign-entity-views-text": "به مشتري { count, plural, =1 {1 نمايش موجودي} other {# نمايش موجودي} } تخصيص",
"delete-entity-views": "حذف نمايش هاي موجودي", "delete-entity-views": "حذف نمايش هاي موجودي",
"unassign-from-customer": "لغو تخصيص از مشتري", "unassign-from-customer": "لغو تخصيص از مشتري",
"unassign-entity-views": "لغو تخصيص نمايش هاي موجودي", "unassign-entity-views": "لغو تخصيص نمايش هاي موجودي",
"unassign-entity-views-action-title": "از مشتري { count, plural, 1 {1 نمايش موجودي} other {# نمايش موجودي} } لغو تخصيص", "unassign-entity-views-action-title": "از مشتري { count, plural, =1 {1 نمايش موجودي} other {# نمايش موجودي} } لغو تخصيص",
"assign-new-entity-view": "تخصيص نمايش موجودي جديد", "assign-new-entity-view": "تخصيص نمايش موجودي جديد",
"delete-entity-view-title": "مطمئنيد؟ '{{entityViewName}}' از حذف نمايش موجودي", "delete-entity-view-title": "مطمئنيد؟ '{{entityViewName}}' از حذف نمايش موجودي",
"delete-entity-view-text": ".مراقب باشيد، پس از تأييد، نمايش موجودي و تمامي داده هاي مربوطه، غير قابل بازيابي مي شوند", "delete-entity-view-text": ".مراقب باشيد، پس از تأييد، نمايش موجودي و تمامي داده هاي مربوطه، غير قابل بازيابي مي شوند",
"delete-entity-views-title": "مطمئنيد؟ { count, plural, 1 {1 نمايش موجودي} other {# نمايش موجودي} } از حذف نمايش موجودي", "delete-entity-views-title": "مطمئنيد؟ { count, plural, =1 {1 نمايش موجودي} other {# نمايش موجودي} } از حذف نمايش موجودي",
"delete-entity-views-action-title": "{ count, plural, 1 {1 نمايش موجودي} other {# نمايش موجودي} } حذف", "delete-entity-views-action-title": "{ count, plural, =1 {1 نمايش موجودي} other {# نمايش موجودي} } حذف",
"delete-entity-views-text": ".مراقب باشيد، پس از تأييد، تمام نمايش هاي موجوديِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-entity-views-text": ".مراقب باشيد، پس از تأييد، تمام نمايش هاي موجوديِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"unassign-entity-view-title": "مطمئنيد؟ '{{entityViewName}}' از لغو تخصيص نمايش موجودي", "unassign-entity-view-title": "مطمئنيد؟ '{{entityViewName}}' از لغو تخصيص نمايش موجودي",
"unassign-entity-view-text": ".پس از تأييد، نمايش موجودي، لغو تخصيص و خارج از دسترس مشتري مي شود", "unassign-entity-view-text": ".پس از تأييد، نمايش موجودي، لغو تخصيص و خارج از دسترس مشتري مي شود",
"unassign-entity-view": "لغو تخصيص نمايش موجودي", "unassign-entity-view": "لغو تخصيص نمايش موجودي",
"unassign-entity-views-title": "مطمئنيد؟ { count, plural, 1 {1 نمايش موجودي} other {# نمايش موجودي} } از لغو تخصيص", "unassign-entity-views-title": "مطمئنيد؟ { count, plural, =1 {1 نمايش موجودي} other {# نمايش موجودي} } از لغو تخصيص",
"unassign-entity-views-text": ".پس از تأييد، تمام نمايش هاي موجوديِ انتخاب شده، لغو تخصيص و خارج از دسترس مشتري مي شوند", "unassign-entity-views-text": ".پس از تأييد، تمام نمايش هاي موجوديِ انتخاب شده، لغو تخصيص و خارج از دسترس مشتري مي شوند",
"entity-view-type": "نوع نمايش موجودي", "entity-view-type": "نوع نمايش موجودي",
"entity-view-type-required": ".نوع نمايش موجودي مورد نياز است", "entity-view-type-required": ".نوع نمايش موجودي مورد نياز است",
@ -896,7 +896,7 @@
}, },
"extension": { "extension": {
"extensions": "دنباله ها", "extensions": "دنباله ها",
"selected-extensions": "انتخاب شدند { count, plural, 1 {1 افزونه} other {افزونه ها #} }", "selected-extensions": "انتخاب شدند { count, plural, =1 {1 افزونه} other {افزونه ها #} }",
"type": "نوع", "type": "نوع",
"key": "کليد", "key": "کليد",
"value": "مقدار", "value": "مقدار",
@ -910,7 +910,7 @@
"edit": "ويرايش دنباله", "edit": "ويرايش دنباله",
"delete-extension-title": "مطمئنيد؟ '{{extensionId}}' از حذف افزونه", "delete-extension-title": "مطمئنيد؟ '{{extensionId}}' از حذف افزونه",
"delete-extension-text": ".مراقب باشيد، پس از تأييد، افزونه و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-extension-text": ".مراقب باشيد، پس از تأييد، افزونه و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"delete-extensions-title": "مطمئنيد؟ { count, plural, 1 {1 افزونه} other {# افزونه} } از حذف", "delete-extensions-title": "مطمئنيد؟ { count, plural, =1 {1 افزونه} other {# افزونه} } از حذف",
"delete-extensions-text": ".مراقب باشيد، پس از تأييد، تمام افزونه هاي انتخاب شده حذف مي گردند", "delete-extensions-text": ".مراقب باشيد، پس از تأييد، تمام افزونه هاي انتخاب شده حذف مي گردند",
"converters": "مبدّل ها", "converters": "مبدّل ها",
"converter-id": "مبدّل ID", "converter-id": "مبدّل ID",
@ -1063,8 +1063,8 @@
"grid": { "grid": {
"delete-item-title": "از حذف اين مورد مطمئنيد؟", "delete-item-title": "از حذف اين مورد مطمئنيد؟",
"delete-item-text": ".مراقب باشيد، پس از تأييد، اين مورد و تمامي داده هاي مربوطه غيرقابل بازيابي مي شوند", "delete-item-text": ".مراقب باشيد، پس از تأييد، اين مورد و تمامي داده هاي مربوطه غيرقابل بازيابي مي شوند",
"delete-items-title": "مطمئنيد؟ { count, plural, 1 {1 مورد} other {# مورد} } از حذف", "delete-items-title": "مطمئنيد؟ { count, plural, =1 {1 مورد} other {# مورد} } از حذف",
"delete-items-action-title": "{ count, plural, 1 {1 مورد} other {# مورد} } حذف", "delete-items-action-title": "{ count, plural, =1 {1 مورد} other {# مورد} } حذف",
"delete-items-text": ".مراقب باشيد، پس از تأييد، تمام مواردِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-items-text": ".مراقب باشيد، پس از تأييد، تمام مواردِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"add-item-text": "افزودن مورد جديد", "add-item-text": "افزودن مورد جديد",
"no-items-text": "هيچ موردي يافت نشد", "no-items-text": "هيچ موردي يافت نشد",
@ -1165,7 +1165,7 @@
}, },
"from-relations": "ارتباطات خارج از محدوده", "from-relations": "ارتباطات خارج از محدوده",
"to-relations": "ارتباطات داخل محدوده", "to-relations": "ارتباطات داخل محدوده",
"selected-relations": "انتخاب شدند { count, plural, 1 {1 ارتباط} other {ارتباط #} }", "selected-relations": "انتخاب شدند { count, plural, =1 {1 ارتباط} other {ارتباط #} }",
"type": "نوع", "type": "نوع",
"to-entity-type": "به نوع موجودي", "to-entity-type": "به نوع موجودي",
"to-entity-name": "به نام موجودي", "to-entity-name": "به نام موجودي",
@ -1181,11 +1181,11 @@
"edit": "ويرايش ارتباط", "edit": "ويرايش ارتباط",
"delete-to-relation-title": "مطمئنيد؟ '{{entityName}}' از حذف ارتباط با موجودي", "delete-to-relation-title": "مطمئنيد؟ '{{entityName}}' از حذف ارتباط با موجودي",
"delete-to-relation-text": ".غيرمرتبط با موجودي فعلي مي شود '{{entityName}}' مراقب باشيد، پس از تأييد، موجودي", "delete-to-relation-text": ".غيرمرتبط با موجودي فعلي مي شود '{{entityName}}' مراقب باشيد، پس از تأييد، موجودي",
"delete-to-relations-title": "مطمئنيد؟ { count, plural, 1 {1 ارتباط} other {# ارتباط} } از حذف", "delete-to-relations-title": "مطمئنيد؟ { count, plural, =1 {1 ارتباط} other {# ارتباط} } از حذف",
"delete-to-relations-text": ".مراقب باشيد، پس از تأييد، تمام روابطِ انتخاب شده حذف، و موجودي هاي مربوطه، غيرمرتبط با موجودي فعلي مي شوند", "delete-to-relations-text": ".مراقب باشيد، پس از تأييد، تمام روابطِ انتخاب شده حذف، و موجودي هاي مربوطه، غيرمرتبط با موجودي فعلي مي شوند",
"delete-from-relation-title": "مطمئنيد؟ '{{entityName}}' از حذف ارتباط از موجودي", "delete-from-relation-title": "مطمئنيد؟ '{{entityName}}' از حذف ارتباط از موجودي",
"delete-from-relation-text": ".مي شود '{{entityName}}' مراقب باشيد، پس از تأييد، موجودي فعلي، غيرمرتبط از جانب موجودي", "delete-from-relation-text": ".مي شود '{{entityName}}' مراقب باشيد، پس از تأييد، موجودي فعلي، غيرمرتبط از جانب موجودي",
"delete-from-relations-title": "مطمئنيد؟ { count, plural, 1 {1 ارتباط} other {# ارتباط} } از حذف", "delete-from-relations-title": "مطمئنيد؟ { count, plural, =1 {1 ارتباط} other {# ارتباط} } از حذف",
"delete-from-relations-text": ".مراقب باشيد، پس از تأييد، تمام روابطِ انتخاب شده حذف، و موجودي فعلي، غيرمرتبط از جانب موجودي هاي مربوطه مي شود", "delete-from-relations-text": ".مراقب باشيد، پس از تأييد، تمام روابطِ انتخاب شده حذف، و موجودي فعلي، غيرمرتبط از جانب موجودي هاي مربوطه مي شود",
"remove-relation-filter": "حذف فيلتر ارتباط", "remove-relation-filter": "حذف فيلتر ارتباط",
"add-relation-filter": "افزودن فيلتر ارتباط", "add-relation-filter": "افزودن فيلتر ارتباط",
@ -1208,8 +1208,8 @@
"set-root-rulechain-text": ".پس از تأييد، زنجيره قواعد، به عنوان ريشه تعيين شده و به تمام پيامهاي انتقالي رسيدگي مي کند", "set-root-rulechain-text": ".پس از تأييد، زنجيره قواعد، به عنوان ريشه تعيين شده و به تمام پيامهاي انتقالي رسيدگي مي کند",
"delete-rulechain-title": "مطمئنيد؟ '{{ruleChainName}}' از حذف زنجيره قواعد", "delete-rulechain-title": "مطمئنيد؟ '{{ruleChainName}}' از حذف زنجيره قواعد",
"delete-rulechain-text": ".مراقب باشيد، پس از تأييد، زنجيره قواعد و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-rulechain-text": ".مراقب باشيد، پس از تأييد، زنجيره قواعد و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"delete-rulechains-title": "مطمئنيد؟ { count, plural, 1 {1 زنجيره قواعد} other {# زنجيره قواعد} } از حذف", "delete-rulechains-title": "مطمئنيد؟ { count, plural, =1 {1 زنجيره قواعد} other {# زنجيره قواعد} } از حذف",
"delete-rulechains-action-title": "{ count, plural, 1 {1 زنجيره قواعد} other {# زنجيره قواعد} } حذف", "delete-rulechains-action-title": "{ count, plural, =1 {1 زنجيره قواعد} other {# زنجيره قواعد} } حذف",
"delete-rulechains-text": ".مراقب باشيد، پس از تأييد، تمام زنجيره هاي قواعدِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-rulechains-text": ".مراقب باشيد، پس از تأييد، تمام زنجيره هاي قواعدِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"add-rulechain-text": "افزودن زنجيره قواعد جديد", "add-rulechain-text": "افزودن زنجيره قواعد جديد",
"no-rulechains-text": "هيچ زنجيره قواعدي يافت نشد", "no-rulechains-text": "هيچ زنجيره قواعدي يافت نشد",
@ -1307,8 +1307,8 @@
"tenant-details": "جزئيات کاربر", "tenant-details": "جزئيات کاربر",
"delete-tenant-title": "مطمئنيد؟ '{{tenantTitle}}' از حذف کاربر", "delete-tenant-title": "مطمئنيد؟ '{{tenantTitle}}' از حذف کاربر",
"delete-tenant-text": ".مراقب باشيد، پس از تأييد، کاربر و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-tenant-text": ".مراقب باشيد، پس از تأييد، کاربر و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"delete-tenants-title": "مطمئنيد؟ { count, plural, 1 {1 کاربر} other {# کاربر} } از حذف", "delete-tenants-title": "مطمئنيد؟ { count, plural, =1 {1 کاربر} other {# کاربر} } از حذف",
"delete-tenants-action-title": "{ count, plural, 1 {1 کاربر} other {# کاربر} } حذف", "delete-tenants-action-title": "{ count, plural, =1 {1 کاربر} other {# کاربر} } حذف",
"delete-tenants-text": ".مراقب باشيد، پس از تأييد، تمام کاربران حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-tenants-text": ".مراقب باشيد، پس از تأييد، تمام کاربران حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"title": "عنوان", "title": "عنوان",
"title-required": ".عنوان مورد نياز است", "title-required": ".عنوان مورد نياز است",
@ -1322,10 +1322,10 @@
"tenant-required": "کاربر مورد نياز است" "tenant-required": "کاربر مورد نياز است"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 ثانيه} other {ثانيه #} }", "seconds-interval": "{ seconds, plural, =1 {1 ثانيه} other {ثانيه #} }",
"minutes-interval": "{ minutes, plural, 1 {1 دقيقه} other {دقيقه #} }", "minutes-interval": "{ minutes, plural, =1 {1 دقيقه} other {دقيقه #} }",
"hours-interval": "{ hours, plural, 1 {1 ساعت} other {ساعت #} }", "hours-interval": "{ hours, plural, =1 {1 ساعت} other {ساعت #} }",
"days-interval": "{ days, plural, 1 {1 روز} other {روز #} }", "days-interval": "{ days, plural, =1 {1 روز} other {روز #} }",
"days": "روزها", "days": "روزها",
"hours": "ساعات", "hours": "ساعات",
"minutes": "دقايق", "minutes": "دقايق",
@ -1333,10 +1333,10 @@
"advanced": "پيشرفته" "advanced": "پيشرفته"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { روز } other {روز #} }", "days": "{ days, plural, =1 { روز } other {روز #} }",
"hours": "{ hours, plural, 0 { 1ساعت } 1 { ساعت } other {# ساعت } }", "hours": "{ hours, plural, =0 { 1ساعت } =1 { ساعت } other {# ساعت } }",
"minutes": "{ minutes, plural, 0 { 1دقيقه } 1 { دقيقه } other {دقيقه # } }", "minutes": "{ minutes, plural, =0 { 1دقيقه } =1 { دقيقه } other {دقيقه # } }",
"seconds": "{ seconds, plural, 0 { 1ثانيه } 1 { ثانيه } other {ثانيه # } }", "seconds": "{ seconds, plural, =0 { 1ثانيه } =1{ ثانيه } other {ثانيه # } }",
"realtime": "بي درنگ", "realtime": "بي درنگ",
"history": "تاريخچه", "history": "تاريخچه",
"last-prefix": "آخرين", "last-prefix": "آخرين",
@ -1362,8 +1362,8 @@
"user-details": "جزئيات کاربر", "user-details": "جزئيات کاربر",
"delete-user-title": "مطمئنيد؟ '{{userEmail}}' از حذف کاربر", "delete-user-title": "مطمئنيد؟ '{{userEmail}}' از حذف کاربر",
"delete-user-text": ".مراقب باشيد، پس از تأييد، کاربر و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-user-text": ".مراقب باشيد، پس از تأييد، کاربر و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"delete-users-title": "مطمئنيد؟ { count, plural, 1 {1 کاربر} other {# کاربر} } از حذف", "delete-users-title": "مطمئنيد؟ { count, plural, =1 {1 کاربر} other {# کاربر} } از حذف",
"delete-users-action-title": "{ count, plural, 1 {1 کاربر} other {کاربر #} } حذف", "delete-users-action-title": "{ count, plural, =1 {1 کاربر} other {کاربر #} } حذف",
"delete-users-text": ".مراقب باشيد، پس از تأييد، تمام کاربرهاي انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-users-text": ".مراقب باشيد، پس از تأييد، تمام کاربرهاي انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"activation-email-sent-message": "!پست الکترونيک فعال سازي با موفقيت ارسال شد", "activation-email-sent-message": "!پست الکترونيک فعال سازي با موفقيت ارسال شد",
"resend-activation": "ارسال مجدد فعال سازي", "resend-activation": "ارسال مجدد فعال سازي",
@ -1482,8 +1482,8 @@
"widgets-bundle-details": "جزئيات بسته ويجت", "widgets-bundle-details": "جزئيات بسته ويجت",
"delete-widgets-bundle-title": "مطمئنيد؟ '{{widgetsBundleTitle}}' از حذف بسته ويجت", "delete-widgets-bundle-title": "مطمئنيد؟ '{{widgetsBundleTitle}}' از حذف بسته ويجت",
"delete-widgets-bundle-text": ".مراقب باشيد، پس از تأييد، بسته ويجت و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-widgets-bundle-text": ".مراقب باشيد، پس از تأييد، بسته ويجت و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"delete-widgets-bundles-title": "مطمئنيد؟ { count, plural, 1 {1 بسته ويجت} other {# بسته ويجت} } از حذف", "delete-widgets-bundles-title": "مطمئنيد؟ { count, plural, =1 {1 بسته ويجت} other {# بسته ويجت} } از حذف",
"delete-widgets-bundles-action-title": "{ count, plural, 1 {1 بسته ويجت} other {# بسته ويجت} } حذف", "delete-widgets-bundles-action-title": "{ count, plural, =1 {1 بسته ويجت} other {# بسته ويجت} } حذف",
"delete-widgets-bundles-text": ".مراقب باشيد، پس از تأييد، تمام بسته هاي ويجتِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند", "delete-widgets-bundles-text": ".مراقب باشيد، پس از تأييد، تمام بسته هاي ويجتِ انتخاب شده حذف، و تمامي داده هاي مربوطه غير قابل بازيابي مي شوند",
"no-widgets-bundles-matching": "يافت نشد '{{widgetsBundle}}' هيچ بسته ويجتي منطبق بر", "no-widgets-bundles-matching": "يافت نشد '{{widgetsBundle}}' هيچ بسته ويجتي منطبق بر",
"widgets-bundle-required": ".بسته ويجت مورد نياز است", "widgets-bundle-required": ".بسته ويجت مورد نياز است",
@ -1519,7 +1519,7 @@
"use-dashboard-timewindow": "استفاده از پنجره زمان داشبورد", "use-dashboard-timewindow": "استفاده از پنجره زمان داشبورد",
"display-legend": "نمايش فهرست علائم", "display-legend": "نمايش فهرست علائم",
"datasources": "منابع داده", "datasources": "منابع داده",
"maximum-datasources": "{ count, plural, 1 {.1 منبع داده مجاز است} other {# منبع داده مجازند.} } بيشترين", "maximum-datasources": "{ count, plural, =1 {.1 منبع داده مجاز است} other {# منبع داده مجازند.} } بيشترين",
"datasource-type": "نوع", "datasource-type": "نوع",
"datasource-parameters": "پارامترها", "datasource-parameters": "پارامترها",
"remove-datasource": "حذف منبع داده", "remove-datasource": "حذف منبع داده",

184
ui-ngx/src/assets/locale/locale.constant-fr_FR.json

@ -245,8 +245,8 @@
"acknowledge": "Acquitter", "acknowledge": "Acquitter",
"aknowledge-alarm-text": "Êtes-vous sûr de vouloir reconnaître l'alarme?", "aknowledge-alarm-text": "Êtes-vous sûr de vouloir reconnaître l'alarme?",
"aknowledge-alarm-title": "Reconnaître l'alarme", "aknowledge-alarm-title": "Reconnaître l'alarme",
"aknowledge-alarms-text": "Êtes-vous sûr de vouloir acquitter { count, plural, 1 {1 alarme} other {# alarmes} }?", "aknowledge-alarms-text": "Êtes-vous sûr de vouloir acquitter { count, plural, =1 {1 alarme} other {# alarmes} }?",
"aknowledge-alarms-title": "Acquitter { count, plural, 1 {1 alarme} other {# alarmes} }", "aknowledge-alarms-title": "Acquitter { count, plural, =1 {1 alarme} other {# alarmes} }",
"alarm": "Alarme", "alarm": "Alarme",
"alarm-details": "Détails de l'alarme", "alarm-details": "Détails de l'alarme",
"alarm-required": "Une alarme est requise", "alarm-required": "Une alarme est requise",
@ -256,8 +256,8 @@
"clear": "Effacer", "clear": "Effacer",
"clear-alarm-text": "Êtes-vous sûr de vouloir effacer l'alarme?", "clear-alarm-text": "Êtes-vous sûr de vouloir effacer l'alarme?",
"clear-alarm-title": "Effacer l'alarme", "clear-alarm-title": "Effacer l'alarme",
"clear-alarms-text": "Êtes-vous sûr de vouloir effacer {count, plural, 1 {1 alarme} other {# alarmes} }?", "clear-alarms-text": "Êtes-vous sûr de vouloir effacer {count, plural, =1 {1 alarme} other {# alarmes} }?",
"clear-alarms-title": "Effacer {count, plural, 1 {1 alarme} other {# alarmes} }", "clear-alarms-title": "Effacer {count, plural, =1 {1 alarme} other {# alarmes} }",
"clear-time": "Heure d'éffacement", "clear-time": "Heure d'éffacement",
"created-time": "Heure de création", "created-time": "Heure de création",
"details": "Détails", "details": "Détails",
@ -285,7 +285,7 @@
"UNACK": "non acquittée" "UNACK": "non acquittée"
}, },
"select-alarm": "Sélectionnez une alarme", "select-alarm": "Sélectionnez une alarme",
"selected-alarms": "{count, plural, 1 {1 alarme} other {# alarmes} } sélectionnées", "selected-alarms": "{count, plural, =1 {1 alarme} other {# alarmes} } sélectionnées",
"severity": "Gravité", "severity": "Gravité",
"severity-critical": "Critique", "severity-critical": "Critique",
"severity-indeterminate": "indéterminée", "severity-indeterminate": "indéterminée",
@ -380,7 +380,7 @@
"assign-asset-to-customer": "Attribuer des actifs au client", "assign-asset-to-customer": "Attribuer des actifs au client",
"assign-asset-to-customer-text": "Veuillez sélectionner les actifs à attribuer au client", "assign-asset-to-customer-text": "Veuillez sélectionner les actifs à attribuer au client",
"assign-assets": "Attribuer des actifs", "assign-assets": "Attribuer des actifs",
"assign-assets-text": "Attribuer {count, plural, 1 {1 asset} other {# assets} } au client", "assign-assets-text": "Attribuer {count, plural, =1 {1 asset} other {# assets} } au client",
"assign-new-asset": "Attribuer un nouvel Asset", "assign-new-asset": "Attribuer un nouvel Asset",
"assign-to-customer": "Attribuer au client", "assign-to-customer": "Attribuer au client",
"assign-to-customer-text": "Veuillez sélectionner le client pour attribuer le ou les actifs", "assign-to-customer-text": "Veuillez sélectionner le client pour attribuer le ou les actifs",
@ -390,9 +390,9 @@
"delete-asset-text": "Faites attention, après la confirmation, l'actif et toutes les données associées deviendront irrécupérables.", "delete-asset-text": "Faites attention, après la confirmation, l'actif et toutes les données associées deviendront irrécupérables.",
"delete-asset-title": "Êtes-vous sûr de vouloir supprimer l'actif '{{assetName}}'?", "delete-asset-title": "Êtes-vous sûr de vouloir supprimer l'actif '{{assetName}}'?",
"delete-assets": "Supprimer des actifs", "delete-assets": "Supprimer des actifs",
"delete-assets-action-title": "Supprimer {count, plural, 1 {1 asset} other {# assets} }", "delete-assets-action-title": "Supprimer {count, plural, =1 {1 asset} other {# assets} }",
"delete-assets-text": "Attention, après la confirmation, tous les actifs sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.", "delete-assets-text": "Attention, après la confirmation, tous les actifs sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.",
"delete-assets-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 asset} other {# assets} }?", "delete-assets-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 asset} other {# assets} }?",
"description": "Description", "description": "Description",
"details": "Détails", "details": "Détails",
"enter-asset-type": "Entrez le type d'actif", "enter-asset-type": "Entrez le type d'actif",
@ -421,9 +421,9 @@
"unassign-asset-text": "Après la confirmation, l'actif sera non attribué et ne sera pas accessible au client.", "unassign-asset-text": "Après la confirmation, l'actif sera non attribué et ne sera pas accessible au client.",
"unassign-asset-title": "Êtes-vous sûr de vouloir retirer l'attribution de l'actif '{{assetName}}'?", "unassign-asset-title": "Êtes-vous sûr de vouloir retirer l'attribution de l'actif '{{assetName}}'?",
"unassign-assets": "Retirer les actifs", "unassign-assets": "Retirer les actifs",
"unassign-assets-action-title": "Retirer {count, plural, 1 {1 asset} other {# assets} } du client", "unassign-assets-action-title": "Retirer {count, plural, =1 {1 asset} other {# assets} } du client",
"unassign-assets-text": "Après la confirmation, tous les actifs sélectionnés ne seront pas attribués et ne seront pas accessibles au client.", "unassign-assets-text": "Après la confirmation, tous les actifs sélectionnés ne seront pas attribués et ne seront pas accessibles au client.",
"unassign-assets-title": "Êtes-vous sûr de vouloir retirer l'attribution de {count, plural, 1 {1 asset} other {# assets} }?", "unassign-assets-title": "Êtes-vous sûr de vouloir retirer l'attribution de {count, plural, =1 {1 asset} other {# assets} }?",
"unassign-from-customer": "Retirer du client", "unassign-from-customer": "Retirer du client",
"view-assets": "Afficher les actifs", "view-assets": "Afficher les actifs",
"label": "Étiquette (label)", "label": "Étiquette (label)",
@ -432,15 +432,15 @@
"unassign-asset-from-edge": "Désattribuer l'actif", "unassign-asset-from-edge": "Désattribuer l'actif",
"unassign-asset-from-edge-title": "Voulez-vous vraiment annuler l'attribution de l'actif '{{assetName}}'?", "unassign-asset-from-edge-title": "Voulez-vous vraiment annuler l'attribution de l'actif '{{assetName}}'?",
"unassign-asset-from-edge-text": "Après la confirmation, l'actif sera désaffecté et ne sera pas accessible par le edge.", "unassign-asset-from-edge-text": "Après la confirmation, l'actif sera désaffecté et ne sera pas accessible par le edge.",
"unassign-assets-from-edge-action-title": "Retirer {count, plural, 1 {1 asset} other {# assets} } de la bordure", "unassign-assets-from-edge-action-title": "Retirer {count, plural, =1 {1 asset} other {# assets} } de la bordure",
"unassign-assets-from-edge-title": "Êtes-vous sûr de vouloir désattribuer { count, plural, 1 {1 asset} other {# assets} }?", "unassign-assets-from-edge-title": "Êtes-vous sûr de vouloir désattribuer { count, plural, =1 {1 asset} other {# assets} }?",
"unassign-assets-from-edge-text": "Après la confirmation, tous les actifs sélectionnés seront désaffectés et ne seront pas accessibles par le edge.", "unassign-assets-from-edge-text": "Après la confirmation, tous les actifs sélectionnés seront désaffectés et ne seront pas accessibles par le edge.",
"asset-type-max-length": "Le type d'actif doit être inférieur à 256", "asset-type-max-length": "Le type d'actif doit être inférieur à 256",
"name-max-length": "Le nom doit être inférieur à 256", "name-max-length": "Le nom doit être inférieur à 256",
"label-max-length": "L'étiquette doit être inférieure à 256", "label-max-length": "L'étiquette doit être inférieure à 256",
"help-text": "Use '%' selon besoin : '%asset_name_contains%', '%asset_name_ends', 'asset_starts_with'.", "help-text": "Use '%' selon besoin : '%asset_name_contains%', '%asset_name_ends', 'asset_starts_with'.",
"search": "Rechercher des actifs", "search": "Rechercher des actifs",
"selected-assets": "{ count, plural, 1 {1 asset} other {# assets} } sélectionnés" "selected-assets": "{ count, plural, =1 {1 asset} other {# assets} } sélectionnés"
}, },
"attribute": { "attribute": {
"add": "Ajouter un attribut", "add": "Ajouter un attribut",
@ -450,7 +450,7 @@
"attributes-scope": "Étendue des attributs d'entité", "attributes-scope": "Étendue des attributs d'entité",
"delete-attributes": "Supprimer les attributs", "delete-attributes": "Supprimer les attributs",
"delete-attributes-text": "Attention, après la confirmation, tous les attributs sélectionnés seront supprimés.", "delete-attributes-text": "Attention, après la confirmation, tous les attributs sélectionnés seront supprimés.",
"delete-attributes-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 attribut} other {# attributs} }?", "delete-attributes-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 attribut} other {# attributs} }?",
"enter-attribute-value": "Entrez la valeur de l'attribut", "enter-attribute-value": "Entrez la valeur de l'attribut",
"key": "Clé", "key": "Clé",
"key-required": "La Clé d'attribut est requise.", "key-required": "La Clé d'attribut est requise.",
@ -462,8 +462,8 @@
"scope-latest-telemetry": "Dernière télémétrie", "scope-latest-telemetry": "Dernière télémétrie",
"scope-server": "Attributs du serveur", "scope-server": "Attributs du serveur",
"scope-shared": "Attributs partagés", "scope-shared": "Attributs partagés",
"selected-attributes": "{count, plural, 1 {1 attribut} other {# attributs} } sélectionnés", "selected-attributes": "{count, plural, =1 {1 attribut} other {# attributs} } sélectionnés",
"selected-telemetry": "{count, plural, 1 {1 unité de télémétrie} other {# unités de télémétrie} } sélectionnées", "selected-telemetry": "{count, plural, =1 {1 unité de télémétrie} other {# unités de télémétrie} } sélectionnées",
"show-on-widget": "Afficher sur le widget", "show-on-widget": "Afficher sur le widget",
"value": "Valeur", "value": "Valeur",
"value-required": "La valeur d'attribut est obligatoire.", "value-required": "La valeur d'attribut est obligatoire.",
@ -638,9 +638,9 @@
"delete": "Supprimer le client", "delete": "Supprimer le client",
"delete-customer-text": "Faites attention, après la confirmation, le client et toutes les données associées deviendront irrécupérables.", "delete-customer-text": "Faites attention, après la confirmation, le client et toutes les données associées deviendront irrécupérables.",
"delete-customer-title": "Êtes-vous sûr de vouloir supprimer le client '{{customerTitle}}'?", "delete-customer-title": "Êtes-vous sûr de vouloir supprimer le client '{{customerTitle}}'?",
"delete-customers-action-title": "Supprimer {count, plural, 1 {1 customer} other {# customers} }", "delete-customers-action-title": "Supprimer {count, plural, =1 {1 customer} other {# customers} }",
"delete-customers-text": "Faites attention, après la confirmation, tous les clients sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.", "delete-customers-text": "Faites attention, après la confirmation, tous les clients sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.",
"delete-customers-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 customer} other {# customers} }?", "delete-customers-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 customer} other {# customers} }?",
"description": "Description", "description": "Description",
"details": "Détails", "details": "Détails",
"devices": "Dispositifs du client", "devices": "Dispositifs du client",
@ -675,7 +675,7 @@
"title-required": "Le titre est requis.", "title-required": "Le titre est requis.",
"title-max-length": "La longueur du titre doit être moins que 256", "title-max-length": "La longueur du titre doit être moins que 256",
"search": "Rechercher clients", "search": "Rechercher clients",
"selected-customers": "{ count, plural, 1 {1 customer} other {# customers} } sélectionnés", "selected-customers": "{ count, plural, =1 {1 customer} other {# customers} } sélectionnés",
"manage-edges": "Gérer les edges" "manage-edges": "Gérer les edges"
}, },
"dashboard": { "dashboard": {
@ -687,7 +687,7 @@
"assign-dashboard-to-customer": "Attribuer des tableaux de bord au client", "assign-dashboard-to-customer": "Attribuer des tableaux de bord au client",
"assign-dashboard-to-customer-text": "Veuillez sélectionner les tableaux de bord à attribuer au client", "assign-dashboard-to-customer-text": "Veuillez sélectionner les tableaux de bord à attribuer au client",
"assign-dashboards": "Attribuer des tableaux de bord", "assign-dashboards": "Attribuer des tableaux de bord",
"assign-dashboards-text": "Attribuer {count, plural, 1 {1 tableau de bord} other {# tableaux de bord} } aux clients", "assign-dashboards-text": "Attribuer {count, plural, =1 {1 tableau de bord} other {# tableaux de bord} } aux clients",
"assign-new-dashboard": "Attribuer un nouveau tableau de bord", "assign-new-dashboard": "Attribuer un nouveau tableau de bord",
"assign-to-customer": "Attribuer au client", "assign-to-customer": "Attribuer au client",
"assign-to-customer-text": "Veuillez sélectionner le client pour attribuer le ou les tableaux de bord", "assign-to-customer-text": "Veuillez sélectionner le client pour attribuer le ou les tableaux de bord",
@ -718,9 +718,9 @@
"delete-dashboard-text": "Faites attention, après la confirmation, le tableau de bord et toutes les données associées deviendront irrécupérables.", "delete-dashboard-text": "Faites attention, après la confirmation, le tableau de bord et toutes les données associées deviendront irrécupérables.",
"delete-dashboard-title": "Êtes-vous sûr de vouloir supprimer le tableau de bord '{{dashboardTitle}}'?", "delete-dashboard-title": "Êtes-vous sûr de vouloir supprimer le tableau de bord '{{dashboardTitle}}'?",
"delete-dashboards": "Supprimer les tableaux de bord", "delete-dashboards": "Supprimer les tableaux de bord",
"delete-dashboards-action-title": "Supprimer {count, plural, 1 {1 tableau de bord} other {# tableaux de bord} }", "delete-dashboards-action-title": "Supprimer {count, plural, =1 {1 tableau de bord} other {# tableaux de bord} }",
"delete-dashboards-text": "Attention, après la confirmation, tous les tableaux de bord sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.", "delete-dashboards-text": "Attention, après la confirmation, tous les tableaux de bord sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.",
"delete-dashboards-title": "Voulez-vous vraiment supprimer {count, plural, 1 {1 tableau de bord} other {# tableaux de bord} }?", "delete-dashboards-title": "Voulez-vous vraiment supprimer {count, plural, =1 {1 tableau de bord} other {# tableaux de bord} }?",
"delete-state": "Supprimer l'état du tableau de bord", "delete-state": "Supprimer l'état du tableau de bord",
"delete-state-text": "Etes-vous sûr de vouloir supprimer l'état du tableau de bord avec le nom '{{stateName}}'?", "delete-state-text": "Etes-vous sûr de vouloir supprimer l'état du tableau de bord avec le nom '{{stateName}}'?",
"delete-state-title": "Supprimer l'état du tableau de bord", "delete-state-title": "Supprimer l'état du tableau de bord",
@ -783,7 +783,7 @@
"select-state": "Sélectionnez l'état cible", "select-state": "Sélectionnez l'état cible",
"select-widget-subtitle": "Liste des types de widgets disponibles", "select-widget-subtitle": "Liste des types de widgets disponibles",
"select-widget-title": "Sélectionner un widget", "select-widget-title": "Sélectionner un widget",
"selected-states": "{count, plural, 1 {1 état du tableau de bord} other {# états du tableau de bord} } sélectionnés", "selected-states": "{count, plural, =1 {1 état du tableau de bord} other {# états du tableau de bord} } sélectionnés",
"set-background": "Définir l'arrière-plan", "set-background": "Définir l'arrière-plan",
"settings": "Paramètres", "settings": "Paramètres",
"show-details": "Afficher les détails", "show-details": "Afficher les détails",
@ -805,10 +805,10 @@
"unassign-dashboard-text": "Après la confirmation, le tableau de bord ne sera pas attribué et ne sera pas accessible au client.", "unassign-dashboard-text": "Après la confirmation, le tableau de bord ne sera pas attribué et ne sera pas accessible au client.",
"unassign-dashboard-title": "Êtes-vous sûr de vouloir annuler l'affectation du tableau de bord '{{dashboardTitle}}'?", "unassign-dashboard-title": "Êtes-vous sûr de vouloir annuler l'affectation du tableau de bord '{{dashboardTitle}}'?",
"unassign-dashboards": "Retirer les tableaux de bord", "unassign-dashboards": "Retirer les tableaux de bord",
"unassign-dashboards-action-text": "Annuler l'affectation {count, plural, 1 {1 tableau de bord} other {# tableaux de bord} } des clients", "unassign-dashboards-action-text": "Annuler l'affectation {count, plural, =1 {1 tableau de bord} other {# tableaux de bord} } des clients",
"unassign-dashboards-action-title": "Annuler l'affectation {count, plural, 1 {1 tableau de bord} other {# tableaux de bord} } du client", "unassign-dashboards-action-title": "Annuler l'affectation {count, plural, =1 {1 tableau de bord} other {# tableaux de bord} } du client",
"unassign-dashboards-text": "Après la confirmation, tous les tableaux de bord sélectionnés ne seront pas attribués et ne seront pas accessibles au client.", "unassign-dashboards-text": "Après la confirmation, tous les tableaux de bord sélectionnés ne seront pas attribués et ne seront pas accessibles au client.",
"unassign-dashboards-title": "Etes-vous sûr de vouloir annuler l'affectation {count, plural, 1 {1 tableau de bord} other {# tableaux de bord} }?", "unassign-dashboards-title": "Etes-vous sûr de vouloir annuler l'affectation {count, plural, =1 {1 tableau de bord} other {# tableaux de bord} }?",
"unassign-from-customer": "Retirer du client", "unassign-from-customer": "Retirer du client",
"unassign-from-customers": "Retirer les tableaux de bord des clients", "unassign-from-customers": "Retirer les tableaux de bord des clients",
"unassign-from-customers-text": "Veuillez sélectionner les clients à annuler l'attribution du ou des tableaux de bord", "unassign-from-customers-text": "Veuillez sélectionner les clients à annuler l'attribution du ou des tableaux de bord",
@ -849,10 +849,10 @@
"dashboard-css": "CSS du tableau de bord", "dashboard-css": "CSS du tableau de bord",
"no-states-text": "Aucun état trouvé", "no-states-text": "Aucun état trouvé",
"search": "Rechercher des tableaux de bord", "search": "Rechercher des tableaux de bord",
"selected-dashboards": "{ count, plural, 1 {1 dashboard} other {# dashboards} } sélectionné", "selected-dashboards": "{ count, plural, =1 {1 dashboard} other {# dashboards} } sélectionné",
"home-dashboard": "Tableau de bord d'accueil", "home-dashboard": "Tableau de bord d'accueil",
"home-dashboard-hide-toolbar": "Masquer la barre d'outils du tableau de bord d'accueil", "home-dashboard-hide-toolbar": "Masquer la barre d'outils du tableau de bord d'accueil",
"unassign-dashboards-from-edge-title": "Êtes-vous certain de vouloir désattribuer { count, plural, 1 {1 dashboard} other {# dashboards} }?", "unassign-dashboards-from-edge-title": "Êtes-vous certain de vouloir désattribuer { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"non-existent-dashboard-state-error": "L'état du tableau de bord avec ID \"{{ stateId }}\" non trouvé" "non-existent-dashboard-state-error": "L'état du tableau de bord avec ID \"{{ stateId }}\" non trouvé"
}, },
"datakey": { "datakey": {
@ -867,8 +867,8 @@
"function-types": "Types de fonctions", "function-types": "Types de fonctions",
"function-types-required": "Les types de fonctions sont obligatoires", "function-types-required": "Les types de fonctions sont obligatoires",
"label": "Label", "label": "Label",
"maximum-function-types": "Maximum {count, plural, 1 {1 type de fonction est autorisé.} other {# types de fonctions sont autorisés} }", "maximum-function-types": "Maximum {count, plural, =1 {1 type de fonction est autorisé.} other {# types de fonctions sont autorisés} }",
"maximum-timeseries-or-attributes": "Maximum {count, plural, 1 {1 timeseries / attribut est autorisé.} other {# timeseries / attributs sont autorisés} }", "maximum-timeseries-or-attributes": "Maximum {count, plural, =1 {1 timeseries / attribut est autorisé.} other {# timeseries / attributs sont autorisés} }",
"prev-orig-value-description": "valeur précédente d'origine;", "prev-orig-value-description": "valeur précédente d'origine;",
"prev-value-description": "résultat de l'appel de fonction précédent;", "prev-value-description": "résultat de l'appel de fonction précédent;",
"settings": "Paramètres", "settings": "Paramètres",
@ -915,7 +915,7 @@
"assign-device-to-customer": "Attribuer des dispositifs au client", "assign-device-to-customer": "Attribuer des dispositifs au client",
"assign-device-to-customer-text": "Veuillez sélectionner les dispositif à affecter au client", "assign-device-to-customer-text": "Veuillez sélectionner les dispositif à affecter au client",
"assign-devices": "Attribuer des dispositifs", "assign-devices": "Attribuer des dispositifs",
"assign-devices-text": "Attribuer {count, plural, 1 {1 dispositif} other {# dispositifs} } au client", "assign-devices-text": "Attribuer {count, plural, =1 {1 dispositif} other {# dispositifs} } au client",
"assign-new-device": "Attribuer un nouveau dispositif", "assign-new-device": "Attribuer un nouveau dispositif",
"assign-to-customer": "Attribuer au client", "assign-to-customer": "Attribuer au client",
"assign-to-customer-text": "Veuillez sélectionner le client pour attribuer le ou les dispositifs", "assign-to-customer-text": "Veuillez sélectionner le client pour attribuer le ou les dispositifs",
@ -931,9 +931,9 @@
"delete-device-text": "Faites attention, après la confirmation, le dispositif et toutes les données associées deviendront irrécupérables.", "delete-device-text": "Faites attention, après la confirmation, le dispositif et toutes les données associées deviendront irrécupérables.",
"delete-device-title": "Êtes-vous sûr de vouloir supprimer le dispositif '{{deviceName}}'?", "delete-device-title": "Êtes-vous sûr de vouloir supprimer le dispositif '{{deviceName}}'?",
"delete-devices": "Supprimer les dispositifs", "delete-devices": "Supprimer les dispositifs",
"delete-devices-action-title": "Supprimer {count, plural, 1 {1 device} other {# devices} }", "delete-devices-action-title": "Supprimer {count, plural, =1 {1 device} other {# devices} }",
"delete-devices-text": "Faites attention, après la confirmation, tous les dispositifs sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.", "delete-devices-text": "Faites attention, après la confirmation, tous les dispositifs sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.",
"delete-devices-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 device} other {# devices} }?", "delete-devices-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 device} other {# devices} }?",
"description": "Description", "description": "Description",
"details": "Détails", "details": "Détails",
"device": "Dispositif", "device": "Dispositif",
@ -987,9 +987,9 @@
"unassign-device-text": "Après la confirmation, le dispositif ne sera pas attribué et ne sera pas accessible au client.", "unassign-device-text": "Après la confirmation, le dispositif ne sera pas attribué et ne sera pas accessible au client.",
"unassign-device-title": "Êtes-vous sûr de vouloir annuler l'affection du dispositif {{deviceName}} '?", "unassign-device-title": "Êtes-vous sûr de vouloir annuler l'affection du dispositif {{deviceName}} '?",
"unassign-devices": "Annuler l'affectation des dispositifs", "unassign-devices": "Annuler l'affectation des dispositifs",
"unassign-devices-action-title": "Annuler l'affectation de {count, plural, 1 {1 device} other {#devices} } du client", "unassign-devices-action-title": "Annuler l'affectation de {count, plural, =1 {1 device} other {#devices} } du client",
"unassign-devices-text": "Après la confirmation, tous les dispositifs sélectionnés ne seront pas attribues et ne seront pas accessibles par le client.", "unassign-devices-text": "Après la confirmation, tous les dispositifs sélectionnés ne seront pas attribues et ne seront pas accessibles par le client.",
"unassign-devices-title": "Voulez-vous vraiment annuler l'affectation de {count, plural, 1 {1 device} other {# devices} }?", "unassign-devices-title": "Voulez-vous vraiment annuler l'affectation de {count, plural, =1 {1 device} other {# devices} }?",
"unassign-from-customer": "Retirer du client", "unassign-from-customer": "Retirer du client",
"use-device-name-filter": "Utiliser le filtre", "use-device-name-filter": "Utiliser le filtre",
"view-credentials": "Afficher les informations d'identification", "view-credentials": "Afficher les informations d'identification",
@ -997,7 +997,7 @@
"assign-device-to-edge-text": "Veuillez sélectionner la bordure pour attribuer le ou les dispositifs", "assign-device-to-edge-text": "Veuillez sélectionner la bordure pour attribuer le ou les dispositifs",
"unassign-device-from-edge-title": "Êtes-vous sûr de vouloir annuler l'affection du dispositif {{deviceName}} '?", "unassign-device-from-edge-title": "Êtes-vous sûr de vouloir annuler l'affection du dispositif {{deviceName}} '?",
"unassign-device-from-edge-text": "Après la confirmation, dispositif sera non attribué et ne sera pas accessible a la bordure.", "unassign-device-from-edge-text": "Après la confirmation, dispositif sera non attribué et ne sera pas accessible a la bordure.",
"unassign-devices-from-edge-title": "Voulez-vous vraiment annuler l'attribution de {count, plural, 1 {1 device} other {# devices} }?", "unassign-devices-from-edge-title": "Voulez-vous vraiment annuler l'attribution de {count, plural, =1 {1 device} other {# devices} }?",
"unassign-devices-from-edge-text": "Après la confirmation, tous les dispositifs sélectionnés ne seront pas attribues et ne seront pas accessibles par la bordure.", "unassign-devices-from-edge-text": "Après la confirmation, tous les dispositifs sélectionnés ne seront pas attribues et ne seront pas accessibles par la bordure.",
"device-type-max-length": "La longueur du type de dispositif doit être moins de 256", "device-type-max-length": "La longueur du type de dispositif doit être moins de 256",
"help-text": "Utilisez '%' au besoin: '%device_name_contains%', '%device_name_ends', 'device_starts_with'.", "help-text": "Utilisez '%' au besoin: '%device_name_contains%', '%device_name_ends', 'device_starts_with'.",
@ -1049,7 +1049,7 @@
"import": "Importer dispositif", "import": "Importer dispositif",
"device-file": "Fichier du dispositif", "device-file": "Fichier du dispositif",
"search": "Rechercher des dispositifs", "search": "Rechercher des dispositifs",
"selected-devices": "{ count, plural, 1 {1 device} other {# devices} } sélectionnés", "selected-devices": "{ count, plural, =1 {1 device} other {# devices} } sélectionnés",
"device-configuration": "Configuration du dipositif", "device-configuration": "Configuration du dipositif",
"transport-configuration": "Configuration du transport", "transport-configuration": "Configuration du transport",
"wizard": { "wizard": {
@ -1071,7 +1071,7 @@
"device-profile-details": "Détails du profile de dispositif", "device-profile-details": "Détails du profile de dispositif",
"no-device-profiles-text": "Aucun profil de dispositif trouvé", "no-device-profiles-text": "Aucun profil de dispositif trouvé",
"search": "Rechercher profil de dispositif", "search": "Rechercher profil de dispositif",
"selected-device-profiles": "{ count, plural, 1 {1 device profile} other {# device profiles} } sélectionné", "selected-device-profiles": "{ count, plural, =1 {1 device profile} other {# device profiles} } sélectionné",
"no-device-profiles-matching": "Aucun dispositif correspondant à '{{entity}}' trouvé.", "no-device-profiles-matching": "Aucun dispositif correspondant à '{{entity}}' trouvé.",
"device-profile-required": "Un profil de dispositif est requis.", "device-profile-required": "Un profil de dispositif est requis.",
"idCopiedMessage": "L'Id du profil de dispositif a été copié au presse-papier", "idCopiedMessage": "L'Id du profil de dispositif a été copié au presse-papier",
@ -1104,7 +1104,7 @@
"select-queue-hint": "Choisissez d'une liste déroulante.", "select-queue-hint": "Choisissez d'une liste déroulante.",
"delete-device-profile-title": "Êtes-vous certain de vouloir supprimer le profile de dispositif '{{deviceProfileName}}'?", "delete-device-profile-title": "Êtes-vous certain de vouloir supprimer le profile de dispositif '{{deviceProfileName}}'?",
"delete-device-profile-text": "Attention, après confirmation le profil du dispositif et toutes les données associées deviendront irrécupérables.", "delete-device-profile-text": "Attention, après confirmation le profil du dispositif et toutes les données associées deviendront irrécupérables.",
"delete-device-profiles-title": "Êtes-vous certainde vouloir supprimer { count, plural, 1 {1 device profile} other {# device profiles} }?", "delete-device-profiles-title": "Êtes-vous certainde vouloir supprimer { count, plural, =1 {1 device profile} other {# device profiles} }?",
"delete-device-profiles-text": "Attention, après confirmation les profils des dispositifs sélectionnés et toutes les données associées deviendront irrécupérables.", "delete-device-profiles-text": "Attention, après confirmation les profils des dispositifs sélectionnés et toutes les données associées deviendront irrécupérables.",
"set-default-device-profile-title": "Êtes-vous certain de vouloir faire du profil de dispositif '{{deviceProfileName}}' le profil par défaut?", "set-default-device-profile-title": "Êtes-vous certain de vouloir faire du profil de dispositif '{{deviceProfileName}}' le profil par défaut?",
"set-default-device-profile-text": "Après confirmation, le profil de dispositif sera le profil par défaut et sera utilisé pour les nouveaux dispositifs n'ayant pas de profil.", "set-default-device-profile-text": "Après confirmation, le profil de dispositif sera le profil par défaut et sera utilisé pour les nouveaux dispositifs n'ayant pas de profil.",
@ -1159,7 +1159,7 @@
"delete": "Supprimer la bordure", "delete": "Supprimer la bordure",
"delete-edge-title": "Êtes-vous sûr de vouloir supprimer la bordure '{{edgeName}}'?", "delete-edge-title": "Êtes-vous sûr de vouloir supprimer la bordure '{{edgeName}}'?",
"delete-edge-text": "Faites attention, après la confirmation, la bordure et toutes les données associées deviendront irrécupérables", "delete-edge-text": "Faites attention, après la confirmation, la bordure et toutes les données associées deviendront irrécupérables",
"delete-edges-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 bordure} other {# bordure} }?", "delete-edges-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 bordure} other {# bordure} }?",
"delete-edges-text": "Faites attention, après la confirmation, tous les bordures sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.", "delete-edges-text": "Faites attention, après la confirmation, tous les bordures sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.",
"name": "Nom", "name": "Nom",
"name-starts-with": "Le nom du bord commence par", "name-starts-with": "Le nom du bord commence par",
@ -1186,7 +1186,7 @@
"unassign-from-customer": "Retirer du client", "unassign-from-customer": "Retirer du client",
"unassign-edge-title": "Êtes-vous sûr de vouloir annuler l'affection du dispositif {{edgeName}}", "unassign-edge-title": "Êtes-vous sûr de vouloir annuler l'affection du dispositif {{edgeName}}",
"unassign-edge-text": "Après la confirmation, le dispositif ne sera pas attribué et ne sera pas accessible au client", "unassign-edge-text": "Après la confirmation, le dispositif ne sera pas attribué et ne sera pas accessible au client",
"unassign-edges-title": "Voulez-vous vraiment annuler l'attribution de {count, plural, 1 {1 bordure} other {# bordures} }?", "unassign-edges-title": "Voulez-vous vraiment annuler l'attribution de {count, plural, =1 {1 bordure} other {# bordures} }?",
"unassign-edges-text": "Après la confirmation, tous les bordures sélectionnés ne seront plus attribués et ne seront pas accessibles par le client.", "unassign-edges-text": "Après la confirmation, tous les bordures sélectionnés ne seront plus attribués et ne seront pas accessibles par le client.",
"make-public": "Make edge public", "make-public": "Make edge public",
"make-public-edge-title": "Are you sure you want to make the edge '{{edgeName}}' public?", "make-public-edge-title": "Are you sure you want to make the edge '{{edgeName}}' public?",
@ -1219,7 +1219,7 @@
"rulechain-templates": "Modèles de chaîne de règles", "rulechain-templates": "Modèles de chaîne de règles",
"rulechains": "Chaînes de règles de la bordure", "rulechains": "Chaînes de règles de la bordure",
"search": "Rechercher les bords", "search": "Rechercher les bords",
"selected-edges": "{count, plural, 1 {1 bordure} other {# bords} } sélectionné", "selected-edges": "{count, plural, =1 {1 bordure} other {# bords} } sélectionné",
"any-edge": "Tout bord", "any-edge": "Tout bord",
"no-edge-types-matching": "Aucun type d'arête correspondant à \"{{entitySubtype}}\" n'a été trouvé.", "no-edge-types-matching": "Aucun type d'arête correspondant à \"{{entitySubtype}}\" n'a été trouvé.",
"edge-type-list-empty": "Aucun type d'arête sélectionné.", "edge-type-list-empty": "Aucun type d'arête sélectionné.",
@ -1304,17 +1304,17 @@
"entity-view-name-starts-with": "Les vues d'entité dont le nom commence par '{{prefix}}'", "entity-view-name-starts-with": "Les vues d'entité dont le nom commence par '{{prefix}}'",
"key": "Clé", "key": "Clé",
"key-name": "Nom de la clé", "key-name": "Nom de la clé",
"list-of-alarms": "{count, plural, 1 {Une alarme} other {Liste de # alarmes} }", "list-of-alarms": "{count, plural, =1 {Une alarme} other {Liste de # alarmes} }",
"list-of-assets": "{count, plural, 1 {Un Asset} other {Liste de # Assets} }", "list-of-assets": "{count, plural, =1 {Un Asset} other {Liste de # Assets} }",
"list-of-customers": "{count, plural, 1 {Un client} other {Liste de # clients} }", "list-of-customers": "{count, plural, =1 {Un client} other {Liste de # clients} }",
"list-of-dashboards": "{count, plural, 1 {Un tableau de bord} other {Liste de # tableaux de bord} }", "list-of-dashboards": "{count, plural, =1 {Un tableau de bord} other {Liste de # tableaux de bord} }",
"list-of-devices": "{count, plural, 1 {Un dispositif} other {Liste de # dispositifs} }", "list-of-devices": "{count, plural, =1 {Un dispositif} other {Liste de # dispositifs} }",
"list-of-plugins": "{count, plural, 1 {Un plugin} other {Liste de # plugins} }", "list-of-plugins": "{count, plural, =1 {Un plugin} other {Liste de # plugins} }",
"list-of-rulechains": "{count, plural, 1 {Une chaîne de règles} other {Liste de # chaînes de règles} }", "list-of-rulechains": "{count, plural, =1 {Une chaîne de règles} other {Liste de # chaînes de règles} }",
"list-of-rulenodes": "{count, plural, 1 {Un noeud de règles} other {Liste de # noeuds de règles} }", "list-of-rulenodes": "{count, plural, =1 {Un noeud de règles} other {Liste de # noeuds de règles} }",
"list-of-rules": "{count, plural, 1 {Une règle} other {Liste de # règles} }", "list-of-rules": "{count, plural, =1 {Une règle} other {Liste de # règles} }",
"list-of-tenants": "{count, plural, 1 {Un tenant} other {Liste de # tenants} }", "list-of-tenants": "{count, plural, =1 {Un tenant} other {Liste de # tenants} }",
"list-of-users": "{count, plural, 1 {Un utilisateur} other {Liste de # utilisateurs} }", "list-of-users": "{count, plural, =1 {Un utilisateur} other {Liste de # utilisateurs} }",
"missing-entity-filter-error": "Le filtre est manquant pour l'alias '{{alias}}'.", "missing-entity-filter-error": "Le filtre est manquant pour l'alias '{{alias}}'.",
"name-starts-with": "Nom commence par", "name-starts-with": "Nom commence par",
"no-alias-matching": "'{{alias}}' introuvable.", "no-alias-matching": "'{{alias}}' introuvable.",
@ -1332,11 +1332,11 @@
"rulenode-name-starts-with": "Les noeuds de régles dont le nom commence par '{{prefix}}'", "rulenode-name-starts-with": "Les noeuds de régles dont le nom commence par '{{prefix}}'",
"type-edge": "Bordure", "type-edge": "Bordure",
"type-edges": "Bordures", "type-edges": "Bordures",
"list-of-edges": "{ count, plural, 1 {Une bordure} other {Liste de # bordures} }", "list-of-edges": "{ count, plural, =1 {Une bordure} other {Liste de # bordures} }",
"edge-name-starts-with": "Bordures dont les noms commencent par '{{prefix}}'", "edge-name-starts-with": "Bordures dont les noms commencent par '{{prefix}}'",
"search": "Recherche d'entités", "search": "Recherche d'entités",
"select-entities": "Sélectionner des entités", "select-entities": "Sélectionner des entités",
"selected-entities": "{count, plural, 1 {1 entité} other {# entités} } sélectionnées", "selected-entities": "{count, plural, =1 {1 entité} other {# entités} } sélectionnées",
"tenant-name-starts-with": "Les Tenant dont le nom commence par '{{prefix}}'", "tenant-name-starts-with": "Les Tenant dont le nom commence par '{{prefix}}'",
"type": "Type", "type": "Type",
"type-alarm": "Alarme", "type-alarm": "Alarme",
@ -1397,7 +1397,7 @@
"assign-entity-view-to-customer": "Attribuer une (des) vue (s) d'entité à un client", "assign-entity-view-to-customer": "Attribuer une (des) vue (s) d'entité à un client",
"assign-entity-view-to-customer-text": "Veuillez sélectionner les vues d'entité à affecter au client", "assign-entity-view-to-customer-text": "Veuillez sélectionner les vues d'entité à affecter au client",
"assign-entity-views": "Attribuer des vues d'entité", "assign-entity-views": "Attribuer des vues d'entité",
"assign-entity-views-text": "Attribuer { count, plural, 1 {1 entityView} other {# entityViews} } au client", "assign-entity-views-text": "Attribuer { count, plural, =1 {1 entityView} other {# entityViews} } au client",
"assign-new-entity-view": "Attribuer une nouvelle vue d'entité", "assign-new-entity-view": "Attribuer une nouvelle vue d'entité",
"assign-to-customer": "Attribuer au client", "assign-to-customer": "Attribuer au client",
"assign-to-customer-text": "Veuillez sélectionner le client auquel attribuer la ou les vues d'entité.", "assign-to-customer-text": "Veuillez sélectionner le client auquel attribuer la ou les vues d'entité.",
@ -1415,9 +1415,9 @@
"delete-entity-view-text": "Attention, après la confirmation, la vue de l'entité et toutes les données associées deviendront irrécupérables.", "delete-entity-view-text": "Attention, après la confirmation, la vue de l'entité et toutes les données associées deviendront irrécupérables.",
"delete-entity-view-title": "Êtes-vous sûr de vouloir supprimer la vue de l'entité '{{entityViewName}}'?", "delete-entity-view-title": "Êtes-vous sûr de vouloir supprimer la vue de l'entité '{{entityViewName}}'?",
"delete-entity-views": "Supprimer les vues d'entité", "delete-entity-views": "Supprimer les vues d'entité",
"delete-entity-views-action-title": "Supprimer { count, plural, 1 {1 entityView} other {# entityViews} }", "delete-entity-views-action-title": "Supprimer { count, plural, =1 {1 entityView} other {# entityViews} }",
"delete-entity-views-text": "Attention, après la confirmation, toutes les vues d'entité sélectionnées seront supprimées et toutes les données associées deviendront irrécupérables.", "delete-entity-views-text": "Attention, après la confirmation, toutes les vues d'entité sélectionnées seront supprimées et toutes les données associées deviendront irrécupérables.",
"delete-entity-views-title": "Êtes-vous sûr de vouloir voir l'entité { count, plural, 1 {1 entityView} other {# entityViews} }?", "delete-entity-views-title": "Êtes-vous sûr de vouloir voir l'entité { count, plural, =1 {1 entityView} other {# entityViews} }?",
"description": "Description", "description": "Description",
"details": "Détails", "details": "Détails",
"duplicate-alias-error": "Alias '{{alias}}' existe déjà. <br> Les alias de vue d'entité doivent être uniques dans le tableau de bord.", "duplicate-alias-error": "Alias '{{alias}}' existe déjà. <br> Les alias de vue d'entité doivent être uniques dans le tableau de bord.",
@ -1448,9 +1448,9 @@
"assign-entity-view-to-edge-text": "Veuillez sélectionner la bordure auquel attribuer la ou les vues d'entité.", "assign-entity-view-to-edge-text": "Veuillez sélectionner la bordure auquel attribuer la ou les vues d'entité.",
"unassign-entity-view-from-edge-title": "Voulez-vous vraiment annuler l'attribution de la vue d'entité '{{entityViewName}}'?", "unassign-entity-view-from-edge-title": "Voulez-vous vraiment annuler l'attribution de la vue d'entité '{{entityViewName}}'?",
"unassign-entity-view-from-edge-text": "Après la confirmation, la vue de l'entité sera non attribuée et ne sera pas accessible par la bordure.", "unassign-entity-view-from-edge-text": "Après la confirmation, la vue de l'entité sera non attribuée et ne sera pas accessible par la bordure.",
"unassign-entity-views-from-edge-action-title": "Annuler l'attribution { count, plural, 1 {1 entityView} other {# entityViews} } de la bordure", "unassign-entity-views-from-edge-action-title": "Annuler l'attribution { count, plural, =1 {1 entityView} other {# entityViews} } de la bordure",
"unassign-entity-view-from-edge": "Annuler l'attribution des vues d'entité", "unassign-entity-view-from-edge": "Annuler l'attribution des vues d'entité",
"unassign-entity-views-from-edge-title": "Êtes-vous sûr de vouloir annuler l'attribution { count, plural, 1 {1 entityView} other {# entityViews} }?", "unassign-entity-views-from-edge-title": "Êtes-vous sûr de vouloir annuler l'attribution { count, plural, =1 {1 entityView} other {# entityViews} }?",
"unassign-entity-views-from-edge-text": "Après la confirmation, toutes les vues des entités sélectionnées seront non attribuées et ne seront pas accessibles par la bordure.", "unassign-entity-views-from-edge-text": "Après la confirmation, toutes les vues des entités sélectionnées seront non attribuées et ne seront pas accessibles par la bordure.",
"management": "Gestion de vue d'entité", "management": "Gestion de vue d'entité",
"name": "Nom", "name": "Nom",
@ -1483,15 +1483,15 @@
"unassign-entity-view-text": "Après la confirmation, la vue de l'entité sera non attribuée et ne sera pas accessible par le client.", "unassign-entity-view-text": "Après la confirmation, la vue de l'entité sera non attribuée et ne sera pas accessible par le client.",
"unassign-entity-view-title": "Voulez-vous vraiment annuler l'attribution de la vue d'entité '{{entityViewName}}'?", "unassign-entity-view-title": "Voulez-vous vraiment annuler l'attribution de la vue d'entité '{{entityViewName}}'?",
"unassign-entity-views": "Annuler l'attribution des vues d'entité", "unassign-entity-views": "Annuler l'attribution des vues d'entité",
"unassign-entity-views-action-title": "Annuler l'attribution { count, plural, 1 {1 entityView} other {# entityViews} } du client", "unassign-entity-views-action-title": "Annuler l'attribution { count, plural, =1 {1 entityView} other {# entityViews} } du client",
"unassign-entity-views-text": "Après la confirmation, toutes les vues des entités sélectionnées seront non attribuées et ne seront pas accessibles par le client.", "unassign-entity-views-text": "Après la confirmation, toutes les vues des entités sélectionnées seront non attribuées et ne seront pas accessibles par le client.",
"unassign-entity-views-title": "Êtes-vous sûr de vouloir annuler l'attribution { count, plural, 1 {1 entityView} other {# entityViews} }?", "unassign-entity-views-title": "Êtes-vous sûr de vouloir annuler l'attribution { count, plural, =1 {1 entityView} other {# entityViews} }?",
"unassign-from-customer": "Annuler l'attribution au client", "unassign-from-customer": "Annuler l'attribution au client",
"use-entity-view-name-filter": "Use filter", "use-entity-view-name-filter": "Use filter",
"view-entity-views": "Voir les vues d'entité", "view-entity-views": "Voir les vues d'entité",
"idCopiedMessage": "L'ID de la vue d'entité a été copiée dans le presse-papier", "idCopiedMessage": "L'ID de la vue d'entité a été copiée dans le presse-papier",
"search": "Rechercher des vues d'entité", "search": "Rechercher des vues d'entité",
"selected-entity-views": "{ count, plural, 1 {1 entity view} other {# entity views} } sélectionnés" "selected-entity-views": "{ count, plural, =1 {1 entity view} other {# entity views} } sélectionnés"
}, },
"error": { "error": {
"unable-to-connect": "Impossible de se connecter au serveur! Veuillez vérifier votre connexion Internet.", "unable-to-connect": "Impossible de se connecter au serveur! Veuillez vérifier votre connexion Internet.",
@ -1571,7 +1571,7 @@
"delete-extension-text": "Attention, après la confirmation, l'extension et toutes les données associées deviendront irrécupérables.", "delete-extension-text": "Attention, après la confirmation, l'extension et toutes les données associées deviendront irrécupérables.",
"delete-extension-title": "Êtes-vous sûr de vouloir supprimer l'extension '{{extensionId}}'?", "delete-extension-title": "Êtes-vous sûr de vouloir supprimer l'extension '{{extensionId}}'?",
"delete-extensions-text": "Attention, après la confirmation, toutes les extensions sélectionnées seront supprimées.", "delete-extensions-text": "Attention, après la confirmation, toutes les extensions sélectionnées seront supprimées.",
"delete-extensions-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 extension} other {# extensions} }?", "delete-extensions-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 extension} other {# extensions} }?",
"device-name-expression": "expression du nom du dispositif", "device-name-expression": "expression du nom du dispositif",
"device-name-filter": "Filtre de nom de dispositif", "device-name-filter": "Filtre de nom de dispositif",
"device-type-expression": "expression de type de dispositif", "device-type-expression": "expression de type de dispositif",
@ -1657,7 +1657,7 @@
"response-timeout": "Délai de réponse en millisecondes", "response-timeout": "Délai de réponse en millisecondes",
"response-topic-expression": "Expression du topic de la réponse", "response-topic-expression": "Expression du topic de la réponse",
"retry-interval": "Intervalle de nouvelle tentative en millisecondes", "retry-interval": "Intervalle de nouvelle tentative en millisecondes",
"selected-extensions": "{count, plural, 1 {1 extension} other {# extensions} } sélectionné", "selected-extensions": "{count, plural, =1 {1 extension} other {# extensions} } sélectionné",
"server-side-rpc": "RPC côté serveur", "server-side-rpc": "RPC côté serveur",
"ssl": "Ssl", "ssl": "Ssl",
"sync": { "sync": {
@ -1699,9 +1699,9 @@
"delete-item-text": "Faites attention, après la confirmation, cet élément et toutes les données associées deviendront irrécupérables.", "delete-item-text": "Faites attention, après la confirmation, cet élément et toutes les données associées deviendront irrécupérables.",
"delete-item-title": "Êtes-vous sûr de vouloir supprimer cet élément?", "delete-item-title": "Êtes-vous sûr de vouloir supprimer cet élément?",
"delete-items": "Supprimer les éléments", "delete-items": "Supprimer les éléments",
"delete-items-action-title": "Supprimer {count, plural, 1 {1 élément} other {# éléments} }", "delete-items-action-title": "Supprimer {count, plural, =1 {1 élément} other {# éléments} }",
"delete-items-text": "Attention, après la confirmation, tous les éléments sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.", "delete-items-text": "Attention, après la confirmation, tous les éléments sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.",
"delete-items-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 élément} other {# éléments} }?", "delete-items-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 élément} other {# éléments} }?",
"item-details": "Détails de l'élément", "item-details": "Détails de l'élément",
"no-items-text": "Aucun élément trouvé", "no-items-text": "Aucun élément trouvé",
"scroll-to-top": "Défiler vers le haut" "scroll-to-top": "Défiler vers le haut"
@ -1807,11 +1807,11 @@
"delete-from-relation-text": "Attention, après la confirmation, l'entité actuelle ne sera pas liée à l'entité '{{entityName}}'.", "delete-from-relation-text": "Attention, après la confirmation, l'entité actuelle ne sera pas liée à l'entité '{{entityName}}'.",
"delete-from-relation-title": "Êtes-vous sûr de vouloir supprimer la relation de l'entité '{{entityName}}'?", "delete-from-relation-title": "Êtes-vous sûr de vouloir supprimer la relation de l'entité '{{entityName}}'?",
"delete-from-relations-text": "Attention, après la confirmation, toutes les relations sélectionnées seront supprimées et l'entité actuelle ne sera pas liée aux entités correspondantes.", "delete-from-relations-text": "Attention, après la confirmation, toutes les relations sélectionnées seront supprimées et l'entité actuelle ne sera pas liée aux entités correspondantes.",
"delete-from-relations-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 relation} other {# relations} }?", "delete-from-relations-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 relation} other {# relations} }?",
"delete-to-relation-text": "Attention, après la confirmation, l'entité '{{entityName}} ne sera plus liée à l'entité actuelle.", "delete-to-relation-text": "Attention, après la confirmation, l'entité '{{entityName}} ne sera plus liée à l'entité actuelle.",
"delete-to-relation-title": "Êtes-vous sûr de vouloir supprimer la relation avec l'entité '{{entityName}}'?", "delete-to-relation-title": "Êtes-vous sûr de vouloir supprimer la relation avec l'entité '{{entityName}}'?",
"delete-to-relations-text": "Attention, après la confirmation, toutes les relations sélectionnées seront supprimées et les entités correspondantes ne seront pas liées à l'entité en cours.", "delete-to-relations-text": "Attention, après la confirmation, toutes les relations sélectionnées seront supprimées et les entités correspondantes ne seront pas liées à l'entité en cours.",
"delete-to-relations-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 relation} other {# relations} }?", "delete-to-relations-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 relation} other {# relations} }?",
"direction": "Sens", "direction": "Sens",
"direction-type": { "direction-type": {
"FROM": "de", "FROM": "de",
@ -1832,7 +1832,7 @@
"FROM": "De", "FROM": "De",
"TO": "Vers" "TO": "Vers"
}, },
"selected-relations": "{count, plural, 1 {1 relation} other {# relations} } sélectionné", "selected-relations": "{count, plural, =1 {1 relation} other {# relations} } sélectionné",
"to-entity": "Vers l'entité", "to-entity": "Vers l'entité",
"to-entity-name": "vers le nom de l'entité", "to-entity-name": "vers le nom de l'entité",
"to-entity-type": "Vers le type d'entité", "to-entity-type": "Vers le type d'entité",
@ -1848,9 +1848,9 @@
"delete": "Supprimer la chaîne de règles", "delete": "Supprimer la chaîne de règles",
"delete-rulechain-text": "Attention, après la confirmation, la chaîne de règles et toutes les données associées deviendront irrécupérables.", "delete-rulechain-text": "Attention, après la confirmation, la chaîne de règles et toutes les données associées deviendront irrécupérables.",
"delete-rulechain-title": "Voulez-vous vraiment supprimer la chaîne de règles '{{ruleChainName}}'?", "delete-rulechain-title": "Voulez-vous vraiment supprimer la chaîne de règles '{{ruleChainName}}'?",
"delete-rulechains-action-title": "Supprimer {count, plural, 1 {1 chaîne de règles} other {# chaînes de règles} }", "delete-rulechains-action-title": "Supprimer {count, plural, =1 {1 chaîne de règles} other {# chaînes de règles} }",
"delete-rulechains-text": "Attention, après la confirmation, toutes les chaînes de règles sélectionnées seront supprimées et toutes les données associées deviendront irrécupérables.", "delete-rulechains-text": "Attention, après la confirmation, toutes les chaînes de règles sélectionnées seront supprimées et toutes les données associées deviendront irrécupérables.",
"delete-rulechains-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 chaîne de règles} other {# chaînes de règles} }?", "delete-rulechains-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 chaîne de règles} other {# chaînes de règles} }?",
"description": "Description", "description": "Description",
"details": "Détails", "details": "Détails",
"events": "Evénements", "events": "Evénements",
@ -1882,7 +1882,7 @@
"unassign-rulechains": "Retirer chaînes de règles", "unassign-rulechains": "Retirer chaînes de règles",
"unassign-rulechain-title": "AÊtes-vous sûr de vouloir retirer l'attribution de chaînes de règles '{{ruleChainName}}'?", "unassign-rulechain-title": "AÊtes-vous sûr de vouloir retirer l'attribution de chaînes de règles '{{ruleChainName}}'?",
"unassign-rulechain-from-edge-text": "Après la confirmation, l'actif sera non attribué et ne sera pas accessible a la bordure.", "unassign-rulechain-from-edge-text": "Après la confirmation, l'actif sera non attribué et ne sera pas accessible a la bordure.",
"unassign-rulechains-from-edge-action-title": "Retirer {count, plural, 1 {1 chaîne de règles} other {# chaînes de règles} } de la bordure", "unassign-rulechains-from-edge-action-title": "Retirer {count, plural, =1 {1 chaîne de règles} other {# chaînes de règles} } de la bordure",
"unassign-rulechains-from-edge-text": "Après la confirmation, tous les chaînes de règles sélectionnés ne seront pas attribués et ne seront pas accessibles a la bordure.", "unassign-rulechains-from-edge-text": "Après la confirmation, tous les chaînes de règles sélectionnés ne seront pas attribués et ne seront pas accessibles a la bordure.",
"assign-rulechain-to-edge-title": "Attribuer les chaînes de règles a la bordure", "assign-rulechain-to-edge-title": "Attribuer les chaînes de règles a la bordure",
"assign-rulechain-to-edge-text": "Veuillez sélectionner la bordure pour attribuer le ou les chaînes de règles", "assign-rulechain-to-edge-text": "Veuillez sélectionner la bordure pour attribuer le ou les chaînes de règles",
@ -1898,11 +1898,11 @@
"unset-auto-assign-to-edge-text": "Après la confirmation, la chaîne de règles d'arêtes ne sera plus automatiquement affectée aux arêtes lors de la création.", "unset-auto-assign-to-edge-text": "Après la confirmation, la chaîne de règles d'arêtes ne sera plus automatiquement affectée aux arêtes lors de la création.",
"edge-template-root": "Racine du modèle", "edge-template-root": "Racine du modèle",
"search": "Rechercher des chaînes de règles", "search": "Rechercher des chaînes de règles",
"selected-rulechains": "{count, plural, 1 {1 rule chain} other {# rule chains} } sélectionné", "selected-rulechains": "{count, plural, =1 {1 rule chain} other {# rule chains} } sélectionné",
"open-rulechain": "Ouvrir la Chaîne de règles", "open-rulechain": "Ouvrir la Chaîne de règles",
"assign-to-edge": "Attribuer à Bordure", "assign-to-edge": "Attribuer à Bordure",
"edge-rulechain": "Chaîne de règles Bordure", "edge-rulechain": "Chaîne de règles Bordure",
"unassign-rulechains-from-edge-title": "Voulez-vous vraiment annuler l'attribution de {count, plural, 1 {1 rulechain} other {# rulechains} }?" "unassign-rulechains-from-edge-title": "Voulez-vous vraiment annuler l'attribution de {count, plural, =1 {1 rulechain} other {# rulechains} }?"
}, },
"rulenode": { "rulenode": {
"add": "Ajouter un noeud de règle", "add": "Ajouter un noeud de règle",
@ -1981,9 +1981,9 @@
"delete": "Supprimer le Tenant", "delete": "Supprimer le Tenant",
"delete-tenant-text": "Attention, après la confirmation, le Tenant et toutes les données associées deviendront irrécupérables.", "delete-tenant-text": "Attention, après la confirmation, le Tenant et toutes les données associées deviendront irrécupérables.",
"delete-tenant-title": "Êtes-vous sûr de vouloir supprimer le tenant '{{tenantTitle}}'?", "delete-tenant-title": "Êtes-vous sûr de vouloir supprimer le tenant '{{tenantTitle}}'?",
"delete-tenants-action-title": "Supprimer {count, plural, 1 {1 tenant} other {# tenants} }", "delete-tenants-action-title": "Supprimer {count, plural, =1 {1 tenant} other {# tenants} }",
"delete-tenants-text": "Attention, après la confirmation, tous les Tenants sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.", "delete-tenants-text": "Attention, après la confirmation, tous les Tenants sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.",
"delete-tenants-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 tenant} other {# tenants} }?", "delete-tenants-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 tenant} other {# tenants} }?",
"description": "Description", "description": "Description",
"details": "Détails", "details": "Détails",
"events": "Événements", "events": "Événements",
@ -2000,31 +2000,31 @@
"title": "Titre", "title": "Titre",
"title-required": "Le titre est requis.", "title-required": "Le titre est requis.",
"search": "Rechercher les Tenants", "search": "Rechercher les Tenants",
"selected-tenants": "{ count, plural, 1 {1 tenant} other {# tenants} } sélectionnés" "selected-tenants": "{ count, plural, =1 {1 tenant} other {# tenants} } sélectionnés"
}, },
"timeinterval": { "timeinterval": {
"advanced": "Avancé", "advanced": "Avancé",
"days": "Jours", "days": "Jours",
"days-interval": "{days, plural, 1 {1 jour} other {# jours} }", "days-interval": "{days, plural, =1 {1 jour} other {# jours} }",
"hours": "Heures", "hours": "Heures",
"hours-interval": "{hours, plural, 1 {1 heure} other {# heures} }", "hours-interval": "{hours, plural, =1 {1 heure} other {# heures} }",
"minutes": "Minutes", "minutes": "Minutes",
"minutes-interval": "{minutes, plural, 1 {1 minute} other {# minutes} }", "minutes-interval": "{minutes, plural, =1 {1 minute} other {# minutes} }",
"seconds": "Secondes", "seconds": "Secondes",
"seconds-interval": "{seconds, plural, 1 {1 seconde} other {# secondes} }" "seconds-interval": "{seconds, plural, =1 {1 seconde} other {# secondes} }"
}, },
"timewindow": { "timewindow": {
"date-range": "Plage de dates", "date-range": "Plage de dates",
"days": "{days, plural, 1 {jour} other {# jours} }", "days": "{days, plural, =1 {jour} other {# jours} }",
"edit": "Modifier timewindow", "edit": "Modifier timewindow",
"history": "Historique", "history": "Historique",
"hours": "{hours, plural, 0 {heure} 1 {1 heure} other {# heures} }", "hours": "{hours, plural, =0 {heure} =1 {1 heure} other {# heures} }",
"last": "Dernier", "last": "Dernier",
"last-prefix": "dernier", "last-prefix": "dernier",
"minutes": "{minutes, plural, 0 {minute} 1 {1 minute} other {# minutes} }", "minutes": "{minutes, plural, =0 {minute} =1 {1 minute} other {# minutes} }",
"period": "de {{startTime}} à {{endTime}}", "period": "de {{startTime}} à {{endTime}}",
"realtime": "Temps réel", "realtime": "Temps réel",
"seconds": "{seconds, plural, 0 {second} 1 {1 second} other {# seconds} }", "seconds": "{seconds, plural, =0 {second} =1 {1 second} other {# seconds} }",
"time-period": "Période", "time-period": "Période",
"hide": "Masquer" "hide": "Masquer"
}, },
@ -2045,9 +2045,9 @@
"delete": "Supprimer l'utilisateur", "delete": "Supprimer l'utilisateur",
"delete-user-text": "Attention, après la confirmation, l'utilisateur et toutes les données associées deviendront irrécupérables.", "delete-user-text": "Attention, après la confirmation, l'utilisateur et toutes les données associées deviendront irrécupérables.",
"delete-user-title": "Êtes-vous sûr de vouloir supprimer l'utilisateur '{{userEmail}}'?", "delete-user-title": "Êtes-vous sûr de vouloir supprimer l'utilisateur '{{userEmail}}'?",
"delete-users-action-title": "Supprimer {count, plural, 1 {1 utilisateur} other {# utilisateurs} }", "delete-users-action-title": "Supprimer {count, plural, =1 {1 utilisateur} other {# utilisateurs} }",
"delete-users-text": "Attention, après la confirmation, tous les utilisateurs sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.", "delete-users-text": "Attention, après la confirmation, tous les utilisateurs sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.",
"delete-users-title": "Êtes-vous sûr de vouloir supprimer {count, plural, 1 {1 utilisateur} other {# utilisateurs} }?", "delete-users-title": "Êtes-vous sûr de vouloir supprimer {count, plural, =1 {1 utilisateur} other {# utilisateurs} }?",
"description": "Description", "description": "Description",
"details": "Détails", "details": "Détails",
"disable-account": "Désactiver le compte d'utilisateur", "disable-account": "Désactiver le compte d'utilisateur",
@ -2075,7 +2075,7 @@
"user-required": "L'utilisateur est requis", "user-required": "L'utilisateur est requis",
"users": "Utilisateurs", "users": "Utilisateurs",
"search": "Rechercher des utilisateurs", "search": "Rechercher des utilisateurs",
"selected-users": "{ count, plural, 1 {1 user} other {# users} } sélectionnés" "selected-users": "{ count, plural, =1 {1 user} other {# users} } sélectionnés"
}, },
"value": { "value": {
"boolean": "booléen", "boolean": "booléen",
@ -2190,7 +2190,7 @@
"general-settings": "Paramètres généraux", "general-settings": "Paramètres généraux",
"height": "Hauteur", "height": "Hauteur",
"margin": "Marge", "margin": "Marge",
"maximum-datasources": "Maximum {count, plural, 1 {1 datasource est autorisé.} other {# datasources sont autorisés} }", "maximum-datasources": "Maximum {count, plural, =1 {1 datasource est autorisé.} other {# datasources sont autorisés} }",
"mobile-mode-settings": "Paramètres du mode mobile", "mobile-mode-settings": "Paramètres du mode mobile",
"order": "Ordre", "order": "Ordre",
"padding": "Padding", "padding": "Padding",
@ -2310,9 +2310,9 @@
"delete": "Supprimer le groupe de widgets", "delete": "Supprimer le groupe de widgets",
"delete-widgets-bundle-text": "Attention, après la confirmation, le groupe de widgets et toutes les données associées deviendront irrécupérables.", "delete-widgets-bundle-text": "Attention, après la confirmation, le groupe de widgets et toutes les données associées deviendront irrécupérables.",
"delete-widgets-bundle-title": "Êtes-vous sûr de vouloir supprimer le groupe de widgets '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Êtes-vous sûr de vouloir supprimer le groupe de widgets '{{widgetsBundleTitle}}'?",
"delete-widgets-bundles-action-title": "Supprimer {count, plural, 1 {1 groupe de widgets} other {# groupes de widgets} }", "delete-widgets-bundles-action-title": "Supprimer {count, plural, =1 {1 groupe de widgets} other {# groupes de widgets} }",
"delete-widgets-bundles-text": "Attention, après la confirmation, tous les groupes de widgets sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.", "delete-widgets-bundles-text": "Attention, après la confirmation, tous les groupes de widgets sélectionnés seront supprimés et toutes les données associées deviendront irrécupérables.",
"delete-widgets-bundles-title": "Voulez-vous vraiment supprimer {count, plural, 1 {1 groupe de widgets} other {# groupes de widgets} }?", "delete-widgets-bundles-title": "Voulez-vous vraiment supprimer {count, plural, =1 {1 groupe de widgets} other {# groupes de widgets} }?",
"details": "Détails", "details": "Détails",
"empty": "Le groupe de widgets est vide", "empty": "Le groupe de widgets est vide",
"export": "Exporter le groupe de widgets", "export": "Exporter le groupe de widgets",

142
ui-ngx/src/assets/locale/locale.constant-it_IT.json

@ -149,17 +149,17 @@
"acknowledge": "Conferma", "acknowledge": "Conferma",
"clear": "Cancella", "clear": "Cancella",
"search": "Cerca allarmi", "search": "Cerca allarmi",
"selected-alarms": "{ count, plural, 1 {1 allarme selezionato} other {# allarmi selezionati} }", "selected-alarms": "{ count, plural, =1 {1 allarme selezionato} other {# allarmi selezionati} }",
"no-data": "Nessun dato da visualizzare", "no-data": "Nessun dato da visualizzare",
"polling-interval": "Intervallo di polling (sec) Allarmi", "polling-interval": "Intervallo di polling (sec) Allarmi",
"polling-interval-required": "Intervallo di polling Allarmi richiesto.", "polling-interval-required": "Intervallo di polling Allarmi richiesto.",
"min-polling-interval-message": "L'intervallo di polling deve essere di almeno 1 sec.", "min-polling-interval-message": "L'intervallo di polling deve essere di almeno 1 sec.",
"aknowledge-alarms-title": "Conferma { count, plural, 1 {1 allarme} other {# allarmi} }", "aknowledge-alarms-title": "Conferma { count, plural, =1 {1 allarme} other {# allarmi} }",
"aknowledge-alarms-text": "Sei sicuro di voler confermare { count, plural, 1 {1 allarme} other {# allarmi} }?", "aknowledge-alarms-text": "Sei sicuro di voler confermare { count, plural, =1 {1 allarme} other {# allarmi} }?",
"aknowledge-alarm-title": "Conferma allarme", "aknowledge-alarm-title": "Conferma allarme",
"aknowledge-alarm-text": "Sei sicuro di voler confermare l'allarme?", "aknowledge-alarm-text": "Sei sicuro di voler confermare l'allarme?",
"clear-alarms-title": "Elimina { count, plural, 1 {1 allarme} other {# allarmi} }", "clear-alarms-title": "Elimina { count, plural, =1 {1 allarme} other {# allarmi} }",
"clear-alarms-text": "Sei sicuro di voler eliminare { count, plural, 1 {1 allarme} other {# allarmi} }?", "clear-alarms-text": "Sei sicuro di voler eliminare { count, plural, =1 {1 allarme} other {# allarmi} }?",
"clear-alarm-title": "Elimina allarme", "clear-alarm-title": "Elimina allarme",
"clear-alarm-text": "Sei sicuro di voler eliminare l'allarme?", "clear-alarm-text": "Sei sicuro di voler eliminare l'allarme?",
"alarm-status-filter": "Filtro stato allarme" "alarm-status-filter": "Filtro stato allarme"
@ -245,15 +245,15 @@
"add-asset-text": "Aggiungi un nuovo asset", "add-asset-text": "Aggiungi un nuovo asset",
"asset-details": "Dettagli Asset", "asset-details": "Dettagli Asset",
"assign-assets": "Assegna asset", "assign-assets": "Assegna asset",
"assign-assets-text": "Assegna { count, plural, 1 {1 asset} other {# asset} } al cliente", "assign-assets-text": "Assegna { count, plural, =1 {1 asset} other {# asset} } al cliente",
"delete-assets": "Cancella asset", "delete-assets": "Cancella asset",
"unassign-assets": "Annulla assegnazione asset", "unassign-assets": "Annulla assegnazione asset",
"unassign-assets-action-title": "Annulla assegnazione { count, plural, 1 {1 asset} other {# asset} } al cliente", "unassign-assets-action-title": "Annulla assegnazione { count, plural, =1 {1 asset} other {# asset} } al cliente",
"assign-new-asset": "Assegna un nuovo asset", "assign-new-asset": "Assegna un nuovo asset",
"delete-asset-title": "Sei sicuro di voler cancellare l'asset '{{assetName}}'?", "delete-asset-title": "Sei sicuro di voler cancellare l'asset '{{assetName}}'?",
"delete-asset-text": "Attenzione, dopo la conferma l'asset e tutti i relativi dati non saranno più recuperabili.", "delete-asset-text": "Attenzione, dopo la conferma l'asset e tutti i relativi dati non saranno più recuperabili.",
"delete-assets-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 asset} other {# asset} }?", "delete-assets-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 asset} other {# asset} }?",
"delete-assets-action-title": "Elimina { count, plural, 1 {1 asset} other {# asset} }", "delete-assets-action-title": "Elimina { count, plural, =1 {1 asset} other {# asset} }",
"delete-assets-text": "Attenzione, dopo la modifica tutti gli asset selezionati saranno rimossi e tutti i relativi dati non saranno più recuperabili.", "delete-assets-text": "Attenzione, dopo la modifica tutti gli asset selezionati saranno rimossi e tutti i relativi dati non saranno più recuperabili.",
"make-public-asset-title": "Sei sicuro di voler rendere pubblico l'asset '{{assetName}}'?", "make-public-asset-title": "Sei sicuro di voler rendere pubblico l'asset '{{assetName}}'?",
"make-public-asset-text": "Dopo la conferma l'asset e tutti i suoi dati saranno resi pubblici e accessibili dagli altri.", "make-public-asset-text": "Dopo la conferma l'asset e tutti i suoi dati saranno resi pubblici e accessibili dagli altri.",
@ -262,7 +262,7 @@
"unassign-asset-title": "Sei sicuro di voler annullare l'assegnazione dell'asset '{{assetName}}'?", "unassign-asset-title": "Sei sicuro di voler annullare l'assegnazione dell'asset '{{assetName}}'?",
"unassign-asset-text": "Dopo la conferma l'assegnazione dell'asset sarà annullata e l'asset non sarà più accessibile dal cliente.", "unassign-asset-text": "Dopo la conferma l'assegnazione dell'asset sarà annullata e l'asset non sarà più accessibile dal cliente.",
"unassign-asset": "Annulla assegnazione asset", "unassign-asset": "Annulla assegnazione asset",
"unassign-assets-title": "Sei sicuro di voler annullare l'assegnazione di { count, plural, 1 {1 asset} other {# asset} }?", "unassign-assets-title": "Sei sicuro di voler annullare l'assegnazione di { count, plural, =1 {1 asset} other {# asset} }?",
"unassign-assets-text": "Dopo la conferma sarà annullata l'assegnazione di tutti gli asset selezionati e questi non saranno più accessibili dal cliente.", "unassign-assets-text": "Dopo la conferma sarà annullata l'assegnazione di tutti gli asset selezionati e questi non saranno più accessibili dal cliente.",
"copyId": "Copia Id asset", "copyId": "Copia Id asset",
"idCopiedMessage": "Id Asset copiato negli Appunti", "idCopiedMessage": "Id Asset copiato negli Appunti",
@ -286,7 +286,7 @@
"key-required": "Attributo chiave richiesto.", "key-required": "Attributo chiave richiesto.",
"value": "Valore", "value": "Valore",
"value-required": "Attributo valore richiesto.", "value-required": "Attributo valore richiesto.",
"delete-attributes-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 attributo} other {# attributi} }?", "delete-attributes-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 attributo} other {# attributi} }?",
"delete-attributes-text": "Attenzione, dopo la conferma tutti gli attributi selezionati saranno rimossi.", "delete-attributes-text": "Attenzione, dopo la conferma tutti gli attributi selezionati saranno rimossi.",
"delete-attributes": "Elimina attributi", "delete-attributes": "Elimina attributi",
"enter-attribute-value": "Inserisci il valore dell'attributo", "enter-attribute-value": "Inserisci il valore dell'attributo",
@ -296,8 +296,8 @@
"prev-widget": "Widget precedente", "prev-widget": "Widget precedente",
"add-to-dashboard": "Aggiungi alla dashboard", "add-to-dashboard": "Aggiungi alla dashboard",
"add-widget-to-dashboard": "Aggiungi widget alla dashboard", "add-widget-to-dashboard": "Aggiungi widget alla dashboard",
"selected-attributes": "{ count, plural, 1 {1 attributo selezionato} other {# attributi selezionati} }", "selected-attributes": "{ count, plural, =1 {1 attributo selezionato} other {# attributi selezionati} }",
"selected-telemetry": "{ count, plural, 1 {1 unità di telemetria selezionata} other {# unità di telemetria selezionate} }" "selected-telemetry": "{ count, plural, =1 {1 unità di telemetria selezionata} other {# unità di telemetria selezionate} }"
}, },
"audit-log": { "audit-log": {
"audit": "Audit", "audit": "Audit",
@ -396,8 +396,8 @@
"customer-details": "Dettagli cliente", "customer-details": "Dettagli cliente",
"delete-customer-title": "Sei sicuro di voler eliminare il cliente '{{customerTitle}}'?", "delete-customer-title": "Sei sicuro di voler eliminare il cliente '{{customerTitle}}'?",
"delete-customer-text": "Attenzione, dopo la conferma il cliente e tutti i suoi dati non saranno più recuperabili.", "delete-customer-text": "Attenzione, dopo la conferma il cliente e tutti i suoi dati non saranno più recuperabili.",
"delete-customers-title": "Sei sicuro di voler cancellare { count, plural, 1 {1 cliente} other {# clienti} }?", "delete-customers-title": "Sei sicuro di voler cancellare { count, plural, =1 {1 cliente} other {# clienti} }?",
"delete-customers-action-title": "Elimina { count, plural, 1 {1 cliente} other {# clienti} }", "delete-customers-action-title": "Elimina { count, plural, =1 {1 cliente} other {# clienti} }",
"delete-customers-text": "Attenzione, dopo la conferma tutti i clienti selezionati saranno rimossi e i loro dati non saranno più recuperabili.", "delete-customers-text": "Attenzione, dopo la conferma tutti i clienti selezionati saranno rimossi e i loro dati non saranno più recuperabili.",
"manage-users": "Gestisci utenti", "manage-users": "Gestisci utenti",
"manage-assets": "Gestisci asset", "manage-assets": "Gestisci asset",
@ -456,20 +456,20 @@
"add-dashboard-text": "Aggiungi nuova dashboard", "add-dashboard-text": "Aggiungi nuova dashboard",
"assign-dashboards": "Assegna dashboard", "assign-dashboards": "Assegna dashboard",
"assign-new-dashboard": "Assegna nuova dashboard", "assign-new-dashboard": "Assegna nuova dashboard",
"assign-dashboards-text": "Assegna { count, plural, 1 {1 dashboard} other {# dashboard} } ai clienti", "assign-dashboards-text": "Assegna { count, plural, =1 {1 dashboard} other {# dashboard} } ai clienti",
"unassign-dashboards-action-text": "Annulla assegnazione { count, plural, 1 {1 dashboard} other {# dashboard} } ai clienti", "unassign-dashboards-action-text": "Annulla assegnazione { count, plural, =1 {1 dashboard} other {# dashboard} } ai clienti",
"delete-dashboards": "Elimina dashboard", "delete-dashboards": "Elimina dashboard",
"unassign-dashboards": "Annulla assegnazione dashboard", "unassign-dashboards": "Annulla assegnazione dashboard",
"unassign-dashboards-action-title": "Annulla assegnazione { count, plural, 1 {1 dashboard} other {# dashboard} } al cliente", "unassign-dashboards-action-title": "Annulla assegnazione { count, plural, =1 {1 dashboard} other {# dashboard} } al cliente",
"delete-dashboard-title": "Sei sicuro di voler cancellare la dashboard '{{dashboardTitle}}'?", "delete-dashboard-title": "Sei sicuro di voler cancellare la dashboard '{{dashboardTitle}}'?",
"delete-dashboard-text": "Attenzione, dopo la conferma la dashboard e tutti i suoi dati non saranno più recuperabili.", "delete-dashboard-text": "Attenzione, dopo la conferma la dashboard e tutti i suoi dati non saranno più recuperabili.",
"delete-dashboards-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 dashboard} other {# dashboard} }?", "delete-dashboards-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 dashboard} other {# dashboard} }?",
"delete-dashboards-action-title": "Cancella { count, plural, 1 {1 dashboard} other {# dashboard} }", "delete-dashboards-action-title": "Cancella { count, plural, =1 {1 dashboard} other {# dashboard} }",
"delete-dashboards-text": "Attenzione, dopo la conferma tutte le dashboard selezionate saranno eliminate e tutti i loro dati non saranno più recuperabili.", "delete-dashboards-text": "Attenzione, dopo la conferma tutte le dashboard selezionate saranno eliminate e tutti i loro dati non saranno più recuperabili.",
"unassign-dashboard-title": "Sei sicuro di voler annullare l'assegnazione della dashboard '{{dashboardTitle}}'?", "unassign-dashboard-title": "Sei sicuro di voler annullare l'assegnazione della dashboard '{{dashboardTitle}}'?",
"unassign-dashboard-text": "Dopo la conferma sarà annullata l'assegnazione della dashboard e questa non sarà più accessibile dal cliente.", "unassign-dashboard-text": "Dopo la conferma sarà annullata l'assegnazione della dashboard e questa non sarà più accessibile dal cliente.",
"unassign-dashboard": "Annulla assegnazione dashboard", "unassign-dashboard": "Annulla assegnazione dashboard",
"unassign-dashboards-title": "Sei sicuro di voler annullare l'assegnazione di { count, plural, 1 {1 dashboard} other {# dashboard} }?", "unassign-dashboards-title": "Sei sicuro di voler annullare l'assegnazione di { count, plural, =1 {1 dashboard} other {# dashboard} }?",
"unassign-dashboards-text": "Dopo la conferma sarà annullata l'assegnazione di tutte le dashboard selezionate e queste non saranno più accessibili dal cliente.", "unassign-dashboards-text": "Dopo la conferma sarà annullata l'assegnazione di tutte le dashboard selezionate e queste non saranno più accessibili dal cliente.",
"public-dashboard-title": "La Dashboard è ora pubblica", "public-dashboard-title": "La Dashboard è ora pubblica",
"public-dashboard-text": "La dashboard <b>{{dashboardTitle}}</b> è ora pubblica e accessibile al <a href='{{publicLink}}' target='_blank'>link</a>:", "public-dashboard-text": "La dashboard <b>{{dashboardTitle}}</b> è ora pubblica e accessibile al <a href='{{publicLink}}' target='_blank'>link</a>:",
@ -546,7 +546,7 @@
"manage-states": "Gestisci stati dashboard", "manage-states": "Gestisci stati dashboard",
"states": "Stati dashboard", "states": "Stati dashboard",
"search-states": "Ricerca stati dashboard", "search-states": "Ricerca stati dashboard",
"selected-states": "{ count, plural, 1 {1 stato dashboard selezionato} other {# stati dashboard selezionati} }", "selected-states": "{ count, plural, =1 {1 stato dashboard selezionato} other {# stati dashboard selezionati} }",
"edit-state": "Modifica stato dashboard", "edit-state": "Modifica stato dashboard",
"delete-state": "Elimina stato dashboard", "delete-state": "Elimina stato dashboard",
"add-state": "Aggiungi stato dashboard", "add-state": "Aggiungi stato dashboard",
@ -579,11 +579,11 @@
"alarm": "Campi allarme", "alarm": "Campi allarme",
"timeseries-required": "Le serie temporali dell'entità sono richieste.", "timeseries-required": "Le serie temporali dell'entità sono richieste.",
"timeseries-or-attributes-required": "Le serie temporali o gli attributi dell'entità sono richiesti.", "timeseries-or-attributes-required": "Le serie temporali o gli attributi dell'entità sono richiesti.",
"maximum-timeseries-or-attributes": "Massimo { count, plural, 1 {1 serie temporale/attributo consentito.} other {# serie temporali/attributi consentiti.} }", "maximum-timeseries-or-attributes": "Massimo { count, plural, =1 {1 serie temporale/attributo consentito.} other {# serie temporali/attributi consentiti.} }",
"alarm-fields-required": "Campi allarme obbligatori.", "alarm-fields-required": "Campi allarme obbligatori.",
"function-types": "Tipi funzione", "function-types": "Tipi funzione",
"function-types-required": "Tipi funzione obbligatorio.", "function-types-required": "Tipi funzione obbligatorio.",
"maximum-function-types": "Massimo { count, plural, 1 {1 tipo di funzione consentito.} other {# tipi di funzione consentiti} }", "maximum-function-types": "Massimo { count, plural, =1 {1 tipo di funzione consentito.} other {# tipi di funzione consentiti} }",
"time-description": "timestamp del valore corrente;", "time-description": "timestamp del valore corrente;",
"value-description": "il valore corrente;", "value-description": "il valore corrente;",
"prev-value-description": "risultato della precedente chiamata alla funzione;", "prev-value-description": "risultato della precedente chiamata alla funzione;",
@ -640,11 +640,11 @@
"manage-credentials": "Gestisci credenziali", "manage-credentials": "Gestisci credenziali",
"delete": "Elimina dispositivo", "delete": "Elimina dispositivo",
"assign-devices": "Assegna dispositivi", "assign-devices": "Assegna dispositivi",
"assign-devices-text": "Assegna { count, plural, 1 {1 dispositivo} other {# dispositivi} } al cliente", "assign-devices-text": "Assegna { count, plural, =1 {1 dispositivo} other {# dispositivi} } al cliente",
"delete-devices": "Elimina dispositivi", "delete-devices": "Elimina dispositivi",
"unassign-from-customer": "Annulla assegnazione al cliente", "unassign-from-customer": "Annulla assegnazione al cliente",
"unassign-devices": "Annulla assegnazione dispositivi", "unassign-devices": "Annulla assegnazione dispositivi",
"unassign-devices-action-title": "Annulla assegnazione { count, plural, 1 {1 dispositivo} other {# dispositivi} } al cliente", "unassign-devices-action-title": "Annulla assegnazione { count, plural, =1 {1 dispositivo} other {# dispositivi} } al cliente",
"assign-new-device": "Assegna nuovo dispositivo", "assign-new-device": "Assegna nuovo dispositivo",
"make-public-device-title": "Sei sicuro di voler rendere pubblico il dispositivo '{{deviceName}}'?", "make-public-device-title": "Sei sicuro di voler rendere pubblico il dispositivo '{{deviceName}}'?",
"make-public-device-text": "Dopo la conferma il dispositivo e tutti i suoi dati saranno resi pubblici e accessibili dagli altri.", "make-public-device-text": "Dopo la conferma il dispositivo e tutti i suoi dati saranno resi pubblici e accessibili dagli altri.",
@ -653,13 +653,13 @@
"view-credentials": "Visualizza credenziali", "view-credentials": "Visualizza credenziali",
"delete-device-title": "Sei sicuro di voler eliminare il dispositivo '{{deviceName}}'?", "delete-device-title": "Sei sicuro di voler eliminare il dispositivo '{{deviceName}}'?",
"delete-device-text": "Attenzione, dopo la conferma il dispositivo e tutti i suoi dati non saranno più recuperabili.", "delete-device-text": "Attenzione, dopo la conferma il dispositivo e tutti i suoi dati non saranno più recuperabili.",
"delete-devices-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 dispositivo} other {# dispositivi} }?", "delete-devices-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 dispositivo} other {# dispositivi} }?",
"delete-devices-action-title": "Elimina { count, plural, 1 {1 dispositivo} other {# dispositivi} }", "delete-devices-action-title": "Elimina { count, plural, =1 {1 dispositivo} other {# dispositivi} }",
"delete-devices-text": "Attenzione, dopo la conferma tutti i dispositivi selezionati saranno eliminati e i relativi dati non saranno più recuperabili.", "delete-devices-text": "Attenzione, dopo la conferma tutti i dispositivi selezionati saranno eliminati e i relativi dati non saranno più recuperabili.",
"unassign-device-title": "Sei sicuro di voler annullare l'assegnazione del dispositivo '{{deviceName}}'?", "unassign-device-title": "Sei sicuro di voler annullare l'assegnazione del dispositivo '{{deviceName}}'?",
"unassign-device-text": "Dopo la conferma sarà annullata l'assegnazione del dispositivo e questo non sarà più accessibile dal cliente.", "unassign-device-text": "Dopo la conferma sarà annullata l'assegnazione del dispositivo e questo non sarà più accessibile dal cliente.",
"unassign-device": "Annulla assegnazione dispositivo", "unassign-device": "Annulla assegnazione dispositivo",
"unassign-devices-title": "Sei sicuro di voler annullare l'assegnazione di { count, plural, 1 {1 dispositivo} other {# dispositivi} }?", "unassign-devices-title": "Sei sicuro di voler annullare l'assegnazione di { count, plural, =1 {1 dispositivo} other {# dispositivi} }?",
"unassign-devices-text": "Dopo la conferma sarà annullata l'assegnazione di tutti i dispositivi selezionati e questi non saranno più accessibili dal cliente.", "unassign-devices-text": "Dopo la conferma sarà annullata l'assegnazione di tutti i dispositivi selezionati e questi non saranno più accessibili dal cliente.",
"device-credentials": "Credenziali Dispositivo", "device-credentials": "Credenziali Dispositivo",
"credentials-type": "Tipo credenziali", "credentials-type": "Tipo credenziali",
@ -747,55 +747,55 @@
"type-required": "Tipo entità obbligatorio.", "type-required": "Tipo entità obbligatorio.",
"type-device": "Dispositivo", "type-device": "Dispositivo",
"type-devices": "Dispositivi", "type-devices": "Dispositivi",
"list-of-devices": "{ count, plural, 1 {Un dispositivo} other {Lista di # dispositivi} }", "list-of-devices": "{ count, plural, =1 {Un dispositivo} other {Lista di # dispositivi} }",
"device-name-starts-with": "Dispositivi i cui nomi iniziano per '{{prefix}}'", "device-name-starts-with": "Dispositivi i cui nomi iniziano per '{{prefix}}'",
"type-asset": "Asset", "type-asset": "Asset",
"type-assets": "Asset", "type-assets": "Asset",
"list-of-assets": "{ count, plural, 1 {Un asset} other {Lista di # asset} }", "list-of-assets": "{ count, plural, =1 {Un asset} other {Lista di # asset} }",
"asset-name-starts-with": "Asset i cui nomi iniziano per '{{prefix}}'", "asset-name-starts-with": "Asset i cui nomi iniziano per '{{prefix}}'",
"type-entity-view": "Vista entità", "type-entity-view": "Vista entità",
"type-entity-views": "Viste entità", "type-entity-views": "Viste entità",
"list-of-entity-views": "{ count, plural, 1 {Una vista entità} other {Lista di # viste entità} }", "list-of-entity-views": "{ count, plural, =1 {Una vista entità} other {Lista di # viste entità} }",
"entity-view-name-starts-with": "Viste entità i cui nomi iniziano per '{{prefix}}'", "entity-view-name-starts-with": "Viste entità i cui nomi iniziano per '{{prefix}}'",
"type-rule": "Regola", "type-rule": "Regola",
"type-rules": "Regole", "type-rules": "Regole",
"list-of-rules": "{ count, plural, 1 {Una regola} other {Lista di # regole} }", "list-of-rules": "{ count, plural, =1 {Una regola} other {Lista di # regole} }",
"rule-name-starts-with": "Regole i cui nomi iniziano per '{{prefix}}'", "rule-name-starts-with": "Regole i cui nomi iniziano per '{{prefix}}'",
"type-plugin": "Plugin", "type-plugin": "Plugin",
"type-plugins": "Plugin", "type-plugins": "Plugin",
"list-of-plugins": "{ count, plural, 1 {Un plugin} other {Lista di # plugin} }", "list-of-plugins": "{ count, plural, =1 {Un plugin} other {Lista di # plugin} }",
"plugin-name-starts-with": "Plugin i cui nomi iniziano per '{{prefix}}'", "plugin-name-starts-with": "Plugin i cui nomi iniziano per '{{prefix}}'",
"type-tenant": "Tenant", "type-tenant": "Tenant",
"type-tenants": "Tenants", "type-tenants": "Tenants",
"list-of-tenants": "{ count, plural, 1 {One tenant} other {Lista di # tenants} }", "list-of-tenants": "{ count, plural, =1 {One tenant} other {Lista di # tenants} }",
"tenant-name-starts-with": "Tenants whose names start with '{{prefix}}'", "tenant-name-starts-with": "Tenants whose names start with '{{prefix}}'",
"type-customer": "Cliente", "type-customer": "Cliente",
"type-customers": "Clienti", "type-customers": "Clienti",
"list-of-customers": "{ count, plural, 1 {Un cliente} other {Lista di # clienti} }", "list-of-customers": "{ count, plural, =1 {Un cliente} other {Lista di # clienti} }",
"customer-name-starts-with": "Clienti i cui nomi iniziano per '{{prefix}}'", "customer-name-starts-with": "Clienti i cui nomi iniziano per '{{prefix}}'",
"type-user": "Utente", "type-user": "Utente",
"type-users": "Utenti", "type-users": "Utenti",
"list-of-users": "{ count, plural, 1 {Un utente} other {Lista di # utenti} }", "list-of-users": "{ count, plural, =1 {Un utente} other {Lista di # utenti} }",
"user-name-starts-with": "Utenti i cui nomi iniziano per '{{prefix}}'", "user-name-starts-with": "Utenti i cui nomi iniziano per '{{prefix}}'",
"type-dashboard": "Dashboard", "type-dashboard": "Dashboard",
"type-dashboards": "Dashboard", "type-dashboards": "Dashboard",
"list-of-dashboards": "{ count, plural, 1 {Una dashboard} other {Lista di # dashboard} }", "list-of-dashboards": "{ count, plural, =1 {Una dashboard} other {Lista di # dashboard} }",
"dashboard-name-starts-with": "Dashboard i cui nomi iniziano per '{{prefix}}'", "dashboard-name-starts-with": "Dashboard i cui nomi iniziano per '{{prefix}}'",
"type-alarm": "Allarme", "type-alarm": "Allarme",
"type-alarms": "Allarmi", "type-alarms": "Allarmi",
"list-of-alarms": "{ count, plural, 1 {Un allarme} other {Lista di # allarmi} }", "list-of-alarms": "{ count, plural, =1 {Un allarme} other {Lista di # allarmi} }",
"alarm-name-starts-with": "Allarmi i cui nomi iniziano per '{{prefix}}'", "alarm-name-starts-with": "Allarmi i cui nomi iniziano per '{{prefix}}'",
"type-rulechain": "Rule chain", "type-rulechain": "Rule chain",
"type-rulechains": "Rule chain", "type-rulechains": "Rule chain",
"list-of-rulechains": "{ count, plural, 1 {Una rule chain} other {Lista di # catene di regole} }", "list-of-rulechains": "{ count, plural, =1 {Una rule chain} other {Lista di # catene di regole} }",
"rulechain-name-starts-with": "Catene di regole i cui nomi iniziano per '{{prefix}}'", "rulechain-name-starts-with": "Catene di regole i cui nomi iniziano per '{{prefix}}'",
"type-rulenode": "Nodo regola", "type-rulenode": "Nodo regola",
"type-rulenodes": "Nodi regola", "type-rulenodes": "Nodi regola",
"list-of-rulenodes": "{ count, plural, 1 {Un nodo regola} other {Lista di # nodi regola} }", "list-of-rulenodes": "{ count, plural, =1 {Un nodo regola} other {Lista di # nodi regola} }",
"rulenode-name-starts-with": "Nodi regola i cui nomi iniziano per '{{prefix}}'", "rulenode-name-starts-with": "Nodi regola i cui nomi iniziano per '{{prefix}}'",
"type-current-customer": "Cliente attuale", "type-current-customer": "Cliente attuale",
"search": "Ricerca entità", "search": "Ricerca entità",
"selected-entities": "{ count, plural, 1 {1 entità selezionata} other {# entità selezionate} }", "selected-entities": "{ count, plural, =1 {1 entità selezionata} other {# entità selezionate} }",
"entity-name": "Nome entità", "entity-name": "Nome entità",
"details": "Dettagli entità", "details": "Dettagli entità",
"no-entities-prompt": "Nessuna entità trovata", "no-entities-prompt": "Nessuna entità trovata",
@ -839,21 +839,21 @@
"add-entity-view-text": "Aggiungi nuova vista entità", "add-entity-view-text": "Aggiungi nuova vista entità",
"delete": "Elimina vista entità", "delete": "Elimina vista entità",
"assign-entity-views": "Assegna viste entità", "assign-entity-views": "Assegna viste entità",
"assign-entity-views-text": "Assegna { count, plural, 1 {1 vista entità} other {# viste entità} } al cliente", "assign-entity-views-text": "Assegna { count, plural, =1 {1 vista entità} other {# viste entità} } al cliente",
"delete-entity-views": "Elimina viste entità", "delete-entity-views": "Elimina viste entità",
"unassign-from-customer": "Annulla assegnazione al cliente", "unassign-from-customer": "Annulla assegnazione al cliente",
"unassign-entity-views": "Annulla assegnazione viste entità", "unassign-entity-views": "Annulla assegnazione viste entità",
"unassign-entity-views-action-title": "Annulla assegnazione { count, plural, 1 {1 vista entità} other {# viste entità} } al cliente", "unassign-entity-views-action-title": "Annulla assegnazione { count, plural, =1 {1 vista entità} other {# viste entità} } al cliente",
"assign-new-entity-view": "Assegna nuova vista entità", "assign-new-entity-view": "Assegna nuova vista entità",
"delete-entity-view-title": "Sei sicuro di voler eliminare la vista entità '{{entity-viewName}}'?", "delete-entity-view-title": "Sei sicuro di voler eliminare la vista entità '{{entity-viewName}}'?",
"delete-entity-view-text": "Attenzione, dopo la conferma la vista entità e tutti i suoi dati non saranno più recuperabili.", "delete-entity-view-text": "Attenzione, dopo la conferma la vista entità e tutti i suoi dati non saranno più recuperabili.",
"delete-entity-views-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 vista entità} other {# viste entità} }?", "delete-entity-views-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 vista entità} other {# viste entità} }?",
"delete-entity-views-action-title": "Elimina { count, plural, 1 {1 vista entità} other {# viste entità} }", "delete-entity-views-action-title": "Elimina { count, plural, =1 {1 vista entità} other {# viste entità} }",
"delete-entity-views-text": "Attenzione, dopo la conferma tutte le vista entità selezionati saranno eliminate e i relativi dati non saranno più recuperabili.", "delete-entity-views-text": "Attenzione, dopo la conferma tutte le vista entità selezionati saranno eliminate e i relativi dati non saranno più recuperabili.",
"unassign-entity-view-title": "Sei sicuro di voler annullare l'assegnazione della vista entità '{{entity-viewName}}'?", "unassign-entity-view-title": "Sei sicuro di voler annullare l'assegnazione della vista entità '{{entity-viewName}}'?",
"unassign-entity-view-text": "Dopo la conferma sarà annullata l'assegnazione della vista entità e questa non sarà più accessibile dal cliente.", "unassign-entity-view-text": "Dopo la conferma sarà annullata l'assegnazione della vista entità e questa non sarà più accessibile dal cliente.",
"unassign-entity-view": "Annulla assegnazione vista entità", "unassign-entity-view": "Annulla assegnazione vista entità",
"unassign-entity-views-title": "Sei sicuro di voler annullare l'assegnazione di { count, plural, 1 {1 vista entità} other {# viste entità} }?", "unassign-entity-views-title": "Sei sicuro di voler annullare l'assegnazione di { count, plural, =1 {1 vista entità} other {# viste entità} }?",
"unassign-entity-views-text": "Dopo la conferma sarà annullata l'assegnazione di tutte le vista entità selezionate e queste non saranno più accessibili dal cliente.", "unassign-entity-views-text": "Dopo la conferma sarà annullata l'assegnazione di tutte le vista entità selezionate e queste non saranno più accessibili dal cliente.",
"entity-view-type": "Tipo vista entità", "entity-view-type": "Tipo vista entità",
"entity-view-type-required": "Tipo vista entità obbligatorio.", "entity-view-type-required": "Tipo vista entità obbligatorio.",
@ -930,7 +930,7 @@
}, },
"extension": { "extension": {
"extensions": "Estensioni", "extensions": "Estensioni",
"selected-extensions": "{ count, plural, 1 {1 estensione selezionata} other {# estensioni selezionate} }", "selected-extensions": "{ count, plural, =1 {1 estensione selezionata} other {# estensioni selezionate} }",
"type": "Tipo", "type": "Tipo",
"key": "Chiave", "key": "Chiave",
"value": "Valore", "value": "Valore",
@ -944,7 +944,7 @@
"edit": "Modifica estensione", "edit": "Modifica estensione",
"delete-extension-title": "Sei sicuro di voler eliminare l'estensione '{{extensionId}}'?", "delete-extension-title": "Sei sicuro di voler eliminare l'estensione '{{extensionId}}'?",
"delete-extension-text": "Attenzione, dopo la conferma l'estensione e tutti i suoi data non saranno più recuperabili.", "delete-extension-text": "Attenzione, dopo la conferma l'estensione e tutti i suoi data non saranno più recuperabili.",
"delete-extensions-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 estensione} other {# estensioni} }?", "delete-extensions-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 estensione} other {# estensioni} }?",
"delete-extensions-text": "Attenzione, dopo la conferma tutte le estensioni selezionate saranno eliminate.", "delete-extensions-text": "Attenzione, dopo la conferma tutte le estensioni selezionate saranno eliminate.",
"converters": "Convertitori", "converters": "Convertitori",
"converter-id": "Id convertitore", "converter-id": "Id convertitore",
@ -1097,8 +1097,8 @@
"grid": { "grid": {
"delete-item-title": "Sei sicuro di voler eliminare questo elemento?", "delete-item-title": "Sei sicuro di voler eliminare questo elemento?",
"delete-item-text": "Attenzione, dopo la conferma questo elemento e tutti i suoi dati non saranno più recuperabili.", "delete-item-text": "Attenzione, dopo la conferma questo elemento e tutti i suoi dati non saranno più recuperabili.",
"delete-items-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 elemento} other {# elementi} }?", "delete-items-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 elemento} other {# elementi} }?",
"delete-items-action-title": "Elimina { count, plural, 1 {1 elemento} other {# elementi} }", "delete-items-action-title": "Elimina { count, plural, =1 {1 elemento} other {# elementi} }",
"delete-items-text": "Attenzione, dopo la conferma tutti gli elementi selezionati saranno rimossi e i relativi dati non saranno più recuperabili.", "delete-items-text": "Attenzione, dopo la conferma tutti gli elementi selezionati saranno rimossi e i relativi dati non saranno più recuperabili.",
"add-item-text": "Aggiungi nuovo elemento", "add-item-text": "Aggiungi nuovo elemento",
"no-items-text": "Nessun elemento trovato", "no-items-text": "Nessun elemento trovato",
@ -1203,7 +1203,7 @@
}, },
"from-relations": "Relazioni in uscita", "from-relations": "Relazioni in uscita",
"to-relations": "Relazioni in ingresso", "to-relations": "Relazioni in ingresso",
"selected-relations": "{ count, plural, 1 {1 relazione selezionata} other {# relazioni selezionate} }", "selected-relations": "{ count, plural, =1 {1 relazione selezionata} other {# relazioni selezionate} }",
"type": "Tipo", "type": "Tipo",
"to-entity-type": "A tipo entità", "to-entity-type": "A tipo entità",
"to-entity-name": "A nome entità", "to-entity-name": "A nome entità",
@ -1219,11 +1219,11 @@
"edit": "Modifica relazione", "edit": "Modifica relazione",
"delete-to-relation-title": "Sei sicuro di voler eliminare la relazione con l'entità '{{entityName}}'?", "delete-to-relation-title": "Sei sicuro di voler eliminare la relazione con l'entità '{{entityName}}'?",
"delete-to-relation-text": "Attenzione, dopo la conferma l'entità '{{entityName}}' sarà scollegata dall'entità corrente.", "delete-to-relation-text": "Attenzione, dopo la conferma l'entità '{{entityName}}' sarà scollegata dall'entità corrente.",
"delete-to-relations-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 relazione} other {# relazioni} }?", "delete-to-relations-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 relazione} other {# relazioni} }?",
"delete-to-relations-text": "Attenzione, dopo la conferma tutte le relazioni selezionate saranno rimosse e le corrispondenti entità scollegate da quella corrente.", "delete-to-relations-text": "Attenzione, dopo la conferma tutte le relazioni selezionate saranno rimosse e le corrispondenti entità scollegate da quella corrente.",
"delete-from-relation-title": "Sei sicuro di voler eliminare la relazione dall'entità '{{entityName}}'?", "delete-from-relation-title": "Sei sicuro di voler eliminare la relazione dall'entità '{{entityName}}'?",
"delete-from-relation-text": "Attenzione, dopo la conferma l'entità corrente sarà scollegata dall'entità '{{entityName}}'.", "delete-from-relation-text": "Attenzione, dopo la conferma l'entità corrente sarà scollegata dall'entità '{{entityName}}'.",
"delete-from-relations-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 relazione} other {# relazioni} }?", "delete-from-relations-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 relazione} other {# relazioni} }?",
"delete-from-relations-text": "Attenzione, dopo la conferma tutte le relazioni selezionate saranno rimosse e l'entità corrente scollegata dalle corrispondenti entità.", "delete-from-relations-text": "Attenzione, dopo la conferma tutte le relazioni selezionate saranno rimosse e l'entità corrente scollegata dalle corrispondenti entità.",
"remove-relation-filter": "Rimuovi filtro relazioni", "remove-relation-filter": "Rimuovi filtro relazioni",
"add-relation-filter": "Aggiungi filtro relazioni", "add-relation-filter": "Aggiungi filtro relazioni",
@ -1246,8 +1246,8 @@
"set-root-rulechain-text": "Dopo la conferma la rule chain diverrà root a gestirà tutti i messaggi in arrivo.", "set-root-rulechain-text": "Dopo la conferma la rule chain diverrà root a gestirà tutti i messaggi in arrivo.",
"delete-rulechain-title": "Sei sicuro di voler eliminare la rule chain '{{ruleChainName}}'?", "delete-rulechain-title": "Sei sicuro di voler eliminare la rule chain '{{ruleChainName}}'?",
"delete-rulechain-text": "Attenzione, dopo la conferma la rule chain e tutti i dati relativi non saranno più recuperabili.", "delete-rulechain-text": "Attenzione, dopo la conferma la rule chain e tutti i dati relativi non saranno più recuperabili.",
"delete-rulechains-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 rule chain} other {# rule chain} }?", "delete-rulechains-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 rule chain} other {# rule chain} }?",
"delete-rulechains-action-title": "Elimina { count, plural, 1 {1 rule chain} other {# rule chain} }", "delete-rulechains-action-title": "Elimina { count, plural, =1 {1 rule chain} other {# rule chain} }",
"delete-rulechains-text": "Attenzione, dopo la conferma tutte le rule chain selezionate saranno rimosse e tutti i relativi dati non saranno più recuperabili.", "delete-rulechains-text": "Attenzione, dopo la conferma tutte le rule chain selezionate saranno rimosse e tutti i relativi dati non saranno più recuperabili.",
"add-rulechain-text": "Aggiungi nuova rule chain", "add-rulechain-text": "Aggiungi nuova rule chain",
"no-rulechains-text": "Nessuna rule chain trovata", "no-rulechains-text": "Nessuna rule chain trovata",
@ -1345,8 +1345,8 @@
"tenant-details": "Dettagli tenant", "tenant-details": "Dettagli tenant",
"delete-tenant-title": "Sei sicuro di voler eliminare il tenant '{{tenantTitle}}'?", "delete-tenant-title": "Sei sicuro di voler eliminare il tenant '{{tenantTitle}}'?",
"delete-tenant-text": "Attenzione, dopo la conferma il tenant e tutti i suoi dati non saranno più recuperabili.", "delete-tenant-text": "Attenzione, dopo la conferma il tenant e tutti i suoi dati non saranno più recuperabili.",
"delete-tenants-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 tenant} other {# tenant} }?", "delete-tenants-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 tenant} other {# tenant} }?",
"delete-tenants-action-title": "Elimina { count, plural, 1 {1 tenant} other {# tenant} }", "delete-tenants-action-title": "Elimina { count, plural, =1 {1 tenant} other {# tenant} }",
"delete-tenants-text": "Attenzione, dopo la conferma tutti i tenant selezionati saranno eliminati e tutti i loro dati non saranno più recuperabili.", "delete-tenants-text": "Attenzione, dopo la conferma tutti i tenant selezionati saranno eliminati e tutti i loro dati non saranno più recuperabili.",
"title": "Titolo", "title": "Titolo",
"title-required": "Titolo obbligatorio.", "title-required": "Titolo obbligatorio.",
@ -1360,10 +1360,10 @@
"tenant-required": "Tenant obbligatorio" "tenant-required": "Tenant obbligatorio"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 secondo} other {# secondi} }", "seconds-interval": "{ seconds, plural, =1 {1 secondo} other {# secondi} }",
"minutes-interval": "{ minutes, plural, 1 {1 minuto} other {# minuti} }", "minutes-interval": "{ minutes, plural, =1 {1 minuto} other {# minuti} }",
"hours-interval": "{ hours, plural, 1 {1 ora} other {# ore} }", "hours-interval": "{ hours, plural, =1 {1 ora} other {# ore} }",
"days-interval": "{ days, plural, 1 {1 giorno} other {# giorni} }", "days-interval": "{ days, plural, =1 {1 giorno} other {# giorni} }",
"days": "Giorni", "days": "Giorni",
"hours": "Ore", "hours": "Ore",
"minutes": "Minuti", "minutes": "Minuti",
@ -1371,10 +1371,10 @@
"advanced": "Avanzate" "advanced": "Avanzate"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { giorno } other {# giorni } }", "days": "{ days, plural, =1 { giorno } other {# giorni } }",
"hours": "{ hours, plural, 0 { ora } 1 {1 ora } other {# ore } }", "hours": "{ hours, plural, =0 { ora } =1 {1 ora } other {# ore } }",
"minutes": "{ minutes, plural, 0 { minuto } 1 {1 minuto } other {# minuti } }", "minutes": "{ minutes, plural, =0 { minuto } =1 {1 minuto } other {# minuti } }",
"seconds": "{ seconds, plural, 0 { secondo } 1 {1 secondo } other {# secondi } }", "seconds": "{ seconds, plural, =0 { secondo } =1 {1 secondo } other {# secondi } }",
"realtime": "Realtime", "realtime": "Realtime",
"history": "Cronologia", "history": "Cronologia",
"last-prefix": "ultimo", "last-prefix": "ultimo",
@ -1401,8 +1401,8 @@
"user-details": "Dettagli utente", "user-details": "Dettagli utente",
"delete-user-title": "Sei sicuro di voler eliminare l'utente '{{userEmail}}'?", "delete-user-title": "Sei sicuro di voler eliminare l'utente '{{userEmail}}'?",
"delete-user-text": "Attenzione, dopo la conferma l'utente e tutti i suoi dati non saranno più recuperabili.", "delete-user-text": "Attenzione, dopo la conferma l'utente e tutti i suoi dati non saranno più recuperabili.",
"delete-users-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 utente} other {# utenti} }?", "delete-users-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 utente} other {# utenti} }?",
"delete-users-action-title": "Elimina { count, plural, 1 {1 utente} other {# utenti} }", "delete-users-action-title": "Elimina { count, plural, =1 {1 utente} other {# utenti} }",
"delete-users-text": "Attenzione, dopo la conferma tutti gli utenti selezionati saranno eliminati e tutti i relativi dati non saranno più recuperabili.", "delete-users-text": "Attenzione, dopo la conferma tutti gli utenti selezionati saranno eliminati e tutti i relativi dati non saranno più recuperabili.",
"activation-email-sent-message": "Email di attivazione inviata con successo!", "activation-email-sent-message": "Email di attivazione inviata con successo!",
"resend-activation": "Invia di nuovo attivazione", "resend-activation": "Invia di nuovo attivazione",
@ -1525,8 +1525,8 @@
"widgets-bundle-details": "Dettagli bundle widget", "widgets-bundle-details": "Dettagli bundle widget",
"delete-widgets-bundle-title": "Sei sicuro di voler eliminare il bundle widget '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Sei sicuro di voler eliminare il bundle widget '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Attenzione, dopo la conferma il bundle widget e tutti i suoi dati non saranno più recuperabili.", "delete-widgets-bundle-text": "Attenzione, dopo la conferma il bundle widget e tutti i suoi dati non saranno più recuperabili.",
"delete-widgets-bundles-title": "Sei sicuro di voler eliminare { count, plural, 1 {1 bundle widget} other {# bundle widget} }?", "delete-widgets-bundles-title": "Sei sicuro di voler eliminare { count, plural, =1 {1 bundle widget} other {# bundle widget} }?",
"delete-widgets-bundles-action-title": "Elimina { count, plural, 1 {1 bundle widget} other {# bundle widget} }", "delete-widgets-bundles-action-title": "Elimina { count, plural, =1 {1 bundle widget} other {# bundle widget} }",
"delete-widgets-bundles-text": "Attenzione, dopo la conferma tutti i bundle widget selezionati saranno rimossi e tutti i loro dati non saranno più recuperabili.", "delete-widgets-bundles-text": "Attenzione, dopo la conferma tutti i bundle widget selezionati saranno rimossi e tutti i loro dati non saranno più recuperabili.",
"no-widgets-bundles-matching": "Nessun bundle widget corrispondente a '{{widgetsBundle}}' è stato trovato.", "no-widgets-bundles-matching": "Nessun bundle widget corrispondente a '{{widgetsBundle}}' è stato trovato.",
"widgets-bundle-required": "Bundle widget obbligatorio.", "widgets-bundle-required": "Bundle widget obbligatorio.",
@ -1564,7 +1564,7 @@
"display-timewindow": "Mostra intervallo temporale", "display-timewindow": "Mostra intervallo temporale",
"display-legend": "Mostra legenda", "display-legend": "Mostra legenda",
"datasources": "Sorgenti dei dati", "datasources": "Sorgenti dei dati",
"maximum-datasources": "Massimo { count, plural, 1 {1 sorgente dati consentita.} other {# sorgenti dati consentite} }", "maximum-datasources": "Massimo { count, plural, =1 {1 sorgente dati consentita.} other {# sorgenti dati consentite} }",
"datasource-type": "Tipo", "datasource-type": "Tipo",
"datasource-parameters": "Parametri", "datasource-parameters": "Parametri",
"remove-datasource": "Rimuovi sorgente dati", "remove-datasource": "Rimuovi sorgente dati",

130
ui-ngx/src/assets/locale/locale.constant-ja_JP.json

@ -127,15 +127,15 @@
"acknowledge": "認める", "acknowledge": "認める",
"clear": "クリア", "clear": "クリア",
"search": "アラームの検索", "search": "アラームの検索",
"selected-alarms": "{ count, plural, 1 {1 alarm} other {# alarms} }選択された", "selected-alarms": "{ count, plural, =1 {1 alarm} other {# alarms} }選択された",
"no-data": "表示するデータがありません", "no-data": "表示するデータがありません",
"polling-interval": "アラームポーリング間隔(秒)", "polling-interval": "アラームポーリング間隔(秒)",
"polling-interval-required": "アラームのポーリング間隔が必要です。", "polling-interval-required": "アラームのポーリング間隔が必要です。",
"min-polling-interval-message": "少なくとも1秒間のポーリング間隔が許可されます。", "min-polling-interval-message": "少なくとも1秒間のポーリング間隔が許可されます。",
"aknowledge-alarms-title": "{ count, plural, 1 {1 alarm} other {# alarms} }", "aknowledge-alarms-title": "{ count, plural, =1 {1 alarm} other {# alarms} }",
"aknowledge-alarms-text": "{ count, plural, 1 {1 alarm} other {# alarms} }?", "aknowledge-alarms-text": "{ count, plural, =1 {1 alarm} other {# alarms} }?",
"clear-alarms-title": "{ count, plural, 1 {1 alarm} other {# alarms} }", "clear-alarms-title": "{ count, plural, =1 {1 alarm} other {# alarms} }",
"clear-alarms-text": "{ count, plural, 1 {1 alarm} other {# alarms} }?" "clear-alarms-text": "{ count, plural, =1 {1 alarm} other {# alarms} }?"
}, },
"alias": { "alias": {
"add": "エイリアスを追加する", "add": "エイリアスを追加する",
@ -213,15 +213,15 @@
"add-asset-text": "新しいアセットを追加する", "add-asset-text": "新しいアセットを追加する",
"asset-details": "資産の詳細", "asset-details": "資産の詳細",
"assign-assets": "アセットの割り当て", "assign-assets": "アセットの割り当て",
"assign-assets-text": "{ count, plural, 1 {1 asset} other {# assets} }顧客に", "assign-assets-text": "{ count, plural, =1 {1 asset} other {# assets} }顧客に",
"delete-assets": "アセットを削除する", "delete-assets": "アセットを削除する",
"unassign-assets": "アセットの割り当てを解除する", "unassign-assets": "アセットの割り当てを解除する",
"unassign-assets-action-title": "{ count, plural, 1 {1 asset} other {# assets} }顧客から", "unassign-assets-action-title": "{ count, plural, =1 {1 asset} other {# assets} }顧客から",
"assign-new-asset": "新しいアセットを割り当てる", "assign-new-asset": "新しいアセットを割り当てる",
"delete-asset-title": "'{{assetName}}'?", "delete-asset-title": "'{{assetName}}'?",
"delete-asset-text": "確認後、資産と関連するすべてのデータが回復不能になることに注意してください。", "delete-asset-text": "確認後、資産と関連するすべてのデータが回復不能になることに注意してください。",
"delete-assets-title": "{ count, plural, 1 {1 asset} other {# assets} }?", "delete-assets-title": "{ count, plural, =1 {1 asset} other {# assets} }?",
"delete-assets-action-title": "{ count, plural, 1 {1 asset} other {# assets} }", "delete-assets-action-title": "{ count, plural, =1 {1 asset} other {# assets} }",
"delete-assets-text": "確認後、選択したすべての資産が削除され、関連するすべてのデータは回復不能になりますので注意してください。", "delete-assets-text": "確認後、選択したすべての資産が削除され、関連するすべてのデータは回復不能になりますので注意してください。",
"make-public-asset-title": "'{{assetName}}'パブリック?", "make-public-asset-title": "'{{assetName}}'パブリック?",
"make-public-asset-text": "確認後、資産とそのすべてのデータは公開され、他の人がアクセスできるようになります。", "make-public-asset-text": "確認後、資産とそのすべてのデータは公開され、他の人がアクセスできるようになります。",
@ -230,7 +230,7 @@
"unassign-asset-title": "'{{assetName}}'?", "unassign-asset-title": "'{{assetName}}'?",
"unassign-asset-text": "確認後、資産は割り当て解除され、顧客はアクセスできなくなります。", "unassign-asset-text": "確認後、資産は割り当て解除され、顧客はアクセスできなくなります。",
"unassign-asset": "アセットの割り当てを解除する", "unassign-asset": "アセットの割り当てを解除する",
"unassign-assets-title": "{ count, plural, 1 {1 asset} other {# assets} }?", "unassign-assets-title": "{ count, plural, =1 {1 asset} other {# assets} }?",
"unassign-assets-text": "確認後、選択されたすべての資産が割り当て解除され、顧客がアクセスできなくなります。", "unassign-assets-text": "確認後、選択されたすべての資産が割り当て解除され、顧客がアクセスできなくなります。",
"copyId": "アセットIDをコピーする", "copyId": "アセットIDをコピーする",
"idCopiedMessage": "アセットIDがクリップボードにコピーされました", "idCopiedMessage": "アセットIDがクリップボードにコピーされました",
@ -254,7 +254,7 @@
"key-required": "属性キーは必須です。", "key-required": "属性キーは必須です。",
"value": "値", "value": "値",
"value-required": "属性値は必須です。", "value-required": "属性値は必須です。",
"delete-attributes-title": "{ count, plural, 1 {1 attribute} other {# attributes} }?", "delete-attributes-title": "{ count, plural, =1 {1 attribute} other {# attributes} }?",
"delete-attributes-text": "注意してください。確認後、選択したすべての属性が削除されます。", "delete-attributes-text": "注意してください。確認後、選択したすべての属性が削除されます。",
"delete-attributes": "属性を削除する", "delete-attributes": "属性を削除する",
"enter-attribute-value": "属性値を入力", "enter-attribute-value": "属性値を入力",
@ -264,8 +264,8 @@
"prev-widget": "前のウィジェット", "prev-widget": "前のウィジェット",
"add-to-dashboard": "ダッシュボードに追加", "add-to-dashboard": "ダッシュボードに追加",
"add-widget-to-dashboard": "ウィジェットをダッシュ​​ボードに追加する", "add-widget-to-dashboard": "ウィジェットをダッシュ​​ボードに追加する",
"selected-attributes": "{ count, plural, 1 {1 attribute} other {# attributes} }選択された", "selected-attributes": "{ count, plural, =1 {1 attribute} other {# attributes} }選択された",
"selected-telemetry": "{ count, plural, 1 {1 telemetry unit} other {# telemetry units} }選択された" "selected-telemetry": "{ count, plural, =1 {1 telemetry unit} other {# telemetry units} }選択された"
}, },
"audit-log": { "audit-log": {
"audit": "監査", "audit": "監査",
@ -359,8 +359,8 @@
"customer-details": "お客様情報", "customer-details": "お客様情報",
"delete-customer-title": "'{{customerTitle}}'?", "delete-customer-title": "'{{customerTitle}}'?",
"delete-customer-text": "確認後、お客様および関連するすべてのデータが回復不能になるので注意してください。", "delete-customer-text": "確認後、お客様および関連するすべてのデータが回復不能になるので注意してください。",
"delete-customers-title": "{ count, plural, 1 {1 customer} other {# customers} }?", "delete-customers-title": "{ count, plural, =1 {1 customer} other {# customers} }?",
"delete-customers-action-title": "{ count, plural, 1 {1 customer} other {# customers} }", "delete-customers-action-title": "{ count, plural, =1 {1 customer} other {# customers} }",
"delete-customers-text": "確認後、選択したすべての顧客は削除され、関連するすべてのデータは回復不能になります。", "delete-customers-text": "確認後、選択したすべての顧客は削除され、関連するすべてのデータは回復不能になります。",
"manage-users": "ユーザーを管理する", "manage-users": "ユーザーを管理する",
"manage-assets": "アセットを管理する", "manage-assets": "アセットを管理する",
@ -419,20 +419,20 @@
"add-dashboard-text": "新しいダッシュボードを追加する", "add-dashboard-text": "新しいダッシュボードを追加する",
"assign-dashboards": "ダッシュボードの割り当て", "assign-dashboards": "ダッシュボードの割り当て",
"assign-new-dashboard": "新しいダッシュボードを割り当てる", "assign-new-dashboard": "新しいダッシュボードを割り当てる",
"assign-dashboards-text": "{ count, plural, 1 {1 dashboard} other {# dashboards} }顧客に", "assign-dashboards-text": "{ count, plural, =1 {1 dashboard} other {# dashboards} }顧客に",
"unassign-dashboards-action-text": "{ count, plural, 1 {1 dashboard} other {# dashboards} }顧客から", "unassign-dashboards-action-text": "{ count, plural, =1 {1 dashboard} other {# dashboards} }顧客から",
"delete-dashboards": "ダッシュボードの削除", "delete-dashboards": "ダッシュボードの削除",
"unassign-dashboards": "ダッシュボードの割り当てを解除する", "unassign-dashboards": "ダッシュボードの割り当てを解除する",
"unassign-dashboards-action-title": "{ count, plural, 1 {1 dashboard} other {# dashboards} }顧客から", "unassign-dashboards-action-title": "{ count, plural, =1 {1 dashboard} other {# dashboards} }顧客から",
"delete-dashboard-title": "'{{dashboardTitle}}'?", "delete-dashboard-title": "'{{dashboardTitle}}'?",
"delete-dashboard-text": "確認後、ダッシュボードとすべての関連データが回復不能になるので注意してください。", "delete-dashboard-text": "確認後、ダッシュボードとすべての関連データが回復不能になるので注意してください。",
"delete-dashboards-title": "{ count, plural, 1 {1 dashboard} other {# dashboards} }?", "delete-dashboards-title": "{ count, plural, =1 {1 dashboard} other {# dashboards} }?",
"delete-dashboards-action-title": "{ count, plural, 1 {1 dashboard} other {# dashboards} }", "delete-dashboards-action-title": "{ count, plural, =1 {1 dashboard} other {# dashboards} }",
"delete-dashboards-text": "注意してください。確認後、選択したダッシュボードはすべて削除され、関連するすべてのデータは回復不能になります。", "delete-dashboards-text": "注意してください。確認後、選択したダッシュボードはすべて削除され、関連するすべてのデータは回復不能になります。",
"unassign-dashboard-title": "'{{dashboardTitle}}'?", "unassign-dashboard-title": "'{{dashboardTitle}}'?",
"unassign-dashboard-text": "確認後、ダッシュボードは割り当てられなくなり、顧客はアクセスできなくなります。", "unassign-dashboard-text": "確認後、ダッシュボードは割り当てられなくなり、顧客はアクセスできなくなります。",
"unassign-dashboard": "ダッシュボードの割り当てを解除する", "unassign-dashboard": "ダッシュボードの割り当てを解除する",
"unassign-dashboards-title": "{ count, plural, 1 {1 dashboard} other {# dashboards} }?", "unassign-dashboards-title": "{ count, plural, =1 {1 dashboard} other {# dashboards} }?",
"unassign-dashboards-text": "確認の後、選択したすべてのダッシュボードは割り当てられなくなり、顧客はアクセスできなくなります。", "unassign-dashboards-text": "確認の後、選択したすべてのダッシュボードは割り当てられなくなり、顧客はアクセスできなくなります。",
"public-dashboard-title": "ダッシュボードは公開されました", "public-dashboard-title": "ダッシュボードは公開されました",
"public-dashboard-text": "<b>{{dashboardTitle}}</b> is now public and accessible via next public <a href='{{publicLink}}' target='_blank'>link</a>:", "public-dashboard-text": "<b>{{dashboardTitle}}</b> is now public and accessible via next public <a href='{{publicLink}}' target='_blank'>link</a>:",
@ -509,7 +509,7 @@
"manage-states": "ダッシュボードの状態を管理する", "manage-states": "ダッシュボードの状態を管理する",
"states": "ダッシュボードの状態", "states": "ダッシュボードの状態",
"search-states": "検索ダッシュボードの状態", "search-states": "検索ダッシュボードの状態",
"selected-states": "{ count, plural, 1 {1 dashboard state} other {# dashboard states} }選択された", "selected-states": "{ count, plural, =1 {1 dashboard state} other {# dashboard states} }選択された",
"edit-state": "ダッシュボードの状態を編集する", "edit-state": "ダッシュボードの状態を編集する",
"delete-state": "ダッシュボードの状態を削除する", "delete-state": "ダッシュボードの状態を削除する",
"add-state": "ダッシュボードの状態を追加する", "add-state": "ダッシュボードの状態を追加する",
@ -542,11 +542,11 @@
"alarm": "アラームフィールド", "alarm": "アラームフィールド",
"timeseries-required": "エンティティの時系列データが必要です。", "timeseries-required": "エンティティの時系列データが必要です。",
"timeseries-or-attributes-required": "エンティティのtimeseries /属性は必須です。", "timeseries-or-attributes-required": "エンティティのtimeseries /属性は必須です。",
"maximum-timeseries-or-attributes": "{ count, plural, 1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }", "maximum-timeseries-or-attributes": "{ count, plural, =1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }",
"alarm-fields-required": "アラームフィールドが必要です。", "alarm-fields-required": "アラームフィールドが必要です。",
"function-types": "関数型", "function-types": "関数型",
"function-types-required": "関数型が必要です。", "function-types-required": "関数型が必要です。",
"maximum-function-types": "{ count, plural, 1 {1 function type is allowed.} other {# function types are allowed} }" "maximum-function-types": "{ count, plural, =1 {1 function type is allowed.} other {# function types are allowed} }"
}, },
"datasource": { "datasource": {
"type": "データソースタイプ", "type": "データソースタイプ",
@ -598,11 +598,11 @@
"manage-credentials": "資格情報を管理する", "manage-credentials": "資格情報を管理する",
"delete": "デバイスを削除する", "delete": "デバイスを削除する",
"assign-devices": "デバイスを割り当てる", "assign-devices": "デバイスを割り当てる",
"assign-devices-text": "{ count, plural, 1 {1 device} other {# devices} }顧客に", "assign-devices-text": "{ count, plural, =1 {1 device} other {# devices} }顧客に",
"delete-devices": "デバイスを削除する", "delete-devices": "デバイスを削除する",
"unassign-from-customer": "顧客からの割り当て解除", "unassign-from-customer": "顧客からの割り当て解除",
"unassign-devices": "デバイスの割り当てを解除する", "unassign-devices": "デバイスの割り当てを解除する",
"unassign-devices-action-title": "{ count, plural, 1 {1 device} other {# devices} }顧客から", "unassign-devices-action-title": "{ count, plural, =1 {1 device} other {# devices} }顧客から",
"assign-new-device": "新しいデバイスを割り当てる", "assign-new-device": "新しいデバイスを割り当てる",
"make-public-device-title": "'{{deviceName}}'パブリック?", "make-public-device-title": "'{{deviceName}}'パブリック?",
"make-public-device-text": "確認後、デバイスとそのすべてのデータは公開され、他のユーザーがアクセスできるようになります。", "make-public-device-text": "確認後、デバイスとそのすべてのデータは公開され、他のユーザーがアクセスできるようになります。",
@ -611,13 +611,13 @@
"view-credentials": "資格情報を表示する", "view-credentials": "資格情報を表示する",
"delete-device-title": "'{{deviceName}}'?", "delete-device-title": "'{{deviceName}}'?",
"delete-device-text": "確認後、デバイスと関連するすべてのデータが回復不能になるので注意してください。", "delete-device-text": "確認後、デバイスと関連するすべてのデータが回復不能になるので注意してください。",
"delete-devices-title": "{ count, plural, 1 {1 device} other {# devices} }?", "delete-devices-title": "{ count, plural, =1 {1 device} other {# devices} }?",
"delete-devices-action-title": "{ count, plural, 1 {1 device} other {# devices} }", "delete-devices-action-title": "{ count, plural, =1 {1 device} other {# devices} }",
"delete-devices-text": "注意してください。確認後、選択したすべてのデバイスが削除され、関連するすべてのデータは回復不能になります。", "delete-devices-text": "注意してください。確認後、選択したすべてのデバイスが削除され、関連するすべてのデータは回復不能になります。",
"unassign-device-title": "'{{deviceName}}'?", "unassign-device-title": "'{{deviceName}}'?",
"unassign-device-text": "確認の後、デバイスは割り当てが解除され、顧客がアクセスできなくなります。", "unassign-device-text": "確認の後、デバイスは割り当てが解除され、顧客がアクセスできなくなります。",
"unassign-device": "デバイスの割り当てを解除する", "unassign-device": "デバイスの割り当てを解除する",
"unassign-devices-title": "{ count, plural, 1 {1 device} other {# devices} }?", "unassign-devices-title": "{ count, plural, =1 {1 device} other {# devices} }?",
"unassign-devices-text": "確認の後、選択されたすべてのデバイスが割り当て解除され、顧客がアクセスできなくなります。", "unassign-devices-text": "確認の後、選択されたすべてのデバイスが割り当て解除され、顧客がアクセスできなくなります。",
"device-credentials": "デバイス資格情報", "device-credentials": "デバイス資格情報",
"credentials-type": "資格情報タイプ", "credentials-type": "資格情報タイプ",
@ -701,51 +701,51 @@
"type-required": "エンティティタイプが必要です。", "type-required": "エンティティタイプが必要です。",
"type-device": "デバイス", "type-device": "デバイス",
"type-devices": "デバイス", "type-devices": "デバイス",
"list-of-devices": "{ count, plural, 1 {One device} other {List of # devices} }", "list-of-devices": "{ count, plural, =1 {One device} other {List of # devices} }",
"device-name-starts-with": "'{{prefix}}'", "device-name-starts-with": "'{{prefix}}'",
"type-asset": "資産", "type-asset": "資産",
"type-assets": "資産", "type-assets": "資産",
"list-of-assets": "{ count, plural, 1 {One asset} other {List of # assets} }", "list-of-assets": "{ count, plural, =1 {One asset} other {List of # assets} }",
"asset-name-starts-with": "'{{prefix}}'", "asset-name-starts-with": "'{{prefix}}'",
"type-rule": "ルール", "type-rule": "ルール",
"type-rules": "ルール", "type-rules": "ルール",
"list-of-rules": "{ count, plural, 1 {One rule} other {List of # rules} }", "list-of-rules": "{ count, plural, =1 {One rule} other {List of # rules} }",
"rule-name-starts-with": "'{{prefix}}'", "rule-name-starts-with": "'{{prefix}}'",
"type-plugin": "プラグイン", "type-plugin": "プラグイン",
"type-plugins": "プラグイン", "type-plugins": "プラグイン",
"list-of-plugins": "{ count, plural, 1 {One plugin} other {List of # plugins} }", "list-of-plugins": "{ count, plural, =1 {One plugin} other {List of # plugins} }",
"plugin-name-starts-with": "'{{prefix}}'", "plugin-name-starts-with": "'{{prefix}}'",
"type-tenant": "テナント", "type-tenant": "テナント",
"type-tenants": "テナント", "type-tenants": "テナント",
"list-of-tenants": "{ count, plural, 1 {One tenant} other {List of # tenants} }", "list-of-tenants": "{ count, plural, =1 {One tenant} other {List of # tenants} }",
"tenant-name-starts-with": "'{{prefix}}'", "tenant-name-starts-with": "'{{prefix}}'",
"type-customer": "顧客", "type-customer": "顧客",
"type-customers": "顧客", "type-customers": "顧客",
"list-of-customers": "{ count, plural, 1 {One customer} other {List of # customers} }", "list-of-customers": "{ count, plural, =1 {One customer} other {List of # customers} }",
"customer-name-starts-with": "'{{prefix}}'", "customer-name-starts-with": "'{{prefix}}'",
"type-user": "ユーザー", "type-user": "ユーザー",
"type-users": "ユーザー", "type-users": "ユーザー",
"list-of-users": "{ count, plural, 1 {One user} other {List of # users} }", "list-of-users": "{ count, plural, =1 {One user} other {List of # users} }",
"user-name-starts-with": "'{{prefix}}'", "user-name-starts-with": "'{{prefix}}'",
"type-dashboard": "ダッシュボード", "type-dashboard": "ダッシュボード",
"type-dashboards": "ダッシュボード", "type-dashboards": "ダッシュボード",
"list-of-dashboards": "{ count, plural, 1 {One dashboard} other {List of # dashboards} }", "list-of-dashboards": "{ count, plural, =1 {One dashboard} other {List of # dashboards} }",
"dashboard-name-starts-with": "'{{prefix}}'", "dashboard-name-starts-with": "'{{prefix}}'",
"type-alarm": "警報", "type-alarm": "警報",
"type-alarms": "アラーム", "type-alarms": "アラーム",
"list-of-alarms": "{ count, plural, 1 {One alarms} other {List of # alarms} }", "list-of-alarms": "{ count, plural, =1 {One alarms} other {List of # alarms} }",
"alarm-name-starts-with": "'{{prefix}}'", "alarm-name-starts-with": "'{{prefix}}'",
"type-rulechain": "ルールチェーン", "type-rulechain": "ルールチェーン",
"type-rulechains": "ルールチェーン", "type-rulechains": "ルールチェーン",
"list-of-rulechains": "{ count, plural, 1 {One rule chain} other {List of # rule chains} }", "list-of-rulechains": "{ count, plural, =1 {One rule chain} other {List of # rule chains} }",
"rulechain-name-starts-with": "'{{prefix}}'", "rulechain-name-starts-with": "'{{prefix}}'",
"type-rulenode": "ルールノード", "type-rulenode": "ルールノード",
"type-rulenodes": "ルールノード", "type-rulenodes": "ルールノード",
"list-of-rulenodes": "{ count, plural, 1 {One rule node} other {List of # rule nodes} }", "list-of-rulenodes": "{ count, plural, =1 {One rule node} other {List of # rule nodes} }",
"rulenode-name-starts-with": "'{{prefix}}'", "rulenode-name-starts-with": "'{{prefix}}'",
"type-current-customer": "現在の顧客", "type-current-customer": "現在の顧客",
"search": "検索エンティティ", "search": "検索エンティティ",
"selected-entities": "{ count, plural, 1 {1 entity} other {# entities} }選択された", "selected-entities": "{ count, plural, =1 {1 entity} other {# entities} }選択された",
"entity-name": "エンティティ名", "entity-name": "エンティティ名",
"details": "エンティティの詳細", "details": "エンティティの詳細",
"no-entities-prompt": "エンティティが見つかりません", "no-entities-prompt": "エンティティが見つかりません",
@ -783,7 +783,7 @@
}, },
"extension": { "extension": {
"extensions": "拡張機能", "extensions": "拡張機能",
"selected-extensions": "{ count, plural, 1 {1 extension} other {# extensions} }選択された", "selected-extensions": "{ count, plural, =1 {1 extension} other {# extensions} }選択された",
"type": "タイプ", "type": "タイプ",
"key": "キー", "key": "キー",
"value": "値", "value": "値",
@ -797,7 +797,7 @@
"edit": "拡張機能を編集する", "edit": "拡張機能を編集する",
"delete-extension-title": "'{{extensionId}}'?", "delete-extension-title": "'{{extensionId}}'?",
"delete-extension-text": "確認後、拡張子と関連するすべてのデータが回復不能になることに注意してください。", "delete-extension-text": "確認後、拡張子と関連するすべてのデータが回復不能になることに注意してください。",
"delete-extensions-title": "{ count, plural, 1 {1 extension} other {# extensions} }?", "delete-extensions-title": "{ count, plural, =1 {1 extension} other {# extensions} }?",
"delete-extensions-text": "注意してください。確認後、選択したすべての内線番号が削除されます。", "delete-extensions-text": "注意してください。確認後、選択したすべての内線番号が削除されます。",
"converters": "コンバーター", "converters": "コンバーター",
"converter-id": "コンバーターID", "converter-id": "コンバーターID",
@ -948,8 +948,8 @@
"grid": { "grid": {
"delete-item-title": "このアイテムを削除してもよろしいですか?", "delete-item-title": "このアイテムを削除してもよろしいですか?",
"delete-item-text": "注意してください。確認後、この項目と関連するすべてのデータは回復不能になります。", "delete-item-text": "注意してください。確認後、この項目と関連するすべてのデータは回復不能になります。",
"delete-items-title": "{ count, plural, 1 {1 item} other {# items} }?", "delete-items-title": "{ count, plural, =1 {1 item} other {# items} }?",
"delete-items-action-title": "{ count, plural, 1 {1 item} other {# items} }", "delete-items-action-title": "{ count, plural, =1 {1 item} other {# items} }",
"delete-items-text": "注意してください。確認後、選択したすべてのアイテムが削除され、関連するすべてのデータは回復不能になります。", "delete-items-text": "注意してください。確認後、選択したすべてのアイテムが削除され、関連するすべてのデータは回復不能になります。",
"add-item-text": "新しいアイテムを追加", "add-item-text": "新しいアイテムを追加",
"no-items-text": "項目は見つかりませんでした", "no-items-text": "項目は見つかりませんでした",
@ -1052,7 +1052,7 @@
}, },
"from-relations": "アウトバウンド関係", "from-relations": "アウトバウンド関係",
"to-relations": "インバウンド関係", "to-relations": "インバウンド関係",
"selected-relations": "{ count, plural, 1 {1 relation} other {# relations} }選択された", "selected-relations": "{ count, plural, =1 {1 relation} other {# relations} }選択された",
"type": "タイプ", "type": "タイプ",
"to-entity-type": "エンティティタイプへ", "to-entity-type": "エンティティタイプへ",
"to-entity-name": "エンティティ名に", "to-entity-name": "エンティティ名に",
@ -1068,11 +1068,11 @@
"edit": "関係を編集する", "edit": "関係を編集する",
"delete-to-relation-title": "'{{entityName}}'?", "delete-to-relation-title": "'{{entityName}}'?",
"delete-to-relation-text": "'{{entityName}}'現在のエンティティとは無関係です。", "delete-to-relation-text": "'{{entityName}}'現在のエンティティとは無関係です。",
"delete-to-relations-title": "{ count, plural, 1 {1 relation} other {# relations} }?", "delete-to-relations-title": "{ count, plural, =1 {1 relation} other {# relations} }?",
"delete-to-relations-text": "注意してください。確認後、選択されたリレーションはすべて削除され、対応するエンティティは現在のエンティティとは無関係になります。", "delete-to-relations-text": "注意してください。確認後、選択されたリレーションはすべて削除され、対応するエンティティは現在のエンティティとは無関係になります。",
"delete-from-relation-title": "'{{entityName}}'?", "delete-from-relation-title": "'{{entityName}}'?",
"delete-from-relation-text": "'{{entityName}}'.", "delete-from-relation-text": "'{{entityName}}'.",
"delete-from-relations-title": "{ count, plural, 1 {1 relation} other {# relations} }?", "delete-from-relations-title": "{ count, plural, =1 {1 relation} other {# relations} }?",
"delete-from-relations-text": "注意してください。確認後、選択されたリレーションはすべて削除され、現在のエンティティは対応するエンティティとは無関係になります。", "delete-from-relations-text": "注意してください。確認後、選択されたリレーションはすべて削除され、現在のエンティティは対応するエンティティとは無関係になります。",
"remove-relation-filter": "関係フィルタを削除する", "remove-relation-filter": "関係フィルタを削除する",
"add-relation-filter": "関係フィルタを追加する", "add-relation-filter": "関係フィルタを追加する",
@ -1095,8 +1095,8 @@
"set-root-rulechain-text": "確認後、ルールチェーンはルートになり、すべての受信トランスポートメッセージを処理します。", "set-root-rulechain-text": "確認後、ルールチェーンはルートになり、すべての受信トランスポートメッセージを処理します。",
"delete-rulechain-title": "'{{ruleChainName}}'?", "delete-rulechain-title": "'{{ruleChainName}}'?",
"delete-rulechain-text": "確認後、ルールチェーンと関連するすべてのデータが回復不能になるので注意してください。", "delete-rulechain-text": "確認後、ルールチェーンと関連するすべてのデータが回復不能になるので注意してください。",
"delete-rulechains-title": "{ count, plural, 1 {1 rule chain} other {# rule chains} }?", "delete-rulechains-title": "{ count, plural, =1 {1 rule chain} other {# rule chains} }?",
"delete-rulechains-action-title": "{ count, plural, 1 {1 rule chain} other {# rule chains} }", "delete-rulechains-action-title": "{ count, plural, =1 {1 rule chain} other {# rule chains} }",
"delete-rulechains-text": "確認後、選択したすべてのルールチェーンが削除され、関連するすべてのデータが回復不能になるので注意してください。", "delete-rulechains-text": "確認後、選択したすべてのルールチェーンが削除され、関連するすべてのデータが回復不能になるので注意してください。",
"add-rulechain-text": "新しいルールチェーンを追加する", "add-rulechain-text": "新しいルールチェーンを追加する",
"no-rulechains-text": "ルールチェーンが見つかりません", "no-rulechains-text": "ルールチェーンが見つかりません",
@ -1194,8 +1194,8 @@
"tenant-details": "テナントの詳細", "tenant-details": "テナントの詳細",
"delete-tenant-title": "'{{tenantTitle}}'?", "delete-tenant-title": "'{{tenantTitle}}'?",
"delete-tenant-text": "確認後、テナントと関連するすべてのデータが回復不能になるので注意してください。", "delete-tenant-text": "確認後、テナントと関連するすべてのデータが回復不能になるので注意してください。",
"delete-tenants-title": "{ count, plural, 1 {1 tenant} other {# tenants} }?", "delete-tenants-title": "{ count, plural, =1 {1 tenant} other {# tenants} }?",
"delete-tenants-action-title": "{ count, plural, 1 {1 tenant} other {# tenants} }", "delete-tenants-action-title": "{ count, plural, =1 {1 tenant} other {# tenants} }",
"delete-tenants-text": "注意してください。確認後、選択されたすべてのテナントが削除され、関連するすべてのデータは回復不能になります。", "delete-tenants-text": "注意してください。確認後、選択されたすべてのテナントが削除され、関連するすべてのデータは回復不能になります。",
"title": "タイトル", "title": "タイトル",
"title-required": "タイトルは必須です。", "title-required": "タイトルは必須です。",
@ -1209,10 +1209,10 @@
"tenant-required": "テナントが必要です" "tenant-required": "テナントが必要です"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 second} other {# seconds} }", "seconds-interval": "{ seconds, plural, =1 {1 second} other {# seconds} }",
"minutes-interval": "{ minutes, plural, 1 {1 minute} other {# minutes} }", "minutes-interval": "{ minutes, plural, =1 {1 minute} other {# minutes} }",
"hours-interval": "{ hours, plural, 1 {1 hour} other {# hours} }", "hours-interval": "{ hours, plural, =1 {1 hour} other {# hours} }",
"days-interval": "{ days, plural, 1 {1 day} other {# days} }", "days-interval": "{ days, plural, =1 {1 day} other {# days} }",
"days": "日々", "days": "日々",
"hours": "時間", "hours": "時間",
"minutes": "分", "minutes": "分",
@ -1220,10 +1220,10 @@
"advanced": "上級" "advanced": "上級"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { day } other {# days } }", "days": "{ days, plural, =1 { day } other {# days } }",
"hours": "{ hours, plural, 0 { hour } 1 {1 hour } other {# hours } }", "hours": "{ hours, plural, =0 { hour } =1 {1 hour } other {# hours } }",
"minutes": "{ minutes, plural, 0 { minute } 1 {1 minute } other {# minutes } }", "minutes": "{ minutes, plural, =0 { minute } =1 {1 minute } other {# minutes } }",
"seconds": "{ seconds, plural, 0 { second } 1 {1 second } other {# seconds } }", "seconds": "{ seconds, plural, =0 { second } =1 {1 second } other {# seconds } }",
"realtime": "リアルタイム", "realtime": "リアルタイム",
"history": "歴史", "history": "歴史",
"last-prefix": "最終", "last-prefix": "最終",
@ -1249,8 +1249,8 @@
"user-details": "ユーザーの詳細", "user-details": "ユーザーの詳細",
"delete-user-title": "'{{userEmail}}'?", "delete-user-title": "'{{userEmail}}'?",
"delete-user-text": "確認後、ユーザーと関連するすべてのデータが回復不能になるので注意してください。", "delete-user-text": "確認後、ユーザーと関連するすべてのデータが回復不能になるので注意してください。",
"delete-users-title": "{ count, plural, 1 {1 user} other {# users} }?", "delete-users-title": "{ count, plural, =1 {1 user} other {# users} }?",
"delete-users-action-title": "{ count, plural, 1 {1 user} other {# users} }", "delete-users-action-title": "{ count, plural, =1 {1 user} other {# users} }",
"delete-users-text": "注意してください。確認後、選択したすべてのユーザーが削除され、関連するすべてのデータは回復不能になります。", "delete-users-text": "注意してください。確認後、選択したすべてのユーザーが削除され、関連するすべてのデータは回復不能になります。",
"activation-email-sent-message": "アクティベーション電子メールが正常に送信されました!", "activation-email-sent-message": "アクティベーション電子メールが正常に送信されました!",
"resend-activation": "アクティブ化を再送", "resend-activation": "アクティブ化を再送",
@ -1367,8 +1367,8 @@
"widgets-bundle-details": "ウィジェットのバンドルの詳細", "widgets-bundle-details": "ウィジェットのバンドルの詳細",
"delete-widgets-bundle-title": "'{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "'{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "確認後、ウィジェットはバンドルされ、関連するすべてのデータは回復不能になります。", "delete-widgets-bundle-text": "確認後、ウィジェットはバンドルされ、関連するすべてのデータは回復不能になります。",
"delete-widgets-bundles-title": "{ count, plural, 1 {1 widgets bundle} other {# widgets bundles} }?", "delete-widgets-bundles-title": "{ count, plural, =1 {1 widgets bundle} other {# widgets bundles} }?",
"delete-widgets-bundles-action-title": "{ count, plural, 1 {1 widgets bundle} other {# widgets bundles} }", "delete-widgets-bundles-action-title": "{ count, plural, =1 {1 widgets bundle} other {# widgets bundles} }",
"delete-widgets-bundles-text": "確認後、選択したすべてのウィジェットバンドルは削除され、関連するすべてのデータは回復不能になります。", "delete-widgets-bundles-text": "確認後、選択したすべてのウィジェットバンドルは削除され、関連するすべてのデータは回復不能になります。",
"no-widgets-bundles-matching": "'{{widgetsBundle}}'発見されました。", "no-widgets-bundles-matching": "'{{widgetsBundle}}'発見されました。",
"widgets-bundle-required": "ウィジェットバンドルが必要です。", "widgets-bundle-required": "ウィジェットバンドルが必要です。",
@ -1404,7 +1404,7 @@
"use-dashboard-timewindow": "ダッシュボードのタイムウィンドウを使用する", "use-dashboard-timewindow": "ダッシュボードのタイムウィンドウを使用する",
"display-legend": "伝説を表示", "display-legend": "伝説を表示",
"datasources": "データソース", "datasources": "データソース",
"maximum-datasources": "{ count, plural, 1 {1 datasource is allowed.} other {# datasources are allowed} }", "maximum-datasources": "{ count, plural, =1 {1 datasource is allowed.} other {# datasources are allowed} }",
"datasource-type": "タイプ", "datasource-type": "タイプ",
"datasource-parameters": "パラメーター", "datasource-parameters": "パラメーター",
"remove-datasource": "データソースを削除", "remove-datasource": "データソースを削除",

148
ui-ngx/src/assets/locale/locale.constant-ka_GE.json

@ -159,11 +159,11 @@
"polling-interval-required": "კითხვის ინტერვალი აუცილებელია", "polling-interval-required": "კითხვის ინტერვალი აუცილებელია",
"min-polling-interval-message": "გამოთხვისი მინიმალური ინტერვალი", "min-polling-interval-message": "გამოთხვისი მინიმალური ინტერვალი",
"aknowledge-alarms-title": "გაფრთხილების დასტური სათაური", "aknowledge-alarms-title": "გაფრთხილების დასტური სათაური",
"aknowledge-alarms-text": "დარწმუნებული ხართ რომ გინდათ დაადასტუროთ { count, plural, 1 {1 alarm} other {# alarms} }?", "aknowledge-alarms-text": "დარწმუნებული ხართ რომ გინდათ დაადასტუროთ { count, plural, =1 {1 alarm} other {# alarms} }?",
"aknowledge-alarm-title": "დაადასტურე გაფრთხილება", "aknowledge-alarm-title": "დაადასტურე გაფრთხილება",
"aknowledge-alarm-text": "გაფრთხილების დადასტურება", "aknowledge-alarm-text": "გაფრთხილების დადასტურება",
"clear-alarms-title": "წაშლა { count, plural, 1 {1 alarm} other {# alarms} }", "clear-alarms-title": "წაშლა { count, plural, =1 {1 alarm} other {# alarms} }",
"clear-alarms-text": "დარწმუნებული ხართ რომ გინდათ წაშალოთ { count, plural, 1 {1 alarm} other {# alarms} }?", "clear-alarms-text": "დარწმუნებული ხართ რომ გინდათ წაშალოთ { count, plural, =1 {1 alarm} other {# alarms} }?",
"clear-alarm-title": "გართხილების სათაურის წაშლა", "clear-alarm-title": "გართხილების სათაურის წაშლა",
"clear-alarm-text": "ნამდვილად გინდათ გაფრთხილების წაშლა", "clear-alarm-text": "ნამდვილად გინდათ გაფრთხილების წაშლა",
"alarm-status-filter": "განგაშის სტატუსის ფილტრი", "alarm-status-filter": "განგაშის სტატუსის ფილტრი",
@ -255,15 +255,15 @@
"add-asset-text": "აქტივის დამატება", "add-asset-text": "აქტივის დამატება",
"asset-details": "აქტივების დეტალები", "asset-details": "აქტივების დეტალები",
"assign-assets": "აქტივის მინიჭება", "assign-assets": "აქტივის მინიჭება",
"assign-assets-text": "აქტივის { count, plural, 1 {1 asset} other {# assets} } მინიჭება კლიენტზე", "assign-assets-text": "აქტივის { count, plural, =1 {1 asset} other {# assets} } მინიჭება კლიენტზე",
"delete-assets": "აქტივების წაშლა", "delete-assets": "აქტივების წაშლა",
"unassign-assets": "აქტივების მოშორება", "unassign-assets": "აქტივების მოშორება",
"unassign-assets-action-title": "გამოხმობა { count, plural, 1 {1 asset} other {# assets} } კლიენტისგან", "unassign-assets-action-title": "გამოხმობა { count, plural, =1 {1 asset} other {# assets} } კლიენტისგან",
"assign-new-asset": "ახალი აქტივის მინიჭება", "assign-new-asset": "ახალი აქტივის მინიჭება",
"delete-asset-title": "დარწმუნებული ხართ რომ წავშალო '{{assetName}}' აქტივი?", "delete-asset-title": "დარწმუნებული ხართ რომ წავშალო '{{assetName}}' აქტივი?",
"delete-asset-text": "ფრთხილად, დადასტურების შემდეგ ყველა აქტივი წაიშლება და მონაცემები ვეღარ აღდგება.", "delete-asset-text": "ფრთხილად, დადასტურების შემდეგ ყველა აქტივი წაიშლება და მონაცემები ვეღარ აღდგება.",
"delete-assets-title": "დარწმუნებული ხართ რომ წაიშალოს { count, plural, 1 {1 asset} other {# assets} }?", "delete-assets-title": "დარწმუნებული ხართ რომ წაიშალოს { count, plural, =1 {1 asset} other {# assets} }?",
"delete-assets-action-title": " { count, plural, 1 {1 asset} other {# assets} } წაშლა", "delete-assets-action-title": " { count, plural, =1 {1 asset} other {# assets} } წაშლა",
"delete-assets-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული აქტივი წაიშლება და მონაცემები ვეღარ აღდგება.", "delete-assets-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული აქტივი წაიშლება და მონაცემები ვეღარ აღდგება.",
"make-public-asset-title": "დარწმუნებული ხართ რომ გნებავთ აქტივის '{{assetName}}' გასაჯაროება?", "make-public-asset-title": "დარწმუნებული ხართ რომ გნებავთ აქტივის '{{assetName}}' გასაჯაროება?",
"make-public-asset-text": "დადასტურების შედეგად აქტივი და მისი მონაცემები გახდება საჯარო და ხელმისაწვდომი ყველასთვის.", "make-public-asset-text": "დადასტურების შედეგად აქტივი და მისი მონაცემები გახდება საჯარო და ხელმისაწვდომი ყველასთვის.",
@ -272,7 +272,7 @@
"unassign-asset-title": "დატწმუნებული ხართ რომ გნებავთ აქტივის '{{assetName}}' გამოხმობა?", "unassign-asset-title": "დატწმუნებული ხართ რომ გნებავთ აქტივის '{{assetName}}' გამოხმობა?",
"unassign-asset-text": "დადასტურების შედეგად აქტივი გახდება კლიენტისთვის ხელმიუწვდომელი.", "unassign-asset-text": "დადასტურების შედეგად აქტივი გახდება კლიენტისთვის ხელმიუწვდომელი.",
"unassign-asset": "აქტივის გამოხმობა", "unassign-asset": "აქტივის გამოხმობა",
"unassign-assets-title": "დარწმუნებული ხართ რომ გნებავთ გამოიხმოთ { count, plural, 1 {1 asset} other {# assets} }?", "unassign-assets-title": "დარწმუნებული ხართ რომ გნებავთ გამოიხმოთ { count, plural, =1 {1 asset} other {# assets} }?",
"unassign-assets-text": "დადასტურების შედეგად ყველა მონიშნული აქტივი გახდება კლიენტისთვის ხელმიუწვდომელი.", "unassign-assets-text": "დადასტურების შედეგად ყველა მონიშნული აქტივი გახდება კლიენტისთვის ხელმიუწვდომელი.",
"copyId": "აქტივის ID-ის დაკოპირება", "copyId": "აქტივის ID-ის დაკოპირება",
"idCopiedMessage": "აქტივი დაკოპირებულია კლიპბორდში", "idCopiedMessage": "აქტივი დაკოპირებულია კლიპბორდში",
@ -283,7 +283,7 @@
"import": "აქტივების იმპორტი", "import": "აქტივების იმპორტი",
"asset-file": "აქტივის ფაილი", "asset-file": "აქტივის ფაილი",
"search": "აქტივების ძიება", "search": "აქტივების ძიება",
"selected-assets": "{ count, plural, 1 {1 asset} other {# assets} } მონიშნულია", "selected-assets": "{ count, plural, =1 {1 asset} other {# assets} } მონიშნულია",
"label": "ნიშნული" "label": "ნიშნული"
}, },
"attribute": { "attribute": {
@ -300,7 +300,7 @@
"key-required": "ატრიბუტის გასაღები სავალდებულოა.", "key-required": "ატრიბუტის გასაღები სავალდებულოა.",
"value": "მნიშვნელობა", "value": "მნიშვნელობა",
"value-required": "ატრიბუტის მნიშვნელობა საჭიროა.", "value-required": "ატრიბუტის მნიშვნელობა საჭიროა.",
"delete-attributes-title": "დარწმუნებული ხართ რომ გსურთ წაშალოთ { count, plural, 1 {1 attribute} other {# attributes} }?", "delete-attributes-title": "დარწმუნებული ხართ რომ გსურთ წაშალოთ { count, plural, =1 {1 attribute} other {# attributes} }?",
"delete-attributes-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული ატრიბუტი წაიშლება.", "delete-attributes-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული ატრიბუტი წაიშლება.",
"delete-attributes": "ატრიბუტების წაშკა", "delete-attributes": "ატრიბუტების წაშკა",
"enter-attribute-value": "შეიყვანეთ ატრიბუტის მნიშვნელობა", "enter-attribute-value": "შეიყვანეთ ატრიბუტის მნიშვნელობა",
@ -310,8 +310,8 @@
"prev-widget": "წინა ვიჯეტი", "prev-widget": "წინა ვიჯეტი",
"add-to-dashboard": "დეშბორდზე დამატება", "add-to-dashboard": "დეშბორდზე დამატება",
"add-widget-to-dashboard": "ვიჯეტის დეშბორდზე დამატება", "add-widget-to-dashboard": "ვიჯეტის დეშბორდზე დამატება",
"selected-attributes": "{ count, plural, 1 {1 attribute} other {# attributes} } მონიშნულია", "selected-attributes": "{ count, plural, =1 {1 attribute} other {# attributes} } მონიშნულია",
"selected-telemetry": "{ count, plural, 1 {1 telemetry unit} other {# telemetry units} } მონიშნულია" "selected-telemetry": "{ count, plural, =1 {1 telemetry unit} other {# telemetry units} } მონიშნულია"
}, },
"audit-log": { "audit-log": {
"audit": "აუდიტი", "audit": "აუდიტი",
@ -409,8 +409,8 @@
"customer-details": "მომხმარებლის დეტალები", "customer-details": "მომხმარებლის დეტალები",
"delete-customer-title": "დარწმუნებული ხართ რომ გსურთ წაშალოთ მომხმარებელი '{{customerTitle}}'?", "delete-customer-title": "დარწმუნებული ხართ რომ გსურთ წაშალოთ მომხმარებელი '{{customerTitle}}'?",
"delete-customer-text": "ყურადღებით დადასტურების შემდეგ ყველა მონიშნული მომხმარებელი და მასთან დაკავშირებული მონაცემები წაიშლება.", "delete-customer-text": "ყურადღებით დადასტურების შემდეგ ყველა მონიშნული მომხმარებელი და მასთან დაკავშირებული მონაცემები წაიშლება.",
"delete-customers-title": "დაწრმუნებული ხართ რომ გსურთ წაშალოთ { count, plural, 1 {1 customer} other {# customers} }?", "delete-customers-title": "დაწრმუნებული ხართ რომ გსურთ წაშალოთ { count, plural, =1 {1 customer} other {# customers} }?",
"delete-customers-action-title": "წაშლა { count, plural, 1 {1 customer} other {# customers} }", "delete-customers-action-title": "წაშლა { count, plural, =1 {1 customer} other {# customers} }",
"delete-customers-text": "ყურადღებით დადასტურების შემდეგ ყველა მონიშნული მომხმარებელი და მასთან დაკავშირებული მონაცემები წაიშლება.", "delete-customers-text": "ყურადღებით დადასტურების შემდეგ ყველა მონიშნული მომხმარებელი და მასთან დაკავშირებული მონაცემები წაიშლება.",
"manage-users": "მომხმარებლების მართვა", "manage-users": "მომხმარებლების მართვა",
"manage-assets": "აქტივების მართვა", "manage-assets": "აქტივების მართვა",
@ -471,20 +471,20 @@
"add-dashboard-text": "დაამატე ახალი დეშბორდი", "add-dashboard-text": "დაამატე ახალი დეშბორდი",
"assign-dashboards": "მიამაგრე დეშბორდები", "assign-dashboards": "მიამაგრე დეშბორდები",
"assign-new-dashboard": "მიამაგრე ახალი დეშბორდი", "assign-new-dashboard": "მიამაგრე ახალი დეშბორდი",
"assign-dashboards-text": "მიამაგრე { count, plural, 1 {1 dashboard} other {# dashboards} } მომხმარებელს", "assign-dashboards-text": "მიამაგრე { count, plural, =1 {1 dashboard} other {# dashboards} } მომხმარებელს",
"unassign-dashboards-action-text": "მოხსენი { count, plural, 1 {1 dashboard} other {# dashboards} } მომხმარებელს", "unassign-dashboards-action-text": "მოხსენი { count, plural, =1 {1 dashboard} other {# dashboards} } მომხმარებელს",
"delete-dashboards": "დეშბორდების წაშლა", "delete-dashboards": "დეშბორდების წაშლა",
"unassign-dashboards": "დეშბორდების მოხსნა", "unassign-dashboards": "დეშბორდების მოხსნა",
"unassign-dashboards-action-title": "მოხსენი { count, plural, 1 {1 dashboard} other {# dashboards} } მომხმარებელს", "unassign-dashboards-action-title": "მოხსენი { count, plural, =1 {1 dashboard} other {# dashboards} } მომხმარებელს",
"delete-dashboard-title": "დარწმუნებული ხართ რომ გინდათ დეშბორდის წაშლა '{{dashboardTitle}}'?", "delete-dashboard-title": "დარწმუნებული ხართ რომ გინდათ დეშბორდის წაშლა '{{dashboardTitle}}'?",
"delete-dashboard-text": "ყურადღებით, დადასტურების შემდეგ დეშბორდი ყველა მონიშნული მონაცემები გახდება ხელმიუწვდომელი", "delete-dashboard-text": "ყურადღებით, დადასტურების შემდეგ დეშბორდი ყველა მონიშნული მონაცემები გახდება ხელმიუწვდომელი",
"delete-dashboards-title": "დარწმუნებული ხართ რომ გინდათ წაშლა { count, plural, 1 {1 dashboard} other {# dashboards} }?", "delete-dashboards-title": "დარწმუნებული ხართ რომ გინდათ წაშლა { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"delete-dashboards-action-title": "წაშლა { count, plural, 1 {1 dashboard} other {# dashboards} }", "delete-dashboards-action-title": "წაშლა { count, plural, =1 {1 dashboard} other {# dashboards} }",
"delete-dashboards-text": "ყურადღებით, დადასტურების შემდეგ დეშბორდი ყველა მონიშნული მონაცემები გახდება ხელმიუწვდომელი", "delete-dashboards-text": "ყურადღებით, დადასტურების შემდეგ დეშბორდი ყველა მონიშნული მონაცემები გახდება ხელმიუწვდომელი",
"unassign-dashboard-title": "ნამდვილად გსურთ დეშბორდის გამოხმობა '{{dashboardTitle}}'?", "unassign-dashboard-title": "ნამდვილად გსურთ დეშბორდის გამოხმობა '{{dashboardTitle}}'?",
"unassign-dashboard-text": "დადასტურების შემდგომ დეშბორდი არ იქნება ხელმისაწვდომი კლიენტისთვის", "unassign-dashboard-text": "დადასტურების შემდგომ დეშბორდი არ იქნება ხელმისაწვდომი კლიენტისთვის",
"unassign-dashboard": "დეშბორდის გამოხმობა", "unassign-dashboard": "დეშბორდის გამოხმობა",
"unassign-dashboards-title": "ნამდვილად გსურთ დეშბორდის გამოხმობა { count, plural, 1 {1 dashboard} other {# dashboards} }?", "unassign-dashboards-title": "ნამდვილად გსურთ დეშბორდის გამოხმობა { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"unassign-dashboards-text": "დადასტურების შემდგომ დეშბორდი არ იქნება ხელმისაწვდომი კლიენტისთვის", "unassign-dashboards-text": "დადასტურების შემდგომ დეშბორდი არ იქნება ხელმისაწვდომი კლიენტისთვის",
"public-dashboard-title": "დეშბორდი ხელმისაწვდომია", "public-dashboard-title": "დეშბორდი ხელმისაწვდომია",
"public-dashboard-text": "დეშბორდი ხელმისაწვდომია <b>{{dashboardTitle}}</b> is now public and accessible via next public <a href='{{publicLink}}' target='_blank'>link</a>:", "public-dashboard-text": "დეშბორდი ხელმისაწვდომია <b>{{dashboardTitle}}</b> is now public and accessible via next public <a href='{{publicLink}}' target='_blank'>link</a>:",
@ -561,7 +561,7 @@
"manage-states": "გააკონტროლე დეშბორდის მდგომარეობა", "manage-states": "გააკონტროლე დეშბორდის მდგომარეობა",
"states": "დეშბორდის მდგომარეობა", "states": "დეშბორდის მდგომარეობა",
"search-states": "მოძებნე დეშბორდის მდგომარეობა", "search-states": "მოძებნე დეშბორდის მდგომარეობა",
"selected-states": "{ count, plural, 1 {1 dashboard state} other {# dashboard states} } არჩეულია", "selected-states": "{ count, plural, =1 {1 dashboard state} other {# dashboard states} } არჩეულია",
"edit-state": "დეშბორდის მდგომარეობის რედაქტირება", "edit-state": "დეშბორდის მდგომარეობის რედაქტირება",
"delete-state": "დეშბორდის მდგომარეობის წაშლა", "delete-state": "დეშბორდის მდგომარეობის წაშლა",
"add-state": "დაამატე დეშბორდის მდგომარეობა", "add-state": "დაამატე დეშბორდის მდგომარეობა",
@ -579,7 +579,7 @@
"select-state": "მდგომარების არჩევა", "select-state": "მდგომარების არჩევა",
"state-controller": "მდგომარების კონტროლერი", "state-controller": "მდგომარების კონტროლერი",
"search": "მოძებნე დეშბორდი", "search": "მოძებნე დეშბორდი",
"selected-dashboards": "{ count, plural, 1 {1 dashboard} other {# dashboards} } არჩეულია" "selected-dashboards": "{ count, plural, =1 {1 dashboard} other {# dashboards} } არჩეულია"
}, },
"datakey": { "datakey": {
"settings": "პარამეტრები", "settings": "პარამეტრები",
@ -597,11 +597,11 @@
"alarm": "განგაში", "alarm": "განგაში",
"timeseries-required": "ტელემეტრია ობიექტის სავალდებულოა", "timeseries-required": "ტელემეტრია ობიექტის სავალდებულოა",
"timeseries-or-attributes-required": "ტელემეტრია/ატრიბუტები სავალდებულოა", "timeseries-or-attributes-required": "ტელემეტრია/ატრიბუტები სავალდებულოა",
"maximum-timeseries-or-attributes": "მაქსიმალური { count, plural, 1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }", "maximum-timeseries-or-attributes": "მაქსიმალური { count, plural, =1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }",
"alarm-fields-required": "განგაშის ველები სავალდებულოა", "alarm-fields-required": "განგაშის ველები სავალდებულოა",
"function-types": "ფუნქციის ტიპები", "function-types": "ფუნქციის ტიპები",
"function-types-required": "ფუნქციის ტიპები სავალდებულოა", "function-types-required": "ფუნქციის ტიპები სავალდებულოა",
"maximum-function-types": "მაქსიუმალური { count, plural, 1 {1 function type is allowed.} other {# function types are allowed} }", "maximum-function-types": "მაქსიუმალური { count, plural, =1 {1 function type is allowed.} other {# function types are allowed} }",
"time-description": "დრო არსებული მნიშნველობისთვის", "time-description": "დრო არსებული მნიშნველობისთვის",
"value-description": "არსებული ღირებულება", "value-description": "არსებული ღირებულება",
"prev-value-description": "წინა ფუნქციის რეზულტატი", "prev-value-description": "წინა ფუნქციის რეზულტატი",
@ -659,11 +659,11 @@
"manage-credentials": "მომხმარებლის ცანაწერის მართვა", "manage-credentials": "მომხმარებლის ცანაწერის მართვა",
"delete": "მოწყობილობის წაშლა", "delete": "მოწყობილობის წაშლა",
"assign-devices": "მოწყობილობის მინიჭება", "assign-devices": "მოწყობილობის მინიჭება",
"assign-devices-text": "მიანიჭე { count, plural, 1 {1 device} other {# devices} } კლიენტს", "assign-devices-text": "მიანიჭე { count, plural, =1 {1 device} other {# devices} } კლიენტს",
"delete-devices": "წაშალე მოწყობილობები", "delete-devices": "წაშალე მოწყობილობები",
"unassign-from-customer": "მოხსენი მოხმარებელს", "unassign-from-customer": "მოხსენი მოხმარებელს",
"unassign-devices": "მოხსენი მოწყობილოებები", "unassign-devices": "მოხსენი მოწყობილოებები",
"unassign-devices-action-title": "მოხსენი { count, plural, 1 {1 device} other {# devices} } მოხმარებელს", "unassign-devices-action-title": "მოხსენი { count, plural, =1 {1 device} other {# devices} } მოხმარებელს",
"assign-new-device": "მიამაგრე ახალი მოწყობილობა", "assign-new-device": "მიამაგრე ახალი მოწყობილობა",
"make-public-device-title": "დარწმუნებული ხართ რომ გინდათ გახადოთ '{{deviceName}}' საჯარო?", "make-public-device-title": "დარწმუნებული ხართ რომ გინდათ გახადოთ '{{deviceName}}' საჯარო?",
"make-public-device-text": "დადასტურების შემდგომ , მოწყობილობა და ყველა მასთან დაკავშირებული მონაცემები იქნება საჯარო და ხელმისაწვდომი", "make-public-device-text": "დადასტურების შემდგომ , მოწყობილობა და ყველა მასთან დაკავშირებული მონაცემები იქნება საჯარო და ხელმისაწვდომი",
@ -672,13 +672,13 @@
"view-credentials": "მონაცემთა ბაზის ნახვა", "view-credentials": "მონაცემთა ბაზის ნახვა",
"delete-device-title": "დარწმუნებული ხართ რო გინდათ წაშალოთ მოწყობილობა '{{deviceName}}'?", "delete-device-title": "დარწმუნებული ხართ რო გინდათ წაშალოთ მოწყობილობა '{{deviceName}}'?",
"delete-device-text": "ყურადღებით , დადასტურების შემდგომ , მოწყობილობა და ყველა მასთან დაკავშირებული ჩანაწერი არ იქნება ხელმისაწვდომი", "delete-device-text": "ყურადღებით , დადასტურების შემდგომ , მოწყობილობა და ყველა მასთან დაკავშირებული ჩანაწერი არ იქნება ხელმისაწვდომი",
"delete-devices-title": "დარწმუნებული ხართ რო გინდათ წაშალოთ { count, plural, 1 {1 device} other {# devices} }?", "delete-devices-title": "დარწმუნებული ხართ რო გინდათ წაშალოთ { count, plural, =1 {1 device} other {# devices} }?",
"delete-devices-action-title": "წაშლა { count, plural, 1 {1 device} other {# devices} }", "delete-devices-action-title": "წაშლა { count, plural, =1 {1 device} other {# devices} }",
"delete-devices-text": "ყურადღებით , დადასტურების შემდგომ , მოწყობილობა და ყველა მასთან დაკავშირებული ჩანაწერი არ იქნება ხელმისაწვდომი", "delete-devices-text": "ყურადღებით , დადასტურების შემდგომ , მოწყობილობა და ყველა მასთან დაკავშირებული ჩანაწერი არ იქნება ხელმისაწვდომი",
"unassign-device-title": "დარწმუნებული ხართ რო გინდათ გამოიხმოთ '{{deviceName}}'?", "unassign-device-title": "დარწმუნებული ხართ რო გინდათ გამოიხმოთ '{{deviceName}}'?",
"unassign-device-text": "დადასტურების შემდგომ , მოწყობილობა არ იქნება მომხმარებლისთვის ხელმისაწვდომი", "unassign-device-text": "დადასტურების შემდგომ , მოწყობილობა არ იქნება მომხმარებლისთვის ხელმისაწვდომი",
"unassign-device": "მოწყობილობის გამოხმობა", "unassign-device": "მოწყობილობის გამოხმობა",
"unassign-devices-title": "დარწმუნებული ხართ რო გინდათ გამოიხმოთ { count, plural, 1 {1 device} other {# devices} }?", "unassign-devices-title": "დარწმუნებული ხართ რო გინდათ გამოიხმოთ { count, plural, =1 {1 device} other {# devices} }?",
"unassign-devices-text": "დადასტურების შემდგომ , მოწყობილობა არ იქნება მომხმარებლისთვის ხელმისაწვდომი", "unassign-devices-text": "დადასტურების შემდგომ , მოწყობილობა არ იქნება მომხმარებლისთვის ხელმისაწვდომი",
"device-credentials": "მოწყობილობის სარეგისტრაციო მონაცემები", "device-credentials": "მოწყობილობის სარეგისტრაციო მონაცემები",
"credentials-type": "მომხმარებლის ჩანაწერი", "credentials-type": "მომხმარებლის ჩანაწერი",
@ -715,7 +715,7 @@
"import": "იმპორტირებული მოწყობილობა", "import": "იმპორტირებული მოწყობილობა",
"device-file": "მოწყობილობის ფაილი", "device-file": "მოწყობილობის ფაილი",
"search": "მოწყობილობების ძიება", "search": "მოწყობილობების ძიება",
"selected-devices": "{ count, plural, 1 {1 device} other {# devices} } არჩეულია" "selected-devices": "{ count, plural, =1 {1 device} other {# devices} } არჩეულია"
}, },
"dialog": { "dialog": {
"close": "დახუურე დიალოგი" "close": "დახუურე დიალოგი"
@ -771,55 +771,55 @@
"type-required": "ობიექტის ტიპი სავალდებულოა", "type-required": "ობიექტის ტიპი სავალდებულოა",
"type-device": "მოწყობილობა", "type-device": "მოწყობილობა",
"type-devices": "მოწყობილობები", "type-devices": "მოწყობილობები",
"list-of-devices": "{ count, plural, 1 {One device} other {List of # devices} }", "list-of-devices": "{ count, plural, =1 {One device} other {List of # devices} }",
"device-name-starts-with": "მოწყობილობები რომლების სახელიც იწყება '{{prefix}}' -ით", "device-name-starts-with": "მოწყობილობები რომლების სახელიც იწყება '{{prefix}}' -ით",
"type-asset": "აქტივი", "type-asset": "აქტივი",
"type-assets": "აქტივები", "type-assets": "აქტივები",
"list-of-assets": "{ count, plural, 1 {ერთი აქტიობა} other {სია შემდეგი აქტიობები} }", "list-of-assets": "{ count, plural, =1 {ერთი აქტიობა} other {სია შემდეგი აქტიობები} }",
"asset-name-starts-with": "აქტიობები, რომელიც იწყება '{{prefix}}' ით", "asset-name-starts-with": "აქტიობები, რომელიც იწყება '{{prefix}}' ით",
"type-entity-view": "წარმოდგენილი ობიექტი", "type-entity-view": "წარმოდგენილი ობიექტი",
"type-entity-views": "წარმოდგენილი ობიექტები", "type-entity-views": "წარმოდგენილი ობიექტები",
"list-of-entity-views": "{ count, plural, 1 {ერთი ობიექტი} other {სია შემდეგი ობიექტებიდან} }", "list-of-entity-views": "{ count, plural, =1 {ერთი ობიექტი} other {სია შემდეგი ობიექტებიდან} }",
"entity-view-name-starts-with": "ობიექტი, რომელიც იწყება '{{prefix}}' ით", "entity-view-name-starts-with": "ობიექტი, რომელიც იწყება '{{prefix}}' ით",
"type-rule": " წესი", "type-rule": " წესი",
"type-rules": " წესები", "type-rules": " წესები",
"list-of-rules": "{ count, plural, 1 {ერთი წესი} other {სია შემდეგი წესებისგან} }", "list-of-rules": "{ count, plural, =1 {ერთი წესი} other {სია შემდეგი წესებისგან} }",
"rule-name-starts-with": "წესი, ვისი სახელიც იწყება '{{prefix}}' ით", "rule-name-starts-with": "წესი, ვისი სახელიც იწყება '{{prefix}}' ით",
"type-plugin": "პლაგინი", "type-plugin": "პლაგინი",
"type-plugins": "პლაგინები", "type-plugins": "პლაგინები",
"list-of-plugins": "{ count, plural, 1 {ერთი პლაგინი} other {სია შემდეგი პლაგინებისგან} }", "list-of-plugins": "{ count, plural, =1 {ერთი პლაგინი} other {სია შემდეგი პლაგინებისგან} }",
"plugin-name-starts-with": "პლაგინი ვისი სახელიც იწყება '{{prefix}}' ით", "plugin-name-starts-with": "პლაგინი ვისი სახელიც იწყება '{{prefix}}' ით",
"type-tenant": "მეპატრონე", "type-tenant": "მეპატრონე",
"type-tenants": "მეპატრონეები", "type-tenants": "მეპატრონეები",
"list-of-tenants": "{ count, plural, 1 {ერთი მომხმარებელი} other {სია შემდეგი მომხმარებლებისგან} }", "list-of-tenants": "{ count, plural, =1 {ერთი მომხმარებელი} other {სია შემდეგი მომხმარებლებისგან} }",
"tenant-name-starts-with": "მომხმარებლები ვისი სახელიც იწყება '{{prefix}}' ით", "tenant-name-starts-with": "მომხმარებლები ვისი სახელიც იწყება '{{prefix}}' ით",
"type-customer": "მომხმარებელი", "type-customer": "მომხმარებელი",
"type-customers": "მომხმარებლები", "type-customers": "მომხმარებლები",
"list-of-customers": " { count, plural, 1 {ერთი მომხმარებელი} other {სია შემდეგი მომხმარებლებისგან} }", "list-of-customers": " { count, plural, =1 {ერთი მომხმარებელი} other {სია შემდეგი მომხმარებლებისგან} }",
"customer-name-starts-with": "მომხმარებლები ვისი სახელიც იწყება '{{prefix}}' ით", "customer-name-starts-with": "მომხმარებლები ვისი სახელიც იწყება '{{prefix}}' ით",
"type-user": "მომხმარებელი", "type-user": "მომხმარებელი",
"type-users": "მომხმარებლები", "type-users": "მომხმარებლები",
"list-of-users": "მომხმარებელთა სია { count, plural, 1 {ერთი მომხმარებელი} other {სია შემდეგი მომხმარებლებისგან} }", "list-of-users": "მომხმარებელთა სია { count, plural, =1 {ერთი მომხმარებელი} other {სია შემდეგი მომხმარებლებისგან} }",
"user-name-starts-with": "მომხმარებლების ჯგუფი რომლის სახელებიც იწყება '{{prefix}}' ით", "user-name-starts-with": "მომხმარებლების ჯგუფი რომლის სახელებიც იწყება '{{prefix}}' ით",
"type-dashboard": "დეშბორდი", "type-dashboard": "დეშბორდი",
"type-dashboards": "დეშბორდები", "type-dashboards": "დეშბორდები",
"list-of-dashboards": "{ count, plural, 1 {დეშბორდი} other {დეშბორდების სია} }", "list-of-dashboards": "{ count, plural, =1 {დეშბორდი} other {დეშბორდების სია} }",
"dashboard-name-starts-with": "დეშბორდები რომლების სახელებიც იწყება '{{prefix}}' -ით", "dashboard-name-starts-with": "დეშბორდები რომლების სახელებიც იწყება '{{prefix}}' -ით",
"type-alarm": "განგაში", "type-alarm": "განგაში",
"type-alarms": "განგაშები", "type-alarms": "განგაშები",
"list-of-alarms": "{ count, plural, 1 {ერთი განგაში} other {განგაშის სია} }", "list-of-alarms": "{ count, plural, =1 {ერთი განგაში} other {განგაშის სია} }",
"alarm-name-starts-with": "განგაშები რომლების სახელებიც იწყება '{{prefix}}' -ით", "alarm-name-starts-with": "განგაშები რომლების სახელებიც იწყება '{{prefix}}' -ით",
"type-rulechain": "წესების ჯაჭვი", "type-rulechain": "წესების ჯაჭვი",
"type-rulechains": "წესების ჯაჭვები", "type-rulechains": "წესების ჯაჭვები",
"list-of-rulechains": "{ count, plural, 1 {ერთი წესების ჯაჭვი} other {წესების ჯაჭვის სია} }", "list-of-rulechains": "{ count, plural, =1 {ერთი წესების ჯაჭვი} other {წესების ჯაჭვის სია} }",
"rulechain-name-starts-with": "წესების ჯაჭვები რომელთა სახელებიც იწყება '{{prefix}}' -ით", "rulechain-name-starts-with": "წესების ჯაჭვები რომელთა სახელებიც იწყება '{{prefix}}' -ით",
"type-rulenode": "წესების ნოუდი", "type-rulenode": "წესების ნოუდი",
"type-rulenodes": "წესების ნოუდები", "type-rulenodes": "წესების ნოუდები",
"list-of-rulenodes": "{ თვლა, plural, 1 {ერთი წესების ნოუდი} other {წესების ნოდების სია} }", "list-of-rulenodes": "{ თვლა, plural, =1 {ერთი წესების ნოუდი} other {წესების ნოდების სია} }",
"rulenode-name-starts-with": "წესების ნოუდები რომლების სახელებიც იწყება '{{prefix}}' -ით", "rulenode-name-starts-with": "წესების ნოუდები რომლების სახელებიც იწყება '{{prefix}}' -ით",
"type-current-customer": "არსებული მომხმარებელი", "type-current-customer": "არსებული მომხმარებელი",
"search": "ობიექტის ძიება", "search": "ობიექტის ძიება",
"selected-entities": "{ count, plural, 1 {1 ობიექტი} other {# ობიექტები} } არჩეულია", "selected-entities": "{ count, plural, =1 {1 ობიექტი} other {# ობიექტები} } არჩეულია",
"entity-name": "ობიექტის სახელი", "entity-name": "ობიექტის სახელი",
"entity-label": "ობიექტის ეტიკეტი", "entity-label": "ობიექტის ეტიკეტი",
"details": "ობიექტის დეტალები", "details": "ობიექტის დეტალები",
@ -881,21 +881,21 @@
"add-entity-view-text": " წარმოდგენილი ობიექტების დამატება", "add-entity-view-text": " წარმოდგენილი ობიექტების დამატება",
"delete": "წარმოდგენილი ობიექტების წაშლა", "delete": "წარმოდგენილი ობიექტების წაშლა",
"assign-entity-views": "წარმოდგენილი ობიექტების დამატება", "assign-entity-views": "წარმოდგენილი ობიექტების დამატება",
"assign-entity-views-text": "მომხმარებლის { count, plural, 1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }", "assign-entity-views-text": "მომხმარებლის { count, plural, =1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }",
"delete-entity-views": "წარმოდგენილი ობიექტების წაშლა", "delete-entity-views": "წარმოდგენილი ობიექტების წაშლა",
"unassign-from-customer": "მომხმარებლისდან გამოხმობა", "unassign-from-customer": "მომხმარებლისდან გამოხმობა",
"unassign-entity-views": "წარმოდგენილი ობიექტების გამოხმობა", "unassign-entity-views": "წარმოდგენილი ობიექტების გამოხმობა",
"unassign-entity-views-action-title": "გამოხმობა მომხმარებლის { count, plural, 1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }", "unassign-entity-views-action-title": "გამოხმობა მომხმარებლის { count, plural, =1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }",
"assign-new-entity-view": "ახალი წარმოდგენილი ობიექტები", "assign-new-entity-view": "ახალი წარმოდგენილი ობიექტები",
"delete-entity-view-title": "ნამდვილათ გინდათ წარმოდგენილი ობიექტების წაშლა '{{entityViewName}}'?", "delete-entity-view-title": "ნამდვილათ გინდათ წარმოდგენილი ობიექტების წაშლა '{{entityViewName}}'?",
"delete-entity-view-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია არ დაექვემდებარება აღდგენას", "delete-entity-view-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია არ დაექვემდებარება აღდგენას",
"delete-entity-views-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ { count, plural, 1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?", "delete-entity-views-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ { count, plural, =1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?",
"delete-entity-views-action-title": " წაშალა { count, plural, 1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?", "delete-entity-views-action-title": " წაშალა { count, plural, =1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?",
"delete-entity-views-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია არ დაექვემდებარება აღდგენას", "delete-entity-views-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია არ დაექვემდებარება აღდგენას",
"unassign-entity-view-title": "დარწმუნებული ხართ რომ გინდათ გამოიხმოთ წარმოდგენილი ობიექტები '{{entityViewName}}'?", "unassign-entity-view-title": "დარწმუნებული ხართ რომ გინდათ გამოიხმოთ წარმოდგენილი ობიექტები '{{entityViewName}}'?",
"unassign-entity-view-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია მომხმარებლისთვის იქნება მიუწვდომელი", "unassign-entity-view-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია მომხმარებლისთვის იქნება მიუწვდომელი",
"unassign-entity-view": "წარმოდგენილი ობიექტების გამოხმობა", "unassign-entity-view": "წარმოდგენილი ობიექტების გამოხმობა",
"unassign-entity-views-title": "დარწმუნებული ხართ რომ გინდათ გამოიხმოთ { count, plural, 1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?", "unassign-entity-views-title": "დარწმუნებული ხართ რომ გინდათ გამოიხმოთ { count, plural, =1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?",
"unassign-entity-views-text": "თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია მომხმარებლისთვის იქნება მიუწვდომელი", "unassign-entity-views-text": "თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია მომხმარებლისთვის იქნება მიუწვდომელი",
"entity-view-type": "წარმოდგენილი ობიექტების ტიპი", "entity-view-type": "წარმოდგენილი ობიექტების ტიპი",
"entity-view-type-required": "წარმოდგენილი ობიექტების ტიპი აუცილებელია", "entity-view-type-required": "წარმოდგენილი ობიექტების ტიპი აუცილებელია",
@ -975,7 +975,7 @@
}, },
"extension": { "extension": {
"extensions": "დამატებითი აპი", "extensions": "დამატებითი აპი",
"selected-extensions": "{ count, plural, 1 {1 დამატებითი აპი} other {# დამატებითი აპიები} } selected", "selected-extensions": "{ count, plural, =1 {1 დამატებითი აპი} other {# დამატებითი აპიები} } selected",
"type": "ტიპი", "type": "ტიპი",
"key": "გასაღები", "key": "გასაღები",
"value": "მნიშვნელობა", "value": "მნიშვნელობა",
@ -989,7 +989,7 @@
"edit": "დამატებითი აპის რედაქტირება", "edit": "დამატებითი აპის რედაქტირება",
"delete-extension-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ დამატებითი აპი '{{extensionId}}'?", "delete-extension-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ დამატებითი აპი '{{extensionId}}'?",
"delete-extension-text": "ყურადღება, თანხმობი შემდეგ დამატებითი აპი და ყველა მასთან დაკავშირებული ინფორმაცია სამუდამოდ წაიშლება", "delete-extension-text": "ყურადღება, თანხმობი შემდეგ დამატებითი აპი და ყველა მასთან დაკავშირებული ინფორმაცია სამუდამოდ წაიშლება",
"delete-extensions-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ { count, plural, 1 {1 დამატებითი აპი} other {# დამატებითი აპები} }?", "delete-extensions-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ { count, plural, =1 {1 დამატებითი აპი} other {# დამატებითი აპები} }?",
"delete-extensions-text": "ყურადღებით, თანხმობის შემდეგ ყველა დამატებითი აპი წაიშლება", "delete-extensions-text": "ყურადღებით, თანხმობის შემდეგ ყველა დამატებითი აპი წაიშლება",
"converters": "გადამყვანები", "converters": "გადამყვანები",
"converter-id": "გადამყვანის-ID", "converter-id": "გადამყვანის-ID",
@ -1142,8 +1142,8 @@
"grid": { "grid": {
"delete-item-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ წარმოდგენილი ობიექტები", "delete-item-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ წარმოდგენილი ობიექტები",
"delete-item-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია არ დაექვემდებარება აღდგენას", "delete-item-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია არ დაექვემდებარება აღდგენას",
"delete-items-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ { count, plural, 1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?", "delete-items-title": "დარწმუნებული ხართ რომ გინდათ წაშალოთ { count, plural, =1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?",
"delete-items-action-title": " წაშალა { count, plural, 1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?", "delete-items-action-title": " წაშალა { count, plural, =1 {1 წარმოდგენილი ობიექტები} other {# წარმოდგენილი ობიექტები} }?",
"delete-items-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია არ დაექვემდებარება აღდგენას", "delete-items-text": "ყურადღება! თანხმობის შემთხვევაში ობიექტის ჯგუფი და ყველა შესაბამისი ინფორმაცია არ დაექვემდებარება აღდგენას",
"add-item-text": "ახალი ობიექტის დამატება", "add-item-text": "ახალი ობიექტის დამატება",
"no-items-text": "ობიექტი არ იძებნება", "no-items-text": "ობიექტი არ იძებნება",
@ -1286,7 +1286,7 @@
}, },
"from-relations": "ურთიერთობებიდან", "from-relations": "ურთიერთობებიდან",
"to-relations": "მოთხოვნა", "to-relations": "მოთხოვნა",
"selected-relations": "შერჩეული { count, plural, 1 {1 ურთიერთობები } other {#ურთიერთობები} }", "selected-relations": "შერჩეული { count, plural, =1 {1 ურთიერთობები } other {#ურთიერთობები} }",
"type": "ტიპი", "type": "ტიპი",
"to-entity-type": "ერთეული ობიექტის ტიპისთვის", "to-entity-type": "ერთეული ობიექტის ტიპისთვის",
"to-entity-name": "პირის სახელი", "to-entity-name": "პირის სახელი",
@ -1302,11 +1302,11 @@
"edit": "რედაქტირება", "edit": "რედაქტირება",
"delete-to-relation-title": "ნამდვილათ გსურთ წაშალოთ '{{entityName}}'?", "delete-to-relation-title": "ნამდვილათ გსურთ წაშალოთ '{{entityName}}'?",
"delete-to-relation-text": "ყურედღება ! დადასტურების შემდეგ '{{entityName}}' იქნება უკან გამოხმობილი", "delete-to-relation-text": "ყურედღება ! დადასტურების შემდეგ '{{entityName}}' იქნება უკან გამოხმობილი",
"delete-to-relations-title": "ნამდვილათ გსურთ წაშალოთ { count, plural, 1 {1 ქმედება} other {# ქმედება} }?", "delete-to-relations-title": "ნამდვილათ გსურთ წაშალოთ { count, plural, =1 {1 ქმედება} other {# ქმედება} }?",
"delete-to-relations-text": "ყურედღება ! დადასტურების შემდეგ შერჩეული ობიექტი იქნება უკან გამოხმობილი", "delete-to-relations-text": "ყურედღება ! დადასტურების შემდეგ შერჩეული ობიექტი იქნება უკან გამოხმობილი",
"delete-from-relation-title": "დარწმუნებული ხართ რო გინდათ '{{entityName}}' იდან ობიექტის წაშლა?", "delete-from-relation-title": "დარწმუნებული ხართ რო გინდათ '{{entityName}}' იდან ობიექტის წაშლა?",
"delete-from-relation-text": "ყურედღება ! დადასტურების შემდეგ '{{entityName}}' იქნება უკან გამოხმობილი", "delete-from-relation-text": "ყურედღება ! დადასტურების შემდეგ '{{entityName}}' იქნება უკან გამოხმობილი",
"delete-from-relations-title": "ნამდვილათ გსურთ წაშალოთ { count, plural, 1 {1 ქმედება} other {# ქმედება} }?", "delete-from-relations-title": "ნამდვილათ გსურთ წაშალოთ { count, plural, =1 {1 ქმედება} other {# ქმედება} }?",
"delete-from-relations-text": "ყურედღება ! დადასტურების შემდეგ არჩეული ობიექტები იქნება უკან გამოხმობილი არსებული ობიექტებიდან", "delete-from-relations-text": "ყურედღება ! დადასტურების შემდეგ არჩეული ობიექტები იქნება უკან გამოხმობილი არსებული ობიექტებიდან",
"remove-relation-filter": "რელაციის ფილტრის მოშორება", "remove-relation-filter": "რელაციის ფილტრის მოშორება",
"add-relation-filter": "რელაციის ფილტრის დამატება", "add-relation-filter": "რელაციის ფილტრის დამატება",
@ -1329,8 +1329,8 @@
"set-root-rulechain-text": "ყურედღება ! დადასტურების შემდეგ არჩეული წესების წყობა იქნება ძირეული და დაამუშავებს ყველა შემოსულ იმფოს", "set-root-rulechain-text": "ყურედღება ! დადასტურების შემდეგ არჩეული წესების წყობა იქნება ძირეული და დაამუშავებს ყველა შემოსულ იმფოს",
"delete-rulechain-title": "ნამდვილათ გსურთ წაშალოთ წესების წყობა '{{ruleChainName}}'?", "delete-rulechain-title": "ნამდვილათ გსურთ წაშალოთ წესების წყობა '{{ruleChainName}}'?",
"delete-rulechain-text": "ყურედღება ! დადასტურების შემდეგ არჩეული წესების წყობა და მასთან დაკავშირებული ყველა ინფო იქნება წაშლილი", "delete-rulechain-text": "ყურედღება ! დადასტურების შემდეგ არჩეული წესების წყობა და მასთან დაკავშირებული ყველა ინფო იქნება წაშლილი",
"delete-rulechains-title": "ნამდვილათ გსურთ წაშალოთ { count, plural, 1 {1 წესების წყობა} other {# წესების წყობა} }?", "delete-rulechains-title": "ნამდვილათ გსურთ წაშალოთ { count, plural, =1 {1 წესების წყობა} other {# წესების წყობა} }?",
"delete-rulechains-action-title": " წაშალა { count, plural, 1 {1 წესების წყობა} other {# წესების წყობა} }?", "delete-rulechains-action-title": " წაშალა { count, plural, =1 {1 წესების წყობა} other {# წესების წყობა} }?",
"delete-rulechains-text": "ყურედღება ! დადასტურების შემდეგ არჩეული წესების წყობა და მასთან დაკავშირებული ყველა ინფო იქნება წაშლილი", "delete-rulechains-text": "ყურედღება ! დადასტურების შემდეგ არჩეული წესების წყობა და მასთან დაკავშირებული ყველა ინფო იქნება წაშლილი",
"add-rulechain-text": "ახალი წესების წყობის ფუნქციონალის დამატება", "add-rulechain-text": "ახალი წესების წყობის ფუნქციონალის დამატება",
"no-rulechains-text": " წესების წყობის ფუნქციონალი არ იძებნება", "no-rulechains-text": " წესების წყობის ფუნქციონალი არ იძებნება",
@ -1429,8 +1429,8 @@
"tenant-details": "ტენანტის დეტალები", "tenant-details": "ტენანტის დეტალები",
"delete-tenant-title": "დარწმუნებული ხართ რომ გსურთ '{{tenantTitle}}'-ის წაშლა ?", "delete-tenant-title": "დარწმუნებული ხართ რომ გსურთ '{{tenantTitle}}'-ის წაშლა ?",
"delete-tenant-text": "ფრთხილად, დადასტურების შემდეგ ტენანტი და მასთან ასოცირებული მონაცემები იქნება დაკარგული.", "delete-tenant-text": "ფრთხილად, დადასტურების შემდეგ ტენანტი და მასთან ასოცირებული მონაცემები იქნება დაკარგული.",
"delete-tenants-title": "დარწმუნებული ხართ რომ გსურთ წაშალოთ { count, plural, 1 {1 ტენანტი} other {# ტენანტი} }?", "delete-tenants-title": "დარწმუნებული ხართ რომ გსურთ წაშალოთ { count, plural, =1 {1 ტენანტი} other {# ტენანტი} }?",
"delete-tenants-action-title": "{ count, plural, 1 {1 ტენანტი} other {# ტენანტი} } წაშლა", "delete-tenants-action-title": "{ count, plural, =1 {1 ტენანტი} other {# ტენანტი} } წაშლა",
"delete-tenants-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული ტენანტი და მასთან ასოცირებული მონაცემები იქნება დაკარგული.", "delete-tenants-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული ტენანტი და მასთან ასოცირებული მონაცემები იქნება დაკარგული.",
"title": "სათაური", "title": "სათაური",
"title-required": "სათაური საჭიროა", "title-required": "სათაური საჭიროა",
@ -1443,13 +1443,13 @@
"no-tenants-matching": "ტენანტი '{{entity}}' ვერ მოიძებნა.", "no-tenants-matching": "ტენანტი '{{entity}}' ვერ მოიძებნა.",
"tenant-required": "ტენანტი სავალდებულოა", "tenant-required": "ტენანტი სავალდებულოა",
"search": "ტენანტის ძებნა", "search": "ტენანტის ძებნა",
"selected-tenants": "{ count, plural, 1 {1 ტენანტი} other {# ტენანტი} } მონიშნულია" "selected-tenants": "{ count, plural, =1 {1 ტენანტი} other {# ტენანტი} } მონიშნულია"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 წამი} other {# წამი} }", "seconds-interval": "{ seconds, plural, =1 {1 წამი} other {# წამი} }",
"minutes-interval": "{ minutes, plural, 1 {1 წუთი} other {# წუთი} }", "minutes-interval": "{ minutes, plural, =1 {1 წუთი} other {# წუთი} }",
"hours-interval": "{ hours, plural, 1 {1 ს} other {# საათი} }", "hours-interval": "{ hours, plural, =1 {1 ს} other {# საათი} }",
"days-interval": "{ days, plural, 1 {1 დღე} other {# დღე} }", "days-interval": "{ days, plural, =1 {1 დღე} other {# დღე} }",
"days": "დღე", "days": "დღე",
"hours": "საათი", "hours": "საათი",
"minutes": "წუთი", "minutes": "წუთი",
@ -1457,10 +1457,10 @@
"advanced": "დამატებითი" "advanced": "დამატებითი"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { დღე } other {# დღე } }", "days": "{ days, plural, =1 { დღე } other {# დღე } }",
"hours": "{ hours, plural, 0 { საათი } 1 {1 საათი } other {# საათი } }", "hours": "{ hours, plural, =0 { საათი } =1 {1 საათი } other {# საათი } }",
"minutes": "{ minutes, plural, 0 { წუთი } 1 {1 წუთი } other {# წუთი } }", "minutes": "{ minutes, plural, =0 { წუთი } =1 {1 წუთი } other {# წუთი } }",
"seconds": "{ seconds, plural, 0 { წამი } 1 {1 წამი } other {# წამი } }", "seconds": "{ seconds, plural, =0 { წამი } =1 {1 წამი } other {# წამი } }",
"realtime": "რეალური დრო", "realtime": "რეალური დრო",
"history": "ისტორია", "history": "ისტორია",
"last-prefix": "ბოლო", "last-prefix": "ბოლო",
@ -1487,8 +1487,8 @@
"user-details": "მომხმარებლის დეტალები", "user-details": "მომხმარებლის დეტალები",
"delete-user-title": "დარწმუნებული ხართ რომ გინდათ '{{userEmail}}' -ის წაშლა?", "delete-user-title": "დარწმუნებული ხართ რომ გინდათ '{{userEmail}}' -ის წაშლა?",
"delete-user-text": "ფრთხილად, დადასტურების შემდეგ მომხმარებელი და მასთან ასოცირებული მონაცემები იქნება დაკარგული.", "delete-user-text": "ფრთხილად, დადასტურების შემდეგ მომხმარებელი და მასთან ასოცირებული მონაცემები იქნება დაკარგული.",
"delete-users-title": "დარწმუნებული ხათ რომ გსურთ წაშალოთ { count, plural, 1 {1 მომხმარებელი} other {# მომხმარებლები} }?", "delete-users-title": "დარწმუნებული ხათ რომ გსურთ წაშალოთ { count, plural, =1 {1 მომხმარებელი} other {# მომხმარებლები} }?",
"delete-users-action-title": "{ count, plural, 1 {1 მომხმარებელი} other {# მომხმარებლები} } წაშლა", "delete-users-action-title": "{ count, plural, =1 {1 მომხმარებელი} other {# მომხმარებლები} } წაშლა",
"delete-users-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული მომხმარებელი და მასთან ასოცირებული მონაცემები იქნება დაკარგული.", "delete-users-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული მომხმარებელი და მასთან ასოცირებული მონაცემები იქნება დაკარგული.",
"activation-email-sent-message": "აქტივაციი სელფოსტა წარმატებით გაიგზავნა!", "activation-email-sent-message": "აქტივაციი სელფოსტა წარმატებით გაიგზავნა!",
"resend-activation": "აქტივაციის გადაგზავნა", "resend-activation": "აქტივაციის გადაგზავნა",
@ -1514,7 +1514,7 @@
"login-as-tenant-admin": "შესვლა როგორც ტენანტ ადმინი", "login-as-tenant-admin": "შესვლა როგორც ტენანტ ადმინი",
"login-as-customer-user": "შესვლა, როგორც კლიენტის მომხმარებელი", "login-as-customer-user": "შესვლა, როგორც კლიენტის მომხმარებელი",
"search": "მომხმარებლების ძებნა", "search": "მომხმარებლების ძებნა",
"selected-users": "{ count, plural, 1 {1 მომხმარებელი} other {# მომხმარებლები} } მონიშნულია", "selected-users": "{ count, plural, =1 {1 მომხმარებელი} other {# მომხმარებლები} } მონიშნულია",
"disable-account": "მომხმარებლის ანგარიშის გამორთვა", "disable-account": "მომხმარებლის ანგარიშის გამორთვა",
"enable-account": "მომხმარებლის ანგარიშის ჩართვა", "enable-account": "მომხმარებლის ანგარიშის ჩართვა",
"enable-account-message": "მომხმარებლის ანგარიშის წარმატებით ჩაირთო!", "enable-account-message": "მომხმარებლის ანგარიშის წარმატებით ჩაირთო!",
@ -1615,8 +1615,8 @@
"widgets-bundle-details": "ვიჯეტების ნაკრების დეტალები", "widgets-bundle-details": "ვიჯეტების ნაკრების დეტალები",
"delete-widgets-bundle-title": "დარწმუნებული ხართ რომ გსურთ ვიჯეტების ნაკრების წაშლა '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "დარწმუნებული ხართ რომ გსურთ ვიჯეტების ნაკრების წაშლა '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "ფრთხილად, დადასტურების შემდეგ ვიჯეტების ნაკრები და მასთან ასოცირებული მონაცემები იქნება დაკარგული.", "delete-widgets-bundle-text": "ფრთხილად, დადასტურების შემდეგ ვიჯეტების ნაკრები და მასთან ასოცირებული მონაცემები იქნება დაკარგული.",
"delete-widgets-bundles-title": "დარწმუნებული ხარ რომ გსურს წაშალო { count, plural, 1 {1 ვიჯეტის ნაკრები} other {# ვიჯეტების ნაკრები} }?", "delete-widgets-bundles-title": "დარწმუნებული ხარ რომ გსურს წაშალო { count, plural, =1 {1 ვიჯეტის ნაკრები} other {# ვიჯეტების ნაკრები} }?",
"delete-widgets-bundles-action-title": "{ count, plural, 1 {1 ვიჯეტის ნაკრები} other {# ვიჯეტის ნაკრებები} } წაშლა", "delete-widgets-bundles-action-title": "{ count, plural, =1 {1 ვიჯეტის ნაკრები} other {# ვიჯეტის ნაკრებები} } წაშლა",
"delete-widgets-bundles-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული ვიჯეტების ნაკრები და მასთან ასოცირებული მონაცემები იქნება დაკარგული.", "delete-widgets-bundles-text": "ფრთხილად, დადასტურების შემდეგ ყველა მონიშნული ვიჯეტების ნაკრები და მასთან ასოცირებული მონაცემები იქნება დაკარგული.",
"no-widgets-bundles-matching": "ვიჯეტის ნაკრები '{{widgetsBundle}}' ვერ მოიძებნა.", "no-widgets-bundles-matching": "ვიჯეტის ნაკრები '{{widgetsBundle}}' ვერ მოიძებნა.",
"widgets-bundle-required": "ვიჯეტის ნაკრები სავალდებულოა.", "widgets-bundle-required": "ვიჯეტის ნაკრები სავალდებულოა.",
@ -1654,7 +1654,7 @@
"display-timewindow": "ქრონომეტრაჟის ჩვენება", "display-timewindow": "ქრონომეტრაჟის ჩვენება",
"display-legend": "ლეგენდის ჩვენება", "display-legend": "ლეგენდის ჩვენება",
"datasources": "მონაცემთა წყაროები", "datasources": "მონაცემთა წყაროები",
"maximum-datasources": "მაქს. { count, plural, 1 {1 მონცემთა წყარო დაშვებულია.} other {# მონაცემტა წყაროები დაშვებულია} }", "maximum-datasources": "მაქს. { count, plural, =1 {1 მონცემთა წყარო დაშვებულია.} other {# მონაცემტა წყაროები დაშვებულია} }",
"datasource-type": "ტიპი", "datasource-type": "ტიპი",
"datasource-parameters": "პარამეტრები", "datasource-parameters": "პარამეტრები",
"remove-datasource": "მონაცემთა წყაროს წაშლა", "remove-datasource": "მონაცემთა წყაროს წაშლა",

174
ui-ngx/src/assets/locale/locale.constant-ko_KR.json

@ -265,17 +265,17 @@
"acknowledge": "확인", "acknowledge": "확인",
"clear": "지우기", "clear": "지우기",
"search": "알람 검색", "search": "알람 검색",
"selected-alarms": "{ count, plural, 1 {1 개 알람} other {# 개 알람} }이 선택됨", "selected-alarms": "{ count, plural, =1 {1 개 알람} other {# 개 알람} }이 선택됨",
"no-data": "표시할 데이터가 없습니다", "no-data": "표시할 데이터가 없습니다",
"polling-interval": "알람 풀링 간격 (초)", "polling-interval": "알람 풀링 간격 (초)",
"polling-interval-required": "알람 풀링 간격을 입력하세요.", "polling-interval-required": "알람 풀링 간격을 입력하세요.",
"min-polling-interval-message": "1초 이상의 간격만 허용됩니다.", "min-polling-interval-message": "1초 이상의 간격만 허용됩니다.",
"aknowledge-alarms-title": "{ count, plural, 1 {1 개 알람} other {# 개 알람} } 확인", "aknowledge-alarms-title": "{ count, plural, =1 {1 개 알람} other {# 개 알람} } 확인",
"aknowledge-alarms-text": "{ count, plural, 1 {1 개 알람} other {# 개 알람} }의 알람을 수용하시겠습니까?", "aknowledge-alarms-text": "{ count, plural, =1 {1 개 알람} other {# 개 알람} }의 알람을 수용하시겠습니까?",
"aknowledge-alarm-title": "알람 확인", "aknowledge-alarm-title": "알람 확인",
"aknowledge-alarm-text": "알람을 확인하시겠습니까??", "aknowledge-alarm-text": "알람을 확인하시겠습니까??",
"clear-alarms-title": "{ count, plural, 1 {1 개 알람} other {# 개 알람} } 해제", "clear-alarms-title": "{ count, plural, =1 {1 개 알람} other {# 개 알람} } 해제",
"clear-alarms-text": "{ count, plural, 1 {1 개 알람} other {# 개 알람} }을 해제하시겠습니까?", "clear-alarms-text": "{ count, plural, =1 {1 개 알람} other {# 개 알람} }을 해제하시겠습니까?",
"clear-alarm-title": "알람 해제", "clear-alarm-title": "알람 해제",
"clear-alarm-text": "알람을 해제하시겠습니까?", "clear-alarm-text": "알람을 해제하시겠습니까?",
"alarm-status-filter": "알람 상태 필터", "alarm-status-filter": "알람 상태 필터",
@ -373,15 +373,15 @@
"add-asset-text": "새로운 자산 추가", "add-asset-text": "새로운 자산 추가",
"asset-details": "자산 상세 내역", "asset-details": "자산 상세 내역",
"assign-assets": "자산 할당", "assign-assets": "자산 할당",
"assign-assets-text": "{ count, plural, 1 {1 개 자산} other {# 개 자산} }을 커스터머에게 할당", "assign-assets-text": "{ count, plural, =1 {1 개 자산} other {# 개 자산} }을 커스터머에게 할당",
"delete-assets": "자산 삭제", "delete-assets": "자산 삭제",
"unassign-assets": "자산 할당 해제", "unassign-assets": "자산 할당 해제",
"unassign-assets-action-title": "{ count, plural, 1 {1 개 자산} other {# 개 자산} }을 커스터머로부터 할당 해제", "unassign-assets-action-title": "{ count, plural, =1 {1 개 자산} other {# 개 자산} }을 커스터머로부터 할당 해제",
"assign-new-asset": "새로운 자산 할당", "assign-new-asset": "새로운 자산 할당",
"delete-asset-title": "자산 '{{assetName}}'을(를) 삭제하시겠습니까?", "delete-asset-title": "자산 '{{assetName}}'을(를) 삭제하시겠습니까?",
"delete-asset-text": "자산 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-asset-text": "자산 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"delete-assets-title": "{ count, plural, 1 {1 개 자산} other {# 개 자산} }을 삭제하시겠습니까?", "delete-assets-title": "{ count, plural, =1 {1 개 자산} other {# 개 자산} }을 삭제하시겠습니까?",
"delete-assets-action-title": "{ count, plural, 1 {1 개 자산} other {# 개 자산} } 삭제", "delete-assets-action-title": "{ count, plural, =1 {1 개 자산} other {# 개 자산} } 삭제",
"delete-assets-text": "자산 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-assets-text": "자산 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"make-public-asset-title": "자산 '{{assetName}}'을(를) 공개 상태로 변경하시겠습니까?", "make-public-asset-title": "자산 '{{assetName}}'을(를) 공개 상태로 변경하시겠습니까?",
"make-public-asset-text": "자산 및 관련 데이터가 공개로 전환되면 다른 이들이 접근할 수 있게 됩니다.", "make-public-asset-text": "자산 및 관련 데이터가 공개로 전환되면 다른 이들이 접근할 수 있게 됩니다.",
@ -390,7 +390,7 @@
"unassign-asset-title": "자산 '{{assetName}}'을 할당 해제 하시겠습니까?", "unassign-asset-title": "자산 '{{assetName}}'을 할당 해제 하시겠습니까?",
"unassign-asset-text": "자산이 할당 해제되면 커스터머가 접근할 수 없게 됩니다.", "unassign-asset-text": "자산이 할당 해제되면 커스터머가 접근할 수 없게 됩니다.",
"unassign-asset": "자산 할당 해제", "unassign-asset": "자산 할당 해제",
"unassign-assets-title": "{ count, plural, 1 {1 개 자산} other {# 개 자산} }을 할당 해제 하시겠습니까?", "unassign-assets-title": "{ count, plural, =1 {1 개 자산} other {# 개 자산} }을 할당 해제 하시겠습니까?",
"unassign-assets-text": "자산이 할당 해제되면 커스터머가 접근할 수 없게 됩니다.", "unassign-assets-text": "자산이 할당 해제되면 커스터머가 접근할 수 없게 됩니다.",
"copyId": "자산 ID 복사", "copyId": "자산 ID 복사",
"idCopiedMessage": "자산 ID가 클립보드로 복사되었습니다", "idCopiedMessage": "자산 ID가 클립보드로 복사되었습니다",
@ -401,7 +401,7 @@
"import": "자산 불러오기", "import": "자산 불러오기",
"asset-file": "자산 파일", "asset-file": "자산 파일",
"search": "자산 검색", "search": "자산 검색",
"selected-assets": "{ count, plural, 1 {1 개 자산} other {# 개 자산} } 선택됨", "selected-assets": "{ count, plural, =1 {1 개 자산} other {# 개 자산} } 선택됨",
"label": "라벨" "label": "라벨"
}, },
"attribute": { "attribute": {
@ -418,7 +418,7 @@
"key-required": "속성 키를 입력하세요.", "key-required": "속성 키를 입력하세요.",
"value": "Value", "value": "Value",
"value-required": "속성 값을 입력하세요.", "value-required": "속성 값을 입력하세요.",
"delete-attributes-title": "{ count, plural, 1 {속성} other {여러 속성들을} } 삭제하시겠습니까??", "delete-attributes-title": "{ count, plural, =1 {속성} other {여러 속성들을} } 삭제하시겠습니까??",
"delete-attributes-text": "모든 선택된 속성들이 제거 될 것이므로 주의하십시오.", "delete-attributes-text": "모든 선택된 속성들이 제거 될 것이므로 주의하십시오.",
"delete-attributes": "속성 삭제", "delete-attributes": "속성 삭제",
"enter-attribute-value": "속성 값 입력", "enter-attribute-value": "속성 값 입력",
@ -428,8 +428,8 @@
"prev-widget": "이전 위젯", "prev-widget": "이전 위젯",
"add-to-dashboard": "대시보드에 추가", "add-to-dashboard": "대시보드에 추가",
"add-widget-to-dashboard": "대시보드에 위젯 추가", "add-widget-to-dashboard": "대시보드에 위젯 추가",
"selected-attributes": "{ count, plural, 1 {1 개 속성} other {# 개 속성} }이 선택됨", "selected-attributes": "{ count, plural, =1 {1 개 속성} other {# 개 속성} }이 선택됨",
"selected-telemetry": "{ count, plural, 1 {1 개의 텔레메트리 단위} other {# 개의 텔레메트리 단위} }가 선택됨", "selected-telemetry": "{ count, plural, =1 {1 개의 텔레메트리 단위} other {# 개의 텔레메트리 단위} }가 선택됨",
"no-attributes-text": "아무 속성도 찾을 수 없습니다", "no-attributes-text": "아무 속성도 찾을 수 없습니다",
"no-telemetry-text": "아무 텔레메트리도 찾을 수 없습니다." "no-telemetry-text": "아무 텔레메트리도 찾을 수 없습니다."
}, },
@ -588,8 +588,8 @@
"customer-details": "커스터머 상세 정보", "customer-details": "커스터머 상세 정보",
"delete-customer-title": "'{{customerTitle}}' 커스터머를 삭제하시겠습니까?", "delete-customer-title": "'{{customerTitle}}' 커스터머를 삭제하시겠습니까?",
"delete-customer-text": "커스터머 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-customer-text": "커스터머 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"delete-customers-title": "{ count, plural, 1 {1 개 커스터머} other {# 개 커스터머} }를 삭제하시겠습니까?", "delete-customers-title": "{ count, plural, =1 {1 개 커스터머} other {# 개 커스터머} }를 삭제하시겠습니까?",
"delete-customers-action-title": "{ count, plural, 1 {1 개 커스터머} other {# 개 커스터머} } 삭제", "delete-customers-action-title": "{ count, plural, =1 {1 개 커스터머} other {# 개 커스터머} } 삭제",
"delete-customers-text": "커스터머 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-customers-text": "커스터머 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"manage-users": "사용자 관리", "manage-users": "사용자 관리",
"manage-assets": "자산 관리", "manage-assets": "자산 관리",
@ -609,7 +609,7 @@
"default-customer": "기본 커스터머", "default-customer": "기본 커스터머",
"default-customer-required": "테넌트 수준에서 대시보드를 디버그 하기 위해서는 기본 커스터머이 필요합니다.", "default-customer-required": "테넌트 수준에서 대시보드를 디버그 하기 위해서는 기본 커스터머이 필요합니다.",
"search": "커스터머 검색", "search": "커스터머 검색",
"selected-customers": "{ count, plural, 1 {1 개 커스터머} other {# 개 커스터머} } 선택됨" "selected-customers": "{ count, plural, =1 {1 개 커스터머} other {# 개 커스터머} } 선택됨"
}, },
"datetime": { "datetime": {
"date-from": "시작 날짜", "date-from": "시작 날짜",
@ -650,20 +650,20 @@
"add-dashboard-text": "대시보드 추가", "add-dashboard-text": "대시보드 추가",
"assign-dashboards": "대시보드 할당", "assign-dashboards": "대시보드 할당",
"assign-new-dashboard": "새 대시보드 할당", "assign-new-dashboard": "새 대시보드 할당",
"assign-dashboards-text": "{ count, plural, 1 {1 개 대시보드} other {# 개 대시보드} }를 커스터머에 할당", "assign-dashboards-text": "{ count, plural, =1 {1 개 대시보드} other {# 개 대시보드} }를 커스터머에 할당",
"unassign-dashboards-action-text": "{ count, plural, 1 {1 개 대시보드} other {# 개 대시보드} }를 커스터머로부터 지정 해제", "unassign-dashboards-action-text": "{ count, plural, =1 {1 개 대시보드} other {# 개 대시보드} }를 커스터머로부터 지정 해제",
"delete-dashboards": "대시보드 삭제", "delete-dashboards": "대시보드 삭제",
"unassign-dashboards": "대시보드 할당 취소", "unassign-dashboards": "대시보드 할당 취소",
"unassign-dashboards-action-title": "{ count, plural, 1 {1 개 대시보드} other {# 개 대시보드} }를 커스터머에 할당 취소", "unassign-dashboards-action-title": "{ count, plural, =1 {1 개 대시보드} other {# 개 대시보드} }를 커스터머에 할당 취소",
"delete-dashboard-title": "대시보드 '{{dashboardTitle}}'을(를) 삭제하시겠습니까?", "delete-dashboard-title": "대시보드 '{{dashboardTitle}}'을(를) 삭제하시겠습니까?",
"delete-dashboard-text": "대시보드 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-dashboard-text": "대시보드 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"delete-dashboards-title": "{ count, plural, 1 {1 개 대시보드} other {# 개 대시보드} }를 삭제하시겠습니까?", "delete-dashboards-title": "{ count, plural, =1 {1 개 대시보드} other {# 개 대시보드} }를 삭제하시겠습니까?",
"delete-dashboards-action-title": "{ count, plural, 1 {1 개 대시보드} other {# 개 대시보드} }를 삭제", "delete-dashboards-action-title": "{ count, plural, =1 {1 개 대시보드} other {# 개 대시보드} }를 삭제",
"delete-dashboards-text": "대시보드 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-dashboards-text": "대시보드 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"unassign-dashboard-title": "대시보드 '{{dashboardTitle}}'의 할당을 해제하시겠습니까?", "unassign-dashboard-title": "대시보드 '{{dashboardTitle}}'의 할당을 해제하시겠습니까?",
"unassign-dashboard-text": "대시보드가 할당 해제되고 커스터머는 접근 할 수 없게 됩니다.", "unassign-dashboard-text": "대시보드가 할당 해제되고 커스터머는 접근 할 수 없게 됩니다.",
"unassign-dashboard": "대시보드 할달 취소", "unassign-dashboard": "대시보드 할달 취소",
"unassign-dashboards-title": "{ count, plural, 1 {1 개 대시보드} other {# 개 대시보드} }의 할당을 취소하시겠습니까?", "unassign-dashboards-title": "{ count, plural, =1 {1 개 대시보드} other {# 개 대시보드} }의 할당을 취소하시겠습니까?",
"unassign-dashboards-text": "선택된 대시보드가 할당 해제되고 커스터머는 접근 할 수 없게 됩니다.", "unassign-dashboards-text": "선택된 대시보드가 할당 해제되고 커스터머는 접근 할 수 없게 됩니다.",
"public-dashboard-title": "대시보드가 공개되었습니다", "public-dashboard-title": "대시보드가 공개되었습니다",
"public-dashboard-text": "당신의 대시보드 <b>{{dashboardTitle}}</b>는 이제 공개되어서 다음 공개 <a href='{{publicLink}}' target='_blank'>링크</a>를 통해 접근될 수 있습니다:", "public-dashboard-text": "당신의 대시보드 <b>{{dashboardTitle}}</b>는 이제 공개되어서 다음 공개 <a href='{{publicLink}}' target='_blank'>링크</a>를 통해 접근될 수 있습니다:",
@ -744,7 +744,7 @@
"manage-states": "대시보드 상태 관리", "manage-states": "대시보드 상태 관리",
"states": "대시보드 상태", "states": "대시보드 상태",
"search-states": "대시보드 상태 검색", "search-states": "대시보드 상태 검색",
"selected-states": "{ count, plural, 1 {1 개 대시보드 상태} other {# 개 대시보드 상태} } 선택됨", "selected-states": "{ count, plural, =1 {1 개 대시보드 상태} other {# 개 대시보드 상태} } 선택됨",
"edit-state": "대시보드 상태 편집", "edit-state": "대시보드 상태 편집",
"delete-state": "대시보드 상태 삭제", "delete-state": "대시보드 상태 삭제",
"add-state": "대시보드 상태 추가", "add-state": "대시보드 상태 추가",
@ -763,7 +763,7 @@
"select-state": "대상 상태 선택", "select-state": "대상 상태 선택",
"state-controller": "상태 컨트롤러", "state-controller": "상태 컨트롤러",
"search": "대시보드 검색", "search": "대시보드 검색",
"selected-dashboards": "{ count, plural, 1 {1 개 대시보드} other {# 개 대시보드} } 선택됨" "selected-dashboards": "{ count, plural, =1 {1 개 대시보드} other {# 개 대시보드} } 선택됨"
}, },
"datakey": { "datakey": {
"settings": "설정", "settings": "설정",
@ -782,11 +782,11 @@
"timeseries-required": "장치 시계열 를 입력하세요.", "timeseries-required": "장치 시계열 를 입력하세요.",
"timeseries-or-attributes-required": "장치 시계열/속성 를 입력하세요.", "timeseries-or-attributes-required": "장치 시계열/속성 를 입력하세요.",
"alarm-fields-timeseries-or-attributes-required": "Alarm fields or entity timeseries/attributes are required.", "alarm-fields-timeseries-or-attributes-required": "Alarm fields or entity timeseries/attributes are required.",
"maximum-timeseries-or-attributes": "Maximum { count, plural, 1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }", "maximum-timeseries-or-attributes": "Maximum { count, plural, =1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }",
"alarm-fields-required": "알람 필드를 입력하세요.", "alarm-fields-required": "알람 필드를 입력하세요.",
"function-types": "함수 유형", "function-types": "함수 유형",
"function-types-required": "함수 유형을 입력하세요.", "function-types-required": "함수 유형을 입력하세요.",
"maximum-function-types": "최대 { count, plural, 1 {1 개 함수} other {# 개 함수} } 종류만 허용됩니다.", "maximum-function-types": "최대 { count, plural, =1 {1 개 함수} other {# 개 함수} } 종류만 허용됩니다.",
"time-description": "현재 값의 타임스탬프;", "time-description": "현재 값의 타임스탬프;",
"value-description": "현재 값;", "value-description": "현재 값;",
"prev-value-description": "이전 함수 호출의 결과;", "prev-value-description": "이전 함수 호출의 결과;",
@ -845,11 +845,11 @@
"manage-credentials": "자격 증명 관리", "manage-credentials": "자격 증명 관리",
"delete": "장치 삭제", "delete": "장치 삭제",
"assign-devices": "장치 할당", "assign-devices": "장치 할당",
"assign-devices-text": "{ count, plural, 1 {장치 1 개} other {장치 # 개} }를 커스터머에 할당", "assign-devices-text": "{ count, plural, =1 {장치 1 개} other {장치 # 개} }를 커스터머에 할당",
"delete-devices": "장치 삭제", "delete-devices": "장치 삭제",
"unassign-from-customer": "커스터머 할당 해제", "unassign-from-customer": "커스터머 할당 해제",
"unassign-devices": "장치 할당 취소", "unassign-devices": "장치 할당 취소",
"unassign-devices-action-title": "{ count, plural, 1 {장치 1 개} other {장치 # 개} }를 커스터머에게서 할당 해제", "unassign-devices-action-title": "{ count, plural, =1 {장치 1 개} other {장치 # 개} }를 커스터머에게서 할당 해제",
"assign-new-device": "새로운 장치 할당", "assign-new-device": "새로운 장치 할당",
"make-public-device-title": "Are you sure you want to make the device '{{deviceName}}' public?", "make-public-device-title": "Are you sure you want to make the device '{{deviceName}}' public?",
"make-public-device-text": "After the confirmation the device and all its data will be made public and accessible by others.", "make-public-device-text": "After the confirmation the device and all its data will be made public and accessible by others.",
@ -858,13 +858,13 @@
"view-credentials": "크리덴셜 보기", "view-credentials": "크리덴셜 보기",
"delete-device-title": "'{{deviceName}}' 장치를 삭제하시겠습니까?", "delete-device-title": "'{{deviceName}}' 장치를 삭제하시겠습니까?",
"delete-device-text": "장치 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-device-text": "장치 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"delete-devices-title": "{ count, plural, 1 {장치 1 개} other {장치 # 개} }를 삭제하시겠습니까?", "delete-devices-title": "{ count, plural, =1 {장치 1 개} other {장치 # 개} }를 삭제하시겠습니까?",
"delete-devices-action-title": "{ count, plural, 1 {장치 1 개} other {장치 # 개} } 삭제", "delete-devices-action-title": "{ count, plural, =1 {장치 1 개} other {장치 # 개} } 삭제",
"delete-devices-text": "장치 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-devices-text": "장치 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"unassign-device-title": "'{{deviceName}}' 장치 할당을 해제하시겠습니까?", "unassign-device-title": "'{{deviceName}}' 장치 할당을 해제하시겠습니까?",
"unassign-device-text": "장치가 할당 해제되고 커스터머는 액세스 할 수 없게됩니다.", "unassign-device-text": "장치가 할당 해제되고 커스터머는 액세스 할 수 없게됩니다.",
"unassign-device": "장치 할당 취소", "unassign-device": "장치 할당 취소",
"unassign-devices-title": "{ count, plural, 1 {장치 1 개} other {장치 # 개} }의 할당을 해제하시겠습니까??", "unassign-devices-title": "{ count, plural, =1 {장치 1 개} other {장치 # 개} }의 할당을 해제하시겠습니까??",
"unassign-devices-text": "선택된 장치가 할당 해제되고 커스터머는 액세스 할 수 없게됩니다.", "unassign-devices-text": "선택된 장치가 할당 해제되고 커스터머는 액세스 할 수 없게됩니다.",
"device-credentials": "장치 크리덴셜", "device-credentials": "장치 크리덴셜",
"credentials-type": "크리덴셜 타입", "credentials-type": "크리덴셜 타입",
@ -909,7 +909,7 @@
"import": "장치 불러오기", "import": "장치 불러오기",
"device-file": "장치 파일", "device-file": "장치 파일",
"search": "장치 검색", "search": "장치 검색",
"selected-devices": "{ count, plural, 1 {1 개 장치} other {# 개 장치} } 선택됨", "selected-devices": "{ count, plural, =1 {1 개 장치} other {# 개 장치} } 선택됨",
"device-configuration": "장치 설정", "device-configuration": "장치 설정",
"transport-configuration": "전송 설정", "transport-configuration": "전송 설정",
"wizard": { "wizard": {
@ -931,7 +931,7 @@
"device-profile-details": "장치 프로파일 상세 정보", "device-profile-details": "장치 프로파일 상세 정보",
"no-device-profiles-text": "아무 장치 프로파일도 찾을 수 없습니다", "no-device-profiles-text": "아무 장치 프로파일도 찾을 수 없습니다",
"search": "장치 프로파일 검색", "search": "장치 프로파일 검색",
"selected-device-profiles": "{ count, plural, 1 {1 개 장치 프로파일} other {# 개 장치 프로파일} } 선택됨", "selected-device-profiles": "{ count, plural, =1 {1 개 장치 프로파일} other {# 개 장치 프로파일} } 선택됨",
"no-device-profiles-matching": "No device profile matching '{{entity}}' were found.", "no-device-profiles-matching": "No device profile matching '{{entity}}' were found.",
"device-profile-required": "장치 프로파일을 입력하세요", "device-profile-required": "장치 프로파일을 입력하세요",
"idCopiedMessage": "Device profile Id has been copied to clipboard", "idCopiedMessage": "Device profile Id has been copied to clipboard",
@ -961,7 +961,7 @@
"select-queue-hint": "Select from a drop-down list.", "select-queue-hint": "Select from a drop-down list.",
"delete-device-profile-title": "Are you sure you want to delete the device profile '{{deviceProfileName}}'?", "delete-device-profile-title": "Are you sure you want to delete the device profile '{{deviceProfileName}}'?",
"delete-device-profile-text": "Be careful, after the confirmation the device profile and all related data will become unrecoverable.", "delete-device-profile-text": "Be careful, after the confirmation the device profile and all related data will become unrecoverable.",
"delete-device-profiles-title": "Are you sure you want to delete { count, plural, 1 {1 개 장치 프로파일} other {# 개 장치 프로파일} }?", "delete-device-profiles-title": "Are you sure you want to delete { count, plural, =1 {1 개 장치 프로파일} other {# 개 장치 프로파일} }?",
"delete-device-profiles-text": "Be careful, after the confirmation all selected device profiles will be removed and all related data will become unrecoverable.", "delete-device-profiles-text": "Be careful, after the confirmation all selected device profiles will be removed and all related data will become unrecoverable.",
"set-default-device-profile-title": "Are you sure you want to make the device profile '{{deviceProfileName}}' default?", "set-default-device-profile-title": "Are you sure you want to make the device profile '{{deviceProfileName}}' default?",
"set-default-device-profile-text": "After the confirmation the device profile will be marked as default and will be used for new devices with no profile specified.", "set-default-device-profile-text": "After the confirmation the device profile will be marked as default and will be used for new devices with no profile specified.",
@ -1049,7 +1049,7 @@
"condition-repeating-value-range": "Count of events should be in a range from 1 to 2147483647.", "condition-repeating-value-range": "Count of events should be in a range from 1 to 2147483647.",
"condition-repeating-value-pattern": "Count of events should be integers.", "condition-repeating-value-pattern": "Count of events should be integers.",
"condition-repeating-value-required": "Count of events is required.", "condition-repeating-value-required": "Count of events is required.",
"condition-repeat-times": "Repeats { count, plural, 1 {1 time} other {# times} }", "condition-repeat-times": "Repeats { count, plural, =1 {1 time} other {# times} }",
"schedule-type": "Scheduler type", "schedule-type": "Scheduler type",
"schedule-type-required": "Scheduler type is required.", "schedule-type-required": "Scheduler type is required.",
"schedule": "Schedule", "schedule": "Schedule",
@ -1126,66 +1126,66 @@
"type-required": "개체의 유형을 입력하세요.", "type-required": "개체의 유형을 입력하세요.",
"type-device": "장치", "type-device": "장치",
"type-devices": "장치", "type-devices": "장치",
"list-of-devices": "{ count, plural, 1 {1 개 장치} other {# 개 장치} }", "list-of-devices": "{ count, plural, =1 {1 개 장치} other {# 개 장치} }",
"device-name-starts-with": "이름이 '{{prefix}}'로 시작되는 장치", "device-name-starts-with": "이름이 '{{prefix}}'로 시작되는 장치",
"type-device-profile": "Device profile", "type-device-profile": "Device profile",
"type-device-profiles": "Device profiles", "type-device-profiles": "Device profiles",
"list-of-device-profiles": "{ count, plural, 1 {1 개 장치 프로파일} other {# 개 장치 프로파일 목록} }", "list-of-device-profiles": "{ count, plural, =1 {1 개 장치 프로파일} other {# 개 장치 프로파일 목록} }",
"device-profile-name-starts-with": "Device profiles whose names start with '{{prefix}}'", "device-profile-name-starts-with": "Device profiles whose names start with '{{prefix}}'",
"type-asset": "자산", "type-asset": "자산",
"type-assets": "자산", "type-assets": "자산",
"list-of-assets": "{ count, plural, 1 {1 개 자산} other {# 개 자산} }", "list-of-assets": "{ count, plural, =1 {1 개 자산} other {# 개 자산} }",
"asset-name-starts-with": "이름이 '{{prefix}}'로 시작되는 자산", "asset-name-starts-with": "이름이 '{{prefix}}'로 시작되는 자산",
"type-entity-view": "개체 보기", "type-entity-view": "개체 보기",
"type-entity-views": "개체 보기", "type-entity-views": "개체 보기",
"list-of-entity-views": "{ count, plural, 1 {1 개 자산 보기} other {# 개 자산 보기} }", "list-of-entity-views": "{ count, plural, =1 {1 개 자산 보기} other {# 개 자산 보기} }",
"entity-view-name-starts-with": "이름이 '{{prefix}}'로 시작되는 자산 보기", "entity-view-name-starts-with": "이름이 '{{prefix}}'로 시작되는 자산 보기",
"type-rule": "규칙", "type-rule": "규칙",
"type-rules": "규칙", "type-rules": "규칙",
"list-of-rules": "{ count, plural, 1 {1 개 규칙} other {# 개 규칙} }", "list-of-rules": "{ count, plural, =1 {1 개 규칙} other {# 개 규칙} }",
"rule-name-starts-with": "이름이 '{{prefix}}'로 시작되는 규칙", "rule-name-starts-with": "이름이 '{{prefix}}'로 시작되는 규칙",
"type-plugin": "플러그인", "type-plugin": "플러그인",
"type-plugins": "플러그인", "type-plugins": "플러그인",
"list-of-plugins": "{ count, plural, 1 {1 개 플러그인} other {# 개 플러그인} }", "list-of-plugins": "{ count, plural, =1 {1 개 플러그인} other {# 개 플러그인} }",
"plugin-name-starts-with": "이름이 '{{prefix}}'로 시작되는 플러그인", "plugin-name-starts-with": "이름이 '{{prefix}}'로 시작되는 플러그인",
"type-tenant": "테넌트", "type-tenant": "테넌트",
"type-tenants": "테넌트", "type-tenants": "테넌트",
"list-of-tenants": "{ count, plural, 1 {1 개 테넌트} other {# 개 테넌트} }", "list-of-tenants": "{ count, plural, =1 {1 개 테넌트} other {# 개 테넌트} }",
"tenant-name-starts-with": "이름이 '{{prefix}}'로 시작되는 테넌트", "tenant-name-starts-with": "이름이 '{{prefix}}'로 시작되는 테넌트",
"type-tenant-profile": "테넌트 프로파일", "type-tenant-profile": "테넌트 프로파일",
"type-tenant-profiles": "테넌트 프로파일", "type-tenant-profiles": "테넌트 프로파일",
"list-of-tenant-profiles": "{ count, plural, 1 {1 개 테넌트 프로파일} other {# 개 테넌트 프로파일 목록} }", "list-of-tenant-profiles": "{ count, plural, =1 {1 개 테넌트 프로파일} other {# 개 테넌트 프로파일 목록} }",
"tenant-profile-name-starts-with": "'이름이 {{prefix}}'로 시작하는 테넌트 프로파일", "tenant-profile-name-starts-with": "'이름이 {{prefix}}'로 시작하는 테넌트 프로파일",
"type-customer": "커스터머", "type-customer": "커스터머",
"type-customers": "커스터머", "type-customers": "커스터머",
"list-of-customers": "{ count, plural, 1 {1 개 커스터머} other {# 개 커스터머} }", "list-of-customers": "{ count, plural, =1 {1 개 커스터머} other {# 개 커스터머} }",
"customer-name-starts-with": "이름이 '{{prefix}}'로 시작되는 커스터머", "customer-name-starts-with": "이름이 '{{prefix}}'로 시작되는 커스터머",
"type-user": "사용자", "type-user": "사용자",
"type-users": "사용자", "type-users": "사용자",
"list-of-users": "{ count, plural, 1 {1 개 사용자} other {# 개 사용자} }", "list-of-users": "{ count, plural, =1 {1 개 사용자} other {# 개 사용자} }",
"user-name-starts-with": "이름이 '{{prefix}}'로 시작되는 사용자", "user-name-starts-with": "이름이 '{{prefix}}'로 시작되는 사용자",
"type-dashboard": "대시보드", "type-dashboard": "대시보드",
"type-dashboards": "대시보드", "type-dashboards": "대시보드",
"list-of-dashboards": "{ count, plural, 1 {1 개 대시보드} other {# 개 대시보드} }", "list-of-dashboards": "{ count, plural, =1 {1 개 대시보드} other {# 개 대시보드} }",
"dashboard-name-starts-with": "이름이 '{{prefix}}'로 시작되는 대시보드", "dashboard-name-starts-with": "이름이 '{{prefix}}'로 시작되는 대시보드",
"type-alarm": "알람", "type-alarm": "알람",
"type-alarms": "알람", "type-alarms": "알람",
"list-of-alarms": "{ count, plural, 1 {1 개 알람} other {# 개 알람} }", "list-of-alarms": "{ count, plural, =1 {1 개 알람} other {# 개 알람} }",
"alarm-name-starts-with": "이름이 '{{prefix}}'로 시작되는 알람", "alarm-name-starts-with": "이름이 '{{prefix}}'로 시작되는 알람",
"type-rulechain": "규칙 사슬", "type-rulechain": "규칙 사슬",
"type-rulechains": "규칙 사슬", "type-rulechains": "규칙 사슬",
"list-of-rulechains": "{ count, plural, 1 {1 개 규칙 사슬} other {# 개 규칙 사슬} }", "list-of-rulechains": "{ count, plural, =1 {1 개 규칙 사슬} other {# 개 규칙 사슬} }",
"rulechain-name-starts-with": "이름이 '{{prefix}}'로 시작되는 규칙 사슬", "rulechain-name-starts-with": "이름이 '{{prefix}}'로 시작되는 규칙 사슬",
"type-rulenode": "규칙 노드", "type-rulenode": "규칙 노드",
"type-rulenodes": "규칙 노드", "type-rulenodes": "규칙 노드",
"list-of-rulenodes": "{ count, plural, 1 {1 개 규칙 노드} other {# 개 규칙 노드의 목록} }", "list-of-rulenodes": "{ count, plural, =1 {1 개 규칙 노드} other {# 개 규칙 노드의 목록} }",
"rulenode-name-starts-with": "이름이 '{{prefix}}'로 시작되는 규칙 노트", "rulenode-name-starts-with": "이름이 '{{prefix}}'로 시작되는 규칙 노트",
"type-current-customer": "현재 커스터머", "type-current-customer": "현재 커스터머",
"type-current-tenant": "현재 테넌트", "type-current-tenant": "현재 테넌트",
"type-current-user": "현재 사용자", "type-current-user": "현재 사용자",
"type-current-user-owner": "현재 소유자", "type-current-user-owner": "현재 소유자",
"search": "개체 검색", "search": "개체 검색",
"selected-entities": "{ count, plural, 1 {1 개체} other {# 개체} } 선택됨", "selected-entities": "{ count, plural, =1 {1 개체} other {# 개체} } 선택됨",
"entity-name": "개체 이름", "entity-name": "개체 이름",
"entity-label": "개체 라벨", "entity-label": "개체 라벨",
"details": "개체 상세", "details": "개체 상세",
@ -1250,21 +1250,21 @@
"add-entity-view-text": "새로운 개체 보기 추가", "add-entity-view-text": "새로운 개체 보기 추가",
"delete": "Delete entity view", "delete": "Delete entity view",
"assign-entity-views": "개체 보기 할당", "assign-entity-views": "개체 보기 할당",
"assign-entity-views-text": "{ count, plural, 1 {1 개 개체 보기} other {# 개 개체 보기} }를 커스터머에 할당", "assign-entity-views-text": "{ count, plural, =1 {1 개 개체 보기} other {# 개 개체 보기} }를 커스터머에 할당",
"delete-entity-views": "Delete entity views", "delete-entity-views": "Delete entity views",
"unassign-from-customer": "Unassign from customer", "unassign-from-customer": "Unassign from customer",
"unassign-entity-views": "Unassign entity views", "unassign-entity-views": "Unassign entity views",
"unassign-entity-views-action-title": "{ count, plural, 1 {1 개 개체 보기} other {# 개 개체 보기} }를 커스터머로 부터 할당 해제", "unassign-entity-views-action-title": "{ count, plural, =1 {1 개 개체 보기} other {# 개 개체 보기} }를 커스터머로 부터 할당 해제",
"assign-new-entity-view": "Assign new entity view", "assign-new-entity-view": "Assign new entity view",
"delete-entity-view-title": "Are you sure you want to delete the entity view '{{entityViewName}}'?", "delete-entity-view-title": "Are you sure you want to delete the entity view '{{entityViewName}}'?",
"delete-entity-view-text": "Be careful, after the confirmation the entity view and all related data will become unrecoverable.", "delete-entity-view-text": "Be careful, after the confirmation the entity view and all related data will become unrecoverable.",
"delete-entity-views-title": "Are you sure you want to delete { count, plural, 1 {1 개 개체 보기} other {# 개 개체 보기} }?", "delete-entity-views-title": "Are you sure you want to delete { count, plural, =1 {1 개 개체 보기} other {# 개 개체 보기} }?",
"delete-entity-views-action-title": "Delete { count, plural, 1 {1 개 개체 보기} other {# 개 개체 보기} }", "delete-entity-views-action-title": "Delete { count, plural, =1 {1 개 개체 보기} other {# 개 개체 보기} }",
"delete-entity-views-text": "Be careful, after the confirmation all selected entity views will be removed and all related data will become unrecoverable.", "delete-entity-views-text": "Be careful, after the confirmation all selected entity views will be removed and all related data will become unrecoverable.",
"unassign-entity-view-title": "Are you sure you want to unassign the entity view '{{entityViewName}}'?", "unassign-entity-view-title": "Are you sure you want to unassign the entity view '{{entityViewName}}'?",
"unassign-entity-view-text": "After the confirmation the entity view will be unassigned and won't be accessible by the customer.", "unassign-entity-view-text": "After the confirmation the entity view will be unassigned and won't be accessible by the customer.",
"unassign-entity-view": "Unassign entity view", "unassign-entity-view": "Unassign entity view",
"unassign-entity-views-title": "Are you sure you want to unassign { count, plural, 1 {1 개 개체 보기} other {# 개 개체 보기} }?", "unassign-entity-views-title": "Are you sure you want to unassign { count, plural, =1 {1 개 개체 보기} other {# 개 개체 보기} }?",
"unassign-entity-views-text": "After the confirmation all selected entity views will be unassigned and won't be accessible by the customer.", "unassign-entity-views-text": "After the confirmation all selected entity views will be unassigned and won't be accessible by the customer.",
"entity-view-type": "개체 보기 유형", "entity-view-type": "개체 보기 유형",
"entity-view-type-required": "Entity View type is required.", "entity-view-type-required": "Entity View type is required.",
@ -1311,7 +1311,7 @@
"make-private-entity-view-title": "Are you sure you want to make the entity view '{{entityViewName}}' private?", "make-private-entity-view-title": "Are you sure you want to make the entity view '{{entityViewName}}' private?",
"make-private-entity-view-text": "After the confirmation the entity view and all its data will be made private and won't be accessible by others.", "make-private-entity-view-text": "After the confirmation the entity view and all its data will be made private and won't be accessible by others.",
"search": "Search entity views", "search": "Search entity views",
"selected-entity-views": "{ count, plural, 1 {1 개 개체 보기} other {# 개 개체 보기} } 선택됨" "selected-entity-views": "{ count, plural, =1 {1 개 개체 보기} other {# 개 개체 보기} } 선택됨"
}, },
"event": { "event": {
"event-type": "이벤트 타입", "event-type": "이벤트 타입",
@ -1345,7 +1345,7 @@
}, },
"extension": { "extension": {
"extensions": "확장", "extensions": "확장",
"selected-extensions": "{ count, plural, 1 {1 개 확장} other {# 개 확장} }이 선택됨", "selected-extensions": "{ count, plural, =1 {1 개 확장} other {# 개 확장} }이 선택됨",
"type": "유형", "type": "유형",
"key": "키", "key": "키",
"value": "값", "value": "값",
@ -1359,7 +1359,7 @@
"edit": "확장 편집", "edit": "확장 편집",
"delete-extension-title": "확장 '{{extensionId}}'을 삭제하시겠습니까?", "delete-extension-title": "확장 '{{extensionId}}'을 삭제하시겠습니까?",
"delete-extension-text": "확장 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-extension-text": "확장 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"delete-extensions-title": "{ count, plural, 1 {1 개 확장} other {# 개 확장} }을 삭제하시겠습니까?", "delete-extensions-title": "{ count, plural, =1 {1 개 확장} other {# 개 확장} }을 삭제하시겠습니까?",
"delete-extensions-text": "선택된 모든 확장이 삭제됩니다.", "delete-extensions-text": "선택된 모든 확장이 삭제됩니다.",
"converters": "변환기", "converters": "변환기",
"converter-id": "변환기 ID", "converter-id": "변환기 ID",
@ -1673,8 +1673,8 @@
"grid": { "grid": {
"delete-item-title": "이 항목을 삭제 하시겠습니까?", "delete-item-title": "이 항목을 삭제 하시겠습니까?",
"delete-item-text": "항목 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-item-text": "항목 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"delete-items-title": "{ count, plural, 1 {아이템 1 개} other {아이템 # 개} }를 삭제하시겠습니까?", "delete-items-title": "{ count, plural, =1 {아이템 1 개} other {아이템 # 개} }를 삭제하시겠습니까?",
"delete-items-action-title": "{ count, plural, 1 {아이템 1 개} other {아이템 # 개} } 삭제", "delete-items-action-title": "{ count, plural, =1 {아이템 1 개} other {아이템 # 개} } 삭제",
"delete-items-text": "항목 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-items-text": "항목 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"add-item-text": "새로운 아이템 추가", "add-item-text": "새로운 아이템 추가",
"no-items-text": "아이템이 없습니다.", "no-items-text": "아이템이 없습니다.",
@ -1824,7 +1824,7 @@
}, },
"from-relations": "발신 관계", "from-relations": "발신 관계",
"to-relations": "수신 관계", "to-relations": "수신 관계",
"selected-relations": "{ count, plural, 1 {1 개 관계} other {# 개 관계} } 선택됨", "selected-relations": "{ count, plural, =1 {1 개 관계} other {# 개 관계} } 선택됨",
"type": "유형", "type": "유형",
"to-entity-type": "받는 개체 유형", "to-entity-type": "받는 개체 유형",
"to-entity-name": "받는 개체 이름", "to-entity-name": "받는 개체 이름",
@ -1840,11 +1840,11 @@
"edit": "관계 편집", "edit": "관계 편집",
"delete-to-relation-title": "개체 '{{entityName}}'을(를) 삭제하시겠습니까?", "delete-to-relation-title": "개체 '{{entityName}}'을(를) 삭제하시겠습니까?",
"delete-to-relation-text": "주의: 개체 '{{entityName}}'는 현재 개체와 관계가 해제됩니다.", "delete-to-relation-text": "주의: 개체 '{{entityName}}'는 현재 개체와 관계가 해제됩니다.",
"delete-to-relations-title": "{ count, plural, 1 {1 개 관계} other {# 개 관계} }를 삭제하시겠습니까?", "delete-to-relations-title": "{ count, plural, =1 {1 개 관계} other {# 개 관계} }를 삭제하시겠습니까?",
"delete-to-relations-text": "주의: 모든 선택된 관계는 제거되며, 해당되는 개체는 현재의 개체와 관계가 해제됩니다.", "delete-to-relations-text": "주의: 모든 선택된 관계는 제거되며, 해당되는 개체는 현재의 개체와 관계가 해제됩니다.",
"delete-from-relation-title": "개체 '{{entityName}}'의 관계를 삭제하시겠습니까?", "delete-from-relation-title": "개체 '{{entityName}}'의 관계를 삭제하시겠습니까?",
"delete-from-relation-text": "주의: 현재 개체는 개체 '{{entityName}}'와의 관계가 해제됩니다.", "delete-from-relation-text": "주의: 현재 개체는 개체 '{{entityName}}'와의 관계가 해제됩니다.",
"delete-from-relations-title": "{ count, plural, 1 {1 개 관계} other {# 개 관계} }를 삭제하시겠습니까?", "delete-from-relations-title": "{ count, plural, =1 {1 개 관계} other {# 개 관계} }를 삭제하시겠습니까?",
"delete-from-relations-text": "주의: 모든 선택된 관계는 제거되며, 현제 개체는 해당되는 대체와 관계가 해제됩니다.", "delete-from-relations-text": "주의: 모든 선택된 관계는 제거되며, 현제 개체는 해당되는 대체와 관계가 해제됩니다.",
"remove-relation-filter": "관계 필터 삭제", "remove-relation-filter": "관계 필터 삭제",
"add-relation-filter": "관계 필터 추가", "add-relation-filter": "관계 필터 추가",
@ -1868,8 +1868,8 @@
"set-root-rulechain-text": "규칙 사슬은 루트가 되며, 인입하는 전송 메시지를 모두 취급하게 됩니다.", "set-root-rulechain-text": "규칙 사슬은 루트가 되며, 인입하는 전송 메시지를 모두 취급하게 됩니다.",
"delete-rulechain-title": "규칙 사슬 '{{ruleChainName}}'을 삭제하시겠습니까?", "delete-rulechain-title": "규칙 사슬 '{{ruleChainName}}'을 삭제하시겠습니까?",
"delete-rulechain-text": "주의: 규칙 사슬 및 관련된 모든 데이터의 복구가 불가능해집니다.", "delete-rulechain-text": "주의: 규칙 사슬 및 관련된 모든 데이터의 복구가 불가능해집니다.",
"delete-rulechains-title": "{ count, plural, 1 {1 개 규칙 사슬} other {# 개 규칙 사슬} }을 삭제하시겠습니까?", "delete-rulechains-title": "{ count, plural, =1 {1 개 규칙 사슬} other {# 개 규칙 사슬} }을 삭제하시겠습니까?",
"delete-rulechains-action-title": "{ count, plural, 1 {1 개 규칙 사슬} other {# 개 규칙 사슬} } 삭제", "delete-rulechains-action-title": "{ count, plural, =1 {1 개 규칙 사슬} other {# 개 규칙 사슬} } 삭제",
"delete-rulechains-text": "주의: 모든 선택된 규칙 사슬은 삭제되며, 모든 관련된 데이터는 복구가 불가능해집니다.", "delete-rulechains-text": "주의: 모든 선택된 규칙 사슬은 삭제되며, 모든 관련된 데이터는 복구가 불가능해집니다.",
"add-rulechain-text": "새로운 규칙 사슬 추가", "add-rulechain-text": "새로운 규칙 사슬 추가",
"no-rulechains-text": "아무 규칙 사슬도 없습니다.", "no-rulechains-text": "아무 규칙 사슬도 없습니다.",
@ -1891,7 +1891,7 @@
"management": "규칙 관리", "management": "규칙 관리",
"debug-mode": "디버그 모드", "debug-mode": "디버그 모드",
"search": "규칙 사슬 검색", "search": "규칙 사슬 검색",
"selected-rulechains": "{ count, plural, 1 {1 개 규칙 사슬} other {# 개 규칙 사슬} } 선택됨", "selected-rulechains": "{ count, plural, =1 {1 개 규칙 사슬} other {# 개 규칙 사슬} } 선택됨",
"open-rulechain": "규칙 사슬 열기" "open-rulechain": "규칙 사슬 열기"
}, },
"rulenode": { "rulenode": {
@ -1982,8 +1982,8 @@
"tenant-details": "테넌트 상세 정보", "tenant-details": "테넌트 상세 정보",
"delete-tenant-title": "'{{tenantTitle}}' 테넌트를 삭제하시겠습니까?", "delete-tenant-title": "'{{tenantTitle}}' 테넌트를 삭제하시겠습니까?",
"delete-tenant-text": "테넌트 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-tenant-text": "테넌트 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"delete-tenants-title": "{ count, plural, 1 {테넌트 1 개} other {테넌트 # 개} }를 삭제하시겠습니까?", "delete-tenants-title": "{ count, plural, =1 {테넌트 1 개} other {테넌트 # 개} }를 삭제하시겠습니까?",
"delete-tenants-action-title": "{ count, plural, 1 {테넌트 1 개} other {테넌트 # 개} } 삭제", "delete-tenants-action-title": "{ count, plural, =1 {테넌트 1 개} other {테넌트 # 개} } 삭제",
"delete-tenants-text": "테넌트 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-tenants-text": "테넌트 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"title": "제목", "title": "제목",
"title-required": "제목을 입력하세요.", "title-required": "제목을 입력하세요.",
@ -1996,7 +1996,7 @@
"no-tenants-matching": "태넌트 '{{entity}}'을(를) 찾을 수 없습니다.", "no-tenants-matching": "태넌트 '{{entity}}'을(를) 찾을 수 없습니다.",
"tenant-required": "테넌트가 필요합니다.", "tenant-required": "테넌트가 필요합니다.",
"search": "테넌트 검색", "search": "테넌트 검색",
"selected-tenants": "{ count, plural, 1 {1 개 테넌트} other {# 개 테넌트} } 선택됨", "selected-tenants": "{ count, plural, =1 {1 개 테넌트} other {# 개 테넌트} } 선택됨",
"isolated-tb-rule-engine": "Processing in isolated ThingsBoard Rule Engine container", "isolated-tb-rule-engine": "Processing in isolated ThingsBoard Rule Engine container",
"isolated-tb-rule-engine-details": "Requires separate microservice(s) per isolated Tenant" "isolated-tb-rule-engine-details": "Requires separate microservice(s) per isolated Tenant"
}, },
@ -2008,7 +2008,7 @@
"tenant-profile-details": "Tenant profile details", "tenant-profile-details": "Tenant profile details",
"no-tenant-profiles-text": "아무 테넌트 프로파일도 찾지 못했습니다", "no-tenant-profiles-text": "아무 테넌트 프로파일도 찾지 못했습니다",
"search": "테넌트 프로파일 검색", "search": "테넌트 프로파일 검색",
"selected-tenant-profiles": "{ count, plural, 1 {1 개 테넌트 프로파일} other {# 개 테넌트 프로파일} } 선택됨", "selected-tenant-profiles": "{ count, plural, =1 {1 개 테넌트 프로파일} other {# 개 테넌트 프로파일} } 선택됨",
"no-tenant-profiles-matching": "No tenant profile matching '{{entity}}' were found.", "no-tenant-profiles-matching": "No tenant profile matching '{{entity}}' were found.",
"tenant-profile-required": "테넌트 프로파일을 입력하세요", "tenant-profile-required": "테넌트 프로파일을 입력하세요",
"idCopiedMessage": "테넌트 프로파일 ID가 클립보드에 저장되었습니다", "idCopiedMessage": "테넌트 프로파일 ID가 클립보드에 저장되었습니다",
@ -2023,7 +2023,7 @@
"default": "기본값", "default": "기본값",
"delete-tenant-profile-title": "Are you sure you want to delete the tenant profile '{{tenantProfileName}}'?", "delete-tenant-profile-title": "Are you sure you want to delete the tenant profile '{{tenantProfileName}}'?",
"delete-tenant-profile-text": "Be careful, after the confirmation the tenant profile and all related data will become unrecoverable.", "delete-tenant-profile-text": "Be careful, after the confirmation the tenant profile and all related data will become unrecoverable.",
"delete-tenant-profiles-title": "{ count, plural, 1 {1 개 테넌트 프로파일} other {# 개 테넌트 프로파일} }을 삭제하시겠습니까?", "delete-tenant-profiles-title": "{ count, plural, =1 {1 개 테넌트 프로파일} other {# 개 테넌트 프로파일} }을 삭제하시겠습니까?",
"delete-tenant-profiles-text": "Be careful, after the confirmation all selected tenant profiles will be removed and all related data will become unrecoverable.", "delete-tenant-profiles-text": "Be careful, after the confirmation all selected tenant profiles will be removed and all related data will become unrecoverable.",
"set-default-tenant-profile-title": "Are you sure you want to make the tenant profile '{{tenantProfileName}}' default?", "set-default-tenant-profile-title": "Are you sure you want to make the tenant profile '{{tenantProfileName}}' default?",
"set-default-tenant-profile-text": "After the confirmation the tenant profile will be marked as default and will be used for new tenants with no profile specified.", "set-default-tenant-profile-text": "After the confirmation the tenant profile will be marked as default and will be used for new tenants with no profile specified.",
@ -2082,10 +2082,10 @@
"max-sms-range": "Maximum number of SMS sent can't be negative" "max-sms-range": "Maximum number of SMS sent can't be negative"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 초} other {# 초} }", "seconds-interval": "{ seconds, plural, =1 {1 초} other {# 초} }",
"minutes-interval": "{ minutes, plural, 1 {1 분} other {# 분} }", "minutes-interval": "{ minutes, plural, =1 {1 분} other {# 분} }",
"hours-interval": "{ hours, plural, 1 {1 시간} other {# 시간} }", "hours-interval": "{ hours, plural, =1 {1 시간} other {# 시간} }",
"days-interval": "{ days, plural, 1 {1 일} other {# 일} }", "days-interval": "{ days, plural, =1 {1 일} other {# 일} }",
"days": "일", "days": "일",
"hours": "시간", "hours": "시간",
"minutes": "분", "minutes": "분",
@ -2099,10 +2099,10 @@
"days": "일" "days": "일"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 {1 일 } other {# 일 } }", "days": "{ days, plural, =1 {1 일 } other {# 일 } }",
"hours": "{ hours, plural, 0 {0 시간 } 1 {1 시간 } other {# 시간 } }", "hours": "{ hours, plural, =0 {0 시간 } =1 {1 시간 } other {# 시간 } }",
"minutes": "{ minutes, plural, 0 {0 분 } 1 {1 분 } other {# 분 } }", "minutes": "{ minutes, plural, =0 {0 분 } =1 {1 분 } other {# 분 } }",
"seconds": "{ seconds, plural, 0 {0 초 } 1 {1 초 } other {# 초 } }", "seconds": "{ seconds, plural, =0 {0 초 } =1 {1 초 } other {# 초 } }",
"realtime": "실시간", "realtime": "실시간",
"history": "기록", "history": "기록",
"last-prefix": "과거", "last-prefix": "과거",
@ -2129,8 +2129,8 @@
"user-details": "사용자 상세 정보", "user-details": "사용자 상세 정보",
"delete-user-title": "사용자 '{{userEmail}}'을(를) 삭제하시겠습니까?", "delete-user-title": "사용자 '{{userEmail}}'을(를) 삭제하시겠습니까?",
"delete-user-text": "사용자 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-user-text": "사용자 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"delete-users-title": "{ count, plural, 1 {사용자 1명} other {사용자 #명} }을 삭제하시겠습니까?", "delete-users-title": "{ count, plural, =1 {사용자 1명} other {사용자 #명} }을 삭제하시겠습니까?",
"delete-users-action-title": "{ count, plural, 1 {사용자 1명} other {사용자 #명} } 삭제", "delete-users-action-title": "{ count, plural, =1 {사용자 1명} other {사용자 #명} } 삭제",
"delete-users-text": "사용자 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-users-text": "사용자 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"activation-email-sent-message": "활성화 이메일을 보냈습니다!", "activation-email-sent-message": "활성화 이메일을 보냈습니다!",
"resend-activation": "활성화 재전송", "resend-activation": "활성화 재전송",
@ -2156,7 +2156,7 @@
"login-as-tenant-admin": "테넌트 관리자로 로그인", "login-as-tenant-admin": "테넌트 관리자로 로그인",
"login-as-customer-user": "커스터머 사용자로 로그인", "login-as-customer-user": "커스터머 사용자로 로그인",
"search": "사용자 검색", "search": "사용자 검색",
"selected-users": "{ count, plural, 1 {1명 사용자} other {#명 사용자} } 선택됨", "selected-users": "{ count, plural, =1 {1명 사용자} other {#명 사용자} } 선택됨",
"disable-account": "사용자 계정 비활성화", "disable-account": "사용자 계정 비활성화",
"enable-account": "사용자 계정 활성", "enable-account": "사용자 계정 활성",
"enable-account-message": "사용자 계정이 성공적으로 활성화 되었습니다!", "enable-account-message": "사용자 계정이 성공적으로 활성화 되었습니다!",
@ -2268,8 +2268,8 @@
"widgets-bundle-details": "위젯 번들 상세 정보", "widgets-bundle-details": "위젯 번들 상세 정보",
"delete-widgets-bundle-title": "'{{widgetsBundleTitle}}' 위젯 번들을 삭제하시겠습니까?", "delete-widgets-bundle-title": "'{{widgetsBundleTitle}}' 위젯 번들을 삭제하시겠습니까?",
"delete-widgets-bundle-text": "위젯 번들 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-widgets-bundle-text": "위젯 번들 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"delete-widgets-bundles-title": "{ count, plural, 1 {위젯 번들 1 개} other {위젯 번들 # 개} }를 삭제하시겠습니까?", "delete-widgets-bundles-title": "{ count, plural, =1 {위젯 번들 1 개} other {위젯 번들 # 개} }를 삭제하시겠습니까?",
"delete-widgets-bundles-action-title": "{ count, plural, 1 {위젯 번들 1 개} other {위젯 번들 # 개} } 삭제", "delete-widgets-bundles-action-title": "{ count, plural, =1 {위젯 번들 1 개} other {위젯 번들 # 개} } 삭제",
"delete-widgets-bundles-text": "위젯 번들 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.", "delete-widgets-bundles-text": "위젯 번들 및 관련된 모든 데이터를 복구할 수 없으므로 주의하십시오.",
"no-widgets-bundles-matching": "'{{widgetsBundle}}' 와(과) 일치하는 위젯 번들을 찾을 수 없습니다.", "no-widgets-bundles-matching": "'{{widgetsBundle}}' 와(과) 일치하는 위젯 번들을 찾을 수 없습니다.",
"widgets-bundle-required": "위젯 번들을 입력하세요.", "widgets-bundle-required": "위젯 번들을 입력하세요.",
@ -2281,7 +2281,7 @@
"widgets-bundle-file": "위젯 번들 파일", "widgets-bundle-file": "위젯 번들 파일",
"invalid-widgets-bundle-file-error": "위젯 번들을 가져오기 할 수 없습니다.: 잘못된 위젯 번들 데이터 구조입니다.", "invalid-widgets-bundle-file-error": "위젯 번들을 가져오기 할 수 없습니다.: 잘못된 위젯 번들 데이터 구조입니다.",
"search": "위젯 번들 검색", "search": "위젯 번들 검색",
"selected-widgets-bundles": "{ count, plural, 1 {1 개 위젯 번들} other {# 개 위젯 번들} } 선택됨", "selected-widgets-bundles": "{ count, plural, =1 {1 개 위젯 번들} other {# 개 위젯 번들} } 선택됨",
"open-widgets-bundle": "위젯 번들 열기" "open-widgets-bundle": "위젯 번들 열기"
}, },
"widget-config": { "widget-config": {
@ -2310,7 +2310,7 @@
"display-timewindow": "타임윈도우 표시", "display-timewindow": "타임윈도우 표시",
"display-legend": "범례 표시", "display-legend": "범례 표시",
"datasources": "데이터 소스", "datasources": "데이터 소스",
"maximum-datasources": "최대 { count, plural, 1 {1 개의 데이터 소스만 허용됩니다.} other {# 개의 데이터 소스만 허용됩니다.} }", "maximum-datasources": "최대 { count, plural, =1 {1 개의 데이터 소스만 허용됩니다.} other {# 개의 데이터 소스만 허용됩니다.} }",
"datasource-type": "유형", "datasource-type": "유형",
"datasource-parameters": "파라미터", "datasource-parameters": "파라미터",
"remove-datasource": "데이터소스 삭제", "remove-datasource": "데이터소스 삭제",

142
ui-ngx/src/assets/locale/locale.constant-lv_LV.json

@ -128,17 +128,17 @@
"acknowledge": "Apstiprināt", "acknowledge": "Apstiprināt",
"clear": "Notīrīt", "clear": "Notīrīt",
"search": "Meklēt trauksmes", "search": "Meklēt trauksmes",
"selected-alarms": "{ count, plural, 1 {1 alarm} other {# trauksmes} } selected", "selected-alarms": "{ count, plural, =1 {1 alarm} other {# trauksmes} } selected",
"no-data": "Nav datu ko attēlot", "no-data": "Nav datu ko attēlot",
"polling-interval": "Trauksmju pārbaužu intervāls (sec)", "polling-interval": "Trauksmju pārbaužu intervāls (sec)",
"polling-interval-required": "Trauksmju pārbaužu intervāls ir nepieciešams.", "polling-interval-required": "Trauksmju pārbaužu intervāls ir nepieciešams.",
"min-polling-interval-message": "Vismaz 1 sekundes pārbaužu intervāls ir atļauts.", "min-polling-interval-message": "Vismaz 1 sekundes pārbaužu intervāls ir atļauts.",
"aknowledge-alarms-title": "Apstiprināt { count, plural, 1 {1 alarm} other {# trauksmes} }", "aknowledge-alarms-title": "Apstiprināt { count, plural, =1 {1 alarm} other {# trauksmes} }",
"aknowledge-alarms-text": "Vai Jūs tiešām vēlaties apstirpināt { count, plural, 1 {1 alarm} other {# trauksmes} }?", "aknowledge-alarms-text": "Vai Jūs tiešām vēlaties apstirpināt { count, plural, =1 {1 alarm} other {# trauksmes} }?",
"aknowledge-alarm-title": "Apstiprināt trauksmi", "aknowledge-alarm-title": "Apstiprināt trauksmi",
"aknowledge-alarm-text": "Vai Jūs tiešām vēlaties apstiprināt trauksmi?", "aknowledge-alarm-text": "Vai Jūs tiešām vēlaties apstiprināt trauksmi?",
"clear-alarms-title": "Dzēst { count, plural, 1 {1 alarm} other {# trauksmes} }", "clear-alarms-title": "Dzēst { count, plural, =1 {1 alarm} other {# trauksmes} }",
"clear-alarms-text": "Vai Jūs tiešām vēlaties dzēst { count, plural, 1 {1 alarm} other {# trauksmes} }?", "clear-alarms-text": "Vai Jūs tiešām vēlaties dzēst { count, plural, =1 {1 alarm} other {# trauksmes} }?",
"clear-alarm-title": "Dzēst trauksmi", "clear-alarm-title": "Dzēst trauksmi",
"clear-alarm-text": "Vai Jūs tiešām vēlaties dzēst trauksmi?", "clear-alarm-text": "Vai Jūs tiešām vēlaties dzēst trauksmi?",
"alarm-status-filter": "Trauksmes statusa filtrs" "alarm-status-filter": "Trauksmes statusa filtrs"
@ -224,15 +224,15 @@
"add-asset-text": "Pievieno jaunu aktīvu", "add-asset-text": "Pievieno jaunu aktīvu",
"asset-details": "Aktīvu detaļas", "asset-details": "Aktīvu detaļas",
"assign-assets": "Piešķirt aktīvus", "assign-assets": "Piešķirt aktīvus",
"assign-assets-text": "Piešķirt { count, plural, 1 {1 asset} other {# aktīvus} } klientam", "assign-assets-text": "Piešķirt { count, plural, =1 {1 asset} other {# aktīvus} } klientam",
"delete-assets": "Dzēst aktīvus", "delete-assets": "Dzēst aktīvus",
"unassign-assets": "Noņemt aktīvus", "unassign-assets": "Noņemt aktīvus",
"unassign-assets-action-title": "Noņemt { count, plural, 1 {1 asset} other {# aktīvus} } no klienta", "unassign-assets-action-title": "Noņemt { count, plural, =1 {1 asset} other {# aktīvus} } no klienta",
"assign-new-asset": "Pieškirt jaunu aktīvu", "assign-new-asset": "Pieškirt jaunu aktīvu",
"delete-asset-title": "Vai esat pārliecināts,ka vēlaties dzēst aktīvu '{{assetName}}'?", "delete-asset-title": "Vai esat pārliecināts,ka vēlaties dzēst aktīvu '{{assetName}}'?",
"delete-asset-text": "Esiet uzmanīgs, pēc apstiprināšanas aktīvs un saistītie dati nebūs atjaunojami.", "delete-asset-text": "Esiet uzmanīgs, pēc apstiprināšanas aktīvs un saistītie dati nebūs atjaunojami.",
"delete-assets-title": "Vai esat pārliecināts ka vēlaties dzēst { count, plural, 1 {1 asset} other {# aktīvus} }?", "delete-assets-title": "Vai esat pārliecināts ka vēlaties dzēst { count, plural, =1 {1 asset} other {# aktīvus} }?",
"delete-assets-action-title": "Dzēst { count, plural, 1 {1 asset} other {# aktīvus} }", "delete-assets-action-title": "Dzēst { count, plural, =1 {1 asset} other {# aktīvus} }",
"delete-assets-text": "Esiet uzmanīgs, pēc apstiprinājuma visi izvēlētie aktīvi tiks dzēsti un saistītā informācija nebūs atjaunojama.", "delete-assets-text": "Esiet uzmanīgs, pēc apstiprinājuma visi izvēlētie aktīvi tiks dzēsti un saistītā informācija nebūs atjaunojama.",
"make-public-asset-title": "Vai esat pārliecināts ka vēlaties aktīvu '{{assetName}}' veidot publisku?", "make-public-asset-title": "Vai esat pārliecināts ka vēlaties aktīvu '{{assetName}}' veidot publisku?",
"make-public-asset-text": "Pēc apstiprinājuma aktīvs un tā dati tiks publiski pieejami.", "make-public-asset-text": "Pēc apstiprinājuma aktīvs un tā dati tiks publiski pieejami.",
@ -241,7 +241,7 @@
"unassign-asset-title": "Vai esat pārliecināts ka vēlaties noņemt aktīvu '{{assetName}}'?", "unassign-asset-title": "Vai esat pārliecināts ka vēlaties noņemt aktīvu '{{assetName}}'?",
"unassign-asset-text": "Pēc apstiprināšanas aktīvs tiks noņemts un nebūs pieejams klientiem.", "unassign-asset-text": "Pēc apstiprināšanas aktīvs tiks noņemts un nebūs pieejams klientiem.",
"unassign-asset": "Noņemt aktīvu", "unassign-asset": "Noņemt aktīvu",
"unassign-assets-title": "Vai esat pārliecināts ka vēlaties noņemt { count, plural, 1 {1 asset} other {# aktīvus} }?", "unassign-assets-title": "Vai esat pārliecināts ka vēlaties noņemt { count, plural, =1 {1 asset} other {# aktīvus} }?",
"unassign-assets-text": "Pēc apstiprināšanas visi izvēlētie aktīvi būs noņemti un nebūs pieejami klientiem.", "unassign-assets-text": "Pēc apstiprināšanas visi izvēlētie aktīvi būs noņemti un nebūs pieejami klientiem.",
"copyId": "Kopēt aktīva Id", "copyId": "Kopēt aktīva Id",
"idCopiedMessage": "Aktīva Id ir kopēts uz starpliktuvi", "idCopiedMessage": "Aktīva Id ir kopēts uz starpliktuvi",
@ -266,7 +266,7 @@
"key-required": "Atribūta atslēga ir nepieciešama.", "key-required": "Atribūta atslēga ir nepieciešama.",
"value": "Vērtība", "value": "Vērtība",
"value-required": "Atribūta vērtība ir nepieciešama.", "value-required": "Atribūta vērtība ir nepieciešama.",
"delete-attributes-title": "Vai esat pārliecināts ka vēlaties dzēst { count, plural, 1 {1 attribute} other {# attribūtus} }?", "delete-attributes-title": "Vai esat pārliecināts ka vēlaties dzēst { count, plural, =1 {1 attribute} other {# attribūtus} }?",
"delete-attributes-text": "Esiet uzmanīgs, pēc apstiprinājuma visi izvēlētie atribūti tiks dzēsti.", "delete-attributes-text": "Esiet uzmanīgs, pēc apstiprinājuma visi izvēlētie atribūti tiks dzēsti.",
"delete-attributes": "Dzēst atribūtu", "delete-attributes": "Dzēst atribūtu",
"enter-attribute-value": "Ievadiet atribūta vērtību", "enter-attribute-value": "Ievadiet atribūta vērtību",
@ -276,8 +276,8 @@
"prev-widget": "Iepriekšējais logrīks", "prev-widget": "Iepriekšējais logrīks",
"add-to-dashboard": "Pievienot panelim", "add-to-dashboard": "Pievienot panelim",
"add-widget-to-dashboard": "Pievienot logrīku panelim", "add-widget-to-dashboard": "Pievienot logrīku panelim",
"selected-attributes": "{ count, plural, 1 {1 attribute} other {# atribūtus} } izvēlētajam", "selected-attributes": "{ count, plural, =1 {1 attribute} other {# atribūtus} } izvēlētajam",
"selected-telemetry": "{ count, plural, 1 {1 telemetry unit} other {# telemetrijas vienības} } izvēlētas" "selected-telemetry": "{ count, plural, =1 {1 telemetry unit} other {# telemetrijas vienības} } izvēlētas"
}, },
"audit-log": { "audit-log": {
"audit": "Audits", "audit": "Audits",
@ -373,8 +373,8 @@
"customer-details": "Klienta detaļas", "customer-details": "Klienta detaļas",
"delete-customer-title": "Vai esat pārliecināts, ka vēlaties dzēst klientu '{{customerTitle}}'?", "delete-customer-title": "Vai esat pārliecināts, ka vēlaties dzēst klientu '{{customerTitle}}'?",
"delete-customer-text": "Esiet uzmanīgs, pēc apstiprinājuma klients un tā saistītie dati nebūs atjaunojami.", "delete-customer-text": "Esiet uzmanīgs, pēc apstiprinājuma klients un tā saistītie dati nebūs atjaunojami.",
"delete-customers-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 customer} other {# klientus} }?", "delete-customers-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 customer} other {# klientus} }?",
"delete-customers-action-title": "Dzēst { count, plural, 1 {1 customer} other {# klientus} }", "delete-customers-action-title": "Dzēst { count, plural, =1 {1 customer} other {# klientus} }",
"delete-customers-text": "Esiet uzmanīgs, pēc apstiprinājuma visi izvēlētie klienti tisk dzēsti un to saistītie dati nebūs atjaunojami.", "delete-customers-text": "Esiet uzmanīgs, pēc apstiprinājuma visi izvēlētie klienti tisk dzēsti un to saistītie dati nebūs atjaunojami.",
"manage-users": "Pārvaldīt lietotājus", "manage-users": "Pārvaldīt lietotājus",
"manage-assets": "Pārvaldīt aktīvus", "manage-assets": "Pārvaldīt aktīvus",
@ -433,20 +433,20 @@
"add-dashboard-text": "Pievienot jaunu paneli", "add-dashboard-text": "Pievienot jaunu paneli",
"assign-dashboards": "Pieškirt paneļus", "assign-dashboards": "Pieškirt paneļus",
"assign-new-dashboard": "Pieškirt jaunu paneli", "assign-new-dashboard": "Pieškirt jaunu paneli",
"assign-dashboards-text": "Pieškirt { count, plural, 1 {1 dashboard} other {# paneļus} } klientiem", "assign-dashboards-text": "Pieškirt { count, plural, =1 {1 dashboard} other {# paneļus} } klientiem",
"unassign-dashboards-action-text": "Noņemt { count, plural, 1 {1 dashboard} other {# paneļus} } no klientiem", "unassign-dashboards-action-text": "Noņemt { count, plural, =1 {1 dashboard} other {# paneļus} } no klientiem",
"delete-dashboards": "Dzēst paneļus", "delete-dashboards": "Dzēst paneļus",
"unassign-dashboards": "Noņemt paneļus", "unassign-dashboards": "Noņemt paneļus",
"unassign-dashboards-action-title": "Noņemt { count, plural, 1 {1 dashboard} other {# paneļus} } no klienta", "unassign-dashboards-action-title": "Noņemt { count, plural, =1 {1 dashboard} other {# paneļus} } no klienta",
"delete-dashboard-title": "Vai esat pārliecināts ka vēlaties dzēst paneli '{{dashboardTitle}}'?", "delete-dashboard-title": "Vai esat pārliecināts ka vēlaties dzēst paneli '{{dashboardTitle}}'?",
"delete-dashboard-text": "Esiet uzmanīgs, pēc apstiprinājuma panelis un visi tā saistītie dati nebūs atjaunojami.", "delete-dashboard-text": "Esiet uzmanīgs, pēc apstiprinājuma panelis un visi tā saistītie dati nebūs atjaunojami.",
"delete-dashboards-title": "Vai esat pārliecināts ka vēlaties dzēst { count, plural, 1 {1 dashboard} other {# paneļus} }?", "delete-dashboards-title": "Vai esat pārliecināts ka vēlaties dzēst { count, plural, =1 {1 dashboard} other {# paneļus} }?",
"delete-dashboards-action-title": "Dzēst { count, plural, 1 {1 dashboard} other {# paneļus} }", "delete-dashboards-action-title": "Dzēst { count, plural, =1 {1 dashboard} other {# paneļus} }",
"delete-dashboards-text": "Esiet uzmanīgs, pēc apstiprinājuma visi izvēlētie paneļi būs noņemti un visi saistitie dati nebūs atjaunojami.", "delete-dashboards-text": "Esiet uzmanīgs, pēc apstiprinājuma visi izvēlētie paneļi būs noņemti un visi saistitie dati nebūs atjaunojami.",
"unassign-dashboard-title": "Vai esat pārliecināts, ka vēlaties noņemt paneli '{{dashboardTitle}}'?", "unassign-dashboard-title": "Vai esat pārliecināts, ka vēlaties noņemt paneli '{{dashboardTitle}}'?",
"unassign-dashboard-text": "Pēc apstiprinājuma panelis tiks noņemts un nebūs pieejams klientam.", "unassign-dashboard-text": "Pēc apstiprinājuma panelis tiks noņemts un nebūs pieejams klientam.",
"unassign-dashboard": "Noņemt paneli", "unassign-dashboard": "Noņemt paneli",
"unassign-dashboards-title": "Vai esat pārliecināts ka vēlaties noņemt { count, plural, 1 {1 dashboard} other {# paneļus} }?", "unassign-dashboards-title": "Vai esat pārliecināts ka vēlaties noņemt { count, plural, =1 {1 dashboard} other {# paneļus} }?",
"unassign-dashboards-text": "Pēc apstiprinājuma visi izvēlētie paneļi būs noņemti un nebūs pieejami klientam.", "unassign-dashboards-text": "Pēc apstiprinājuma visi izvēlētie paneļi būs noņemti un nebūs pieejami klientam.",
"public-dashboard-title": "Panelis tagad ir publisks", "public-dashboard-title": "Panelis tagad ir publisks",
"public-dashboard-text": "Jūsu panelis <b>{{dashboardTitle}}</b> tagad ir publisks un pieejams pēc saites <a href='{{publicLink}}' target='_blank'>link</a>:", "public-dashboard-text": "Jūsu panelis <b>{{dashboardTitle}}</b> tagad ir publisks un pieejams pēc saites <a href='{{publicLink}}' target='_blank'>link</a>:",
@ -523,7 +523,7 @@
"manage-states": "Pārvaldīt paneļa stāvokļus", "manage-states": "Pārvaldīt paneļa stāvokļus",
"states": "Paneļa stāvokļi", "states": "Paneļa stāvokļi",
"search-states": "Meklēt paneļa stāvokļus", "search-states": "Meklēt paneļa stāvokļus",
"selected-states": "{ count, plural, 1 {1 dashboard state} other {# paneļu statusus} } atlasītos", "selected-states": "{ count, plural, =1 {1 dashboard state} other {# paneļu statusus} } atlasītos",
"edit-state": "Rediģēt paneļa stāvokli", "edit-state": "Rediģēt paneļa stāvokli",
"delete-state": "Dzēst paneļa stāvokli", "delete-state": "Dzēst paneļa stāvokli",
"add-state": "Pievienot paneļa stāvokli", "add-state": "Pievienot paneļa stāvokli",
@ -556,11 +556,11 @@
"alarm": "Trauksme", "alarm": "Trauksme",
"timeseries-required": "Vienības laika periodi ir nepieciešami.", "timeseries-required": "Vienības laika periodi ir nepieciešami.",
"timeseries-or-attributes-required": "Vienības laika periodi/atribūti ir nepieciešami.", "timeseries-or-attributes-required": "Vienības laika periodi/atribūti ir nepieciešami.",
"maximum-timeseries-or-attributes": "Maksimums { count, plural, 1 {1 timeseries/attribute is allowed.} other {# laika sērijas/atribūti ir atļauti} }", "maximum-timeseries-or-attributes": "Maksimums { count, plural, =1 {1 timeseries/attribute is allowed.} other {# laika sērijas/atribūti ir atļauti} }",
"alarm-fields-required": "Trauksmes lauki ir nepieciešami.", "alarm-fields-required": "Trauksmes lauki ir nepieciešami.",
"function-types": "Funkciju tipi", "function-types": "Funkciju tipi",
"function-types-required": "Funkciju tipi ir nepieciešami.", "function-types-required": "Funkciju tipi ir nepieciešami.",
"maximum-function-types": "Maksimums { count, plural, 1 {1 function type is allowed.} other {# funkciju tipi ir atļauti} }", "maximum-function-types": "Maksimums { count, plural, =1 {1 function type is allowed.} other {# funkciju tipi ir atļauti} }",
"time-description": "Laika zīmogs patreizējai vērtībai;", "time-description": "Laika zīmogs patreizējai vērtībai;",
"value-description": "patreizējā vērtība;", "value-description": "patreizējā vērtība;",
"prev-value-description": "rezultāts no iepriekšējā funkciju pieprasījuma;", "prev-value-description": "rezultāts no iepriekšējā funkciju pieprasījuma;",
@ -617,11 +617,11 @@
"manage-credentials": "Pārvaldīt akreditācijas datus", "manage-credentials": "Pārvaldīt akreditācijas datus",
"delete": "Dzēst iekārtu", "delete": "Dzēst iekārtu",
"assign-devices": "Pieškirt iekārtas", "assign-devices": "Pieškirt iekārtas",
"assign-devices-text": "Piešķirt { count, plural, 1 {1 device} other {# iekārtas} } klientam", "assign-devices-text": "Piešķirt { count, plural, =1 {1 device} other {# iekārtas} } klientam",
"delete-devices": "Dzēst iekārtas", "delete-devices": "Dzēst iekārtas",
"unassign-from-customer": "Noņemt no klienta", "unassign-from-customer": "Noņemt no klienta",
"unassign-devices": "Noņemt iekārtas", "unassign-devices": "Noņemt iekārtas",
"unassign-devices-action-title": "Noņemt { count, plural, 1 {1 device} other {# iekārtas} } no klienta", "unassign-devices-action-title": "Noņemt { count, plural, =1 {1 device} other {# iekārtas} } no klienta",
"assign-new-device": "Pieškirt jaunu iekārtu", "assign-new-device": "Pieškirt jaunu iekārtu",
"make-public-device-title": "Vai esat pārliecināts ka vēlaties veidot iekārtu '{{deviceName}}' publisku?", "make-public-device-title": "Vai esat pārliecināts ka vēlaties veidot iekārtu '{{deviceName}}' publisku?",
"make-public-device-text": "Pēc apstiprinājuma iekārta un tās saistītie dati būs pieejami publiski un pieejami citiem.", "make-public-device-text": "Pēc apstiprinājuma iekārta un tās saistītie dati būs pieejami publiski un pieejami citiem.",
@ -630,13 +630,13 @@
"view-credentials": "Skatīt akreditācijas datus", "view-credentials": "Skatīt akreditācijas datus",
"delete-device-title": "Vai esat pārliecināts, ka vēlaties dzēst iekārtu '{{deviceName}}'?", "delete-device-title": "Vai esat pārliecināts, ka vēlaties dzēst iekārtu '{{deviceName}}'?",
"delete-device-text": "Esat uzmanīgs, pēc apstiprinājuma iekārta un tās saistītie dati nebūs atjaunojami.", "delete-device-text": "Esat uzmanīgs, pēc apstiprinājuma iekārta un tās saistītie dati nebūs atjaunojami.",
"delete-devices-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 device} other {# iekārtas} }?", "delete-devices-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 device} other {# iekārtas} }?",
"delete-devices-action-title": "Dzēst { count, plural, 1 {1 device} other {# iekārtas} }", "delete-devices-action-title": "Dzēst { count, plural, =1 {1 device} other {# iekārtas} }",
"delete-devices-text": "Esat uzmanīgs, pēc apstiprinājuma iekārtas un to saistītie dati tiks noņemti un nebūs atjaunojami.", "delete-devices-text": "Esat uzmanīgs, pēc apstiprinājuma iekārtas un to saistītie dati tiks noņemti un nebūs atjaunojami.",
"unassign-device-title": "Vai esat pārliecināts, ka vēlaties noņemt iekārtu '{{deviceName}}'?", "unassign-device-title": "Vai esat pārliecināts, ka vēlaties noņemt iekārtu '{{deviceName}}'?",
"unassign-device-text": "Pēc apstiprinājuma iekārta tiks noņemta un nebūs pieejama klientam.", "unassign-device-text": "Pēc apstiprinājuma iekārta tiks noņemta un nebūs pieejama klientam.",
"unassign-device": "Noņemt iekārtu", "unassign-device": "Noņemt iekārtu",
"unassign-devices-title": "Vai esat pārliecināts, ka vēlaties noņemt { count, plural, 1 {1 device} other {# iekārtas} }?", "unassign-devices-title": "Vai esat pārliecināts, ka vēlaties noņemt { count, plural, =1 {1 device} other {# iekārtas} }?",
"unassign-devices-text": "Pēc apstipinājuma visas atlasītās iekārtas būs noņemtas un nebūs pieejamas klientam.", "unassign-devices-text": "Pēc apstipinājuma visas atlasītās iekārtas būs noņemtas un nebūs pieejamas klientam.",
"device-credentials": "iekārtas akreditācijas dati", "device-credentials": "iekārtas akreditācijas dati",
"credentials-type": "Akreditācijas datu tips", "credentials-type": "Akreditācijas datu tips",
@ -727,55 +727,55 @@
"type-required": "Vienības tips ir nepieciešams.", "type-required": "Vienības tips ir nepieciešams.",
"type-device": "Iekārta", "type-device": "Iekārta",
"type-devices": "Iekārtas", "type-devices": "Iekārtas",
"list-of-devices": "{ count, plural, 1 {One device} other {List of # iekārtas} }", "list-of-devices": "{ count, plural, =1 {One device} other {List of # iekārtas} }",
"device-name-starts-with": "Iekārtas, kuras nosaukumi sākas ar '{{prefix}}'", "device-name-starts-with": "Iekārtas, kuras nosaukumi sākas ar '{{prefix}}'",
"type-asset": "Aktīvs", "type-asset": "Aktīvs",
"type-assets": "Aktīvi", "type-assets": "Aktīvi",
"list-of-assets": "{ count, plural, 1 {One asset} other {List of # aktīvi} }", "list-of-assets": "{ count, plural, =1 {One asset} other {List of # aktīvi} }",
"asset-name-starts-with": "Aktīvi, kuru nosaukumi sākas ar '{{prefix}}'", "asset-name-starts-with": "Aktīvi, kuru nosaukumi sākas ar '{{prefix}}'",
"type-entity-view": "Vienības skats View", "type-entity-view": "Vienības skats View",
"type-entity-views": "Vienības skati", "type-entity-views": "Vienības skati",
"list-of-entity-views": "{ count, plural, 1 {One entity view} other {List of # vienību skati} }", "list-of-entity-views": "{ count, plural, =1 {One entity view} other {List of # vienību skati} }",
"entity-view-name-starts-with": "Vienibas skati, kuru nosaukumi sākas ar '{{prefix}}'", "entity-view-name-starts-with": "Vienibas skati, kuru nosaukumi sākas ar '{{prefix}}'",
"type-rule": "Noteikums", "type-rule": "Noteikums",
"type-rules": "Noteikumi", "type-rules": "Noteikumi",
"list-of-rules": "{ count, plural, 1 {One rule} other {List of # noteikumi} }", "list-of-rules": "{ count, plural, =1 {One rule} other {List of # noteikumi} }",
"rule-name-starts-with": "Noteikumi, kuru nosaukumi sākas ar '{{prefix}}'", "rule-name-starts-with": "Noteikumi, kuru nosaukumi sākas ar '{{prefix}}'",
"type-plugin": "Spraudnis", "type-plugin": "Spraudnis",
"type-plugins": "Spraudņi", "type-plugins": "Spraudņi",
"list-of-plugins": "{ count, plural, 1 {One plugin} other {List of # spraudņi} }", "list-of-plugins": "{ count, plural, =1 {One plugin} other {List of # spraudņi} }",
"plugin-name-starts-with": "Spraudņi, kuru vārds sākas ar '{{prefix}}'", "plugin-name-starts-with": "Spraudņi, kuru vārds sākas ar '{{prefix}}'",
"type-tenant": "Īrnieks", "type-tenant": "Īrnieks",
"type-tenants": "Īrnieki", "type-tenants": "Īrnieki",
"list-of-tenants": "{ count, plural, 1 {One tenant} other {List of # īrnieki} }", "list-of-tenants": "{ count, plural, =1 {One tenant} other {List of # īrnieki} }",
"tenant-name-starts-with": "Īrnieki, kuru nosaukumi sākas ar '{{prefix}}'", "tenant-name-starts-with": "Īrnieki, kuru nosaukumi sākas ar '{{prefix}}'",
"type-customer": "Klients", "type-customer": "Klients",
"type-customers": "Klienti", "type-customers": "Klienti",
"list-of-customers": "{ count, plural, 1 {One customer} other {List of # klienti} }", "list-of-customers": "{ count, plural, =1 {One customer} other {List of # klienti} }",
"customer-name-starts-with": "Klienti, kuru nosaukumi sākas ar '{{prefix}}'", "customer-name-starts-with": "Klienti, kuru nosaukumi sākas ar '{{prefix}}'",
"type-user": "Lietotājs", "type-user": "Lietotājs",
"type-users": "Lietotāji", "type-users": "Lietotāji",
"list-of-users": "{ count, plural, 1 {One user} other {List of # lietotāji} }", "list-of-users": "{ count, plural, =1 {One user} other {List of # lietotāji} }",
"user-name-starts-with": "Lietotāji, kuru nosaukums sākas ar '{{prefix}}'", "user-name-starts-with": "Lietotāji, kuru nosaukums sākas ar '{{prefix}}'",
"type-dashboard": "Panelis", "type-dashboard": "Panelis",
"type-dashboards": "Paneļi", "type-dashboards": "Paneļi",
"list-of-dashboards": "{ count, plural, 1 {One dashboard} other {List of # paneļi} }", "list-of-dashboards": "{ count, plural, =1 {One dashboard} other {List of # paneļi} }",
"dashboard-name-starts-with": "Paneļi, kuru nosaukums sākas ar '{{prefix}}'", "dashboard-name-starts-with": "Paneļi, kuru nosaukums sākas ar '{{prefix}}'",
"type-alarm": "Trauksme", "type-alarm": "Trauksme",
"type-alarms": "Trauksmes", "type-alarms": "Trauksmes",
"list-of-alarms": "{ count, plural, 1 {One alarms} other {List of # trauksmes} }", "list-of-alarms": "{ count, plural, =1 {One alarms} other {List of # trauksmes} }",
"alarm-name-starts-with": "Trauksmes, kuru nosaukumi sākas ar '{{prefix}}'", "alarm-name-starts-with": "Trauksmes, kuru nosaukumi sākas ar '{{prefix}}'",
"type-rulechain": "Noteikumu ķēde", "type-rulechain": "Noteikumu ķēde",
"type-rulechains": "Noteikumu ķēdes", "type-rulechains": "Noteikumu ķēdes",
"list-of-rulechains": "{ count, plural, 1 {One rule chain} other {List of # noteikumu ķēdes} }", "list-of-rulechains": "{ count, plural, =1 {One rule chain} other {List of # noteikumu ķēdes} }",
"rulechain-name-starts-with": "Noteikumu ķēdes, kuru nosaukumi sākas ar '{{prefix}}'", "rulechain-name-starts-with": "Noteikumu ķēdes, kuru nosaukumi sākas ar '{{prefix}}'",
"type-rulenode": "Noteikumu node", "type-rulenode": "Noteikumu node",
"type-rulenodes": "Noteikumu nodes", "type-rulenodes": "Noteikumu nodes",
"list-of-rulenodes": "{ count, plural, 1 {One rule node} other {List of # noteikumu nodes} }", "list-of-rulenodes": "{ count, plural, =1 {One rule node} other {List of # noteikumu nodes} }",
"rulenode-name-starts-with": "Noteikumu nodes, juru nosaukumi sākas ar '{{prefix}}'", "rulenode-name-starts-with": "Noteikumu nodes, juru nosaukumi sākas ar '{{prefix}}'",
"type-current-customer": "Pašreizējais klients", "type-current-customer": "Pašreizējais klients",
"search": "Meklēšanas vienības", "search": "Meklēšanas vienības",
"selected-entities": "{ count, plural, 1 {1 entity} other {# vienības} } atlasītas", "selected-entities": "{ count, plural, =1 {1 entity} other {# vienības} } atlasītas",
"entity-name": "Vienības nosaukums", "entity-name": "Vienības nosaukums",
"details": "Vienības detaļas", "details": "Vienības detaļas",
"no-entities-prompt": "Nav vienības atrastas", "no-entities-prompt": "Nav vienības atrastas",
@ -819,21 +819,21 @@
"add-entity-view-text": "Pievienot jaunu vienību skatu", "add-entity-view-text": "Pievienot jaunu vienību skatu",
"delete": "Dzēsts vienību skatu", "delete": "Dzēsts vienību skatu",
"assign-entity-views": "Piešķirt vienību skatus", "assign-entity-views": "Piešķirt vienību skatus",
"assign-entity-views-text": "Piešķirt { count, plural, 1 {1 entityView} other {# vienību skati} } klientam", "assign-entity-views-text": "Piešķirt { count, plural, =1 {1 entityView} other {# vienību skati} } klientam",
"delete-entity-views": "Dzēst vienību skatus", "delete-entity-views": "Dzēst vienību skatus",
"unassign-from-customer": "Noņemt no klienta", "unassign-from-customer": "Noņemt no klienta",
"unassign-entity-views": "Noņemt vienību skatus", "unassign-entity-views": "Noņemt vienību skatus",
"unassign-entity-views-action-title": "Noņemt { count, plural, 1 {1 entityView} other {# vienību skati} } no klienta", "unassign-entity-views-action-title": "Noņemt { count, plural, =1 {1 entityView} other {# vienību skati} } no klienta",
"assign-new-entity-view": "Piešķirt jaunu vienību skatu", "assign-new-entity-view": "Piešķirt jaunu vienību skatu",
"delete-entity-view-title": "Vai esat pārliecināts,ka vēlaties dzēst vienību skatu '{{entityViewName}}'?", "delete-entity-view-title": "Vai esat pārliecināts,ka vēlaties dzēst vienību skatu '{{entityViewName}}'?",
"delete-entity-view-text": "Esiet uzmanīgs, pēc apstiprinājuma vienību skats un tā sasitītie dati nebūs atjaunojami.", "delete-entity-view-text": "Esiet uzmanīgs, pēc apstiprinājuma vienību skats un tā sasitītie dati nebūs atjaunojami.",
"delete-entity-views-title": "Vai esat pārliecināts, ka vēlaties vienību skatu { count, plural, 1 {1 entityView} other {# vienību skati} }?", "delete-entity-views-title": "Vai esat pārliecināts, ka vēlaties vienību skatu { count, plural, =1 {1 entityView} other {# vienību skati} }?",
"delete-entity-views-action-title": "Dzēst { count, plural, 1 {1 entityView} other {# vienību skati} }", "delete-entity-views-action-title": "Dzēst { count, plural, =1 {1 entityView} other {# vienību skati} }",
"delete-entity-views-text": "Esiet uzmanīgs, pēc apstiprinājuma visir atlasītie vienības skati tiks noņemti un to saistītie dati nebūs atjaunojami.", "delete-entity-views-text": "Esiet uzmanīgs, pēc apstiprinājuma visir atlasītie vienības skati tiks noņemti un to saistītie dati nebūs atjaunojami.",
"unassign-entity-view-title": "Vai esat pārliecināts, ka vēlaties atspējot vienību skatu '{{entityViewName}}'?", "unassign-entity-view-title": "Vai esat pārliecināts, ka vēlaties atspējot vienību skatu '{{entityViewName}}'?",
"unassign-entity-view-text": "Pēc apstiprinājuma vienību skats tiks atspējots un nebūs pieejams klientam.", "unassign-entity-view-text": "Pēc apstiprinājuma vienību skats tiks atspējots un nebūs pieejams klientam.",
"unassign-entity-view": "Atspējot vienību skatu", "unassign-entity-view": "Atspējot vienību skatu",
"unassign-entity-views-title": "Vai esat pārliecināts, ka vēlaties atspējot { count, plural, 1 {1 entityView} other {# vienību skatus} }?", "unassign-entity-views-title": "Vai esat pārliecināts, ka vēlaties atspējot { count, plural, =1 {1 entityView} other {# vienību skatus} }?",
"unassign-entity-views-text": "Pēc apstiprinājuma visi atlasītie vienību skati būs atspējoti un nebūs pieejami klientiem.", "unassign-entity-views-text": "Pēc apstiprinājuma visi atlasītie vienību skati būs atspējoti un nebūs pieejami klientiem.",
"entity-view-type": "Vienību skata tips", "entity-view-type": "Vienību skata tips",
"entity-view-type-required": "Vienību skata tips ir nepieciešams.", "entity-view-type-required": "Vienību skata tips ir nepieciešams.",
@ -910,7 +910,7 @@
}, },
"extension": { "extension": {
"extensions": "Paplašinājumi", "extensions": "Paplašinājumi",
"selected-extensions": "{ count, plural, 1 {1 extension} other {# paplašinājumi} } atlasītie", "selected-extensions": "{ count, plural, =1 {1 extension} other {# paplašinājumi} } atlasītie",
"type": "Tips", "type": "Tips",
"key": "Atslēga", "key": "Atslēga",
"value": "Vērtība", "value": "Vērtība",
@ -924,7 +924,7 @@
"edit": "Rediģēt paplašinājumu", "edit": "Rediģēt paplašinājumu",
"delete-extension-title": "Vai esat pārliecināts, ka vēlaties dzēst paplašinājumu '{{extensionId}}'?", "delete-extension-title": "Vai esat pārliecināts, ka vēlaties dzēst paplašinājumu '{{extensionId}}'?",
"delete-extension-text": "Esiet uzmanīgs, pēc apstiprinājuma paplašinājums un visi tā saistītie dati nebūs atjaunojami.", "delete-extension-text": "Esiet uzmanīgs, pēc apstiprinājuma paplašinājums un visi tā saistītie dati nebūs atjaunojami.",
"delete-extensions-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 extension} other {# paplašinājumus} }?", "delete-extensions-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 extension} other {# paplašinājumus} }?",
"delete-extensions-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie paplašinājumi tiks dzēsti.", "delete-extensions-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie paplašinājumi tiks dzēsti.",
"converters": "Pārveidotāji", "converters": "Pārveidotāji",
"converter-id": "Pārveidotāja id", "converter-id": "Pārveidotāja id",
@ -1077,8 +1077,8 @@
"grid": { "grid": {
"delete-item-title": "Vai esat pārliecināts, ka vēlaties dzēst šo priekšmetu?", "delete-item-title": "Vai esat pārliecināts, ka vēlaties dzēst šo priekšmetu?",
"delete-item-text": "Esiet uzmanīgs, pēc apstiprinājuma šī priekšmeta dati nebūs atjaunojami.", "delete-item-text": "Esiet uzmanīgs, pēc apstiprinājuma šī priekšmeta dati nebūs atjaunojami.",
"delete-items-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 item} other {# priekšmetus} }?", "delete-items-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 item} other {# priekšmetus} }?",
"delete-items-action-title": "Dzēst { count, plural, 1 {1 item} other {# priekšmeti} }", "delete-items-action-title": "Dzēst { count, plural, =1 {1 item} other {# priekšmeti} }",
"delete-items-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie priekšmeti tiks noņemti un to saistītie dati nebūs atjaunojami.", "delete-items-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie priekšmeti tiks noņemti un to saistītie dati nebūs atjaunojami.",
"add-item-text": "Pievienot jaunu priekšmetu", "add-item-text": "Pievienot jaunu priekšmetu",
"no-items-text": "Nav priekšmeti atrasti", "no-items-text": "Nav priekšmeti atrasti",
@ -1212,7 +1212,7 @@
}, },
"from-relations": "Izejošāsa attiecības", "from-relations": "Izejošāsa attiecības",
"to-relations": "Ienākošās attiecības", "to-relations": "Ienākošās attiecības",
"selected-relations": "{ count, plural, 1 {1 relation} other {# attiecības} } atlasītas", "selected-relations": "{ count, plural, =1 {1 relation} other {# attiecības} } atlasītas",
"type": "Tips", "type": "Tips",
"to-entity-type": "Uz vienību tipu", "to-entity-type": "Uz vienību tipu",
"to-entity-name": "Uz vienību nosaukumu", "to-entity-name": "Uz vienību nosaukumu",
@ -1228,11 +1228,11 @@
"edit": "Rediģēt attiecību", "edit": "Rediģēt attiecību",
"delete-to-relation-title": "Vai esat pārliecināts, ka vēlaties dzēst attiecību uz vienību '{{entityName}}'?", "delete-to-relation-title": "Vai esat pārliecināts, ka vēlaties dzēst attiecību uz vienību '{{entityName}}'?",
"delete-to-relation-text": "Esiet uzmanīgs, pēc apstiprinājuma vienība '{{entityName}}' būs atsaistīta no patreizējās vienības.", "delete-to-relation-text": "Esiet uzmanīgs, pēc apstiprinājuma vienība '{{entityName}}' būs atsaistīta no patreizējās vienības.",
"delete-to-relations-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 relation} other {# attiecības} }?", "delete-to-relations-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 relation} other {# attiecības} }?",
"delete-to-relations-text": "Esiet uzmanīgs, pēc apstiprināšanas visas atlasītās attiecības būs noņemtas un attiecīgās vienības būs atsaistītas no patreizējās vienības.", "delete-to-relations-text": "Esiet uzmanīgs, pēc apstiprināšanas visas atlasītās attiecības būs noņemtas un attiecīgās vienības būs atsaistītas no patreizējās vienības.",
"delete-from-relation-title": "Vai esat pārliecināts, ka vēlaties dzēst attiecību no vienības '{{entityName}}'?", "delete-from-relation-title": "Vai esat pārliecināts, ka vēlaties dzēst attiecību no vienības '{{entityName}}'?",
"delete-from-relation-text": "Esiet uzmanīgs, pēc apstiprinājuma patreizējā vienība būs atsaistīta no vienības '{{entityName}}'.", "delete-from-relation-text": "Esiet uzmanīgs, pēc apstiprinājuma patreizējā vienība būs atsaistīta no vienības '{{entityName}}'.",
"delete-from-relations-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 relation} other {# attiecības} }?", "delete-from-relations-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 relation} other {# attiecības} }?",
"delete-from-relations-text": "Esiet uzmanīgs, pēc apstiprinājuma visas atlasītās attiecības būs noņemtas un patreizējā vienība tiks atsaistīta no attiecīgās vienības.", "delete-from-relations-text": "Esiet uzmanīgs, pēc apstiprinājuma visas atlasītās attiecības būs noņemtas un patreizējā vienība tiks atsaistīta no attiecīgās vienības.",
"remove-relation-filter": "Noņemt attiecību filtru", "remove-relation-filter": "Noņemt attiecību filtru",
"add-relation-filter": "Pievienot attiecību filtru", "add-relation-filter": "Pievienot attiecību filtru",
@ -1255,8 +1255,8 @@
"set-root-rulechain-text": "Pēc apstiprinājuma noteikuma ķēde tiks veidota kā sakne un apstrādās visu ienākošo informāciju.", "set-root-rulechain-text": "Pēc apstiprinājuma noteikuma ķēde tiks veidota kā sakne un apstrādās visu ienākošo informāciju.",
"delete-rulechain-title": "Vai esat pārliecināts, ka vēlaties dzēst noteikumu ķēdi '{{ruleChainName}}'?", "delete-rulechain-title": "Vai esat pārliecināts, ka vēlaties dzēst noteikumu ķēdi '{{ruleChainName}}'?",
"delete-rulechain-text": "Esiet uzmanīgs, pēc apstiprinājuma noteikumu ķēde un saistītā informācija nebūs atjaunojama.", "delete-rulechain-text": "Esiet uzmanīgs, pēc apstiprinājuma noteikumu ķēde un saistītā informācija nebūs atjaunojama.",
"delete-rulechains-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 rule chain} other {# noteikumu ķēdes} }?", "delete-rulechains-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 rule chain} other {# noteikumu ķēdes} }?",
"delete-rulechains-action-title": "Dzēst { count, plural, 1 {1 rule chain} other {# noteikumu ķēdes} }", "delete-rulechains-action-title": "Dzēst { count, plural, =1 {1 rule chain} other {# noteikumu ķēdes} }",
"delete-rulechains-text": "Esiet uzmanīgs, pēc apstiprinājuma visas atlasītās noteikumu ķēdes tiks noņemtas un to saistītos datus nevarēs atjaunot.", "delete-rulechains-text": "Esiet uzmanīgs, pēc apstiprinājuma visas atlasītās noteikumu ķēdes tiks noņemtas un to saistītos datus nevarēs atjaunot.",
"add-rulechain-text": "Pievienot jaunu noteikumu ķēdi", "add-rulechain-text": "Pievienot jaunu noteikumu ķēdi",
"no-rulechains-text": "Nav noteikumu ķēdes atrastas", "no-rulechains-text": "Nav noteikumu ķēdes atrastas",
@ -1355,8 +1355,8 @@
"tenant-details": "Īrnieka detaļas", "tenant-details": "Īrnieka detaļas",
"delete-tenant-title": "Vai esat pārliecināts, ka vēlaties dzēst īrnieku '{{tenantTitle}}'?", "delete-tenant-title": "Vai esat pārliecināts, ka vēlaties dzēst īrnieku '{{tenantTitle}}'?",
"delete-tenant-text": "Esiet uzmanīgs, pēc apstiprinājuma īrnieks un tā saistītie dati nebūs atjaunojami.", "delete-tenant-text": "Esiet uzmanīgs, pēc apstiprinājuma īrnieks un tā saistītie dati nebūs atjaunojami.",
"delete-tenants-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 tenant} other {# īrniekus} }?", "delete-tenants-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 tenant} other {# īrniekus} }?",
"delete-tenants-action-title": "Dzēst { count, plural, 1 {1 tenant} other {# īrniekus} }", "delete-tenants-action-title": "Dzēst { count, plural, =1 {1 tenant} other {# īrniekus} }",
"delete-tenants-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie īrnieki tiks noņemti un saistītie dati nebūs atjaunojami.", "delete-tenants-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie īrnieki tiks noņemti un saistītie dati nebūs atjaunojami.",
"title": "Virsraksts", "title": "Virsraksts",
"title-required": "Virsraksts ir nepieciešams.", "title-required": "Virsraksts ir nepieciešams.",
@ -1370,10 +1370,10 @@
"tenant-required": "Īrnieks ir nepieciešams" "tenant-required": "Īrnieks ir nepieciešams"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 second} other {# sekundes} }", "seconds-interval": "{ seconds, plural, =1 {1 second} other {# sekundes} }",
"minutes-interval": "{ minutes, plural, 1 {1 minute} other {# minūtes} }", "minutes-interval": "{ minutes, plural, =1 {1 minute} other {# minūtes} }",
"hours-interval": "{ hours, plural, 1 {1 hour} other {# stundas} }", "hours-interval": "{ hours, plural, =1 {1 hour} other {# stundas} }",
"days-interval": "{ days, plural, 1 {1 day} other {# dienas} }", "days-interval": "{ days, plural, =1 {1 day} other {# dienas} }",
"days": "Dienas", "days": "Dienas",
"hours": "Stundas", "hours": "Stundas",
"minutes": "Minūtes", "minutes": "Minūtes",
@ -1381,10 +1381,10 @@
"advanced": "Pieredzējis lietotājs" "advanced": "Pieredzējis lietotājs"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { day } other {# dienas } }", "days": "{ days, plural, =1 { day } other {# dienas } }",
"hours": "{ hours, plural, 0 { hour } 1 {1 hour } other {# stundas } }", "hours": "{ hours, plural, =0 { hour } =1 {1 hour } other {# stundas } }",
"minutes": "{ minutes, plural, 0 { minute } 1 {1 minute } other {# minūtes } }", "minutes": "{ minutes, plural, =0 { minute } =1 {1 minute } other {# minūtes } }",
"seconds": "{ seconds, plural, 0 { second } 1 {1 second } other {# sekundes } }", "seconds": "{ seconds, plural, =0 { second } =1 {1 second } other {# sekundes } }",
"realtime": "Reālajā laikā", "realtime": "Reālajā laikā",
"history": "Vēsture", "history": "Vēsture",
"last-prefix": "Pēdējās", "last-prefix": "Pēdējās",
@ -1410,8 +1410,8 @@
"user-details": "Lietotāja detaļas", "user-details": "Lietotāja detaļas",
"delete-user-title": "Vai esat pārliecināts, ka vēlaties dzēst lietotāju '{{userEmail}}'?", "delete-user-title": "Vai esat pārliecināts, ka vēlaties dzēst lietotāju '{{userEmail}}'?",
"delete-user-text": "Esiet uzmanīgs, pēc apstiprinājuma lietotājs un tā saistītie dati nebūs atjaunojami.", "delete-user-text": "Esiet uzmanīgs, pēc apstiprinājuma lietotājs un tā saistītie dati nebūs atjaunojami.",
"delete-users-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 user} other {# lietotājus} }?", "delete-users-title": "Vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 user} other {# lietotājus} }?",
"delete-users-action-title": "Dzēst { count, plural, 1 {1 user} other {# lietotājus} }", "delete-users-action-title": "Dzēst { count, plural, =1 {1 user} other {# lietotājus} }",
"delete-users-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie lietotāji tiks noņemti un to saistītie dati nebūs atjaunojami.", "delete-users-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie lietotāji tiks noņemti un to saistītie dati nebūs atjaunojami.",
"activation-email-sent-message": "Aktivizācijas email ir sekmīgi nosūtīts!", "activation-email-sent-message": "Aktivizācijas email ir sekmīgi nosūtīts!",
"resend-activation": "Atkārtoti nosūtīt aktivizāciju", "resend-activation": "Atkārtoti nosūtīt aktivizāciju",
@ -1530,8 +1530,8 @@
"widgets-bundle-details": "Logrīku apkopojumu detaļas", "widgets-bundle-details": "Logrīku apkopojumu detaļas",
"delete-widgets-bundle-title": "Vai esat pārliecināts, ka vēlaties dzēst logrīku apkopojumu '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Vai esat pārliecināts, ka vēlaties dzēst logrīku apkopojumu '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Esiet uzmanīgs, pēc apstiprinājuma logrīka apkopojums un tā saistītie dati nebūs atjaunojami.", "delete-widgets-bundle-text": "Esiet uzmanīgs, pēc apstiprinājuma logrīka apkopojums un tā saistītie dati nebūs atjaunojami.",
"delete-widgets-bundles-title": "vai esat pārliecināts, ka vēlaties dzēst { count, plural, 1 {1 widgets bundle} other {# logrīku apkopojumus} }?", "delete-widgets-bundles-title": "vai esat pārliecināts, ka vēlaties dzēst { count, plural, =1 {1 widgets bundle} other {# logrīku apkopojumus} }?",
"delete-widgets-bundles-action-title": "Dzēst { count, plural, 1 {1 widgets bundle} other {# logrīku apkopojumus} }", "delete-widgets-bundles-action-title": "Dzēst { count, plural, =1 {1 widgets bundle} other {# logrīku apkopojumus} }",
"delete-widgets-bundles-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie logrīku apkopojumi tiks noņemti un to saistītie dati nebūs atjaunojami.", "delete-widgets-bundles-text": "Esiet uzmanīgs, pēc apstiprinājuma visi atlasītie logrīku apkopojumi tiks noņemti un to saistītie dati nebūs atjaunojami.",
"no-widgets-bundles-matching": "Nav logrīku apkopojumu saderības '{{widgetsBundle}}' atrastas.", "no-widgets-bundles-matching": "Nav logrīku apkopojumu saderības '{{widgetsBundle}}' atrastas.",
"widgets-bundle-required": "Logrīku apkopojums ir nepieciešams.", "widgets-bundle-required": "Logrīku apkopojums ir nepieciešams.",
@ -1568,7 +1568,7 @@
"display-timewindow": "Rādīt laika logu", "display-timewindow": "Rādīt laika logu",
"display-legend": "Rādīt leģendu", "display-legend": "Rādīt leģendu",
"datasources": "Datu avoti", "datasources": "Datu avoti",
"maximum-datasources": "Maksimums { count, plural, 1 {1 datasource is allowed.} other {# datu avoti atļautie} }", "maximum-datasources": "Maksimums { count, plural, =1 {1 datasource is allowed.} other {# datu avoti atļautie} }",
"datasource-type": "Tips", "datasource-type": "Tips",
"datasource-parameters": "Parametri", "datasource-parameters": "Parametri",
"remove-datasource": "Noņemt datu avotu", "remove-datasource": "Noņemt datu avotu",

160
ui-ngx/src/assets/locale/locale.constant-pt_BR.json

@ -167,17 +167,17 @@
"acknowledge": "Confirmar", "acknowledge": "Confirmar",
"clear": "Limpar", "clear": "Limpar",
"search": "Pesquisar alarmes", "search": "Pesquisar alarmes",
"selected-alarms": "{ count, plural, 1 {1 alarm} other {# alarms} } selecionado(s)", "selected-alarms": "{ count, plural, =1 {1 alarm} other {# alarms} } selecionado(s)",
"no-data": "Nenhum dado para exibição", "no-data": "Nenhum dado para exibição",
"polling-interval": "Intervalo seletivo de alarmes (s)", "polling-interval": "Intervalo seletivo de alarmes (s)",
"polling-interval-required": "O intervalo de chamada seletiva de alarmes é obrigatório.", "polling-interval-required": "O intervalo de chamada seletiva de alarmes é obrigatório.",
"min-polling-interval-message": "É permitido no mínimo 1 segundo de intervalo de chamada seletiva.", "min-polling-interval-message": "É permitido no mínimo 1 segundo de intervalo de chamada seletiva.",
"aknowledge-alarms-title": "Confirmar { count, plural, 1 {1 alarm} other {# alarms} }", "aknowledge-alarms-title": "Confirmar { count, plural, =1 {1 alarm} other {# alarms} }",
"aknowledge-alarms-text": "Tem certeza de que deseja confirmar { count, plural, 1 {1 alarm} other {# alarms} }?", "aknowledge-alarms-text": "Tem certeza de que deseja confirmar { count, plural, =1 {1 alarm} other {# alarms} }?",
"aknowledge-alarm-title": "Confirmar alarme", "aknowledge-alarm-title": "Confirmar alarme",
"aknowledge-alarm-text": "Tem certeza de que deseja confirmar o alarme?", "aknowledge-alarm-text": "Tem certeza de que deseja confirmar o alarme?",
"clear-alarms-title": "Limpar { count, plural, 1 {1 alarm} other {# alarms} }", "clear-alarms-title": "Limpar { count, plural, =1 {1 alarm} other {# alarms} }",
"clear-alarms-text": "Tem certeza de que deseja limpar { count, plural, 1 {1 alarm} other {# alarms} }?", "clear-alarms-text": "Tem certeza de que deseja limpar { count, plural, =1 {1 alarm} other {# alarms} }?",
"clear-alarm-title": "Limpar alarme", "clear-alarm-title": "Limpar alarme",
"clear-alarm-text": "Tem certeza de que deseja limpar alarme?", "clear-alarm-text": "Tem certeza de que deseja limpar alarme?",
"alarm-status-filter": "Filtro de status de alarmes", "alarm-status-filter": "Filtro de status de alarmes",
@ -274,15 +274,15 @@
"add-asset-text": "Adicionar novo ativo", "add-asset-text": "Adicionar novo ativo",
"asset-details": "Detalhes do ativo", "asset-details": "Detalhes do ativo",
"assign-assets": "Atribuir ativos", "assign-assets": "Atribuir ativos",
"assign-assets-text": "Atribuir { count, plural, 1 {1 asset} other {# assets} } a cliente", "assign-assets-text": "Atribuir { count, plural, =1 {1 asset} other {# assets} } a cliente",
"delete-assets": "Excluir ativos", "delete-assets": "Excluir ativos",
"unassign-assets": "Remover atribuição de ativos", "unassign-assets": "Remover atribuição de ativos",
"unassign-assets-action-title": "Remover atribuição de { count, plural, 1 {1 asset} other {# assets} } a cliente", "unassign-assets-action-title": "Remover atribuição de { count, plural, =1 {1 asset} other {# assets} } a cliente",
"assign-new-asset": "Atribuir novo ativo", "assign-new-asset": "Atribuir novo ativo",
"delete-asset-title": "Tem certeza de que deseja excluir o ativo '{{assetName}}'?", "delete-asset-title": "Tem certeza de que deseja excluir o ativo '{{assetName}}'?",
"delete-asset-text": "Cuidado, após confirmar, não será possível recuperar o ativo e nenhum dado associado.", "delete-asset-text": "Cuidado, após confirmar, não será possível recuperar o ativo e nenhum dado associado.",
"delete-assets-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 asset} other {# assets} }?", "delete-assets-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 asset} other {# assets} }?",
"delete-assets-action-title": "Excluir { count, plural, 1 {1 asset} other {# assets} }", "delete-assets-action-title": "Excluir { count, plural, =1 {1 asset} other {# assets} }",
"delete-assets-text": "Cuidado, após confirmar, todos os ativos selecionados serão removidos e não será possível recuperar nenhum dado associado.", "delete-assets-text": "Cuidado, após confirmar, todos os ativos selecionados serão removidos e não será possível recuperar nenhum dado associado.",
"make-public-asset-title": "Tem certeza de que deseja tornar o ativo '{{assetName}}' público?", "make-public-asset-title": "Tem certeza de que deseja tornar o ativo '{{assetName}}' público?",
"make-public-asset-text": "Após confirmar, o ativo e todos os dados associados a ele se tornarão públicos e poderão ser acessados por outros.", "make-public-asset-text": "Após confirmar, o ativo e todos os dados associados a ele se tornarão públicos e poderão ser acessados por outros.",
@ -291,7 +291,7 @@
"unassign-asset-title": "Tem certeza de que deseja remover a atribuição do ativo '{{assetName}}'?", "unassign-asset-title": "Tem certeza de que deseja remover a atribuição do ativo '{{assetName}}'?",
"unassign-asset-text": "Após confirmar, a atribuição do ativo será removida e ele não poderá ser acessado pelo cliente.", "unassign-asset-text": "Após confirmar, a atribuição do ativo será removida e ele não poderá ser acessado pelo cliente.",
"unassign-asset": "Remover atribuição de ativo", "unassign-asset": "Remover atribuição de ativo",
"unassign-assets-title": "Tem certeza de que deseja remover a atribuição de { count, plural, 1 {1 asset} other {# assets} }?", "unassign-assets-title": "Tem certeza de que deseja remover a atribuição de { count, plural, =1 {1 asset} other {# assets} }?",
"unassign-assets-text": "Após confirmar, a atribuição de todos os ativos selecionados será removida e eles não poderão ser acessados pelo cliente.", "unassign-assets-text": "Após confirmar, a atribuição de todos os ativos selecionados será removida e eles não poderão ser acessados pelo cliente.",
"copyId": "Copiar ID do ativo", "copyId": "Copiar ID do ativo",
"idCopiedMessage": "O ID do ativo foi copiado para a área de transferência", "idCopiedMessage": "O ID do ativo foi copiado para a área de transferência",
@ -302,7 +302,7 @@
"import": "Importar ativos", "import": "Importar ativos",
"asset-file": "Arquivo de ativos", "asset-file": "Arquivo de ativos",
"search": "Pesquisar ativo", "search": "Pesquisar ativo",
"selected-assets": "{ count, plural, 1 {1 asset} other {# assets} } selecionado(s)", "selected-assets": "{ count, plural, =1 {1 asset} other {# assets} } selecionado(s)",
"label": "Etiqueta" "label": "Etiqueta"
}, },
"attribute": { "attribute": {
@ -319,7 +319,7 @@
"key-required": "A chave de atributo é obrigatória.", "key-required": "A chave de atributo é obrigatória.",
"value": "Valor", "value": "Valor",
"value-required": "O valor do atributo é obrigatório.", "value-required": "O valor do atributo é obrigatório.",
"delete-attributes-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 attribute} other {# attributes} }?", "delete-attributes-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 attribute} other {# attributes} }?",
"delete-attributes-text": "Cuidado, após confirmar, todos os atributos selecionados serão removidos.", "delete-attributes-text": "Cuidado, após confirmar, todos os atributos selecionados serão removidos.",
"delete-attributes": "Excluir atributos", "delete-attributes": "Excluir atributos",
"enter-attribute-value": "Inserir valor do atributo", "enter-attribute-value": "Inserir valor do atributo",
@ -329,8 +329,8 @@
"prev-widget": "Widget anterior", "prev-widget": "Widget anterior",
"add-to-dashboard": "Adicionar ao dashboard", "add-to-dashboard": "Adicionar ao dashboard",
"add-widget-to-dashboard": "Adicionar widget ao dashboard", "add-widget-to-dashboard": "Adicionar widget ao dashboard",
"selected-attributes": "{ count, plural, 1 {1 attribute} other {# attributes} } selecionado(s)", "selected-attributes": "{ count, plural, =1 {1 attribute} other {# attributes} } selecionado(s)",
"selected-telemetry": "{ count, plural, 1 {1 telemetry unit} other {# telemetry units} } selecionado(s)", "selected-telemetry": "{ count, plural, =1 {1 telemetry unit} other {# telemetry units} } selecionado(s)",
"no-attributes-text": "Nenhum atributo encontrado", "no-attributes-text": "Nenhum atributo encontrado",
"no-telemetry-text": "Nenhuma telemetria encontrada" "no-telemetry-text": "Nenhuma telemetria encontrada"
}, },
@ -434,8 +434,8 @@
"customer-details": "Detalhes do cliente", "customer-details": "Detalhes do cliente",
"delete-customer-title": "Tem certeza de que deseja excluir o ativo cliente '{{customerTitle}}'?", "delete-customer-title": "Tem certeza de que deseja excluir o ativo cliente '{{customerTitle}}'?",
"delete-customer-text": "Cuidado, após confirmar, não será possível recuperar o cliente e nenhum dado associado.", "delete-customer-text": "Cuidado, após confirmar, não será possível recuperar o cliente e nenhum dado associado.",
"delete-customers-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 customer} other {# customers} }?", "delete-customers-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 customer} other {# customers} }?",
"delete-customers-action-title": "Excluir { count, plural, 1 {1 customer} other {# customers} }", "delete-customers-action-title": "Excluir { count, plural, =1 {1 customer} other {# customers} }",
"delete-customers-text": "Cuidado, após confirmar, todos os clientes selecionados serão removidos e não será possível recuperar nenhum dado associado.", "delete-customers-text": "Cuidado, após confirmar, todos os clientes selecionados serão removidos e não será possível recuperar nenhum dado associado.",
"manage-users": "Gerenciar usuários", "manage-users": "Gerenciar usuários",
"manage-assets": "Gerenciar ativos", "manage-assets": "Gerenciar ativos",
@ -455,7 +455,7 @@
"default-customer": "Cliente predefinido", "default-customer": "Cliente predefinido",
"default-customer-required": "O cliente predefinido é necessário para depurar o dashboard no nível de locatário", "default-customer-required": "O cliente predefinido é necessário para depurar o dashboard no nível de locatário",
"search": "Pesquisar clientes", "search": "Pesquisar clientes",
"selected-customers": "{ count, plural, 1 {1 customer} other {# customers} } selecionado(s)" "selected-customers": "{ count, plural, =1 {1 customer} other {# customers} } selecionado(s)"
}, },
"datetime": { "datetime": {
"date-from": "Data de", "date-from": "Data de",
@ -496,20 +496,20 @@
"add-dashboard-text": "Adicionar novo dashboard", "add-dashboard-text": "Adicionar novo dashboard",
"assign-dashboards": "Atribuir dashboards", "assign-dashboards": "Atribuir dashboards",
"assign-new-dashboard": "Atribuir novo dashboard", "assign-new-dashboard": "Atribuir novo dashboard",
"assign-dashboards-text": "Atribuir { count, plural, 1 {1 dashboard} other {# dashboards} } a clientes", "assign-dashboards-text": "Atribuir { count, plural, =1 {1 dashboard} other {# dashboards} } a clientes",
"unassign-dashboards-action-text": "Remover atribuição de { count, plural, 1 {1 dashboard} other {# dashboards} } a clientes", "unassign-dashboards-action-text": "Remover atribuição de { count, plural, =1 {1 dashboard} other {# dashboards} } a clientes",
"delete-dashboards": "Excluir dashboards", "delete-dashboards": "Excluir dashboards",
"unassign-dashboards": "Remover atribuição de dashboards", "unassign-dashboards": "Remover atribuição de dashboards",
"unassign-dashboards-action-title": "Remover atribuição de { count, plural, 1 {1 dashboard} other {# dashboards} } a cliente", "unassign-dashboards-action-title": "Remover atribuição de { count, plural, =1 {1 dashboard} other {# dashboards} } a cliente",
"delete-dashboard-title": "Tem certeza de que deseja excluir o dashboard '{{dashboardTitle}}'?", "delete-dashboard-title": "Tem certeza de que deseja excluir o dashboard '{{dashboardTitle}}'?",
"delete-dashboard-text": "Cuidado, após confirmar, não será possível recuperar o dashboard e nenhum dado associado.", "delete-dashboard-text": "Cuidado, após confirmar, não será possível recuperar o dashboard e nenhum dado associado.",
"delete-dashboards-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 dashboard} other {# dashboards} }?", "delete-dashboards-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"delete-dashboards-action-title": "Excluir { count, plural, 1 {1 dashboard} other {# dashboards} }", "delete-dashboards-action-title": "Excluir { count, plural, =1 {1 dashboard} other {# dashboards} }",
"delete-dashboards-text": "Cuidado, após confirmar, todos os dashboards selecionados serão removidos e não será possível recuperar nenhum dado associado.", "delete-dashboards-text": "Cuidado, após confirmar, todos os dashboards selecionados serão removidos e não será possível recuperar nenhum dado associado.",
"unassign-dashboard-title": "Tem certeza de que deseja remover a atribuição do dashboard '{{dashboardTitle}}'?", "unassign-dashboard-title": "Tem certeza de que deseja remover a atribuição do dashboard '{{dashboardTitle}}'?",
"unassign-dashboard-text": "Após confirmar, a atribuição do dashboard será removida e ele não poderá ser acessado pelo cliente.", "unassign-dashboard-text": "Após confirmar, a atribuição do dashboard será removida e ele não poderá ser acessado pelo cliente.",
"unassign-dashboard": "Remover atribuição de dashboard", "unassign-dashboard": "Remover atribuição de dashboard",
"unassign-dashboards-title": "Tem certeza de que deseja remover a atribuição de { count, plural, 1 {1 dashboard} other {# dashboards} }?", "unassign-dashboards-title": "Tem certeza de que deseja remover a atribuição de { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"unassign-dashboards-text": "Após confirmar, a atribuição de todos os dashboards selecionados será removida e eles não poderão ser acessados pelo cliente.", "unassign-dashboards-text": "Após confirmar, a atribuição de todos os dashboards selecionados será removida e eles não poderão ser acessados pelo cliente.",
"public-dashboard-title": "Agora o dashboard é público", "public-dashboard-title": "Agora o dashboard é público",
"public-dashboard-text": "Agora o dashboard <b>{{dashboardTitle}}</b> é público e pode ser acessado pelo próximo <a href='{{publicLink}}' target='_blank'>link</a> público:", "public-dashboard-text": "Agora o dashboard <b>{{dashboardTitle}}</b> é público e pode ser acessado pelo próximo <a href='{{publicLink}}' target='_blank'>link</a> público:",
@ -590,7 +590,7 @@
"manage-states": "Gerenciar estados de dashboards", "manage-states": "Gerenciar estados de dashboards",
"states": "Estados de dashboards", "states": "Estados de dashboards",
"search-states": "Pesquisar estados de dashboards", "search-states": "Pesquisar estados de dashboards",
"selected-states": "{ count, plural, 1 {1 dashboard state} other {# dashboard states} } selecionado(s)", "selected-states": "{ count, plural, =1 {1 dashboard state} other {# dashboard states} } selecionado(s)",
"edit-state": "Editar estado de dashboard", "edit-state": "Editar estado de dashboard",
"delete-state": "Excluir estado de dashboard", "delete-state": "Excluir estado de dashboard",
"add-state": "Adicionar estado de dashboard", "add-state": "Adicionar estado de dashboard",
@ -609,7 +609,7 @@
"select-state": "Selecionar estado alvo", "select-state": "Selecionar estado alvo",
"state-controller": "Controlador de estado", "state-controller": "Controlador de estado",
"search": "Selecionar dashboards", "search": "Selecionar dashboards",
"selected-dashboards": "{ count, plural, 1 {1 dashboard} other {# dashboards} } selecionado(s)" "selected-dashboards": "{ count, plural, =1 {1 dashboard} other {# dashboards} } selecionado(s)"
}, },
"datakey": { "datakey": {
"settings": "Configurações", "settings": "Configurações",
@ -628,11 +628,11 @@
"timeseries-required": "Os intervalos de tempo de entidade são obrigatórios.", "timeseries-required": "Os intervalos de tempo de entidade são obrigatórios.",
"timeseries-or-attributes-required": "Os intervalos de tempo/atributos de entidade são obrigatórios.", "timeseries-or-attributes-required": "Os intervalos de tempo/atributos de entidade são obrigatórios.",
"alarm-fields-timeseries-or-attributes-required": "Os campos de alarmes ou intervalos de tempo/atributos de entidade são obrigatórios.", "alarm-fields-timeseries-or-attributes-required": "Os campos de alarmes ou intervalos de tempo/atributos de entidade são obrigatórios.",
"maximum-timeseries-or-attributes": "No máximo { count, plural, 1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }", "maximum-timeseries-or-attributes": "No máximo { count, plural, =1 {1 timeseries/attribute is allowed.} other {# timeseries/attributes are allowed} }",
"alarm-fields-required": "Os campos de alarmes são obrigatórios.", "alarm-fields-required": "Os campos de alarmes são obrigatórios.",
"function-types": "Tipos de função", "function-types": "Tipos de função",
"function-types-required": "Os tipos de função são obrigatórios.", "function-types-required": "Os tipos de função são obrigatórios.",
"maximum-function-types": "No máximo { count, plural, 1 {1 function type is allowed.} other {# function types are allowed} }", "maximum-function-types": "No máximo { count, plural, =1 {1 function type is allowed.} other {# function types are allowed} }",
"time-description": "carimbo de data/horário do valor atual;", "time-description": "carimbo de data/horário do valor atual;",
"value-description": "o valor atual;", "value-description": "o valor atual;",
"prev-value-description": "resultado da chamada de função anterior;", "prev-value-description": "resultado da chamada de função anterior;",
@ -691,11 +691,11 @@
"manage-credentials": "Gerenciar credenciais", "manage-credentials": "Gerenciar credenciais",
"delete": "Excluir dispositivo", "delete": "Excluir dispositivo",
"assign-devices": "Atribuir dispositivos", "assign-devices": "Atribuir dispositivos",
"assign-devices-text": "Atribuir { count, plural, 1 {1 device} other {# devices} } a cliente", "assign-devices-text": "Atribuir { count, plural, =1 {1 device} other {# devices} } a cliente",
"delete-devices": "Excluir dispositivos", "delete-devices": "Excluir dispositivos",
"unassign-from-customer": "Remover atribuição a cliente", "unassign-from-customer": "Remover atribuição a cliente",
"unassign-devices": "Remover atribuição de dispositivos", "unassign-devices": "Remover atribuição de dispositivos",
"unassign-devices-action-title": "Remover atribuição de { count, plural, 1 {1 device} other {# devices} } a cliente", "unassign-devices-action-title": "Remover atribuição de { count, plural, =1 {1 device} other {# devices} } a cliente",
"assign-new-device": "Atribuir novo dispositivo", "assign-new-device": "Atribuir novo dispositivo",
"make-public-device-title": "Tem certeza de que deseja tornar o dispositivo '{{deviceName}}' público?", "make-public-device-title": "Tem certeza de que deseja tornar o dispositivo '{{deviceName}}' público?",
"make-public-device-text": "Após confirmar, o dispositivo e todos os dados associados a ele se tornarão públicos e poderão ser acessados por outros.", "make-public-device-text": "Após confirmar, o dispositivo e todos os dados associados a ele se tornarão públicos e poderão ser acessados por outros.",
@ -704,13 +704,13 @@
"view-credentials": "Exibir credenciais", "view-credentials": "Exibir credenciais",
"delete-device-title": "Tem certeza de que deseja excluir o dispositivo '{{deviceName}}'?", "delete-device-title": "Tem certeza de que deseja excluir o dispositivo '{{deviceName}}'?",
"delete-device-text": "Cuidado, após confirmar, não será possível recuperar o dispositivo e nenhum dado associado.", "delete-device-text": "Cuidado, após confirmar, não será possível recuperar o dispositivo e nenhum dado associado.",
"delete-devices-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 device} other {# devices} }?", "delete-devices-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 device} other {# devices} }?",
"delete-devices-action-title": "Excluir { count, plural, 1 {1 device} other {# devices} }", "delete-devices-action-title": "Excluir { count, plural, =1 {1 device} other {# devices} }",
"delete-devices-text": "Cuidado, após confirmar, todos os dispositivos selecionados serão removidos e não será possível recuperar nenhum dado associado.", "delete-devices-text": "Cuidado, após confirmar, todos os dispositivos selecionados serão removidos e não será possível recuperar nenhum dado associado.",
"unassign-device-title": "Tem certeza de que deseja remover a atribuição do dispositivo '{{deviceName}}'?", "unassign-device-title": "Tem certeza de que deseja remover a atribuição do dispositivo '{{deviceName}}'?",
"unassign-device-text": "Após confirmar, a atribuição do dispositivo será removida e ele não poderá ser acessado pelo cliente.", "unassign-device-text": "Após confirmar, a atribuição do dispositivo será removida e ele não poderá ser acessado pelo cliente.",
"unassign-device": "Remover atribuição de dispositivo", "unassign-device": "Remover atribuição de dispositivo",
"unassign-devices-title": "Tem certeza de que deseja remover a atribuição de { count, plural, 1 {1 device} other {# devices} }?", "unassign-devices-title": "Tem certeza de que deseja remover a atribuição de { count, plural, =1 {1 device} other {# devices} }?",
"unassign-devices-text": "Após confirmar, a atribuição de todos os dispositivos selecionados será removida e eles não poderão ser acessados pelo cliente.", "unassign-devices-text": "Após confirmar, a atribuição de todos os dispositivos selecionados será removida e eles não poderão ser acessados pelo cliente.",
"device-credentials": "Credenciais do dispositivo", "device-credentials": "Credenciais do dispositivo",
"credentials-type": "Tipo de credencial", "credentials-type": "Tipo de credencial",
@ -747,7 +747,7 @@
"import": "Importar dispositivo", "import": "Importar dispositivo",
"device-file": "Arquivo de dispositivo", "device-file": "Arquivo de dispositivo",
"search": "Pesquisar dispositivos", "search": "Pesquisar dispositivos",
"selected-devices": "{ count, plural, 1 {1 device} other {# devices} } selecionado(s)" "selected-devices": "{ count, plural, =1 {1 device} other {# devices} } selecionado(s)"
}, },
"dialog": { "dialog": {
"close": "Fechar diálogo" "close": "Fechar diálogo"
@ -803,58 +803,58 @@
"type-required": "O tipo de entidade é obrigatório.", "type-required": "O tipo de entidade é obrigatório.",
"type-device": "Dispositivo", "type-device": "Dispositivo",
"type-devices": "Dispositivos", "type-devices": "Dispositivos",
"list-of-devices": "{ count, plural, 1 {One device} other {List of # devices} }", "list-of-devices": "{ count, plural, =1 {One device} other {List of # devices} }",
"device-name-starts-with": "Dispositivos cujos nomes começam com '{{prefix}}'", "device-name-starts-with": "Dispositivos cujos nomes começam com '{{prefix}}'",
"type-asset": "Ativo", "type-asset": "Ativo",
"type-assets": "Ativos", "type-assets": "Ativos",
"list-of-assets": "{ count, plural, 1 {One asset} other {List of # assets} }", "list-of-assets": "{ count, plural, =1 {One asset} other {List of # assets} }",
"asset-name-starts-with": "Ativos cujos nomes começam com '{{prefix}}'", "asset-name-starts-with": "Ativos cujos nomes começam com '{{prefix}}'",
"type-entity-view": "Exibição de entidade", "type-entity-view": "Exibição de entidade",
"type-entity-views": "Exibições de entidades", "type-entity-views": "Exibições de entidades",
"list-of-entity-views": "{ count, plural, 1 {One entity view} other {List of # entity views} }", "list-of-entity-views": "{ count, plural, =1 {One entity view} other {List of # entity views} }",
"entity-view-name-starts-with": "Exibições de entidades cujos nomes começam com '{{prefix}}'", "entity-view-name-starts-with": "Exibições de entidades cujos nomes começam com '{{prefix}}'",
"type-rule": "Regra", "type-rule": "Regra",
"type-rules": "Regras", "type-rules": "Regras",
"list-of-rules": "{ count, plural, 1 {One rule} other {List of # rules} }", "list-of-rules": "{ count, plural, =1 {One rule} other {List of # rules} }",
"rule-name-starts-with": "Regras cujos nomes começam com '{{prefix}}'", "rule-name-starts-with": "Regras cujos nomes começam com '{{prefix}}'",
"type-plugin": "Plug-in", "type-plugin": "Plug-in",
"type-plugins": "Plug-ins", "type-plugins": "Plug-ins",
"list-of-plugins": "{ count, plural, 1 {One plugin} other {List of # plugins} }", "list-of-plugins": "{ count, plural, =1 {One plugin} other {List of # plugins} }",
"plugin-name-starts-with": "Plug-ins cujos nomes começam com '{{prefix}}'", "plugin-name-starts-with": "Plug-ins cujos nomes começam com '{{prefix}}'",
"type-tenant": "Locatário", "type-tenant": "Locatário",
"type-tenants": "Locatários", "type-tenants": "Locatários",
"list-of-tenants": "{ count, plural, 1 {One tenant} other {List of # tenants} }", "list-of-tenants": "{ count, plural, =1 {One tenant} other {List of # tenants} }",
"tenant-name-starts-with": "Locatários cujos nomes começam com '{{prefix}}'", "tenant-name-starts-with": "Locatários cujos nomes começam com '{{prefix}}'",
"type-customer": "Cliente", "type-customer": "Cliente",
"type-customers": "Clientes", "type-customers": "Clientes",
"list-of-customers": "{ count, plural, 1 {One customer} other {List of # customers} }", "list-of-customers": "{ count, plural, =1 {One customer} other {List of # customers} }",
"customer-name-starts-with": "Clientes cujos nomes começam com '{{prefix}}'", "customer-name-starts-with": "Clientes cujos nomes começam com '{{prefix}}'",
"type-user": "Usuário", "type-user": "Usuário",
"type-users": "Usuários", "type-users": "Usuários",
"list-of-users": "{ count, plural, 1 {One user} other {List of # users} }", "list-of-users": "{ count, plural, =1 {One user} other {List of # users} }",
"user-name-starts-with": "Usuários cujos nomes começam com '{{prefix}}'", "user-name-starts-with": "Usuários cujos nomes começam com '{{prefix}}'",
"type-dashboard": "Dashboard", "type-dashboard": "Dashboard",
"type-dashboards": "Dashboards", "type-dashboards": "Dashboards",
"list-of-dashboards": "{ count, plural, 1 {One dashboard} other {List of # dashboards} }", "list-of-dashboards": "{ count, plural, =1 {One dashboard} other {List of # dashboards} }",
"dashboard-name-starts-with": "Dashboards cujos nomes começam com '{{prefix}}'", "dashboard-name-starts-with": "Dashboards cujos nomes começam com '{{prefix}}'",
"type-alarm": "Alarme", "type-alarm": "Alarme",
"type-alarms": "Alarmes", "type-alarms": "Alarmes",
"list-of-alarms": "{ count, plural, 1 {One alarms} other {List of # alarms} }", "list-of-alarms": "{ count, plural, =1 {One alarms} other {List of # alarms} }",
"alarm-name-starts-with": "Alarmes cujos nomes começam com '{{prefix}}'", "alarm-name-starts-with": "Alarmes cujos nomes começam com '{{prefix}}'",
"type-rulechain": "Cadeia de regras", "type-rulechain": "Cadeia de regras",
"type-rulechains": "Cadeias de regras", "type-rulechains": "Cadeias de regras",
"list-of-rulechains": "{ count, plural, 1 {One rule chain} other {List of # rule chains} }", "list-of-rulechains": "{ count, plural, =1 {One rule chain} other {List of # rule chains} }",
"rulechain-name-starts-with": "Cadeias de regras cujos nomes começam com '{{prefix}}'", "rulechain-name-starts-with": "Cadeias de regras cujos nomes começam com '{{prefix}}'",
"type-rulenode": "Nó de regra", "type-rulenode": "Nó de regra",
"type-rulenodes": "Nós de regras", "type-rulenodes": "Nós de regras",
"list-of-rulenodes": "{ count, plural, 1 {One rule node} other {List of # rule nodes} }", "list-of-rulenodes": "{ count, plural, =1 {One rule node} other {List of # rule nodes} }",
"rulenode-name-starts-with": "Nós de regras cujos nomes começam com '{{prefix}}'", "rulenode-name-starts-with": "Nós de regras cujos nomes começam com '{{prefix}}'",
"type-current-customer": "Cliente atual", "type-current-customer": "Cliente atual",
"type-current-tenant": "Locatário atual", "type-current-tenant": "Locatário atual",
"type-current-user": "Usuário atual", "type-current-user": "Usuário atual",
"type-current-user-owner": "Proprietário de usuário atual", "type-current-user-owner": "Proprietário de usuário atual",
"search": "Pesquisar entidades", "search": "Pesquisar entidades",
"selected-entities": "{ count, plural, 1 {1 entity} other {# entities} } selecionado(s)", "selected-entities": "{ count, plural, =1 {1 entity} other {# entities} } selecionado(s)",
"entity-name": "Nome da entidade", "entity-name": "Nome da entidade",
"entity-label": "Etiqueta de entidade", "entity-label": "Etiqueta de entidade",
"details": "Detalhes de entidades", "details": "Detalhes de entidades",
@ -918,21 +918,21 @@
"add-entity-view-text": "Adicionar nova exibição de entidade", "add-entity-view-text": "Adicionar nova exibição de entidade",
"delete": "Excluir exibição de entidade", "delete": "Excluir exibição de entidade",
"assign-entity-views": "Atribuir exibições de entidades", "assign-entity-views": "Atribuir exibições de entidades",
"assign-entity-views-text": "Atribuir { count, plural, 1 {1 entity view} other {# entity views} } a cliente", "assign-entity-views-text": "Atribuir { count, plural, =1 {1 entity view} other {# entity views} } a cliente",
"delete-entity-views": "Excluir exibições de entidades", "delete-entity-views": "Excluir exibições de entidades",
"unassign-from-customer": "Remover atribuição a cliente", "unassign-from-customer": "Remover atribuição a cliente",
"unassign-entity-views": "Remover atribuição de exibições de entidades", "unassign-entity-views": "Remover atribuição de exibições de entidades",
"unassign-entity-views-action-title": "Remover atribuição de { count, plural, 1 {1 entity view} other {# entity views} } a cliente", "unassign-entity-views-action-title": "Remover atribuição de { count, plural, =1 {1 entity view} other {# entity views} } a cliente",
"assign-new-entity-view": "Atribuir nova exibição de entidade", "assign-new-entity-view": "Atribuir nova exibição de entidade",
"delete-entity-view-title": "Tem certeza de que deseja excluir a exibição de entidade '{{entityViewName}}'?", "delete-entity-view-title": "Tem certeza de que deseja excluir a exibição de entidade '{{entityViewName}}'?",
"delete-entity-view-text": "Cuidado, após confirmar, não será possível recuperar a exibição de entidade e todos os dados associados.", "delete-entity-view-text": "Cuidado, após confirmar, não será possível recuperar a exibição de entidade e todos os dados associados.",
"delete-entity-views-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 entity view} other {# entity views} }?", "delete-entity-views-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 entity view} other {# entity views} }?",
"delete-entity-views-action-title": "Excluir { count, plural, 1 {1 entity view} other {# entity views} }", "delete-entity-views-action-title": "Excluir { count, plural, =1 {1 entity view} other {# entity views} }",
"delete-entity-views-text": "Cuidado, após confirmar, todas as exibições de entidades selecionadas serão removidas e não será possível recuperar nenhum dado associado.", "delete-entity-views-text": "Cuidado, após confirmar, todas as exibições de entidades selecionadas serão removidas e não será possível recuperar nenhum dado associado.",
"unassign-entity-view-title": "Tem certeza de que deseja remover a atribuição da exibição de entidade '{{entityViewName}}'?", "unassign-entity-view-title": "Tem certeza de que deseja remover a atribuição da exibição de entidade '{{entityViewName}}'?",
"unassign-entity-view-text": "Após confirmar, a atribuição da exibição de entidade será removida e ela não poderá ser acessada pelo cliente.", "unassign-entity-view-text": "Após confirmar, a atribuição da exibição de entidade será removida e ela não poderá ser acessada pelo cliente.",
"unassign-entity-view": "Remover atribuição de exibição de entidade", "unassign-entity-view": "Remover atribuição de exibição de entidade",
"unassign-entity-views-title": "Tem certeza de que deseja remover a atribuição de { count, plural, 1 {1 entity view} other {# entity views} }?", "unassign-entity-views-title": "Tem certeza de que deseja remover a atribuição de { count, plural, =1 {1 entity view} other {# entity views} }?",
"unassign-entity-views-text": "Após confirmar, a atribuição de todas as exibições de entidade selecionadas será removida e elas não poderão ser acessadas pelo cliente.", "unassign-entity-views-text": "Após confirmar, a atribuição de todas as exibições de entidade selecionadas será removida e elas não poderão ser acessadas pelo cliente.",
"entity-view-type": "Tipo de exibições de entidades", "entity-view-type": "Tipo de exibições de entidades",
"entity-view-type-required": "O tipo de exibição de entidade é obrigatório.", "entity-view-type-required": "O tipo de exibição de entidade é obrigatório.",
@ -979,7 +979,7 @@
"make-private-entity-view-title": "Tem certeza de que deseja tornar a exibição de entidade '{{entityViewName}}' privada?", "make-private-entity-view-title": "Tem certeza de que deseja tornar a exibição de entidade '{{entityViewName}}' privada?",
"make-private-entity-view-text": "Após confirmar, a exibição de entidade e todos os dados associados a ela se tornarão privados e não poderão ser acessados por outros.", "make-private-entity-view-text": "Após confirmar, a exibição de entidade e todos os dados associados a ela se tornarão privados e não poderão ser acessados por outros.",
"search": "Pesquisar exibições de entidades", "search": "Pesquisar exibições de entidades",
"selected-entity-views": "{ count, plural, 1 {1 entity view} other {# entity views} } selecionado(s)" "selected-entity-views": "{ count, plural, =1 {1 entity view} other {# entity views} } selecionado(s)"
}, },
"event": { "event": {
"event-type": "Tipo de evento", "event-type": "Tipo de evento",
@ -1013,7 +1013,7 @@
}, },
"extension": { "extension": {
"extensions": "Extensões", "extensions": "Extensões",
"selected-extensions": "{ count, plural, 1 {1 extension} other {# extensions} } selecionado(s)", "selected-extensions": "{ count, plural, =1 {1 extension} other {# extensions} } selecionado(s)",
"type": "Tipo", "type": "Tipo",
"key": "Chave", "key": "Chave",
"value": "Valor", "value": "Valor",
@ -1027,7 +1027,7 @@
"edit": "Editar extensão", "edit": "Editar extensão",
"delete-extension-title": "Tem certeza de que deseja excluir a extensão '{{extensionId}}'?", "delete-extension-title": "Tem certeza de que deseja excluir a extensão '{{extensionId}}'?",
"delete-extension-text": "Cuidado, após confirmar, não será possível recuperar a extensão e nenhum dado associado.", "delete-extension-text": "Cuidado, após confirmar, não será possível recuperar a extensão e nenhum dado associado.",
"delete-extensions-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 extension} other {# extensions} }?", "delete-extensions-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 extension} other {# extensions} }?",
"delete-extensions-text": "Cuidado, após confirmar, todas as extensões selecionadas serão removidas.", "delete-extensions-text": "Cuidado, após confirmar, todas as extensões selecionadas serão removidas.",
"converters": "Conversores", "converters": "Conversores",
"converter-id": "ID do conversor", "converter-id": "ID do conversor",
@ -1336,8 +1336,8 @@
"grid": { "grid": {
"delete-item-title": "Tem certeza de que deseja excluir este item?", "delete-item-title": "Tem certeza de que deseja excluir este item?",
"delete-item-text": "Cuidado, após confirmar, não será possível recuperar este item e nenhum dado associado.", "delete-item-text": "Cuidado, após confirmar, não será possível recuperar este item e nenhum dado associado.",
"delete-items-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 item} other {# items} }?", "delete-items-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 item} other {# items} }?",
"delete-items-action-title": "Excluir { count, plural, 1 {1 item} other {# items} }", "delete-items-action-title": "Excluir { count, plural, =1 {1 item} other {# items} }",
"delete-items-text": "Cuidado, após confirmar, todos os itens selecionados serão removidos e não será possível recuperar nenhum dado associado.", "delete-items-text": "Cuidado, após confirmar, todos os itens selecionados serão removidos e não será possível recuperar nenhum dado associado.",
"add-item-text": "Adicionar novo item", "add-item-text": "Adicionar novo item",
"no-items-text": "Nenhum item encontrado", "no-items-text": "Nenhum item encontrado",
@ -1486,7 +1486,7 @@
}, },
"from-relations": "Relações de saída", "from-relations": "Relações de saída",
"to-relations": "Relações de entrada", "to-relations": "Relações de entrada",
"selected-relations": "{ count, plural, 1 {1 relation} other {# relations} } selecionado(s)", "selected-relations": "{ count, plural, =1 {1 relation} other {# relations} } selecionado(s)",
"type": "Tipo", "type": "Tipo",
"to-entity-type": "Para tipo de entidade", "to-entity-type": "Para tipo de entidade",
"to-entity-name": "Para nome de entidade", "to-entity-name": "Para nome de entidade",
@ -1502,11 +1502,11 @@
"edit": "Editar relação", "edit": "Editar relação",
"delete-to-relation-title": "Tem certeza de que deseja excluir a relação com a entidade '{{entityName}}'?", "delete-to-relation-title": "Tem certeza de que deseja excluir a relação com a entidade '{{entityName}}'?",
"delete-to-relation-text": "Cuidado, após confirmar, a relação da entidade '{{entityName}}' com a entidade atual será anulada.", "delete-to-relation-text": "Cuidado, após confirmar, a relação da entidade '{{entityName}}' com a entidade atual será anulada.",
"delete-to-relations-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 relation} other {# relations} }?", "delete-to-relations-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 relation} other {# relations} }?",
"delete-to-relations-text": "Cuidado, após confirmar, todas as relações serão removidas e a relação das entidades correspondentes com a entidade atual será anulada.", "delete-to-relations-text": "Cuidado, após confirmar, todas as relações serão removidas e a relação das entidades correspondentes com a entidade atual será anulada.",
"delete-from-relation-title": "Tem certeza de que deseja excluir a relação da entidade '{{entityName}}'?", "delete-from-relation-title": "Tem certeza de que deseja excluir a relação da entidade '{{entityName}}'?",
"delete-from-relation-text": "Cuidado, após confirmar, a relação da entidade atual com a entidade '{{entityName}}' será anulada.", "delete-from-relation-text": "Cuidado, após confirmar, a relação da entidade atual com a entidade '{{entityName}}' será anulada.",
"delete-from-relations-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 relation} other {# relations} }?", "delete-from-relations-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 relation} other {# relations} }?",
"delete-from-relations-text": "Cuidado, após confirmar, todas as relações serão removidas e a relação da entidade atual com as entidades correspondentes será anulada.", "delete-from-relations-text": "Cuidado, após confirmar, todas as relações serão removidas e a relação da entidade atual com as entidades correspondentes será anulada.",
"remove-relation-filter": "Remover filtro de relação", "remove-relation-filter": "Remover filtro de relação",
"add-relation-filter": "Adicionar filtro de relação", "add-relation-filter": "Adicionar filtro de relação",
@ -1530,8 +1530,8 @@
"set-root-rulechain-text": "Após confirmar, a cadeia de regras se tornará em raiz e irá tratar todas as mensagens de transporte recebidas.", "set-root-rulechain-text": "Após confirmar, a cadeia de regras se tornará em raiz e irá tratar todas as mensagens de transporte recebidas.",
"delete-rulechain-title": "Tem certeza de que deseja excluir a cadeia de regras '{{ruleChainName}}'?", "delete-rulechain-title": "Tem certeza de que deseja excluir a cadeia de regras '{{ruleChainName}}'?",
"delete-rulechain-text": "Cuidado, após confirmar, não será possível recuperar a cadeia de regras e todos os dados associados.", "delete-rulechain-text": "Cuidado, após confirmar, não será possível recuperar a cadeia de regras e todos os dados associados.",
"delete-rulechains-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 rule chain} other {# rule chains} }?", "delete-rulechains-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 rule chain} other {# rule chains} }?",
"delete-rulechains-action-title": "Excluir { count, plural, 1 {1 rule chain} other {# rule chains} }", "delete-rulechains-action-title": "Excluir { count, plural, =1 {1 rule chain} other {# rule chains} }",
"delete-rulechains-text": "Cuidado, após confirmar, todas as cadeias de regras serão removidas e não será possível recuperar nenhum dado associado.", "delete-rulechains-text": "Cuidado, após confirmar, todas as cadeias de regras serão removidas e não será possível recuperar nenhum dado associado.",
"add-rulechain-text": "Adicionar nova cadeia de regras", "add-rulechain-text": "Adicionar nova cadeia de regras",
"no-rulechains-text": "Nenhuma cadeia de regras encontrada", "no-rulechains-text": "Nenhuma cadeia de regras encontrada",
@ -1553,7 +1553,7 @@
"management": "Gerenciamento de regras", "management": "Gerenciamento de regras",
"debug-mode": "Modo de depuração", "debug-mode": "Modo de depuração",
"search": "Pesquisar cadeias de regras", "search": "Pesquisar cadeias de regras",
"selected-rulechains": "{ count, plural, 1 {1 rule chain} other {# rule chains} } selecionada(s)", "selected-rulechains": "{ count, plural, =1 {1 rule chain} other {# rule chains} } selecionada(s)",
"open-rulechain": "Abrir cadeia de regras" "open-rulechain": "Abrir cadeia de regras"
}, },
"rulenode": { "rulenode": {
@ -1644,8 +1644,8 @@
"tenant-details": "Detalhes do locatário", "tenant-details": "Detalhes do locatário",
"delete-tenant-title": "Tem certeza de que deseja excluir o locatário '{{tenantTitle}}'?", "delete-tenant-title": "Tem certeza de que deseja excluir o locatário '{{tenantTitle}}'?",
"delete-tenant-text": "Cuidado, após confirmar, não será possível recuperar o locatário e nenhum dado associado.", "delete-tenant-text": "Cuidado, após confirmar, não será possível recuperar o locatário e nenhum dado associado.",
"delete-tenants-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 tenant} other {# tenants} }?", "delete-tenants-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 tenant} other {# tenants} }?",
"delete-tenants-action-title": "Excluir { count, plural, 1 {1 tenant} other {# tenants} }", "delete-tenants-action-title": "Excluir { count, plural, =1 {1 tenant} other {# tenants} }",
"delete-tenants-text": "Cuidado, após confirmar, todos os locatários selecionados serão removidos e não será possível recuperar nenhum dado associado.", "delete-tenants-text": "Cuidado, após confirmar, todos os locatários selecionados serão removidos e não será possível recuperar nenhum dado associado.",
"title": "Título", "title": "Título",
"title-required": "O título é obrigatório.", "title-required": "O título é obrigatório.",
@ -1658,15 +1658,15 @@
"no-tenants-matching": "Nenhum locatário encontrado que coincida com '{{entity}}'.", "no-tenants-matching": "Nenhum locatário encontrado que coincida com '{{entity}}'.",
"tenant-required": "O locatário é obrigatório", "tenant-required": "O locatário é obrigatório",
"search": "Pesquisar locatários", "search": "Pesquisar locatários",
"selected-tenants": "{ count, plural, 1 {1 tenant} other {# tenants} } selecionado(s)", "selected-tenants": "{ count, plural, =1 {1 tenant} other {# tenants} } selecionado(s)",
"isolated-tb-rule-engine": "Processamento em contêiner isolado do ThingsBoard Rule Engine", "isolated-tb-rule-engine": "Processamento em contêiner isolado do ThingsBoard Rule Engine",
"isolated-tb-rule-engine-details": "Exige microsserviço(s) separado(s) para cada locatário isolado" "isolated-tb-rule-engine-details": "Exige microsserviço(s) separado(s) para cada locatário isolado"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 second} other {# seconds} }", "seconds-interval": "{ seconds, plural, =1 {1 second} other {# seconds} }",
"minutes-interval": "{ minutes, plural, 1 {1 minute} other {# minutes} }", "minutes-interval": "{ minutes, plural, =1 {1 minute} other {# minutes} }",
"hours-interval": "{ hours, plural, 1 {1 hour} other {# hours} }", "hours-interval": "{ hours, plural, =1 {1 hour} other {# hours} }",
"days-interval": "{ days, plural, 1 {1 day} other {# days} }", "days-interval": "{ days, plural, =1 {1 day} other {# days} }",
"days": "Dias", "days": "Dias",
"hours": "Horas", "hours": "Horas",
"minutes": "Minutos", "minutes": "Minutos",
@ -1674,10 +1674,10 @@
"advanced": "Avançado" "advanced": "Avançado"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { day } other {# days } }", "days": "{ days, plural, =1 { day } other {# days } }",
"hours": "{ hours, plural, 0 { hour } 1 {1 hour } other {# hours } }", "hours": "{ hours, plural, =0 { hour } =1 {1 hour } other {# hours } }",
"minutes": "{ minutes, plural, 0 { minute } 1 {1 minute } other {# minutes } }", "minutes": "{ minutes, plural, =0 { minute } =1 {1 minute } other {# minutes } }",
"seconds": "{ seconds, plural, 0 { second } 1 {1 second } other {# seconds } }", "seconds": "{ seconds, plural, =0 { second } =1 {1 second } other {# seconds } }",
"realtime": "Tempo real", "realtime": "Tempo real",
"history": "Histórico", "history": "Histórico",
"last-prefix": "último", "last-prefix": "último",
@ -1704,8 +1704,8 @@
"user-details": "Detalhes do usuário", "user-details": "Detalhes do usuário",
"delete-user-title": "Tem certeza de que deseja excluir o usuário '{{userEmail}}'?", "delete-user-title": "Tem certeza de que deseja excluir o usuário '{{userEmail}}'?",
"delete-user-text": "Cuidado, após confirmar, não será possível recuperar o usuário e nenhum dado associado.", "delete-user-text": "Cuidado, após confirmar, não será possível recuperar o usuário e nenhum dado associado.",
"delete-users-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 user} other {# users} }?", "delete-users-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 user} other {# users} }?",
"delete-users-action-title": "Excluir { count, plural, 1 {1 user} other {# users} }", "delete-users-action-title": "Excluir { count, plural, =1 {1 user} other {# users} }",
"delete-users-text": "Cuidado, após confirmar, todos os usuários selecionados serão removidos e não será possível recuperar nenhum dado associado.", "delete-users-text": "Cuidado, após confirmar, todos os usuários selecionados serão removidos e não será possível recuperar nenhum dado associado.",
"activation-email-sent-message": "O e-mail de ativação foi enviado corretamente!", "activation-email-sent-message": "O e-mail de ativação foi enviado corretamente!",
"resend-activation": "Reenviar ativação", "resend-activation": "Reenviar ativação",
@ -1731,7 +1731,7 @@
"login-as-tenant-admin": "Login como administrador de locatários", "login-as-tenant-admin": "Login como administrador de locatários",
"login-as-customer-user": "Login como usuário do cliente", "login-as-customer-user": "Login como usuário do cliente",
"search": "Pesquisar usuários", "search": "Pesquisar usuários",
"selected-users": "{ count, plural, 1 {1 user} other {# users} } selecionado(s)", "selected-users": "{ count, plural, =1 {1 user} other {# users} } selecionado(s)",
"disable-account": "Desativar conta de usuário", "disable-account": "Desativar conta de usuário",
"enable-account": "Ativar conta de usuário", "enable-account": "Ativar conta de usuário",
"enable-account-message": "A conta de usuário foi ativada corretamente!", "enable-account-message": "A conta de usuário foi ativada corretamente!",
@ -1843,8 +1843,8 @@
"widgets-bundle-details": "Detalhes do pacote de widgets", "widgets-bundle-details": "Detalhes do pacote de widgets",
"delete-widgets-bundle-title": "Tem certeza de que deseja excluir o pacote de widgets '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Tem certeza de que deseja excluir o pacote de widgets '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Cuidado, após confirmar, não será possível recuperar o pacote de widgets e nenhum dado associado.", "delete-widgets-bundle-text": "Cuidado, após confirmar, não será possível recuperar o pacote de widgets e nenhum dado associado.",
"delete-widgets-bundles-title": "Tem certeza de que deseja excluir { count, plural, 1 {1 widgets bundle} other {# widgets bundles} }?", "delete-widgets-bundles-title": "Tem certeza de que deseja excluir { count, plural, =1 {1 widgets bundle} other {# widgets bundles} }?",
"delete-widgets-bundles-action-title": "Excluir { count, plural, 1 {1 widgets bundle} other {# widgets bundles} }", "delete-widgets-bundles-action-title": "Excluir { count, plural, =1 {1 widgets bundle} other {# widgets bundles} }",
"delete-widgets-bundles-text": "Cuidado, após confirmar, todos os pacotes de widgets selecionados serão removidos e não será possível recuperar nenhum dado associado.", "delete-widgets-bundles-text": "Cuidado, após confirmar, todos os pacotes de widgets selecionados serão removidos e não será possível recuperar nenhum dado associado.",
"no-widgets-bundles-matching": "Nenhum conversor de pacotes de widgets encontrado que coincida com '{{widgetsBundle}}'.", "no-widgets-bundles-matching": "Nenhum conversor de pacotes de widgets encontrado que coincida com '{{widgetsBundle}}'.",
"widgets-bundle-required": "O pacote de widgets é obrigatório.", "widgets-bundle-required": "O pacote de widgets é obrigatório.",
@ -1856,7 +1856,7 @@
"widgets-bundle-file": "Arquivo de pacote de widgets", "widgets-bundle-file": "Arquivo de pacote de widgets",
"invalid-widgets-bundle-file-error": "Impossível importar pacote de widgets: Estrutura de dados de pacote de widgets inválida.", "invalid-widgets-bundle-file-error": "Impossível importar pacote de widgets: Estrutura de dados de pacote de widgets inválida.",
"search": "Pesquisar pacotes de widgets", "search": "Pesquisar pacotes de widgets",
"selected-widgets-bundles": "{ count, plural, 1 {1 widgets bundle} other {# widgets bundles} } selecionado(s)", "selected-widgets-bundles": "{ count, plural, =1 {1 widgets bundle} other {# widgets bundles} } selecionado(s)",
"open-widgets-bundle": "Abrir pacote de widgets" "open-widgets-bundle": "Abrir pacote de widgets"
}, },
"widget-config": { "widget-config": {
@ -1885,7 +1885,7 @@
"display-timewindow": "Exibir timewindow", "display-timewindow": "Exibir timewindow",
"display-legend": "Exibir legenda", "display-legend": "Exibir legenda",
"datasources": "Fontes de dados", "datasources": "Fontes de dados",
"maximum-datasources": "No máximo { count, plural, 1 {1 datasource is allowed.} other {# datasources are allowed} }", "maximum-datasources": "No máximo { count, plural, =1 {1 datasource is allowed.} other {# datasources are allowed} }",
"datasource-type": "Tipo", "datasource-type": "Tipo",
"datasource-parameters": "Parâmetros", "datasource-parameters": "Parâmetros",
"remove-datasource": "Remover fonte de dados", "remove-datasource": "Remover fonte de dados",

142
ui-ngx/src/assets/locale/locale.constant-ro_RO.json

@ -150,17 +150,17 @@
"acknowledge": "Marchează Observat", "acknowledge": "Marchează Observat",
"clear": "Şterge", "clear": "Şterge",
"search": "Caută Alarme", "search": "Caută Alarme",
"selected-alarms": "{ count, plural, 1 {o alarmă} other {# alarme} } selectate", "selected-alarms": "{ count, plural, =1 {o alarmă} other {# alarme} } selectate",
"no-data": "Nu există date de afişat", "no-data": "Nu există date de afişat",
"polling-interval": "Interval actualizare alarme (secunde)", "polling-interval": "Interval actualizare alarme (secunde)",
"polling-interval-required": "Intervalul pentru actualizarea alarmelor este obligatoriu", "polling-interval-required": "Intervalul pentru actualizarea alarmelor este obligatoriu",
"min-polling-interval-message": "Valoarea minimă permisă pentru interval actualizare alarme este o secundă", "min-polling-interval-message": "Valoarea minimă permisă pentru interval actualizare alarme este o secundă",
"aknowledge-alarms-title": "Ai selectat { count, plural, 1 {o alarmă} other {# alarme} }", "aknowledge-alarms-title": "Ai selectat { count, plural, =1 {o alarmă} other {# alarme} }",
"aknowledge-alarms-text": "Sigur vrei să marchezi ca 'Observat' { count, plural, 1 {o alarmă} other {# alarme} }?", "aknowledge-alarms-text": "Sigur vrei să marchezi ca 'Observat' { count, plural, =1 {o alarmă} other {# alarme} }?",
"aknowledge-alarm-title": "Alarmă Observată", "aknowledge-alarm-title": "Alarmă Observată",
"aknowledge-alarm-text": "Sigur vrei să marchezi alarma ca 'Observat'?", "aknowledge-alarm-text": "Sigur vrei să marchezi alarma ca 'Observat'?",
"clear-alarms-title": "Şterge { count, plural, 1 {o alarmă} other {# alarme} }", "clear-alarms-title": "Şterge { count, plural, =1 {o alarmă} other {# alarme} }",
"clear-alarms-text": "Sigur vrei să ștergi { count, plural, 1 {o alarmă} other {# alarme} }?", "clear-alarms-text": "Sigur vrei să ștergi { count, plural, =1 {o alarmă} other {# alarme} }?",
"clear-alarm-title": "Şterge Alarma", "clear-alarm-title": "Şterge Alarma",
"clear-alarm-text": "Sigur vrei să ștergi alarma?", "clear-alarm-text": "Sigur vrei să ștergi alarma?",
"alarm-status-filter": "Stare Filtre Alarmă", "alarm-status-filter": "Stare Filtre Alarmă",
@ -252,15 +252,15 @@
"add-asset-text": "Adaugă proprietate", "add-asset-text": "Adaugă proprietate",
"asset-details": "Detalii proprietate", "asset-details": "Detalii proprietate",
"assign-assets": "Repartizează proprietăţi", "assign-assets": "Repartizează proprietăţi",
"assign-assets-text": "Repartizează { count, plural, 1 {o proprietate} other {# proprietăţi} } clientului", "assign-assets-text": "Repartizează { count, plural, =1 {o proprietate} other {# proprietăţi} } clientului",
"delete-assets": "Şterge proprietăţi", "delete-assets": "Şterge proprietăţi",
"unassign-assets": "Şterge repartizare proprietăţi", "unassign-assets": "Şterge repartizare proprietăţi",
"unassign-assets-action-title": "Şterge repartizare { count, plural, 1 {o proprietate} other {# proprietăţi} } clientului", "unassign-assets-action-title": "Şterge repartizare { count, plural, =1 {o proprietate} other {# proprietăţi} } clientului",
"assign-new-asset": "Repartizează proprietate nouă", "assign-new-asset": "Repartizează proprietate nouă",
"delete-asset-title": "Sigur vrei să ștergi '{{assetName}}'?", "delete-asset-title": "Sigur vrei să ștergi '{{assetName}}'?",
"delete-asset-text": "ATENŢIE! După confirmare, proprietatea şi toate datele referitoare la aceasta, vor fi șterse IREVERSIBIL!", "delete-asset-text": "ATENŢIE! După confirmare, proprietatea şi toate datele referitoare la aceasta, vor fi șterse IREVERSIBIL!",
"delete-assets-title": "Sigur vrei să ștergi { count, plural, 1 {o proprietate} other {# proprietăţi} }?", "delete-assets-title": "Sigur vrei să ștergi { count, plural, =1 {o proprietate} other {# proprietăţi} }?",
"delete-assets-action-title": "Ştergi { count, plural, 1 {o proprietate} other {# proprietăţi} }", "delete-assets-action-title": "Ştergi { count, plural, =1 {o proprietate} other {# proprietăţi} }",
"delete-assets-text": "ATENŢIE! După confirmare, toate proprietăţile selectate şi toate datele referitoare la aceastea, vor fi șterse IREVERSIBIL!", "delete-assets-text": "ATENŢIE! După confirmare, toate proprietăţile selectate şi toate datele referitoare la aceastea, vor fi șterse IREVERSIBIL!",
"make-public-asset-title": "Sigur vrei ca proprietatea '{{assetName}}' să devină publică ", "make-public-asset-title": "Sigur vrei ca proprietatea '{{assetName}}' să devină publică ",
"make-public-asset-text": "ATENŢIE! După confirmare, proprietatea selectată şi toate datele referitoare la aceasta vor putea fi accesate de către oricine", "make-public-asset-text": "ATENŢIE! După confirmare, proprietatea selectată şi toate datele referitoare la aceasta vor putea fi accesate de către oricine",
@ -269,7 +269,7 @@
"unassign-asset-title": "Sigur vrei să ştergi repartizarea pentru proprietatea '{{assetName}}'?", "unassign-asset-title": "Sigur vrei să ştergi repartizarea pentru proprietatea '{{assetName}}'?",
"unassign-asset-text": "ATENŢIE! După confirmare, repartizarea proprietăţii nu va mai putea fi accesată de către client", "unassign-asset-text": "ATENŢIE! După confirmare, repartizarea proprietăţii nu va mai putea fi accesată de către client",
"unassign-asset": "Şterge repartizare proprietate", "unassign-asset": "Şterge repartizare proprietate",
"unassign-assets-title": "Sigur vrei să ştergi repartizarea pentru { count, plural, 1 {o proprietate} other {# proprietăţi} }?", "unassign-assets-title": "Sigur vrei să ştergi repartizarea pentru { count, plural, =1 {o proprietate} other {# proprietăţi} }?",
"unassign-assets-text": "ATENŢIE! După confirmare, repartizările proprietăţilor selectate nu vor mai putea fi accesate de către client", "unassign-assets-text": "ATENŢIE! După confirmare, repartizările proprietăţilor selectate nu vor mai putea fi accesate de către client",
"copyId": "Copiază ID proprietate", "copyId": "Copiază ID proprietate",
"idCopiedMessage": "ID-ul proprietăţii a fost copiat în clipboard", "idCopiedMessage": "ID-ul proprietăţii a fost copiat în clipboard",
@ -295,7 +295,7 @@
"key-required": "Cheia atributului este obligatorie", "key-required": "Cheia atributului este obligatorie",
"value": "Valoare", "value": "Valoare",
"value-required": "Valoarea atributului este obligatorie", "value-required": "Valoarea atributului este obligatorie",
"delete-attributes-title": "Sigur vrei să ștergi { count, plural, 1 {un atribut} other {# atribute} }?", "delete-attributes-title": "Sigur vrei să ștergi { count, plural, =1 {un atribut} other {# atribute} }?",
"delete-attributes-text": "ATENŢIE! După confirmare, toate atributele selectate vor fi şterse", "delete-attributes-text": "ATENŢIE! După confirmare, toate atributele selectate vor fi şterse",
"delete-attributes": "Şterge Atribute", "delete-attributes": "Şterge Atribute",
"enter-attribute-value": "Specifică Valoarea Atributului", "enter-attribute-value": "Specifică Valoarea Atributului",
@ -305,8 +305,8 @@
"prev-widget": "Widget Precedent", "prev-widget": "Widget Precedent",
"add-to-dashboard": "Adaugă în panou", "add-to-dashboard": "Adaugă în panou",
"add-widget-to-dashboard": "Adaugă Widget În Panou", "add-widget-to-dashboard": "Adaugă Widget În Panou",
"selected-attributes": "{ count, plural, 1 {un atribut} other {# atribute} } selectate", "selected-attributes": "{ count, plural, =1 {un atribut} other {# atribute} } selectate",
"selected-telemetry": "{ count, plural, 1 {o unitate telemetrică} other {# unităţi telemetrice} } selectate" "selected-telemetry": "{ count, plural, =1 {o unitate telemetrică} other {# unităţi telemetrice} } selectate"
}, },
"audit-log": { "audit-log": {
"audit": "Audit", "audit": "Audit",
@ -405,8 +405,8 @@
"customer-details": "Detalii Client", "customer-details": "Detalii Client",
"delete-customer-title": "Vrei să ștergi clientul '{{customerTitle}}'?", "delete-customer-title": "Vrei să ștergi clientul '{{customerTitle}}'?",
"delete-customer-text": "ATENŢIE! După confirmare, clientul şi toate datele referitoare la acesta vor fi șterse IREVERSIBIL!", "delete-customer-text": "ATENŢIE! După confirmare, clientul şi toate datele referitoare la acesta vor fi șterse IREVERSIBIL!",
"delete-customers-title": "Vrei să ștergi { count, plural, 1 {un client} other {# clienţi} }?", "delete-customers-title": "Vrei să ștergi { count, plural, =1 {un client} other {# clienţi} }?",
"delete-customers-action-title": "Şterge { count, plural, 1 {un client} other {# clienţi} }", "delete-customers-action-title": "Şterge { count, plural, =1 {un client} other {# clienţi} }",
"delete-customers-text": "ATENŢIE! După confirmare, toaţi clienţii selectate şi toate datele referitoare la aceaştia, vor fi șterse IREVERSIBIL!", "delete-customers-text": "ATENŢIE! După confirmare, toaţi clienţii selectate şi toate datele referitoare la aceaştia, vor fi șterse IREVERSIBIL!",
"manage-users": "Administrare Utilizatori", "manage-users": "Administrare Utilizatori",
"manage-assets": "Administrare Proprietăţi", "manage-assets": "Administrare Proprietăţi",
@ -465,20 +465,20 @@
"add-dashboard-text": "Adăugare Panou Nou", "add-dashboard-text": "Adăugare Panou Nou",
"assign-dashboards": "Repartizare Panouri", "assign-dashboards": "Repartizare Panouri",
"assign-new-dashboard": "Repartizare Panou Nou", "assign-new-dashboard": "Repartizare Panou Nou",
"assign-dashboards-text": "Repartizează { count, plural, 1 {un panou} other {# panouri} } clienţilor", "assign-dashboards-text": "Repartizează { count, plural, =1 {un panou} other {# panouri} } clienţilor",
"unassign-dashboards-action-text": "Şterge repartizare { count, plural, 1 {un panou} other {# panouri} } către clienți", "unassign-dashboards-action-text": "Şterge repartizare { count, plural, =1 {un panou} other {# panouri} } către clienți",
"delete-dashboards": "Şterge Panouri", "delete-dashboards": "Şterge Panouri",
"unassign-dashboards": "Şterge Repartizare Panouri", "unassign-dashboards": "Şterge Repartizare Panouri",
"unassign-dashboards-action-title": "Şterge Repartizare { count, plural, 1 {un panou} other {# panouri} } către client", "unassign-dashboards-action-title": "Şterge Repartizare { count, plural, =1 {un panou} other {# panouri} } către client",
"delete-dashboard-title": "Vrei să ștergi panoul '{{dashboardTitle}}'?", "delete-dashboard-title": "Vrei să ștergi panoul '{{dashboardTitle}}'?",
"delete-dashboard-text": "ATENŢIE! După confirmare, panoul și datele aferente acestuia vor fi șterse IREVERSIBIL!", "delete-dashboard-text": "ATENŢIE! După confirmare, panoul și datele aferente acestuia vor fi șterse IREVERSIBIL!",
"delete-dashboards-title": "Vrei să ștergi { count, plural, 1 {un panou} other {# panouri} }?", "delete-dashboards-title": "Vrei să ștergi { count, plural, =1 {un panou} other {# panouri} }?",
"delete-dashboards-action-title": "Ştergere { count, plural, 1 {un panou} other {# panouri} }", "delete-dashboards-action-title": "Ştergere { count, plural, =1 {un panou} other {# panouri} }",
"delete-dashboards-text": "ATENŢIE! După confirmare, panourile selectate şi datele aferente acestora vor fi șterse IREVERSIBIL!", "delete-dashboards-text": "ATENŢIE! După confirmare, panourile selectate şi datele aferente acestora vor fi șterse IREVERSIBIL!",
"unassign-dashboard-title": "Vrei să ştergi repartizarea panoului '{{dashboardTitle}}'?", "unassign-dashboard-title": "Vrei să ştergi repartizarea panoului '{{dashboardTitle}}'?",
"unassign-dashboard-text": "ATENŢIE! După confirmare, panoul nu va mai putea fi accesat de către client", "unassign-dashboard-text": "ATENŢIE! După confirmare, panoul nu va mai putea fi accesat de către client",
"unassign-dashboard": "Şterge Repartizare Panou", "unassign-dashboard": "Şterge Repartizare Panou",
"unassign-dashboards-title": "Vrei să ştergi repartizarea a { count, plural, 1 {un panou} other {# panouri} }?", "unassign-dashboards-title": "Vrei să ştergi repartizarea a { count, plural, =1 {un panou} other {# panouri} }?",
"unassign-dashboards-text": "ATENŢIE! După confirmare, panoul nu va mai putea fi accesat de către client", "unassign-dashboards-text": "ATENŢIE! După confirmare, panoul nu va mai putea fi accesat de către client",
"public-dashboard-title": "Panoul a devenit public", "public-dashboard-title": "Panoul a devenit public",
"public-dashboard-text": "Panoul tău <b>{{dashboardTitle}}</b> a devenit public şi este accesibil la <a href='{{publicLink}}' target='_blank'>link</a>:", "public-dashboard-text": "Panoul tău <b>{{dashboardTitle}}</b> a devenit public şi este accesibil la <a href='{{publicLink}}' target='_blank'>link</a>:",
@ -555,7 +555,7 @@
"manage-states": "Administrare Stări Panou", "manage-states": "Administrare Stări Panou",
"states": "Stări Panou", "states": "Stări Panou",
"search-states": "Caută Stări Panou", "search-states": "Caută Stări Panou",
"selected-states": "{ count, plural, 1 {o stare panou} other {# stări panou} } selectate", "selected-states": "{ count, plural, =1 {o stare panou} other {# stări panou} } selectate",
"edit-state": "Editează Stare Panou", "edit-state": "Editează Stare Panou",
"delete-state": "Şterge Stare Panou", "delete-state": "Şterge Stare Panou",
"add-state": "Adaugă Stare Panou", "add-state": "Adaugă Stare Panou",
@ -589,11 +589,11 @@
"alarm": "Câmpuri Alarmă", "alarm": "Câmpuri Alarmă",
"timeseries-required": "Seriile temporale pentru entitate sunt obligatorii", "timeseries-required": "Seriile temporale pentru entitate sunt obligatorii",
"timeseries-or-attributes-required": "Seriile temporale sau atributele pentru entitate sunt obligatorii", "timeseries-or-attributes-required": "Seriile temporale sau atributele pentru entitate sunt obligatorii",
"maximum-timeseries-or-attributes": "{ count, plural, 1 { Este permisă maximum o serie temporală sau atribut} other {Sunt permise maximum # serii temporale sau atribute} }", "maximum-timeseries-or-attributes": "{ count, plural, =1 { Este permisă maximum o serie temporală sau atribut} other {Sunt permise maximum # serii temporale sau atribute} }",
"alarm-fields-required": "Câmpurile pentru alarmă sunt obligatorii", "alarm-fields-required": "Câmpurile pentru alarmă sunt obligatorii",
"function-types": "Tipuri Funcţie", "function-types": "Tipuri Funcţie",
"function-types-required": "Tipurile de funcţie sunt obligatorii", "function-types-required": "Tipurile de funcţie sunt obligatorii",
"maximum-function-types": "Maximum { count, plural, 1 {Este permis doar un tip de funcţie} other {Sunt permise doar # tipuri de funcţie} }", "maximum-function-types": "Maximum { count, plural, =1 {Este permis doar un tip de funcţie} other {Sunt permise doar # tipuri de funcţie} }",
"time-description": "Cronologie valoare curentă;", "time-description": "Cronologie valoare curentă;",
"value-description": "valoare curentă;", "value-description": "valoare curentă;",
"prev-value-description": "Rezultat execuție funcţie precedentă;", "prev-value-description": "Rezultat execuție funcţie precedentă;",
@ -650,11 +650,11 @@
"manage-credentials": "Administrare Acreditări", "manage-credentials": "Administrare Acreditări",
"delete": "Şterge Dispozitiv", "delete": "Şterge Dispozitiv",
"assign-devices": "Repartizeză Dispozitive", "assign-devices": "Repartizeză Dispozitive",
"assign-devices-text": "Repartizeză { count, plural, 1 {un dispozitiv} other {# dispozitive} } Clientului", "assign-devices-text": "Repartizeză { count, plural, =1 {un dispozitiv} other {# dispozitive} } Clientului",
"delete-devices": "Şterge Dispozitive", "delete-devices": "Şterge Dispozitive",
"unassign-from-customer": "Şterge repartizarea către client", "unassign-from-customer": "Şterge repartizarea către client",
"unassign-devices": "Şterge repartizarea dispozitivelor", "unassign-devices": "Şterge repartizarea dispozitivelor",
"unassign-devices-action-title": "Şterge repartizarea a { count, plural, 1 {un dispozitiv} other {# dispozitive} } de la client", "unassign-devices-action-title": "Şterge repartizarea a { count, plural, =1 {un dispozitiv} other {# dispozitive} } de la client",
"assign-new-device": "Repartizare Dispozitiv Nou", "assign-new-device": "Repartizare Dispozitiv Nou",
"make-public-device-title": "Sigur vrei să faci dispozitivul '{{deviceName}}' public?", "make-public-device-title": "Sigur vrei să faci dispozitivul '{{deviceName}}' public?",
"make-public-device-text": "După confirmare, dispozitivul și toate datele aferente acestuia vor fi făcute publice, fiind deci accesibile oricui", "make-public-device-text": "După confirmare, dispozitivul și toate datele aferente acestuia vor fi făcute publice, fiind deci accesibile oricui",
@ -663,13 +663,13 @@
"view-credentials": "Vezi Credențiale", "view-credentials": "Vezi Credențiale",
"delete-device-title": "Sigur vrei să ștergi dispozitivul '{{deviceName}}'?", "delete-device-title": "Sigur vrei să ștergi dispozitivul '{{deviceName}}'?",
"delete-device-text": "ATENȚIE! După confirmare, dispozitivul împreună cu datele aferente acestuia vor fi șterse IREVERSIBIL!", "delete-device-text": "ATENȚIE! După confirmare, dispozitivul împreună cu datele aferente acestuia vor fi șterse IREVERSIBIL!",
"delete-devices-title": "Sigur vrei să ștergi { count, plural, 1 {un dispozitiv} other {# dispozitive} }?", "delete-devices-title": "Sigur vrei să ștergi { count, plural, =1 {un dispozitiv} other {# dispozitive} }?",
"delete-devices-action-title": "Delete { count, plural, 1 {un dispozitiv} other {# dispozitive} }", "delete-devices-action-title": "Delete { count, plural, =1 {un dispozitiv} other {# dispozitive} }",
"delete-devices-text": "ATENȚIE! După confirmare, toate dispozitivele selectate, împreună cu datele aferente acestora, vor fi șterse IREVERSIBIL!", "delete-devices-text": "ATENȚIE! După confirmare, toate dispozitivele selectate, împreună cu datele aferente acestora, vor fi șterse IREVERSIBIL!",
"unassign-device-title": "Sigur vrei să ștergi repartizarea dispozitivului '{{deviceName}}'?", "unassign-device-title": "Sigur vrei să ștergi repartizarea dispozitivului '{{deviceName}}'?",
"unassign-device-text": "ATENȚIE! După confirrmare, dispozitivul nu va mai fi accesibil clientului", "unassign-device-text": "ATENȚIE! După confirrmare, dispozitivul nu va mai fi accesibil clientului",
"unassign-device": "Șterge repartizare dispozitiv", "unassign-device": "Șterge repartizare dispozitiv",
"unassign-devices-title": "Sigur vrei să ștergi repartizarea pentru { count, plural, 1 {un dispozitiv} other {# devices} }?", "unassign-devices-title": "Sigur vrei să ștergi repartizarea pentru { count, plural, =1 {un dispozitiv} other {# devices} }?",
"unassign-devices-text": "ATENȚIE! După confirmare, repartizarea dispozitivelor va fi ștearsă, acestea nemaifiind accesibile clientului", "unassign-devices-text": "ATENȚIE! După confirmare, repartizarea dispozitivelor va fi ștearsă, acestea nemaifiind accesibile clientului",
"device-credentials": "Credențiale Dispozitiv", "device-credentials": "Credențiale Dispozitiv",
"credentials-type": "Tip Credențiale", "credentials-type": "Tip Credențiale",
@ -760,55 +760,55 @@
"type-required": "Tipul entității este necesar", "type-required": "Tipul entității este necesar",
"type-device": "Dispozitiv", "type-device": "Dispozitiv",
"type-devices": "Dispozitive", "type-devices": "Dispozitive",
"list-of-devices": "{ count, plural, 1 {un dispozitiv} other {Listă # dispozitive} }", "list-of-devices": "{ count, plural, =1 {un dispozitiv} other {Listă # dispozitive} }",
"device-name-starts-with": "Dispozitive a căror nume începe cu '{{prefix}}'", "device-name-starts-with": "Dispozitive a căror nume începe cu '{{prefix}}'",
"type-asset": "Proprietate", "type-asset": "Proprietate",
"type-assets": "Proprietăți", "type-assets": "Proprietăți",
"list-of-assets": "{ count, plural, 1 {o proprietate} other {Listă # proprietăți} }", "list-of-assets": "{ count, plural, =1 {o proprietate} other {Listă # proprietăți} }",
"asset-name-starts-with": "Proprietate a cărei nume începe cu '{{prefix}}'", "asset-name-starts-with": "Proprietate a cărei nume începe cu '{{prefix}}'",
"type-entity-view": "Entitate Definită", "type-entity-view": "Entitate Definită",
"type-entity-views": "Entități Definite", "type-entity-views": "Entități Definite",
"list-of-entity-views": "{ count, plural, 1 {o entitate definită} other {Listă # entități definite} }", "list-of-entity-views": "{ count, plural, =1 {o entitate definită} other {Listă # entități definite} }",
"entity-view-name-starts-with": "Entități definite al căror nume începe cu '{{prefix}}'", "entity-view-name-starts-with": "Entități definite al căror nume începe cu '{{prefix}}'",
"type-rule": "Regulă", "type-rule": "Regulă",
"type-rules": "Reguli", "type-rules": "Reguli",
"list-of-rules": "{ count, plural, 1 {o regulă} other {Listă # reguli} }", "list-of-rules": "{ count, plural, =1 {o regulă} other {Listă # reguli} }",
"rule-name-starts-with": "Reguli al căror nume începe cu '{{prefix}}'", "rule-name-starts-with": "Reguli al căror nume începe cu '{{prefix}}'",
"type-plugin": "Plugin", "type-plugin": "Plugin",
"type-plugins": "Plugin-uri", "type-plugins": "Plugin-uri",
"list-of-plugins": "{ count, plural, 1 {un plugin} other {Listă # plugin-uri} }", "list-of-plugins": "{ count, plural, =1 {un plugin} other {Listă # plugin-uri} }",
"plugin-name-starts-with": "Plugin-uri al căror nume începe cu '{{prefix}}'", "plugin-name-starts-with": "Plugin-uri al căror nume începe cu '{{prefix}}'",
"type-tenant": "Locatar", "type-tenant": "Locatar",
"type-tenants": "Locatari", "type-tenants": "Locatari",
"list-of-tenants": "{ count, plural, 1 {un locatar} other {Listă # locatari} }", "list-of-tenants": "{ count, plural, =1 {un locatar} other {Listă # locatari} }",
"tenant-name-starts-with": "Locatari al căror nume începe cu '{{prefix}}'", "tenant-name-starts-with": "Locatari al căror nume începe cu '{{prefix}}'",
"type-customer": "Client", "type-customer": "Client",
"type-customers": "Clienţi", "type-customers": "Clienţi",
"list-of-customers": "{ count, plural, 1 {un client} other {Listă # Clienţi} }", "list-of-customers": "{ count, plural, =1 {un client} other {Listă # Clienţi} }",
"customer-name-starts-with": "Clienţi al căror nume începe cu '{{prefix}}'", "customer-name-starts-with": "Clienţi al căror nume începe cu '{{prefix}}'",
"type-user": "Utilizator", "type-user": "Utilizator",
"type-users": "Utilizatori", "type-users": "Utilizatori",
"list-of-users": "{ count, plural, 1 {un utilizator} other {Listă # utilizatori} }", "list-of-users": "{ count, plural, =1 {un utilizator} other {Listă # utilizatori} }",
"user-name-starts-with": "Utilizatori al căror nume începe cu '{{prefix}}'", "user-name-starts-with": "Utilizatori al căror nume începe cu '{{prefix}}'",
"type-dashboard": "Panou Control", "type-dashboard": "Panou Control",
"type-dashboards": "Panouri Control", "type-dashboards": "Panouri Control",
"list-of-dashboards": "{ count, plural, 1 {un panou control} other {Listă # panouri control} }", "list-of-dashboards": "{ count, plural, =1 {un panou control} other {Listă # panouri control} }",
"dashboard-name-starts-with": "Panouri control al căror nume începe cu '{{prefix}}'", "dashboard-name-starts-with": "Panouri control al căror nume începe cu '{{prefix}}'",
"type-alarm": "Alarmă", "type-alarm": "Alarmă",
"type-alarms": "Alarme", "type-alarms": "Alarme",
"list-of-alarms": "{ count, plural, 1 {o alarmă} other {Listă # alarme} }", "list-of-alarms": "{ count, plural, =1 {o alarmă} other {Listă # alarme} }",
"alarm-name-starts-with": "Alarme al căror nume începe cu '{{prefix}}'", "alarm-name-starts-with": "Alarme al căror nume începe cu '{{prefix}}'",
"type-rulechain": "Flux", "type-rulechain": "Flux",
"type-rulechains": "Fluxuri", "type-rulechains": "Fluxuri",
"list-of-rulechains": "{ count, plural, 1 {un flux} other {Listă # fluxuri} }", "list-of-rulechains": "{ count, plural, =1 {un flux} other {Listă # fluxuri} }",
"rulechain-name-starts-with": "Fluxuri al căror nume începe cu '{{prefix}}'", "rulechain-name-starts-with": "Fluxuri al căror nume începe cu '{{prefix}}'",
"type-rulenode": "Nod flux", "type-rulenode": "Nod flux",
"type-rulenodes": "Noduri flux", "type-rulenodes": "Noduri flux",
"list-of-rulenodes": "{ count, plural, 1 {un nod flux} other {Listă # noduri flux} }", "list-of-rulenodes": "{ count, plural, =1 {un nod flux} other {Listă # noduri flux} }",
"rulenode-name-starts-with": "Noduri flux al căror nume începe cu '{{prefix}}'", "rulenode-name-starts-with": "Noduri flux al căror nume începe cu '{{prefix}}'",
"type-current-customer": "Client Curent", "type-current-customer": "Client Curent",
"search": "Caută Entități", "search": "Caută Entități",
"selected-entities": "{ count, plural, 1 {o entitate} other {# entități} } selectate", "selected-entities": "{ count, plural, =1 {o entitate} other {# entități} } selectate",
"entity-name": "Nume Entitate", "entity-name": "Nume Entitate",
"entity-label": "Etichetă Entitate", "entity-label": "Etichetă Entitate",
"details": "Detalii Entitate", "details": "Detalii Entitate",
@ -870,21 +870,21 @@
"add-entity-view-text": "Adaugă Entitate Definită", "add-entity-view-text": "Adaugă Entitate Definită",
"delete": "ßterge Entitate Definită", "delete": "ßterge Entitate Definită",
"assign-entity-views": "Repartizează Entitate Definită", "assign-entity-views": "Repartizează Entitate Definită",
"assign-entity-views-text": "Repartizează { count, plural, 1 {o entitate definită} other {# entități definite} } clientului", "assign-entity-views-text": "Repartizează { count, plural, =1 {o entitate definită} other {# entități definite} } clientului",
"delete-entity-views": "Şterge Entități Definite", "delete-entity-views": "Şterge Entități Definite",
"unassign-from-customer": "Ştergere Repartizare Către Client", "unassign-from-customer": "Ştergere Repartizare Către Client",
"unassign-entity-views": "Ştergere Repartizare Entități Definite", "unassign-entity-views": "Ştergere Repartizare Entități Definite",
"unassign-entity-views-action-title": "Şterge repartizare { count, plural, 1 {o entitate definită} other {# entități definite} } de la client ", "unassign-entity-views-action-title": "Şterge repartizare { count, plural, =1 {o entitate definită} other {# entități definite} } de la client ",
"assign-new-entity-view": "Repartizează Entitate Definită Nouă", "assign-new-entity-view": "Repartizează Entitate Definită Nouă",
"delete-entity-view-title": "Sigur vrei să ștergi entitatea definită : '{{entityViewName}}'?", "delete-entity-view-title": "Sigur vrei să ștergi entitatea definită : '{{entityViewName}}'?",
"delete-entity-view-text": "ATENŢIE! După confirmare, entitatea definită şi toate datele asociate cu aceasta vor fi șterse IREVERSIBIL!", "delete-entity-view-text": "ATENŢIE! După confirmare, entitatea definită şi toate datele asociate cu aceasta vor fi șterse IREVERSIBIL!",
"delete-entity-views-title": "Sigur vrei să ștergi{ count, plural, 1 {o entitate definită} other {# entități definite} }?", "delete-entity-views-title": "Sigur vrei să ștergi{ count, plural, =1 {o entitate definită} other {# entități definite} }?",
"delete-entity-views-action-title": "Şterge { count, plural, 1 {o entitate definită} other {# entități definite} }", "delete-entity-views-action-title": "Şterge { count, plural, =1 {o entitate definită} other {# entități definite} }",
"delete-entity-views-text": "ATENŢIE! După confirmare, toate entitățile definite și datele asociate acestora vor fi șterse IREVERSIBIL!", "delete-entity-views-text": "ATENŢIE! După confirmare, toate entitățile definite și datele asociate acestora vor fi șterse IREVERSIBIL!",
"unassign-entity-view-title": "Sigur vrei să ștergi repartizarea entității definite : '{{entityViewName}}'?", "unassign-entity-view-title": "Sigur vrei să ștergi repartizarea entității definite : '{{entityViewName}}'?",
"unassign-entity-view-text": "ATENŢIE! După confirmare, clientul nu va mai putea accesa entitatea definită selectată", "unassign-entity-view-text": "ATENŢIE! După confirmare, clientul nu va mai putea accesa entitatea definită selectată",
"unassign-entity-view": "Şterge Repartizare Entitate Definită", "unassign-entity-view": "Şterge Repartizare Entitate Definită",
"unassign-entity-views-title": "Sigur vrei să ștergi repartizarea a { count, plural, 1 {o entitate definită} other {# entități definite} }?", "unassign-entity-views-title": "Sigur vrei să ștergi repartizarea a { count, plural, =1 {o entitate definită} other {# entități definite} }?",
"unassign-entity-views-text": "ATENŢIE! După confirmare, clientul nu va mai putea accesa entitățile definite selectate", "unassign-entity-views-text": "ATENŢIE! După confirmare, clientul nu va mai putea accesa entitățile definite selectate",
"entity-view-type": "Tip Entitate Definită", "entity-view-type": "Tip Entitate Definită",
"entity-view-type-required": "Tipul ecranului pentru entitate este obligatoriu", "entity-view-type-required": "Tipul ecranului pentru entitate este obligatoriu",
@ -961,7 +961,7 @@
}, },
"extension": { "extension": {
"extensions": "Extensii", "extensions": "Extensii",
"selected-extensions": "{ count, plural, 1 {o extensie selectată} other {# extensii selectate} }", "selected-extensions": "{ count, plural, =1 {o extensie selectată} other {# extensii selectate} }",
"type": "Tip", "type": "Tip",
"key": "Cheie", "key": "Cheie",
"value": "Valoare", "value": "Valoare",
@ -975,7 +975,7 @@
"edit": "Editează Extensie", "edit": "Editează Extensie",
"delete-extension-title": "Sigur vrei să ștergi extensia: '{{extensionId}}'?", "delete-extension-title": "Sigur vrei să ștergi extensia: '{{extensionId}}'?",
"delete-extension-text": "ATENŢIE! După confirmare, extensia şi toate datele asociate acesteia, vor fi șterse IREVERSIBIL!", "delete-extension-text": "ATENŢIE! După confirmare, extensia şi toate datele asociate acesteia, vor fi șterse IREVERSIBIL!",
"delete-extensions-title": "Sigur vrei să ștergi { count, plural, 1 {o extensie} other {# extensii} }?", "delete-extensions-title": "Sigur vrei să ștergi { count, plural, =1 {o extensie} other {# extensii} }?",
"delete-extensions-text": "ATENŢIE! După confirmare, toate extensiile selectate vor fi șterse IREVERSIBIL!", "delete-extensions-text": "ATENŢIE! După confirmare, toate extensiile selectate vor fi șterse IREVERSIBIL!",
"converters": "Convertoare", "converters": "Convertoare",
"converter-id": "ID Convertoare", "converter-id": "ID Convertoare",
@ -1128,8 +1128,8 @@
"grid": { "grid": {
"delete-item-title": "Sigur vrei să ștergi elementul?", "delete-item-title": "Sigur vrei să ștergi elementul?",
"delete-item-text": "ATENŢIE! După confirmare, elementul şi toate datele referitoare la acesta, vor fi șterse IREVERSIBIL!", "delete-item-text": "ATENŢIE! După confirmare, elementul şi toate datele referitoare la acesta, vor fi șterse IREVERSIBIL!",
"delete-items-title": "Sigur vrei să ștergi { count, plural, 1 {un element} other {# elemente} }?", "delete-items-title": "Sigur vrei să ștergi { count, plural, =1 {un element} other {# elemente} }?",
"delete-items-action-title": "Şterge { count, plural, 1 {un element} other {# elemente} }", "delete-items-action-title": "Şterge { count, plural, =1 {un element} other {# elemente} }",
"delete-items-text": "ATENŢIE! După confirmare, toate elementele selectate şi toate datele referitoare la acestea, vor fi șterse IREVERSIBIL!", "delete-items-text": "ATENŢIE! După confirmare, toate elementele selectate şi toate datele referitoare la acestea, vor fi șterse IREVERSIBIL!",
"add-item-text": "Adaugă Element Nou", "add-item-text": "Adaugă Element Nou",
"no-items-text": "Nu Au Fost Găsite Elemente", "no-items-text": "Nu Au Fost Găsite Elemente",
@ -1274,7 +1274,7 @@
}, },
"from-relations": "Ieșire", "from-relations": "Ieșire",
"to-relations": "Intrare", "to-relations": "Intrare",
"selected-relations": "{ count, plural, 1 {o relaţie selectată } other {# relaţii selectate } }", "selected-relations": "{ count, plural, =1 {o relaţie selectată } other {# relaţii selectate } }",
"type": "Tip", "type": "Tip",
"to-entity-type": "Către Tip Entitate", "to-entity-type": "Către Tip Entitate",
"to-entity-name": "Către Nume Entitate", "to-entity-name": "Către Nume Entitate",
@ -1290,11 +1290,11 @@
"edit": "Şterge Relaţie", "edit": "Şterge Relaţie",
"delete-to-relation-title": "Sigur vrei să ștergi relația către entitatea '{{entityName}}'?", "delete-to-relation-title": "Sigur vrei să ștergi relația către entitatea '{{entityName}}'?",
"delete-to-relation-text": "ATENŢIE! După confirmare,relaţia către entitatea '{{entityName}}' va fi ştearsă", "delete-to-relation-text": "ATENŢIE! După confirmare,relaţia către entitatea '{{entityName}}' va fi ştearsă",
"delete-to-relations-title": "Sigur vrei să ștergi { count, plural, 1 {o relaţie} other {# relaţii} }?", "delete-to-relations-title": "Sigur vrei să ștergi { count, plural, =1 {o relaţie} other {# relaţii} }?",
"delete-to-relations-text": "ATENŢIE! După confirmare, relaţiile selectate către entităţile corespondente și toate referirile la acestea, vor fi șterse IREVERSIBIL!", "delete-to-relations-text": "ATENŢIE! După confirmare, relaţiile selectate către entităţile corespondente și toate referirile la acestea, vor fi șterse IREVERSIBIL!",
"delete-from-relation-title": "Sigur vrei să ștergi relația dinspre entitatea '{{entityName}}'?", "delete-from-relation-title": "Sigur vrei să ștergi relația dinspre entitatea '{{entityName}}'?",
"delete-from-relation-text": "ATENŢIE! După confirmare,relaţia dinspre entitatea '{{entityName}}' va fi ștearsă", "delete-from-relation-text": "ATENŢIE! După confirmare,relaţia dinspre entitatea '{{entityName}}' va fi ștearsă",
"delete-from-relations-title": "Sigur vrei să ștergi { count, plural, 1 {o relaţie} other {# relaţii} }?", "delete-from-relations-title": "Sigur vrei să ștergi { count, plural, =1 {o relaţie} other {# relaţii} }?",
"delete-from-relations-text": "ATENŢIE! După confirmare, relaţiile selectate către entităţile corespondente și toate referirile la acestea, vor fi șterse IREVERSIBIL!", "delete-from-relations-text": "ATENŢIE! După confirmare, relaţiile selectate către entităţile corespondente și toate referirile la acestea, vor fi șterse IREVERSIBIL!",
"remove-relation-filter": "Elimină Filtru Relaţie", "remove-relation-filter": "Elimină Filtru Relaţie",
"add-relation-filter": "Adaugă Filtru Relaţie", "add-relation-filter": "Adaugă Filtru Relaţie",
@ -1317,8 +1317,8 @@
"set-root-rulechain-text": "ATENŢIE! După confirmare, fluxul va deveni rădăcină şi va gestiona toate mesajele de intrare", "set-root-rulechain-text": "ATENŢIE! După confirmare, fluxul va deveni rădăcină şi va gestiona toate mesajele de intrare",
"delete-rulechain-title": "Sigur vrei să ștergi fluxul '{{ruleChainName}}'?", "delete-rulechain-title": "Sigur vrei să ștergi fluxul '{{ruleChainName}}'?",
"delete-rulechain-text": "ATENŢIE! După confirmare, fluxul şi toate datele referitoare la acesta, vor fi șterse IREVERSIBIL!", "delete-rulechain-text": "ATENŢIE! După confirmare, fluxul şi toate datele referitoare la acesta, vor fi șterse IREVERSIBIL!",
"delete-rulechains-title": "Sigur vrei să ștergi { count, plural, 1 {un flux} other {# fluxuri} }?", "delete-rulechains-title": "Sigur vrei să ștergi { count, plural, =1 {un flux} other {# fluxuri} }?",
"delete-rulechains-action-title": "Ştergi { count, plural, 1 {un flux} other {# fluxuri} }", "delete-rulechains-action-title": "Ştergi { count, plural, =1 {un flux} other {# fluxuri} }",
"delete-rulechains-text": "ATENŢIE! După confirmare, fluxul şi toate datele referitoare la acesta, vor fi șterse IREVERSIBIL!", "delete-rulechains-text": "ATENŢIE! După confirmare, fluxul şi toate datele referitoare la acesta, vor fi șterse IREVERSIBIL!",
"add-rulechain-text": "Adaugă Flux Nou", "add-rulechain-text": "Adaugă Flux Nou",
"no-rulechains-text": "Nu au fost găsite fluxuri", "no-rulechains-text": "Nu au fost găsite fluxuri",
@ -1417,8 +1417,8 @@
"tenant-details": "Detalii Locatar", "tenant-details": "Detalii Locatar",
"delete-tenant-title": "Sigur vrei să ștergi locatarul: '{{tenantTitle}}'?", "delete-tenant-title": "Sigur vrei să ștergi locatarul: '{{tenantTitle}}'?",
"delete-tenant-text": "ATENŢIE! După confirmare, locatarul şi toate datele referitoare la acesta, vor fi șterse IREVERSIBIL!", "delete-tenant-text": "ATENŢIE! După confirmare, locatarul şi toate datele referitoare la acesta, vor fi șterse IREVERSIBIL!",
"delete-tenants-title": "Sigur vrei să ștergi { count, plural, 1 {un locatar} other {# locatari} } ?", "delete-tenants-title": "Sigur vrei să ștergi { count, plural, =1 {un locatar} other {# locatari} } ?",
"delete-tenants-action-title": "Şterge { count, plural, 1 {un locatar} other {# locatari} }", "delete-tenants-action-title": "Şterge { count, plural, =1 {un locatar} other {# locatari} }",
"delete-tenants-text": "ATENŢIE! După confirmare, locatarii selectaţi şi datele aferente acestora, vor fi șterse IREVERSIBIL!", "delete-tenants-text": "ATENŢIE! După confirmare, locatarii selectaţi şi datele aferente acestora, vor fi șterse IREVERSIBIL!",
"title": "Titlu", "title": "Titlu",
"title-required": "Titlul este obligatoriu", "title-required": "Titlul este obligatoriu",
@ -1432,10 +1432,10 @@
"tenant-required": "Locatarul este obligatoriu" "tenant-required": "Locatarul este obligatoriu"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {o secundă} other {# secunde} }", "seconds-interval": "{ seconds, plural, =1 {o secundă} other {# secunde} }",
"minutes-interval": "{ minutes, plural, 1 {un minut} other {# minute} }", "minutes-interval": "{ minutes, plural, =1 {un minut} other {# minute} }",
"hours-interval": "{ hours, plural, 1 {o oră} other {# ore} }", "hours-interval": "{ hours, plural, =1 {o oră} other {# ore} }",
"days-interval": "{ days, plural, 1 {o zi} other {# zile} }", "days-interval": "{ days, plural, =1 {o zi} other {# zile} }",
"days": "Zile", "days": "Zile",
"hours": "Ore", "hours": "Ore",
"minutes": "Minute", "minutes": "Minute",
@ -1443,10 +1443,10 @@
"advanced": "Personalizat" "advanced": "Personalizat"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 {o zi} other {# zile} }", "days": "{ days, plural, =1 {o zi} other {# zile} }",
"hours": "{ hours, plural, 1 {o oră} other {# ore} }", "hours": "{ hours, plural, =1 {o oră} other {# ore} }",
"minutes": "{ minutes, plural, 1 {un minut} other {# minute} }", "minutes": "{ minutes, plural, =1 {un minut} other {# minute} }",
"seconds": "{ seconds, plural, 1 {o secundă} other {# secunde} }", "seconds": "{ seconds, plural, =1 {o secundă} other {# secunde} }",
"realtime": "Timp Real", "realtime": "Timp Real",
"history": "Istoric", "history": "Istoric",
"last-prefix": "Interval:", "last-prefix": "Interval:",
@ -1473,8 +1473,8 @@
"user-details": "Detalii Utilizator", "user-details": "Detalii Utilizator",
"delete-user-title": "Sigur vrei să ștergi utilizatorul '{{userEmail}}'?", "delete-user-title": "Sigur vrei să ștergi utilizatorul '{{userEmail}}'?",
"delete-user-text": "ATENŢIE! După confirmare, utilizatorul şi toate datele aferente acestuia, vor fi șterse IREVERSIBIL!", "delete-user-text": "ATENŢIE! După confirmare, utilizatorul şi toate datele aferente acestuia, vor fi șterse IREVERSIBIL!",
"delete-users-title": "Sigur vrei să ștergi { count, plural, 1 {un utilizator} other {# utilizatori} }?", "delete-users-title": "Sigur vrei să ștergi { count, plural, =1 {un utilizator} other {# utilizatori} }?",
"delete-users-action-title": "Ştergere { count, plural, 1 {un utilizator} other {# utilizatori} }", "delete-users-action-title": "Ştergere { count, plural, =1 {un utilizator} other {# utilizatori} }",
"delete-users-text": "ATENŢIE! După confirmare, toţi utilizatorii selectaţi împreună cu datele aferente acestora, vor fi șterse IREVERSIBIL!", "delete-users-text": "ATENŢIE! După confirmare, toţi utilizatorii selectaţi împreună cu datele aferente acestora, vor fi șterse IREVERSIBIL!",
"activation-email-sent-message": "Mesajul eMail pentru activare a fost trimis cu succes!", "activation-email-sent-message": "Mesajul eMail pentru activare a fost trimis cu succes!",
"resend-activation": "Retrimite mesaj eMail de activare", "resend-activation": "Retrimite mesaj eMail de activare",
@ -1599,8 +1599,8 @@
"widgets-bundle-details": "Detalii Pachet Widgeturi", "widgets-bundle-details": "Detalii Pachet Widgeturi",
"delete-widgets-bundle-title": "Sigur vrei să ștergi pachetul de widgeturi '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Sigur vrei să ștergi pachetul de widgeturi '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "ATENŢIE! După Confirmare, pachetul de widgeturi şi toate datele aferente acestuia, vor fi șterse IREVERSIBIL!", "delete-widgets-bundle-text": "ATENŢIE! După Confirmare, pachetul de widgeturi şi toate datele aferente acestuia, vor fi șterse IREVERSIBIL!",
"delete-widgets-bundles-title": "Sigur vrei să ștergi { count, plural, 1 {un pachet widgeturi} other {# pachete widgeturi} }?", "delete-widgets-bundles-title": "Sigur vrei să ștergi { count, plural, =1 {un pachet widgeturi} other {# pachete widgeturi} }?",
"delete-widgets-bundles-action-title": "Şterge { count, plural, 1 {un packet widgeturi} other {# pachete widgeturi} }", "delete-widgets-bundles-action-title": "Şterge { count, plural, =1 {un packet widgeturi} other {# pachete widgeturi} }",
"delete-widgets-bundles-text": "ATENŢIE! După confirmare, toate pachetele selectate de widget-uri şi datele aferente acestuia, vor fi șterse IREVERSIBIL!", "delete-widgets-bundles-text": "ATENŢIE! După confirmare, toate pachetele selectate de widget-uri şi datele aferente acestuia, vor fi șterse IREVERSIBIL!",
"no-widgets-bundles-matching": "Nu au fost găsite pachete de widgeturi conținând textul '{{widgetsBundle}}' ", "no-widgets-bundles-matching": "Nu au fost găsite pachete de widgeturi conținând textul '{{widgetsBundle}}' ",
"widgets-bundle-required": "Denumirea pachetelor de widgeturi este obligatorie", "widgets-bundle-required": "Denumirea pachetelor de widgeturi este obligatorie",
@ -1638,7 +1638,7 @@
"display-timewindow": "Afişare Interval Timp", "display-timewindow": "Afişare Interval Timp",
"display-legend": "Afişare Legendă", "display-legend": "Afişare Legendă",
"datasources": "Surse Date", "datasources": "Surse Date",
"maximum-datasources": "Maximum { count, plural, 1 {o sursă date permisă} other {# surse date permise} }", "maximum-datasources": "Maximum { count, plural, =1 {o sursă date permisă} other {# surse date permise} }",
"datasource-type": "Tip", "datasource-type": "Tip",
"datasource-parameters": "Parametri", "datasource-parameters": "Parametri",
"remove-datasource": "Elimină Sursă Date", "remove-datasource": "Elimină Sursă Date",

136
ui-ngx/src/assets/locale/locale.constant-ru_RU.json

@ -176,17 +176,17 @@
"acknowledge": "Подтвердить", "acknowledge": "Подтвердить",
"clear": "Сбросить", "clear": "Сбросить",
"search": "Поиск оповещений", "search": "Поиск оповещений",
"selected-alarms": "Выбрано { count, plural, 1 {1 оповещение} few {# оповещения} other {# оповещений} }", "selected-alarms": "Выбрано { count, plural, =1 {1 оповещение} few {# оповещения} other {# оповещений} }",
"no-data": "Нет данных для отображения", "no-data": "Нет данных для отображения",
"polling-interval": "Интервал опроса оповещений (сек)", "polling-interval": "Интервал опроса оповещений (сек)",
"polling-interval-required": "Интервал опроса оповещений обязателен.", "polling-interval-required": "Интервал опроса оповещений обязателен.",
"min-polling-interval-message": "Минимальный интервал опроса оповещений 1 секунда.", "min-polling-interval-message": "Минимальный интервал опроса оповещений 1 секунда.",
"aknowledge-alarms-title": "Подтвердить { count, plural, 1 {1 оповещение} other {# оповещений} }", "aknowledge-alarms-title": "Подтвердить { count, plural, =1 {1 оповещение} other {# оповещений} }",
"aknowledge-alarms-text": "Вы точно хотите подтвердить { count, plural, 1 {1 оповещение} other {# оповещений} }?", "aknowledge-alarms-text": "Вы точно хотите подтвердить { count, plural, =1 {1 оповещение} other {# оповещений} }?",
"aknowledge-alarm-title": "Подтвердить оповещение", "aknowledge-alarm-title": "Подтвердить оповещение",
"aknowledge-alarm-text": "Вы точно хотите подтвердить оповещение?", "aknowledge-alarm-text": "Вы точно хотите подтвердить оповещение?",
"clear-alarms-title": "Сбросить { count, plural, 1 {1 оповещение} other {# оповещений} }", "clear-alarms-title": "Сбросить { count, plural, =1 {1 оповещение} other {# оповещений} }",
"clear-alarms-text": "Вы точно хотите сбросить { count, plural, 1 {1 оповещение} other {# оповещений} }?", "clear-alarms-text": "Вы точно хотите сбросить { count, plural, =1 {1 оповещение} other {# оповещений} }?",
"clear-alarm-title": "Сбросить оповещение", "clear-alarm-title": "Сбросить оповещение",
"clear-alarm-text": "Вы точно хотите сбросить оповещение?", "clear-alarm-text": "Вы точно хотите сбросить оповещение?",
"alarm-status-filter": "Фильтр оповещений", "alarm-status-filter": "Фильтр оповещений",
@ -279,15 +279,15 @@
"add-asset-text": "Добавить новый актив", "add-asset-text": "Добавить новый актив",
"asset-details": "Подробности об активе", "asset-details": "Подробности об активе",
"assign-assets": "Присвоить активы", "assign-assets": "Присвоить активы",
"assign-assets-text": "Присвоить { count, plural, 1 {1 актив} few {# актива} other {# активов} } клиенту", "assign-assets-text": "Присвоить { count, plural, =1 {1 актив} few {# актива} other {# активов} } клиенту",
"delete-assets": "Удалить активы", "delete-assets": "Удалить активы",
"unassign-assets": "Отозвать активы", "unassign-assets": "Отозвать активы",
"unassign-assets-action-title": "Отозвать { count, plural, 1 {1 актив} few {# актива} other {# активов} } у клиента", "unassign-assets-action-title": "Отозвать { count, plural, =1 {1 актив} few {# актива} other {# активов} } у клиента",
"assign-new-asset": "Присвоить новый актив", "assign-new-asset": "Присвоить новый актив",
"delete-asset-title": "Вы точно хотите удалить '{{assetName}}'?", "delete-asset-title": "Вы точно хотите удалить '{{assetName}}'?",
"delete-asset-text": "Внимание, после подтверждения актив и все связанные с ним данные будут безвозвратно удалены.", "delete-asset-text": "Внимание, после подтверждения актив и все связанные с ним данные будут безвозвратно удалены.",
"delete-assets-title": "Вы точно хотите удалить { count, plural, 1 {1 актив} few {# актива} other {# активов} }", "delete-assets-title": "Вы точно хотите удалить { count, plural, =1 {1 актив} few {# актива} other {# активов} }",
"delete-assets-action-title": "Удалить { count, plural, 1 {1 актив} few {# актива} other {# активов} }", "delete-assets-action-title": "Удалить { count, plural, =1 {1 актив} few {# актива} other {# активов} }",
"delete-assets-text": "Внимание, после подтверждения выбранные активы и все связанные с ними данные будут безвозвратно удалены.", "delete-assets-text": "Внимание, после подтверждения выбранные активы и все связанные с ними данные будут безвозвратно удалены.",
"make-public-asset-title": "Вы точно хотите открыть общий доступ к активу '{{assetName}}'?", "make-public-asset-title": "Вы точно хотите открыть общий доступ к активу '{{assetName}}'?",
"make-public-asset-text": "Внимание, после подтверждения актив и все связанные с ним данные станут общедоступными.", "make-public-asset-text": "Внимание, после подтверждения актив и все связанные с ним данные станут общедоступными.",
@ -296,7 +296,7 @@
"unassign-asset-title": "Вы точно хотите отозвать актив '{{assetName}}'?", "unassign-asset-title": "Вы точно хотите отозвать актив '{{assetName}}'?",
"unassign-asset-text": "После подтверждения актив будут отозван, и клиент потеряет к нему доступ.", "unassign-asset-text": "После подтверждения актив будут отозван, и клиент потеряет к нему доступ.",
"unassign-asset": "Отозвать актив", "unassign-asset": "Отозвать актив",
"unassign-assets-title": "Вы точно хотите отозвать { count, plural, 1 {1 актив} few {# актива} other {# активов} }?", "unassign-assets-title": "Вы точно хотите отозвать { count, plural, =1 {1 актив} few {# актива} other {# активов} }?",
"unassign-assets-text": "После подтверждения активы будут отозваны, и клиент потеряет к ним доступ.", "unassign-assets-text": "После подтверждения активы будут отозваны, и клиент потеряет к ним доступ.",
"copyId": "Копировать ИД актива", "copyId": "Копировать ИД актива",
"idCopiedMessage": "ИД актива скопировано в буфер обмена", "idCopiedMessage": "ИД актива скопировано в буфер обмена",
@ -322,7 +322,7 @@
"key-required": "Ключ атрибута обязателен.", "key-required": "Ключ атрибута обязателен.",
"value": "Значение", "value": "Значение",
"value-required": "Значение атрибута обязательно.", "value-required": "Значение атрибута обязательно.",
"delete-attributes-title": "Вы уверенны, что хотите удалить { count, plural, one {1 атрибут} few {# атрибута} other {# атрибутов} }? ", "delete-attributes-title": "Вы уверенны, что хотите удалить { count, plural, =1 {1 атрибут} few {# атрибута} other {# атрибутов} }? ",
"delete-attributes-text": "Внимание, после подтверждения выбранные атрибуты будут удалены.", "delete-attributes-text": "Внимание, после подтверждения выбранные атрибуты будут удалены.",
"delete-attributes": "Удалить атрибуты", "delete-attributes": "Удалить атрибуты",
"enter-attribute-value": "Введите значение атрибута", "enter-attribute-value": "Введите значение атрибута",
@ -332,8 +332,8 @@
"prev-widget": "Предыдущий виджет", "prev-widget": "Предыдущий виджет",
"add-to-dashboard": "Добавить на дашборд", "add-to-dashboard": "Добавить на дашборд",
"add-widget-to-dashboard": "Добавить виджет на дашборд", "add-widget-to-dashboard": "Добавить виджет на дашборд",
"selected-attributes": "{ count, plural, 1 {Выбран} other {Выбраны} } { count, plural, one {1 атрибут} few {# атрибута} other {# атрибутов} }", "selected-attributes": "{ count, plural, =1 {Выбран} other {Выбраны} } { count, plural, =1 {1 атрибут} few {# атрибута} other {# атрибутов} }",
"selected-telemetry": "{ count, plural, 1 {Выбран} other {Выбраны} } { count, plural, 1 {1 параметр} few {# параметра} other {# параметров} } телеметрии" "selected-telemetry": "{ count, plural, =1 {Выбран} other {Выбраны} } { count, plural, =1 {1 параметр} few {# параметра} other {# параметров} } телеметрии"
}, },
"audit-log": { "audit-log": {
"audit": "Аудит", "audit": "Аудит",
@ -432,8 +432,8 @@
"customer-details": "Подробности о клиенте", "customer-details": "Подробности о клиенте",
"delete-customer-title": "Вы точно хотите удалить клиента '{{customerTitle}}'?", "delete-customer-title": "Вы точно хотите удалить клиента '{{customerTitle}}'?",
"delete-customer-text": "Внимание, после подтверждения клиент и все связанные с ним данные будут безвозвратно удалены.", "delete-customer-text": "Внимание, после подтверждения клиент и все связанные с ним данные будут безвозвратно удалены.",
"delete-customers-title": "Вы точно хотите удалить { count, plural, 1 {1 клиент} few {# клиента} other {# клиентов} }?", "delete-customers-title": "Вы точно хотите удалить { count, plural, =1 {1 клиент} few {# клиента} other {# клиентов} }?",
"delete-customers-action-title": "Удалить { count, plural, 1 {1 клиент} few {# клиента} other {# клиентов} }", "delete-customers-action-title": "Удалить { count, plural, =1 {1 клиент} few {# клиента} other {# клиентов} }",
"delete-customers-text": "Внимание, после подтверждения выбранные клиенты и все связанные с ними данные будут безвозвратно удалены.", "delete-customers-text": "Внимание, после подтверждения выбранные клиенты и все связанные с ними данные будут безвозвратно удалены.",
"manage-users": "Управление пользователями", "manage-users": "Управление пользователями",
"manage-assets": "Управление активами", "manage-assets": "Управление активами",
@ -494,20 +494,20 @@
"add-dashboard-text": "Добавить новый дашборд", "add-dashboard-text": "Добавить новый дашборд",
"assign-dashboards": "Прикрепить дашборды", "assign-dashboards": "Прикрепить дашборды",
"assign-new-dashboard": "Прикрепить новый дашборд", "assign-new-dashboard": "Прикрепить новый дашборд",
"assign-dashboards-text": "Прикрепить { count, plural, 1 {1 дашборд} few {# дашборда} other {# дашбордов} } к клиенту", "assign-dashboards-text": "Прикрепить { count, plural, =1 {1 дашборд} few {# дашборда} other {# дашбордов} } к клиенту",
"unassign-dashboards-action-text": "Отозвать { count, plural, 1 {1 дашборд} few {# дашборда} other {# дашбордов} } у клиента", "unassign-dashboards-action-text": "Отозвать { count, plural, =1 {1 дашборд} few {# дашборда} other {# дашбордов} } у клиента",
"delete-dashboards": "Удалить дашборды", "delete-dashboards": "Удалить дашборды",
"unassign-dashboards": "Отозвать дашборды", "unassign-dashboards": "Отозвать дашборды",
"unassign-dashboards-action-title": "Отозвать { count, plural, one {1 дашборд} few {# дашборда} other {# дашбордов} } у клиента", "unassign-dashboards-action-title": "Отозвать { count, plural, =1 {1 дашборд} few {# дашборда} other {# дашбордов} } у клиента",
"delete-dashboard-title": "Вы точно хотите удалить дашборд '{{dashboardTitle}}'?", "delete-dashboard-title": "Вы точно хотите удалить дашборд '{{dashboardTitle}}'?",
"delete-dashboard-text": "Внимание, после подтверждения дашборд и все связанные с ним данные будут безвозвратно утеряны.", "delete-dashboard-text": "Внимание, после подтверждения дашборд и все связанные с ним данные будут безвозвратно утеряны.",
"delete-dashboards-title": "Вы точно хотите удалить { count, plural, one {1 дашборд} few {# дашборда} other {# дашбордов} }?", "delete-dashboards-title": "Вы точно хотите удалить { count, plural, =1 {1 дашборд} few {# дашборда} other {# дашбордов} }?",
"delete-dashboards-action-title": "Удалить { count, plural, one {1 дашборд} few {# дашборда} other {# дашбордов} }", "delete-dashboards-action-title": "Удалить { count, plural, =1 {1 дашборд} few {# дашборда} other {# дашбордов} }",
"delete-dashboards-text": "Внимание, после подтверждения дашборды и все связанные с ними данные будут безвозвратно утеряны.", "delete-dashboards-text": "Внимание, после подтверждения дашборды и все связанные с ними данные будут безвозвратно утеряны.",
"unassign-dashboard-title": "Вы точно хотите отозвать дашборд '{{dashboardTitle}}'?", "unassign-dashboard-title": "Вы точно хотите отозвать дашборд '{{dashboardTitle}}'?",
"unassign-dashboard-text": "После подтверждения дашборд не будет доступен клиенту.", "unassign-dashboard-text": "После подтверждения дашборд не будет доступен клиенту.",
"unassign-dashboard": "Отозвать дашборд", "unassign-dashboard": "Отозвать дашборд",
"unassign-dashboards-title": "Вы точно хотите отозвать { count, plural, one {1 дашборд} few {# дашборда} other {# дашбордов} }?", "unassign-dashboards-title": "Вы точно хотите отозвать { count, plural, =1 {1 дашборд} few {# дашборда} other {# дашбордов} }?",
"unassign-dashboards-text": "После подтверждения выбранные дашборды не будут доступны клиенту.", "unassign-dashboards-text": "После подтверждения выбранные дашборды не будут доступны клиенту.",
"public-dashboard-title": "Теперь дашборд общедоступный", "public-dashboard-title": "Теперь дашборд общедоступный",
"public-dashboard-text": "Теперь ваш дашборд <b>{{dashboardTitle}}</b> доступен всем по <a href='{{publicLink}}' target='_blank'>ссылке</a>:", "public-dashboard-text": "Теперь ваш дашборд <b>{{dashboardTitle}}</b> доступен всем по <a href='{{publicLink}}' target='_blank'>ссылке</a>:",
@ -584,7 +584,7 @@
"manage-states": "Управление состоянием дашборда", "manage-states": "Управление состоянием дашборда",
"states": "Состояния дашборда", "states": "Состояния дашборда",
"search-states": "Поиск состояния дашборда", "search-states": "Поиск состояния дашборда",
"selected-states": "Выбрано { count, plural, 1 {1 состояние} few {# состояния} other {# состояний} } дашборда", "selected-states": "Выбрано { count, plural, =1 {1 состояние} few {# состояния} other {# состояний} } дашборда",
"edit-state": "Изменить состояние дашборда", "edit-state": "Изменить состояние дашборда",
"delete-state": "Удалить состояние дашборда", "delete-state": "Удалить состояние дашборда",
"add-state": "Добавить состояние дашборда", "add-state": "Добавить состояние дашборда",
@ -680,11 +680,11 @@
"manage-credentials": "Управление учетными данными", "manage-credentials": "Управление учетными данными",
"delete": "Удалить устройство", "delete": "Удалить устройство",
"assign-devices": "Присвоить устройство", "assign-devices": "Присвоить устройство",
"assign-devices-text": "Присвоить { count, plural, one {1 устройство} few {# устройства} other {# устройств} } клиенту", "assign-devices-text": "Присвоить { count, plural, =1 {1 устройство} few {# устройства} other {# устройств} } клиенту",
"delete-devices": "Удалить устройства", "delete-devices": "Удалить устройства",
"unassign-from-customer": "Отозвать у клиенту", "unassign-from-customer": "Отозвать у клиенту",
"unassign-devices": "Отозвать устройства", "unassign-devices": "Отозвать устройства",
"unassign-devices-action-title": "Отозвать у клиента { count, plural, one {1 устройство} few {# устройства} other {# устройств} }", "unassign-devices-action-title": "Отозвать у клиента { count, plural, =1 {1 устройство} few {# устройства} other {# устройств} }",
"assign-new-device": "Присвоить новое устройство", "assign-new-device": "Присвоить новое устройство",
"make-public-device-title": "Вы точно хотите открыть общий доступ к устройству '{{deviceName}}'?", "make-public-device-title": "Вы точно хотите открыть общий доступ к устройству '{{deviceName}}'?",
"make-public-device-text": "После подтверждения устройство и все связанные с ним данные будут общедоступными.", "make-public-device-text": "После подтверждения устройство и все связанные с ним данные будут общедоступными.",
@ -693,13 +693,13 @@
"view-credentials": "Просмотреть учетные данные", "view-credentials": "Просмотреть учетные данные",
"delete-device-title": "Вы точно хотите удалить устройство '{{deviceName}}'?", "delete-device-title": "Вы точно хотите удалить устройство '{{deviceName}}'?",
"delete-device-text": "Внимание, после подтверждения устройство и все связанные с ним данные будут безвозвратно утеряны.", "delete-device-text": "Внимание, после подтверждения устройство и все связанные с ним данные будут безвозвратно утеряны.",
"delete-devices-title": "Вы точно хотите удалить { count, plural, one {1 устройство} few {# устройства} other {# устройств} }?", "delete-devices-title": "Вы точно хотите удалить { count, plural, =1 {1 устройство} few {# устройства} other {# устройств} }?",
"delete-devices-action-title": "Удалить { count, plural, one {1 устройство} few {# устройства} other {# устройств} }", "delete-devices-action-title": "Удалить { count, plural, =1 {1 устройство} few {# устройства} other {# устройств} }",
"delete-devices-text": "Внимание, после подтверждения выбранные устройства и все связанные с ними данные будут безвозвратно утеряны..", "delete-devices-text": "Внимание, после подтверждения выбранные устройства и все связанные с ними данные будут безвозвратно утеряны..",
"unassign-device-title": "Вы точно хотите отозвать устройство '{{deviceName}}'?", "unassign-device-title": "Вы точно хотите отозвать устройство '{{deviceName}}'?",
"unassign-device-text": "После подтверждения устройство будет недоступно клиенту.", "unassign-device-text": "После подтверждения устройство будет недоступно клиенту.",
"unassign-device": "Отозвать устройство", "unassign-device": "Отозвать устройство",
"unassign-devices-title": "Вы точно хотите отозвать { count, plural, one {1 устройство} few {# устройства} other {# устройств} }?", "unassign-devices-title": "Вы точно хотите отозвать { count, plural, =1 {1 устройство} few {# устройства} other {# устройств} }?",
"unassign-devices-text": "После подтверждения выбранные устройства будут недоступны клиенту.", "unassign-devices-text": "После подтверждения выбранные устройства будут недоступны клиенту.",
"device-credentials": "Учетные данные устройства", "device-credentials": "Учетные данные устройства",
"credentials-type": "Тип учетных данных", "credentials-type": "Тип учетных данных",
@ -789,56 +789,56 @@
"type-required": "Тип объекта обязателен.", "type-required": "Тип объекта обязателен.",
"type-device": "Устройство", "type-device": "Устройство",
"type-devices": "Устройства", "type-devices": "Устройства",
"list-of-devices": "{ count, plural, 1 {Одно устройство} other {Список из # устройств} }", "list-of-devices": "{ count, plural, =1 {Одно устройство} other {Список из # устройств} }",
"device-name-starts-with": "Устройства, чьи название начинается с '{{prefix}}'", "device-name-starts-with": "Устройства, чьи название начинается с '{{prefix}}'",
"type-asset": "Актив", "type-asset": "Актив",
"type-assets": "Активы", "type-assets": "Активы",
"list-of-assets": "{ count, plural, 1 {Один актив} other {Список из # активов} }", "list-of-assets": "{ count, plural, =1 {Один актив} other {Список из # активов} }",
"asset-name-starts-with": "Активы, чьи название начинается с '{{prefix}}'", "asset-name-starts-with": "Активы, чьи название начинается с '{{prefix}}'",
"type-entity-view": "Представление Объекта", "type-entity-view": "Представление Объекта",
"type-entity-views": "Представления Объекта", "type-entity-views": "Представления Объекта",
"list-of-entity-views": "{ count, plural, 1 {Одно представление объекта} other {Список из # представлений объекта} }", "list-of-entity-views": "{ count, plural, =1 {Одно представление объекта} other {Список из # представлений объекта} }",
"entity-view-name-starts-with": "Представления Объекта, чьи название начинается с '{{prefix}}'", "entity-view-name-starts-with": "Представления Объекта, чьи название начинается с '{{prefix}}'",
"type-rule": "Правило", "type-rule": "Правило",
"type-rules": "Правила", "type-rules": "Правила",
"list-of-rules": "{ count, plural, 1 {Одно правило} other {Список из # правил} }", "list-of-rules": "{ count, plural, =1 {Одно правило} other {Список из # правил} }",
"rule-name-starts-with": "Правила, чьи названия начинаются с '{{prefix}}'", "rule-name-starts-with": "Правила, чьи названия начинаются с '{{prefix}}'",
"type-plugin": "Плагин", "type-plugin": "Плагин",
"type-plugins": "Плагины", "type-plugins": "Плагины",
"list-of-plugins": "{ count, plural, 1 {Один плагин} other {Список из # плагинов} }", "list-of-plugins": "{ count, plural, =1 {Один плагин} other {Список из # плагинов} }",
"plugin-name-starts-with": "Плагины, чьи имена начинаются с '{{prefix}}'", "plugin-name-starts-with": "Плагины, чьи имена начинаются с '{{prefix}}'",
"type-tenant": "Владелец", "type-tenant": "Владелец",
"type-tenants": "Владельцы", "type-tenants": "Владельцы",
"list-of-tenants": "{ count, plural, 1 {Один владелец} other {Список из # владельцев} }", "list-of-tenants": "{ count, plural, =1 {Один владелец} other {Список из # владельцев} }",
"tenant-name-starts-with": "Владельцы, чьи имена начинаются с '{{prefix}}'", "tenant-name-starts-with": "Владельцы, чьи имена начинаются с '{{prefix}}'",
"type-customer": "Клиент", "type-customer": "Клиент",
"type-customers": "Клиенты", "type-customers": "Клиенты",
"list-of-customers": "{ count, plural, 1 {Один клиент} other {Список из # клиентов} }", "list-of-customers": "{ count, plural, =1 {Один клиент} other {Список из # клиентов} }",
"customer-name-starts-with": "Клиенты, чьи имена начинаются с '{{prefix}}'", "customer-name-starts-with": "Клиенты, чьи имена начинаются с '{{prefix}}'",
"type-user": "Пользователь", "type-user": "Пользователь",
"type-users": "Пользователи", "type-users": "Пользователи",
"list-of-users": "{ count, plural, 1 {Один пользователь} other {Список из # пользователей} }", "list-of-users": "{ count, plural, =1 {Один пользователь} other {Список из # пользователей} }",
"user-name-starts-with": "Пользователи, чьи имена начинаются с '{{prefix}}'", "user-name-starts-with": "Пользователи, чьи имена начинаются с '{{prefix}}'",
"type-dashboard": "Дашборд", "type-dashboard": "Дашборд",
"type-dashboards": "Дашборды", "type-dashboards": "Дашборды",
"list-of-dashboards": "{ count, plural, 1 {Один дашборд} other {Список из # дашбордов} }", "list-of-dashboards": "{ count, plural, =1 {Один дашборд} other {Список из # дашбордов} }",
"dashboard-name-starts-with": "Дашборды, чьи названия начинаются с '{{prefix}}'", "dashboard-name-starts-with": "Дашборды, чьи названия начинаются с '{{prefix}}'",
"type-alarm": "Оповещение", "type-alarm": "Оповещение",
"type-alarms": "Оповещения", "type-alarms": "Оповещения",
"list-of-alarms": "{ count, plural, 1 {Одно оповещение} other {Список из # оповещений} }", "list-of-alarms": "{ count, plural, =1 {Одно оповещение} other {Список из # оповещений} }",
"alarm-name-starts-with": "Оповещения, чьи названия начинаются с '{{prefix}}'", "alarm-name-starts-with": "Оповещения, чьи названия начинаются с '{{prefix}}'",
"type-rulechain": "Цепочка правил", "type-rulechain": "Цепочка правил",
"type-rulechains": "Цепочки правил", "type-rulechains": "Цепочки правил",
"list-of-rulechains": "{ count, plural, 1 {Одна цепочка правил} other {Список из # цепочек правил} }", "list-of-rulechains": "{ count, plural, =1 {Одна цепочка правил} other {Список из # цепочек правил} }",
"rulechain-name-starts-with": "Цепочки правил, чьи названия начинаются с '{{prefix}}'", "rulechain-name-starts-with": "Цепочки правил, чьи названия начинаются с '{{prefix}}'",
"type-rulenode": "Правило", "type-rulenode": "Правило",
"type-rulenodes": "Правила", "type-rulenodes": "Правила",
"list-of-rulenodes": "{ count, plural, 1 {Одно правило} other {Список из # правил} }", "list-of-rulenodes": "{ count, plural, =1 {Одно правило} other {Список из # правил} }",
"rulenode-name-starts-with": "Правила, чьи названия начинаются с '{{prefix}}'", "rulenode-name-starts-with": "Правила, чьи названия начинаются с '{{prefix}}'",
"type-current-customer": "Текущий клиент", "type-current-customer": "Текущий клиент",
"type-current-tenant": "Текущий владелец", "type-current-tenant": "Текущий владелец",
"search": "Поиск объектов", "search": "Поиск объектов",
"selected-entities": "Выбран(ы) { count, plural, 1 {1 объект} few {# объекта} other {# объектов} }", "selected-entities": "Выбран(ы) { count, plural, =1 {1 объект} few {# объекта} other {# объектов} }",
"entity-name": "Название объекта", "entity-name": "Название объекта",
"entity-label": "Метка объекта", "entity-label": "Метка объекта",
"details": "Подробности об объекте", "details": "Подробности об объекте",
@ -900,21 +900,21 @@
"add-entity-view-text": "Добавить новое представление объекта", "add-entity-view-text": "Добавить новое представление объекта",
"delete": "Удалить представление объекта", "delete": "Удалить представление объекта",
"assign-entity-views": "Назначить представления объектов", "assign-entity-views": "Назначить представления объектов",
"assign-entity-views-text": "Назначить клиенту { count, plural, 1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }", "assign-entity-views-text": "Назначить клиенту { count, plural, =1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }",
"delete-entity-views": "Удалить представления объектов", "delete-entity-views": "Удалить представления объектов",
"unassign-from-customer": "Отозвать у клиента", "unassign-from-customer": "Отозвать у клиента",
"unassign-entity-views": "Отозвать представления объектов", "unassign-entity-views": "Отозвать представления объектов",
"unassign-entity-views-action-title": "Отозвать у клиента { count, plural, 1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }", "unassign-entity-views-action-title": "Отозвать у клиента { count, plural, =1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }",
"assign-new-entity-view": "Назначит новое представление объекта", "assign-new-entity-view": "Назначит новое представление объекта",
"delete-entity-view-title": "Вы точно хотите удалить представление объекта '{{entityViewName}}'?", "delete-entity-view-title": "Вы точно хотите удалить представление объекта '{{entityViewName}}'?",
"delete-entity-view-text": "Внимание, после подтверждения представление объекта и все связанные с ним данные будут безвозвратно удалены.", "delete-entity-view-text": "Внимание, после подтверждения представление объекта и все связанные с ним данные будут безвозвратно удалены.",
"delete-entity-views-title": "Вы точно хотите удалить { count, plural, 1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }?", "delete-entity-views-title": "Вы точно хотите удалить { count, plural, =1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }?",
"delete-entity-views-action-title": "Удалить { count, plural, 1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }", "delete-entity-views-action-title": "Удалить { count, plural, =1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }",
"delete-entity-views-text": "Внимание, после подтверждения выбранные представления объектов и все связанные с ними данные будут безвозвратно удалены.", "delete-entity-views-text": "Внимание, после подтверждения выбранные представления объектов и все связанные с ними данные будут безвозвратно удалены.",
"unassign-entity-view-title": "Вы точно хотите отозвать представление объекта '{{entityViewName}}'?", "unassign-entity-view-title": "Вы точно хотите отозвать представление объекта '{{entityViewName}}'?",
"unassign-entity-view-text": "После подтверждение представление объекта будет недоступно клиенту.", "unassign-entity-view-text": "После подтверждение представление объекта будет недоступно клиенту.",
"unassign-entity-view": "Отозвать представление объекта", "unassign-entity-view": "Отозвать представление объекта",
"unassign-entity-views-title": "Вы точно хотите отозвать { count, plural, 1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }?", "unassign-entity-views-title": "Вы точно хотите отозвать { count, plural, =1 {1 представление объекта} few {# представления объектов} other {# представлений объектов} }?",
"unassign-entity-views-text": "После подтверждение выбранные представления объектов будет недоступно клиенту.", "unassign-entity-views-text": "После подтверждение выбранные представления объектов будет недоступно клиенту.",
"entity-view-type": "Тип представления объекта", "entity-view-type": "Тип представления объекта",
"entity-view-type-required": "Тип представления объекта обязателен.", "entity-view-type-required": "Тип представления объекта обязателен.",
@ -993,7 +993,7 @@
}, },
"extension": { "extension": {
"extensions": "Расширение", "extensions": "Расширение",
"selected-extensions": "Выбрано { count, plural, 1 {1 расширение} few {# расширения} other {# расширений} }", "selected-extensions": "Выбрано { count, plural, =1 {1 расширение} few {# расширения} other {# расширений} }",
"type": "Тип", "type": "Тип",
"key": "Ключ", "key": "Ключ",
"value": "Значение", "value": "Значение",
@ -1007,7 +1007,7 @@
"edit": "Редактировать расширение", "edit": "Редактировать расширение",
"delete-extension-title": "Вы точно хотите удалить расширение '{{extensionId}}'?", "delete-extension-title": "Вы точно хотите удалить расширение '{{extensionId}}'?",
"delete-extension-text": "Внимание, после подтверждения расширение и все связанные с ним данные будут безвозвратно удалены.", "delete-extension-text": "Внимание, после подтверждения расширение и все связанные с ним данные будут безвозвратно удалены.",
"delete-extensions-title": "Вы точно хотите удалить { count, plural, 1 {1 расширение} few {# расширения} other {# расширений} }?", "delete-extensions-title": "Вы точно хотите удалить { count, plural, =1 {1 расширение} few {# расширения} other {# расширений} }?",
"delete-extensions-text": "Внимание, после подтверждения выбранные расширения будут удалены.", "delete-extensions-text": "Внимание, после подтверждения выбранные расширения будут удалены.",
"converters": "Конвертеры", "converters": "Конвертеры",
"converter-id": "ИД конвертера", "converter-id": "ИД конвертера",
@ -1159,8 +1159,8 @@
"grid": { "grid": {
"delete-item-title": "Вы точно хотите удалить этот объект?", "delete-item-title": "Вы точно хотите удалить этот объект?",
"delete-item-text": "Внимание, после подтверждения объект и все связанные с ним данные будут безвозвратно утеряны.", "delete-item-text": "Внимание, после подтверждения объект и все связанные с ним данные будут безвозвратно утеряны.",
"delete-items-title": "Вы точно хотите удалить { count, plural, one {1 объект} few {# объекта} other {# объектов} }?", "delete-items-title": "Вы точно хотите удалить { count, plural, =1 {1 объект} few {# объекта} other {# объектов} }?",
"delete-items-action-title": "Удалить { count, plural, one {1 объект} few {# объекта} other {# объектов} }", "delete-items-action-title": "Удалить { count, plural, =1 {1 объект} few {# объекта} other {# объектов} }",
"delete-items-text": "Внимание, после подтверждения выбранные объекты и все связанные с ними данные будут безвозвратно утеряны.", "delete-items-text": "Внимание, после подтверждения выбранные объекты и все связанные с ними данные будут безвозвратно утеряны.",
"add-item-text": "Добавить новый объект", "add-item-text": "Добавить новый объект",
"no-items-text": "Объекты не найдены", "no-items-text": "Объекты не найдены",
@ -1307,7 +1307,7 @@
}, },
"from-relations": "Исходящие отношения", "from-relations": "Исходящие отношения",
"to-relations": "Входящие отношения", "to-relations": "Входящие отношения",
"selected-relations": "Выбрано { count, plural, 1 {1 отношение} few {# отношения} other {# отношений} }", "selected-relations": "Выбрано { count, plural, =1 {1 отношение} few {# отношения} other {# отношений} }",
"type": "Тип", "type": "Тип",
"to-entity-type": "К типу объекта", "to-entity-type": "К типу объекта",
"to-entity-name": "К объекта", "to-entity-name": "К объекта",
@ -1323,11 +1323,11 @@
"edit": "Редактировать отношение", "edit": "Редактировать отношение",
"delete-to-relation-title": "Вы точно хотите удалить отношение, идущее к объекту '{{entityName}}'?", "delete-to-relation-title": "Вы точно хотите удалить отношение, идущее к объекту '{{entityName}}'?",
"delete-to-relation-text": "Внимание, после подтверждения объект '{{entityName}}' будет отвязан от текущего объекта.", "delete-to-relation-text": "Внимание, после подтверждения объект '{{entityName}}' будет отвязан от текущего объекта.",
"delete-to-relations-title": "Вы точно хотите удалить { count, plural, 1 {1 отношение} few {# отношения} other {# отношений} }?", "delete-to-relations-title": "Вы точно хотите удалить { count, plural, =1 {1 отношение} few {# отношения} other {# отношений} }?",
"delete-to-relations-text": "Внимание, после подтверждения выбранные объекты будут отвязаны от текущего объекта.", "delete-to-relations-text": "Внимание, после подтверждения выбранные объекты будут отвязаны от текущего объекта.",
"delete-from-relation-title": "Вы точно хотите удалить отношение, идущее от объекта '{{entityName}}'?", "delete-from-relation-title": "Вы точно хотите удалить отношение, идущее от объекта '{{entityName}}'?",
"delete-from-relation-text": "Внимание, после подтверждения текущий объект будет отвязан от объекта '{{entityName}}'.", "delete-from-relation-text": "Внимание, после подтверждения текущий объект будет отвязан от объекта '{{entityName}}'.",
"delete-from-relations-title": "Вы точно хотите удалить { count, plural, 1 {1 отношение} few {# отношения} other {# отношений} }?", "delete-from-relations-title": "Вы точно хотите удалить { count, plural, =1 {1 отношение} few {# отношения} other {# отношений} }?",
"delete-from-relations-text": "Внимание, после подтверждения выбранные объекты будут отвязаны от соответствующих объектов.", "delete-from-relations-text": "Внимание, после подтверждения выбранные объекты будут отвязаны от соответствующих объектов.",
"remove-relation-filter": "Удалить фильтр отношений", "remove-relation-filter": "Удалить фильтр отношений",
"add-relation-filter": "Добавить фильтр отношений", "add-relation-filter": "Добавить фильтр отношений",
@ -1350,8 +1350,8 @@
"set-root-rulechain-text": "После подтверждения цепочка правил станет корневой и будет обрабатывать все входящие сообщения.", "set-root-rulechain-text": "После подтверждения цепочка правил станет корневой и будет обрабатывать все входящие сообщения.",
"delete-rulechain-title": "Вы точно хотите удалить цепочку правил '{{ruleChainName}}'?", "delete-rulechain-title": "Вы точно хотите удалить цепочку правил '{{ruleChainName}}'?",
"delete-rulechain-text": "Внимание, после подтверждения цепочка правил и все связанные с ней данные будут безвозвратно удалены.", "delete-rulechain-text": "Внимание, после подтверждения цепочка правил и все связанные с ней данные будут безвозвратно удалены.",
"delete-rulechains-title": "Вы точно хотите удалить { count, plural, 1 {1 цепочку правил} few {# цепочки правил} other {# цепочек правил} }?", "delete-rulechains-title": "Вы точно хотите удалить { count, plural, =1 {1 цепочку правил} few {# цепочки правил} other {# цепочек правил} }?",
"delete-rulechains-action-title": "Удалить { count, plural, 1 {1 цепочку правил} few {# цепочки правил} other {# цепочек правил} }", "delete-rulechains-action-title": "Удалить { count, plural, =1 {1 цепочку правил} few {# цепочки правил} other {# цепочек правил} }",
"delete-rulechains-text": "Внимание, после подтверждения выбранные цепочки правил и все связанные с ними данные будут безвозвратно удалены.", "delete-rulechains-text": "Внимание, после подтверждения выбранные цепочки правил и все связанные с ними данные будут безвозвратно удалены.",
"add-rulechain-text": "Добавить новую цепочку правил", "add-rulechain-text": "Добавить новую цепочку правил",
"no-rulechains-text": "Цепочки правил не найдены", "no-rulechains-text": "Цепочки правил не найдены",
@ -1455,8 +1455,8 @@
"tenant-details": "Подробности об владельце", "tenant-details": "Подробности об владельце",
"delete-tenant-title": "Вы точно хотите удалить владельца '{{tenantTitle}}'?", "delete-tenant-title": "Вы точно хотите удалить владельца '{{tenantTitle}}'?",
"delete-tenant-text": "Внимание, после подтверждения владелец и все связанные с ним данные будут безвозвратно утеряны.", "delete-tenant-text": "Внимание, после подтверждения владелец и все связанные с ним данные будут безвозвратно утеряны.",
"delete-tenants-title": "Вы точно хотите удалить { count, plural, one {1 владельца} other {# владельцев} }?", "delete-tenants-title": "Вы точно хотите удалить { count, plural, =1 {1 владельца} other {# владельцев} }?",
"delete-tenants-action-title": "Удалить { count, plural, one {1 владельца} other {# владельцев} }", "delete-tenants-action-title": "Удалить { count, plural, =1 {1 владельца} other {# владельцев} }",
"delete-tenants-text": "Внимание, после подтверждения выбранные Владельцы и все связанные с ними данные будут безвозвратно утеряны.", "delete-tenants-text": "Внимание, после подтверждения выбранные Владельцы и все связанные с ними данные будут безвозвратно утеряны.",
"title": "Имя", "title": "Имя",
"title-required": "Имя обязательно.", "title-required": "Имя обязательно.",
@ -1470,10 +1470,10 @@
"tenant-required": "Владелец обязателен" "tenant-required": "Владелец обязателен"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, one {1 секунда} few {# секунды} other {# секунд} }", "seconds-interval": "{ seconds, plural, =1 {1 секунда} few {# секунды} other {# секунд} }",
"minutes-interval": "{ minutes, plural, one {1 минута} few {# минуты} other {# минут} }", "minutes-interval": "{ minutes, plural, =1 {1 минута} few {# минуты} other {# минут} }",
"hours-interval": "{ hours, plural, one {1 час} few {# часа} other {# часов} }", "hours-interval": "{ hours, plural, =1 {1 час} few {# часа} other {# часов} }",
"days-interval": "{ days, plural, one {1 день} few {# дня} other {# дней} }", "days-interval": "{ days, plural, =1 {1 день} few {# дня} other {# дней} }",
"days": "Дни", "days": "Дни",
"hours": "Часы", "hours": "Часы",
"minutes": "Минуты", "minutes": "Минуты",
@ -1481,10 +1481,10 @@
"advanced": "Дополнительно" "advanced": "Дополнительно"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, one {1 день} few {# дня} other {# дней} }", "days": "{ days, plural, =1 {1 день} few {# дня} other {# дней} }",
"hours": "{ hours, plural, one {1 час} few {# часа} other {# часов} }", "hours": "{ hours, plural, =1 {1 час} few {# часа} other {# часов} }",
"minutes": "{ minutes, plural, one {1 минута} few {# минуты} other {# минут} }", "minutes": "{ minutes, plural, =1 {1 минута} few {# минуты} other {# минут} }",
"seconds": "{ seconds, plural, one {1 секунда} few {# секунды} other {# секунд} }", "seconds": "{ seconds, plural, =1 {1 секунда} few {# секунды} other {# секунд} }",
"realtime": "Режим реального времени", "realtime": "Режим реального времени",
"history": "История", "history": "История",
"last-prefix": "Последние", "last-prefix": "Последние",
@ -1511,8 +1511,8 @@
"user-details": "Подробности о пользователе", "user-details": "Подробности о пользователе",
"delete-user-title": "Вы точно хотите удалить пользователя '{{userEmail}}'?", "delete-user-title": "Вы точно хотите удалить пользователя '{{userEmail}}'?",
"delete-user-text": "Внимание, после подтверждения пользователь и все связанные с ним данные будут безвозвратно утеряны.", "delete-user-text": "Внимание, после подтверждения пользователь и все связанные с ним данные будут безвозвратно утеряны.",
"delete-users-title": "Вы точно хотите удалить { count, plural, one {1 пользователя} other {# пользователей} }?", "delete-users-title": "Вы точно хотите удалить { count, plural, =1 {1 пользователя} other {# пользователей} }?",
"delete-users-action-title": "Удалить { count, plural, one {1 пользователя} other {# пользователей} }", "delete-users-action-title": "Удалить { count, plural, =1 {1 пользователя} other {# пользователей} }",
"delete-users-text": "Внимание, после подтверждения выбранные пользователи и все связанные с ними данные будут безвозвратно утеряны.", "delete-users-text": "Внимание, после подтверждения выбранные пользователи и все связанные с ними данные будут безвозвратно утеряны.",
"activation-email-sent-message": "Активационное письмо успешно отправлено!", "activation-email-sent-message": "Активационное письмо успешно отправлено!",
"resend-activation": "Повторить отправку активационного письма", "resend-activation": "Повторить отправку активационного письма",
@ -1638,8 +1638,8 @@
"widgets-bundle-details": "Подробности о наборе виджетов", "widgets-bundle-details": "Подробности о наборе виджетов",
"delete-widgets-bundle-title": "Вы точно хотите удалить набор виджетов '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Вы точно хотите удалить набор виджетов '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Внимание, после подтверждения набор виджетов и все связанные с ним данные будут безвозвратно утеряны.", "delete-widgets-bundle-text": "Внимание, после подтверждения набор виджетов и все связанные с ним данные будут безвозвратно утеряны.",
"delete-widgets-bundles-title": "Вы точно хотите удалить { count, plural, one {1 набор виджетов} few {# набора виджетов} other {# наборов виджетов} }?", "delete-widgets-bundles-title": "Вы точно хотите удалить { count, plural, =1 {1 набор виджетов} few {# набора виджетов} other {# наборов виджетов} }?",
"delete-widgets-bundles-action-title": "Удалить { count, plural, one {1 набор виджетов} few {# набора виджетов} other {# наборов виджетов} }", "delete-widgets-bundles-action-title": "Удалить { count, plural, =1 {1 набор виджетов} few {# набора виджетов} other {# наборов виджетов} }",
"delete-widgets-bundles-text": "Внимание, после подтверждения выбранные наборы виджетов и все связанные с ними данные будут безвозвратно утеряны..", "delete-widgets-bundles-text": "Внимание, после подтверждения выбранные наборы виджетов и все связанные с ними данные будут безвозвратно утеряны..",
"no-widgets-bundles-matching": "Набор виджетов '{{widgetsBundle}}' не найден.", "no-widgets-bundles-matching": "Набор виджетов '{{widgetsBundle}}' не найден.",
"widgets-bundle-required": "Набор виджетов обязателен.", "widgets-bundle-required": "Набор виджетов обязателен.",

174
ui-ngx/src/assets/locale/locale.constant-sl_SI.json

@ -265,17 +265,17 @@
"acknowledge": "Potrdi", "acknowledge": "Potrdi",
"clear": "Počisti", "clear": "Počisti",
"search": "Iskanje alarmov", "search": "Iskanje alarmov",
"selected-alarms": "{ count, plural, 1 {1 alarm} other {# alarms} } izbran", "selected-alarms": "{ count, plural, =1 {1 alarm} other {# alarms} } izbran",
"no-data": "Ni podatkov za prikaz", "no-data": "Ni podatkov za prikaz",
"polling-interval": "Interval iskanja alarmov (s)", "polling-interval": "Interval iskanja alarmov (s)",
"polling-interval-required": "Zahtevan je interval glasovanja alarmov.", "polling-interval-required": "Zahtevan je interval glasovanja alarmov.",
"min-polling-interval-message": "Dovoljen je vsaj 1-sekundni interval glasovanja.", "min-polling-interval-message": "Dovoljen je vsaj 1-sekundni interval glasovanja.",
"aknowledge-alarms-title": "Potrdite { count, plural, 1 {1 alarm} other {# alarms} }", "aknowledge-alarms-title": "Potrdite { count, plural, =1 {1 alarm} other {# alarms} }",
"aknowledge-alarms-text": "Ali ste prepričani, da želite potrditi { count, plural, 1 {1 alarm} other {# alarms} }?", "aknowledge-alarms-text": "Ali ste prepričani, da želite potrditi { count, plural, =1 {1 alarm} other {# alarms} }?",
"aknowledge-alarm-title": "Potrdite alarm", "aknowledge-alarm-title": "Potrdite alarm",
"aknowledge-alarm-text": "Ali ste prepričani, da želite potrditi alarm?", "aknowledge-alarm-text": "Ali ste prepričani, da želite potrditi alarm?",
"clear-alarms-title": "Počisti { count, plural, 1 {1 alarm} other {# alarmi} }", "clear-alarms-title": "Počisti { count, plural, =1 {1 alarm} other {# alarmi} }",
"clear-alarms-text": "Ali ste prepričani, da želite počistiti { count, plural, 1 {1 alarm} other {# alarme} }?", "clear-alarms-text": "Ali ste prepričani, da želite počistiti { count, plural, =1 {1 alarm} other {# alarme} }?",
"clear-alarm-title": "Počisti alarm", "clear-alarm-title": "Počisti alarm",
"clear-alarm-text": "Ali ste prepričani, da želite počistiti alarm?", "clear-alarm-text": "Ali ste prepričani, da želite počistiti alarm?",
"alarm-status-filter": "Filter stanja alarma", "alarm-status-filter": "Filter stanja alarma",
@ -373,15 +373,15 @@
"add-asset-text": "Dodaj novo sredstvo", "add-asset-text": "Dodaj novo sredstvo",
"asset-details": "Podrobnosti o sredstvih", "asset-details": "Podrobnosti o sredstvih",
"assign-assets": "Dodelitev sredstev", "assign-assets": "Dodelitev sredstev",
"assign-assets-text": "Stranki dodeli { count, plural, 1 {1 sredstvo} other {# assets} }", "assign-assets-text": "Stranki dodeli { count, plural, =1 {1 sredstvo} other {# assets} }",
"delete-assets": "Izbriši sredstva", "delete-assets": "Izbriši sredstva",
"unassign-assets": "Preklic dodelitve sredstev", "unassign-assets": "Preklic dodelitve sredstev",
"unassign-assets-action-title": "Stranki ne dodeli { count, plural, 1 {1 sredstvo} other {# assets} }", "unassign-assets-action-title": "Stranki ne dodeli { count, plural, =1 {1 sredstvo} other {# assets} }",
"assign-new-asset": "Dodeli novo sredstvo", "assign-new-asset": "Dodeli novo sredstvo",
"delete-asset-title": "Ali ste prepričani, da želite izbrisati sredstvo '{{assetName}}'?", "delete-asset-title": "Ali ste prepričani, da želite izbrisati sredstvo '{{assetName}}'?",
"delete-asset-text": "Bodite previdni, po potrditvi bo sredstvo in vsi povezani podatki nepopravljivi.", "delete-asset-text": "Bodite previdni, po potrditvi bo sredstvo in vsi povezani podatki nepopravljivi.",
"delete-assets-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 sredstvo} other {# assets} }?", "delete-assets-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 sredstvo} other {# assets} }?",
"delete-assets-action-title": "Izbriši { count, plural, 1 {1 sredstvo} other {# assets} }", "delete-assets-action-title": "Izbriši { count, plural, =1 {1 sredstvo} other {# assets} }",
"delete-assets-text": "Bodite previdni, po potrditvi bodo vsa izbrana sredstva odstranjena in vsi povezani podatki bodo postali nepopravljivi.", "delete-assets-text": "Bodite previdni, po potrditvi bodo vsa izbrana sredstva odstranjena in vsi povezani podatki bodo postali nepopravljivi.",
"make-public-asset-title": "Ali ste prepričani, da želite sredstvo '{{assetName}}' objaviti kot javno?", "make-public-asset-title": "Ali ste prepričani, da želite sredstvo '{{assetName}}' objaviti kot javno?",
"make-public-asset-text": "Po potrditvi bodo sredstvo in vsi njegovi podatki javno dostopni in dostopni drugim.", "make-public-asset-text": "Po potrditvi bodo sredstvo in vsi njegovi podatki javno dostopni in dostopni drugim.",
@ -390,7 +390,7 @@
"unassign-asset-title": "Ali ste prepričani, da želite dodeliti sredstvo '{{assetName}}'?", "unassign-asset-title": "Ali ste prepričani, da želite dodeliti sredstvo '{{assetName}}'?",
"unassign-asset-text": "Po potrditvi sredstvo ne bo dodeljeno in stranka ne bo dostopna.", "unassign-asset-text": "Po potrditvi sredstvo ne bo dodeljeno in stranka ne bo dostopna.",
"unassign-asset": "Preklic dodelitve sredstva", "unassign-asset": "Preklic dodelitve sredstva",
"unassign-assets-title": "Ali ste prepričani, da želite odpovedati { count, plural, 1 {1 asset} other {# assets} }?", "unassign-assets-title": "Ali ste prepričani, da želite odpovedati { count, plural, =1 {1 asset} other {# assets} }?",
"unassign-assets-text": "Po potrditvi vsa izbrana sredstva ne bodo dodeljena in stranka ne bo dostopna do njih.", "unassign-assets-text": "Po potrditvi vsa izbrana sredstva ne bodo dodeljena in stranka ne bo dostopna do njih.",
"copyId": "Kopiraj ID sredstva", "copyId": "Kopiraj ID sredstva",
"idCopiedMessage": "ID sredstva je kopiran v odložišče", "idCopiedMessage": "ID sredstva je kopiran v odložišče",
@ -401,7 +401,7 @@
"import": "Uvozi sredstva", "import": "Uvozi sredstva",
"asset-file": "Datoteka sredstva", "asset-file": "Datoteka sredstva",
"search": "Išči sredstva", "search": "Išči sredstva",
"selected-assets": "{ count, plural, 1 {1 asset} other {# assets} } izbrano", "selected-assets": "{ count, plural, =1 {1 asset} other {# assets} } izbrano",
"label": "Oznaka" "label": "Oznaka"
}, },
"attribute": { "attribute": {
@ -418,7 +418,7 @@
"key-required": "Potreben je ključ atributa.", "key-required": "Potreben je ključ atributa.",
"value": "Vrednost", "value": "Vrednost",
"value-required": "Vrednost atributa je obvezna.", "value-required": "Vrednost atributa je obvezna.",
"delete-attributes-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 attribute} other {# attributes} }?", "delete-attributes-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 attribute} other {# attributes} }?",
"delete-attributes-text": "Bodite previdni, po potrditvi bodo odstranjeni vsi izbrani atributi.", "delete-attributes-text": "Bodite previdni, po potrditvi bodo odstranjeni vsi izbrani atributi.",
"delete-attributes": "Izbriši atribute", "delete-attributes": "Izbriši atribute",
"enter-attribute-value": "Vnesite vrednost atributa", "enter-attribute-value": "Vnesite vrednost atributa",
@ -428,8 +428,8 @@
"prev-widget": "Prejšnji pripomoček", "prev-widget": "Prejšnji pripomoček",
"add-to-dashboard": "Dodaj na nadzorno ploščo", "add-to-dashboard": "Dodaj na nadzorno ploščo",
"add-widget-to-dashboard": "Dodaj pripomoček na nadzorno ploščo", "add-widget-to-dashboard": "Dodaj pripomoček na nadzorno ploščo",
"selected-attributes": "{ count, plural, 1 {1 attribute} other {# attributes} } izbrano", "selected-attributes": "{ count, plural, =1 {1 attribute} other {# attributes} } izbrano",
"selected-telemetry": "{ count, plural, 1 {1 telemetry unit} other {# telemetry units} } izbran", "selected-telemetry": "{ count, plural, =1 {1 telemetry unit} other {# telemetry units} } izbran",
"no-attributes-text": "Ni najdenih atributov", "no-attributes-text": "Ni najdenih atributov",
"no-telemetry-text": "Telemetrija ni najdena" "no-telemetry-text": "Telemetrija ni najdena"
}, },
@ -588,8 +588,8 @@
"customer-details": "Podrobnosti o stranki", "customer-details": "Podrobnosti o stranki",
"delete-customer-title": "Ali ste prepričani, da želite izbrisati stranko '{{customerTitle}}'?", "delete-customer-title": "Ali ste prepričani, da želite izbrisati stranko '{{customerTitle}}'?",
"delete-customer-text": "Previdno, po potrditvi bo stranka in vsi povezani podatki postali nepopravljivi.", "delete-customer-text": "Previdno, po potrditvi bo stranka in vsi povezani podatki postali nepopravljivi.",
"delete-customers-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 customer} other {# customers} }?", "delete-customers-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 customer} other {# customers} }?",
"delete-customers-action-title": "Izbriši { count, plural, 1 {1 customer} other {# customers} }", "delete-customers-action-title": "Izbriši { count, plural, =1 {1 customer} other {# customers} }",
"delete-customers-text": "Bodite previdni, po potrditvi bodo vse izbrane stranke odstranjene in vsi povezani podatki bodo postali nepopravljivi.", "delete-customers-text": "Bodite previdni, po potrditvi bodo vse izbrane stranke odstranjene in vsi povezani podatki bodo postali nepopravljivi.",
"manage-users": "Upravljanje uporabnikov", "manage-users": "Upravljanje uporabnikov",
"manage-assets": "Upravljanje sredstev", "manage-assets": "Upravljanje sredstev",
@ -609,7 +609,7 @@
"default-customer": "Privzeta stranka", "default-customer": "Privzeta stranka",
"default-customer-required": "Za razhroščevanje nadzorne plošče na ravni najemnika je potrebna privzeta stranka", "default-customer-required": "Za razhroščevanje nadzorne plošče na ravni najemnika je potrebna privzeta stranka",
"search": "Iskanje strank", "search": "Iskanje strank",
"selected-customers": "{ count, plural, 1 {1 customer} other {# customers} } izbrano" "selected-customers": "{ count, plural, =1 {1 customer} other {# customers} } izbrano"
}, },
"datetime": { "datetime": {
"date-from": "Datum, od", "date-from": "Datum, od",
@ -650,20 +650,20 @@
"add-dashboard-text": "Dodaj novo nadzorno ploščo", "add-dashboard-text": "Dodaj novo nadzorno ploščo",
"assign-dashboards": "Dodeli nadzorne plošče", "assign-dashboards": "Dodeli nadzorne plošče",
"assign-new-dashboard": "Dodeli novo nadzorno ploščo", "assign-new-dashboard": "Dodeli novo nadzorno ploščo",
"assign-dashboards-text": "Strankam dodeli { count, plural, 1 {1 dashboard} other {# dashboards} }", "assign-dashboards-text": "Strankam dodeli { count, plural, =1 {1 dashboard} other {# dashboards} }",
"unassign-dashboards-action-text": "Strankam ne dodeli { count, plural, 1 {1 dashboard} other {# dashboards} }", "unassign-dashboards-action-text": "Strankam ne dodeli { count, plural, =1 {1 dashboard} other {# dashboards} }",
"delete-dashboards": "Izbriši nadzorne plošče", "delete-dashboards": "Izbriši nadzorne plošče",
"unassign-dashboards": "Preklic dodelitve nadzornih plošč", "unassign-dashboards": "Preklic dodelitve nadzornih plošč",
"unassign-dashboards-action-title": "Stranki odstrani { count, plural, 1 {1 dashboard} other {# dashboards} }", "unassign-dashboards-action-title": "Stranki odstrani { count, plural, =1 {1 dashboard} other {# dashboards} }",
"delete-dashboard-title": "Ali ste prepričani, da želite izbrisati nadzorno ploščo '{{dashboardTitle}}'?", "delete-dashboard-title": "Ali ste prepričani, da želite izbrisati nadzorno ploščo '{{dashboardTitle}}'?",
"delete-dashboard-text": "Previdno, po potrditvi bodo armaturna plošča in vsi povezani podatki nepopravljivi.", "delete-dashboard-text": "Previdno, po potrditvi bodo armaturna plošča in vsi povezani podatki nepopravljivi.",
"delete-dashboards-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 dashboard} other {# dashboards} }?", "delete-dashboards-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"delete-dashboards-action-title": "Izbriši { count, plural, 1 {1 dashboard} other {# dashboards} }", "delete-dashboards-action-title": "Izbriši { count, plural, =1 {1 dashboard} other {# dashboards} }",
"delete-dashboards-text": "Bodite previdni, po potrditvi bodo vse izbrane nadzorne plošče odstranjene in vsi povezani podatki bodo postali nepopravljivi.", "delete-dashboards-text": "Bodite previdni, po potrditvi bodo vse izbrane nadzorne plošče odstranjene in vsi povezani podatki bodo postali nepopravljivi.",
"unassign-dashboard-title": "Ali ste prepričani, da želite odstraniti nadzorno ploščo '{{dashboardTitle}}'?", "unassign-dashboard-title": "Ali ste prepričani, da želite odstraniti nadzorno ploščo '{{dashboardTitle}}'?",
"unassign-dashboard-text": "Po potrditvi bo nadzorna plošča odstranjena in nedostopna stranki.", "unassign-dashboard-text": "Po potrditvi bo nadzorna plošča odstranjena in nedostopna stranki.",
"unassign-dashboard": "Preklic dodelitve nadzorne plošče", "unassign-dashboard": "Preklic dodelitve nadzorne plošče",
"unassign-dashboards-title": "Ali ste prepričani, da želite odstraniti { count, plural, 1 {1 dashboard} other {# dashboards} }?", "unassign-dashboards-title": "Ali ste prepričani, da želite odstraniti { count, plural, =1 {1 dashboard} other {# dashboards} }?",
"unassign-dashboards-text": "Po potrditvi bodo vse izbrane nadzorne plošče odstranjene in nedostopne stranki.", "unassign-dashboards-text": "Po potrditvi bodo vse izbrane nadzorne plošče odstranjene in nedostopne stranki.",
"public-dashboard-title": "Nadzorna plošča je zdaj javna", "public-dashboard-title": "Nadzorna plošča je zdaj javna",
"public-dashboard-text": "Vaša nadzorna plošča <b>{{dashboardTitle}}</b> je zdaj javna in dostopna prek naslednje javne <a href='{{publicLink}}' target='_blank'>povezave</a>", "public-dashboard-text": "Vaša nadzorna plošča <b>{{dashboardTitle}}</b> je zdaj javna in dostopna prek naslednje javne <a href='{{publicLink}}' target='_blank'>povezave</a>",
@ -744,7 +744,7 @@
"manage-states": "Upravljanje stanj nadzorne plošče", "manage-states": "Upravljanje stanj nadzorne plošče",
"states": "Stanja na nadzorni plošči", "states": "Stanja na nadzorni plošči",
"search-states": "Išči stanja na nadzorni plošči", "search-states": "Išči stanja na nadzorni plošči",
"selected-states": "{ count, plural, 1 {1 dashboard state} other {# dashboard state} } izbrano", "selected-states": "{ count, plural, =1 {1 dashboard state} other {# dashboard state} } izbrano",
"edit-state": "Uredi stanje nadzorne plošče", "edit-state": "Uredi stanje nadzorne plošče",
"delete-state": "Izbriši stanje armaturne plošče", "delete-state": "Izbriši stanje armaturne plošče",
"add-state": "Dodaj stanje nadzorne plošče", "add-state": "Dodaj stanje nadzorne plošče",
@ -763,7 +763,7 @@
"select-state": "Izberi ciljno stanje", "select-state": "Izberi ciljno stanje",
"state-controller": "Državni nadzornik", "state-controller": "Državni nadzornik",
"search": "Iskanje po nadzornih ploščah", "search": "Iskanje po nadzornih ploščah",
"selected-dashboards": "{ count, plural, 1 {1 dashboard} other {# dashboards} } izbrano" "selected-dashboards": "{ count, plural, =1 {1 dashboard} other {# dashboards} } izbrano"
}, },
"datakey": { "datakey": {
"settings": "Nastavitve", "settings": "Nastavitve",
@ -782,11 +782,11 @@
"timeseries-required": "Potrebni so časovni nizi entitet.", "timeseries-required": "Potrebni so časovni nizi entitet.",
"timeseries-or-attributes-required": "Potrebni so časovni nizi / atributi entitet.", "timeseries-or-attributes-required": "Potrebni so časovni nizi / atributi entitet.",
"alarm-fields-timeseries-or-attributes-required": "Polja alarma ali časovni nizi / atributi entitet so obvezni.", "alarm-fields-timeseries-or-attributes-required": "Polja alarma ali časovni nizi / atributi entitet so obvezni.",
"maximum-timeseries-or-attributes": "Največ { count, plural, 1 {1 timeseries / attribute is allowed.} other {# timeseries / attributes are allowed} }", "maximum-timeseries-or-attributes": "Največ { count, plural, =1 {1 timeseries / attribute is allowed.} other {# timeseries / attributes are allowed} }",
"alarm-fields-required": "Polja alarma so obvezna.", "alarm-fields-required": "Polja alarma so obvezna.",
"function-types": "Vrste funkcij", "function-types": "Vrste funkcij",
"function-types-required": "Zahtevane so vrste funkcij.", "function-types-required": "Zahtevane so vrste funkcij.",
"maximum-function-types": "Največ dovoljeno je { count, plural, 1 {1 type of function.} other {# vrste funkcij so dovoljene} }", "maximum-function-types": "Največ dovoljeno je { count, plural, =1 {1 type of function.} other {# vrste funkcij so dovoljene} }",
"time-description": "časovni žig trenutne vrednosti;", "time-description": "časovni žig trenutne vrednosti;",
"value-description": "trenutna vrednost;", "value-description": "trenutna vrednost;",
"prev-value-description": "rezultat prejšnjega klica funkcije;", "prev-value-description": "rezultat prejšnjega klica funkcije;",
@ -845,11 +845,11 @@
"manage-credentials": "Upravljanje poverilnic", "manage-credentials": "Upravljanje poverilnic",
"delete": "Izbriši napravo", "delete": "Izbriši napravo",
"assign-devices": "Dodeli naprave", "assign-devices": "Dodeli naprave",
"assign-devices-text": "Kupcu dodeli { count, plural, 1 {1 device} other {# devices} }", "assign-devices-text": "Kupcu dodeli { count, plural, =1 {1 device} other {# devices} }",
"delete-devices": "Izbriši naprave", "delete-devices": "Izbriši naprave",
"unassign-from-customer": "Odjavi od stranke", "unassign-from-customer": "Odjavi od stranke",
"unassign-devices": "Odjavi naprave", "unassign-devices": "Odjavi naprave",
"unassign-devices-action-title": "Odstrani { count, plural, 1 {1 device} other {# devices} } od stranke", "unassign-devices-action-title": "Odstrani { count, plural, =1 {1 device} other {# devices} } od stranke",
"assign-new-device": "Dodeli novo napravo", "assign-new-device": "Dodeli novo napravo",
"make-public-device-title": "Ali ste prepričani, da želite napravo '{{deviceName}}' narediti javno?", "make-public-device-title": "Ali ste prepričani, da želite napravo '{{deviceName}}' narediti javno?",
"make-public-device-text": "Po potrditvi bo naprava in vsi njeni podatki javno dostopni drugim.", "make-public-device-text": "Po potrditvi bo naprava in vsi njeni podatki javno dostopni drugim.",
@ -858,13 +858,13 @@
"view-credentials": "Ogled poverilnic", "view-credentials": "Ogled poverilnic",
"delete-device-title": "Ali ste prepričani, da želite izbrisati napravo '{{deviceName}}'?", "delete-device-title": "Ali ste prepričani, da želite izbrisati napravo '{{deviceName}}'?",
"delete-device-text": "Previdno, po potrditvi naprava in vsi povezani podatki postanejo nepopravljivi.", "delete-device-text": "Previdno, po potrditvi naprava in vsi povezani podatki postanejo nepopravljivi.",
"delete-devices-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 device} other {# naprav} }?", "delete-devices-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 device} other {# naprav} }?",
"delete-devices-action-title": "Izbriši { count, plural, 1 {1 device} other {# devices} }", "delete-devices-action-title": "Izbriši { count, plural, =1 {1 device} other {# devices} }",
"delete-devices-text": "Bodite previdni, po potrditvi bodo vse izbrane naprave odstranjene in vsi povezani podatki nepopravljivi.", "delete-devices-text": "Bodite previdni, po potrditvi bodo vse izbrane naprave odstranjene in vsi povezani podatki nepopravljivi.",
"unassign-device-title": "Ali ste prepričani, da želite odstraniti napravo '{{deviceName}}'?", "unassign-device-title": "Ali ste prepričani, da želite odstraniti napravo '{{deviceName}}'?",
"unassign-device-text": "Po potrditvi naprava ne bo dodeljena in nedostopna stranki.", "unassign-device-text": "Po potrditvi naprava ne bo dodeljena in nedostopna stranki.",
"unassign-device": "Preklic dodelitve naprave", "unassign-device": "Preklic dodelitve naprave",
"unassign-devices-title": "Ali ste prepričani, da želite odstraniti { count, plural, 1 {1 device} other {# naprave} }?", "unassign-devices-title": "Ali ste prepričani, da želite odstraniti { count, plural, =1 {1 device} other {# naprave} }?",
"unassign-devices-text": "Po potrditvi bodo vse izbrane naprave nedodeljene in nedostopne stranki.", "unassign-devices-text": "Po potrditvi bodo vse izbrane naprave nedodeljene in nedostopne stranki.",
"device-credentials": "Poverilnice naprave", "device-credentials": "Poverilnice naprave",
"credentials-type": "Vrsta poverilnic", "credentials-type": "Vrsta poverilnic",
@ -909,7 +909,7 @@
"import": "Uvozi napravo", "import": "Uvozi napravo",
"device-file": "Datoteka naprave", "device-file": "Datoteka naprave",
"search": "Iskalne naprave", "search": "Iskalne naprave",
"selected-devices": "{ count, plural, 1 {1 device} other {# devices} } izbrano", "selected-devices": "{ count, plural, =1 {1 device} other {# devices} } izbrano",
"device-configuration": "Device configuration", "device-configuration": "Device configuration",
"transport-configuration": "Transport configuration", "transport-configuration": "Transport configuration",
"wizard": { "wizard": {
@ -931,7 +931,7 @@
"device-profile-details": "Device profile details", "device-profile-details": "Device profile details",
"no-device-profiles-text": "No device profiles found", "no-device-profiles-text": "No device profiles found",
"search": "Search device profiles", "search": "Search device profiles",
"selected-device-profiles": "{ count, plural, 1 {1 device profile} other {# device profiles} } selected", "selected-device-profiles": "{ count, plural, =1 {1 device profile} other {# device profiles} } selected",
"no-device-profiles-matching": "No device profile matching '{{entity}}' were found.", "no-device-profiles-matching": "No device profile matching '{{entity}}' were found.",
"device-profile-required": "Device profile is required", "device-profile-required": "Device profile is required",
"idCopiedMessage": "Device profile Id has been copied to clipboard", "idCopiedMessage": "Device profile Id has been copied to clipboard",
@ -961,7 +961,7 @@
"select-queue-hint": "Select from a drop-down list.", "select-queue-hint": "Select from a drop-down list.",
"delete-device-profile-title": "Are you sure you want to delete the device profile '{{deviceProfileName}}'?", "delete-device-profile-title": "Are you sure you want to delete the device profile '{{deviceProfileName}}'?",
"delete-device-profile-text": "Be careful, after the confirmation the device profile and all related data will become unrecoverable.", "delete-device-profile-text": "Be careful, after the confirmation the device profile and all related data will become unrecoverable.",
"delete-device-profiles-title": "Are you sure you want to delete { count, plural, 1 {1 device profile} other {# device profiles} }?", "delete-device-profiles-title": "Are you sure you want to delete { count, plural, =1 {1 device profile} other {# device profiles} }?",
"delete-device-profiles-text": "Be careful, after the confirmation all selected device profiles will be removed and all related data will become unrecoverable.", "delete-device-profiles-text": "Be careful, after the confirmation all selected device profiles will be removed and all related data will become unrecoverable.",
"set-default-device-profile-title": "Are you sure you want to make the device profile '{{deviceProfileName}}' default?", "set-default-device-profile-title": "Are you sure you want to make the device profile '{{deviceProfileName}}' default?",
"set-default-device-profile-text": "After the confirmation the device profile will be marked as default and will be used for new devices with no profile specified.", "set-default-device-profile-text": "After the confirmation the device profile will be marked as default and will be used for new devices with no profile specified.",
@ -1049,7 +1049,7 @@
"condition-repeating-value-range": "Count of events should be in a range from 1 to 2147483647.", "condition-repeating-value-range": "Count of events should be in a range from 1 to 2147483647.",
"condition-repeating-value-pattern": "Count of events should be integers.", "condition-repeating-value-pattern": "Count of events should be integers.",
"condition-repeating-value-required": "Count of events is required.", "condition-repeating-value-required": "Count of events is required.",
"condition-repeat-times": "Repeats { count, plural, 1 {1 time} other {# times} }", "condition-repeat-times": "Repeats { count, plural, =1 {1 time} other {# times} }",
"schedule-type": "Scheduler type", "schedule-type": "Scheduler type",
"schedule-type-required": "Scheduler type is required.", "schedule-type-required": "Scheduler type is required.",
"schedule": "Schedule", "schedule": "Schedule",
@ -1126,66 +1126,66 @@
"type-required": "Zahteva se vrsta entitete.", "type-required": "Zahteva se vrsta entitete.",
"type-device": "Naprava", "type-device": "Naprava",
"type-devices": "Naprave", "type-devices": "Naprave",
"list-of-devices": "{ count, plural, 1 {One device} other {List of # devices} }", "list-of-devices": "{ count, plural, =1 {One device} other {List of # devices} }",
"device-name-starts-with": "Naprave, katerih imena se začnejo z '{{prefix}}'", "device-name-starts-with": "Naprave, katerih imena se začnejo z '{{prefix}}'",
"type-device-profile": "Device profile", "type-device-profile": "Device profile",
"type-device-profiles": "Device profiles", "type-device-profiles": "Device profiles",
"list-of-device-profiles": "{ count, plural, 1 {One device profile} other {List of # device profiles} }", "list-of-device-profiles": "{ count, plural, =1 {One device profile} other {List of # device profiles} }",
"device-profile-name-starts-with": "Device profiles whose names start with '{{prefix}}'", "device-profile-name-starts-with": "Device profiles whose names start with '{{prefix}}'",
"type-asset": "Sredstvo", "type-asset": "Sredstvo",
"type-assets": "Sredstva", "type-assets": "Sredstva",
"list-of-assets": "{ count, plural, 1 {One asset} other {Seznam # sredstev} }", "list-of-assets": "{ count, plural, =1 {One asset} other {Seznam # sredstev} }",
"asset-name-starts-with": "Sredstva, katerih imena se začnejo z '{{prefix}}'", "asset-name-starts-with": "Sredstva, katerih imena se začnejo z '{{prefix}}'",
"type-entity-view": "Pogled entitete", "type-entity-view": "Pogled entitete",
"type-entity-views": "Pogledi entitet", "type-entity-views": "Pogledi entitet",
"list-of-entity-views": "{ count, plural, 1 {One entity view} other {Seznam # pogledov entitet} }", "list-of-entity-views": "{ count, plural, =1 {One entity view} other {Seznam # pogledov entitet} }",
"entity-view-name-starts-with": "Pogledi entitet, katerih imena se začnejo z '{{prefix}}'", "entity-view-name-starts-with": "Pogledi entitet, katerih imena se začnejo z '{{prefix}}'",
"type-rule": "Pravilo", "type-rule": "Pravilo",
"type-rules": "Pravila", "type-rules": "Pravila",
"list-of-rules": "{ count, plural, 1 {One rule} other {Seznam # pravil} }", "list-of-rules": "{ count, plural, =1 {One rule} other {Seznam # pravil} }",
"rule-name-starts-with": "Pravila, katerih imena se začnejo z '{{prefix}}'", "rule-name-starts-with": "Pravila, katerih imena se začnejo z '{{prefix}}'",
"type-plugin": "Vključiti", "type-plugin": "Vključiti",
"type-plugins": "Vtičniki", "type-plugins": "Vtičniki",
"list-of-plugins": "{ count, plural, 1 {One plugin} other {List of # plugins} }", "list-of-plugins": "{ count, plural, =1 {One plugin} other {List of # plugins} }",
"plugin-name-starts-with": "Vtičniki, katerih imena se začnejo z '{{prefix}}'", "plugin-name-starts-with": "Vtičniki, katerih imena se začnejo z '{{prefix}}'",
"type-tenant": "Najemnik", "type-tenant": "Najemnik",
"type-tenants": "Najemniki", "type-tenants": "Najemniki",
"list-of-tenants": "{ count, plural, 1 {One najemnik} other {Seznam # najemnikov} }", "list-of-tenants": "{ count, plural, =1 {One najemnik} other {Seznam # najemnikov} }",
"tenant-name-starts-with": "Najemniki, katerih imena se začnejo z '{{prefix}}'", "tenant-name-starts-with": "Najemniki, katerih imena se začnejo z '{{prefix}}'",
"type-tenant-profile": "Tenant profile", "type-tenant-profile": "Tenant profile",
"type-tenant-profiles": "Tenant profiles", "type-tenant-profiles": "Tenant profiles",
"list-of-tenant-profiles": "{ count, plural, 1 {One tenant profile} other {List of # tenant profiles} }", "list-of-tenant-profiles": "{ count, plural, =1 {One tenant profile} other {List of # tenant profiles} }",
"tenant-profile-name-starts-with": "Tenant profiles whose names start with '{{prefix}}'", "tenant-profile-name-starts-with": "Tenant profiles whose names start with '{{prefix}}'",
"type-customer": "Stranka", "type-customer": "Stranka",
"type-customers": "Stranke", "type-customers": "Stranke",
"list-of-customers": "{ count, plural, 1 {One customer} other {List of # customers} }", "list-of-customers": "{ count, plural, =1 {One customer} other {List of # customers} }",
"customer-name-starts-with": "Stranke, katerih imena se začnejo z '{{prefix}}'", "customer-name-starts-with": "Stranke, katerih imena se začnejo z '{{prefix}}'",
"type-user": "Uporabnik", "type-user": "Uporabnik",
"type-users": "Uporabniki", "type-users": "Uporabniki",
"list-of-users": "{ count, plural, 1 {One user} other {List of # users} }", "list-of-users": "{ count, plural, =1 {One user} other {List of # users} }",
"user-name-starts-with": "Uporabniki, katerih imena se začnejo z '{{prefix}}'", "user-name-starts-with": "Uporabniki, katerih imena se začnejo z '{{prefix}}'",
"type-dashboard": "Nadzorna plošča", "type-dashboard": "Nadzorna plošča",
"type-dashboards": "Nadzorne plošče", "type-dashboards": "Nadzorne plošče",
"list-of-dashboards": "{ count, plural, 1 {One dashboard} other {List of # dashboards} }", "list-of-dashboards": "{ count, plural, =1 {One dashboard} other {List of # dashboards} }",
"dashboard-name-starts-with": "Nadzorne plošče, katerih imena se začnejo z '{{prefix}}'", "dashboard-name-starts-with": "Nadzorne plošče, katerih imena se začnejo z '{{prefix}}'",
"type-alarm": "Alarm", "type-alarm": "Alarm",
"type-alarms": "Alarmi", "type-alarms": "Alarmi",
"list-of-alarms": "{ count, plural, 1 {One alarms} other {List of # alarms} }", "list-of-alarms": "{ count, plural, =1 {One alarms} other {List of # alarms} }",
"alarm-name-starts-with": "Alarmi, katerih imena se začnejo z '{{prefix}}'", "alarm-name-starts-with": "Alarmi, katerih imena se začnejo z '{{prefix}}'",
"type-rulechain": "Veriga pravil", "type-rulechain": "Veriga pravil",
"type-rulechains": "Pravila", "type-rulechains": "Pravila",
"list-of-rulechains": "{ count, plural, 1 {One rule chain} other {List of # rule chains} }", "list-of-rulechains": "{ count, plural, =1 {One rule chain} other {List of # rule chains} }",
"rulechain-name-starts-with": "Verige pravil, katerih imena se začnejo z '{{prefix}}'", "rulechain-name-starts-with": "Verige pravil, katerih imena se začnejo z '{{prefix}}'",
"type-rulenode": "Vozlišče pravila", "type-rulenode": "Vozlišče pravila",
"type-rulenodes": "Vozlišča pravil", "type-rulenodes": "Vozlišča pravil",
"list-of-rulenodes": "{ count, plural, 1 {One rule node} other {List of # rule nodes} }", "list-of-rulenodes": "{ count, plural, =1 {One rule node} other {List of # rule nodes} }",
"rulenode-name-starts-with": "Vozlišča pravil, katerih imena se začnejo z '{{prefix}}'", "rulenode-name-starts-with": "Vozlišča pravil, katerih imena se začnejo z '{{prefix}}'",
"type-current-customer": "Trenutna stranka", "type-current-customer": "Trenutna stranka",
"type-current-tenant": "Trenutni najemnik", "type-current-tenant": "Trenutni najemnik",
"type-current-user": "Trenutni uporabnik", "type-current-user": "Trenutni uporabnik",
"type-current-user-owner": "Trenutni lastnik uporabnika", "type-current-user-owner": "Trenutni lastnik uporabnika",
"search": "Iskanje entitet", "search": "Iskanje entitet",
"selected-entities": "{ count, plural, 1 {1 entity} other {# entitet} } izbranih", "selected-entities": "{ count, plural, =1 {1 entity} other {# entitet} } izbranih",
"entity-name": "Ime entitete", "entity-name": "Ime entitete",
"entity-label": "Oznaka entitete", "entity-label": "Oznaka entitete",
"details": "Podrobnosti o entiteti", "details": "Podrobnosti o entiteti",
@ -1250,21 +1250,21 @@
"add-entity-view-text": "Dodaj nov pogled entitete", "add-entity-view-text": "Dodaj nov pogled entitete",
"delete": "Izbriši pogled entitete", "delete": "Izbriši pogled entitete",
"assign-entity-views": "Dodelitev pogledov entitete", "assign-entity-views": "Dodelitev pogledov entitete",
"assign-entity-views-text": "Stranki dodeli { count, plural, 1 {1 entity view} other {# entity views} }", "assign-entity-views-text": "Stranki dodeli { count, plural, =1 {1 entity view} other {# entity views} }",
"delete-entity-views": "Izbriši poglede entitet", "delete-entity-views": "Izbriši poglede entitet",
"unassign-from-customer": "Odstrani od stranke", "unassign-from-customer": "Odstrani od stranke",
"unassign-entity-views": "Odstrani poglede entitete", "unassign-entity-views": "Odstrani poglede entitete",
"unassign-entity-views-action-title": "Od stranke odstrani { count, plural, 1 {1 entity view} other {# entity views} }", "unassign-entity-views-action-title": "Od stranke odstrani { count, plural, =1 {1 entity view} other {# entity views} }",
"assign-new-entity-view": "Dodeli nov pogled entitete", "assign-new-entity-view": "Dodeli nov pogled entitete",
"delete-entity-view-title": "Ali ste prepričani, da želite izbrisati pogled entitete '{{entityViewName}}'?", "delete-entity-view-title": "Ali ste prepričani, da želite izbrisati pogled entitete '{{entityViewName}}'?",
"delete-entity-view-text": "Bodite previdni, po potrditvi bodo pogled entitete in vsi povezani podatki nepopravljivi.", "delete-entity-view-text": "Bodite previdni, po potrditvi bodo pogled entitete in vsi povezani podatki nepopravljivi.",
"delete-entity-views-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 entity view} other {# entity views} }?", "delete-entity-views-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 entity view} other {# entity views} }?",
"delete-entity-views-action-title": "Izbriši { count, plural, 1 {1 entity view} other {# entity views} }", "delete-entity-views-action-title": "Izbriši { count, plural, =1 {1 entity view} other {# entity views} }",
"delete-entity-views-text": "Bodite previdni, po potrditvi bodo odstranjeni vsi pogledi izbranih entitet in vsi povezani podatki bodo postali nepopravljivi.", "delete-entity-views-text": "Bodite previdni, po potrditvi bodo odstranjeni vsi pogledi izbranih entitet in vsi povezani podatki bodo postali nepopravljivi.",
"unassign-entity-view-title": "Ali ste prepričani, da želite odstraniti pogled entitete '{{entityViewName}}?", "unassign-entity-view-title": "Ali ste prepričani, da želite odstraniti pogled entitete '{{entityViewName}}?",
"unassign-entity-view-text": "Po potrditvi bo pogled entitete odstranjen in nedostopen stranki.", "unassign-entity-view-text": "Po potrditvi bo pogled entitete odstranjen in nedostopen stranki.",
"unassign-entity-view": "Odstrani pogled entitete", "unassign-entity-view": "Odstrani pogled entitete",
"unassign-entity-views-title": "Ali ste prepričani, da želite odstraniti { count, plural, 1 {1 entity view} other {# entity views} }?", "unassign-entity-views-title": "Ali ste prepričani, da želite odstraniti { count, plural, =1 {1 entity view} other {# entity views} }?",
"unassign-entity-views-text": "Po potrditvi bodo vsi pogledi izbranih entitet odstranjeni in stranki nedostopni.", "unassign-entity-views-text": "Po potrditvi bodo vsi pogledi izbranih entitet odstranjeni in stranki nedostopni.",
"entity-view-type": "Vrsta pogleda entitete", "entity-view-type": "Vrsta pogleda entitete",
"entity-view-type-required": "Zahteva se vrsta pogleda entitete.", "entity-view-type-required": "Zahteva se vrsta pogleda entitete.",
@ -1311,7 +1311,7 @@
"make-private-entity-view-title": "Ali ste prepričani, da želite pogled entitete '{{entityViewName}}' narediti zaseben?", "make-private-entity-view-title": "Ali ste prepričani, da želite pogled entitete '{{entityViewName}}' narediti zaseben?",
"make-private-entity-view-text": "Po potrditvi bodo pogled entitete in vsi njegovi podatki postali zasebni in drugim nedostopni.", "make-private-entity-view-text": "Po potrditvi bodo pogled entitete in vsi njegovi podatki postali zasebni in drugim nedostopni.",
"search": "Išči poglede entitet", "search": "Išči poglede entitet",
"selected-entity-views": "{ count, plural, 1 {1 entity view} other {# entity views} } izbranih" "selected-entity-views": "{ count, plural, =1 {1 entity view} other {# entity views} } izbranih"
}, },
"event": { "event": {
"event-type": "Vrsta dogodka", "event-type": "Vrsta dogodka",
@ -1345,7 +1345,7 @@
}, },
"extension": { "extension": {
"extensions": "Razširitve", "extensions": "Razširitve",
"selected-extensions": "{ count, plural, 1 {1 extension} other {# extensions} } izbrano", "selected-extensions": "{ count, plural, =1 {1 extension} other {# extensions} } izbrano",
"type": "Vrsta", "type": "Vrsta",
"key": "Ključ", "key": "Ključ",
"value": "Vrednost", "value": "Vrednost",
@ -1359,7 +1359,7 @@
"edit": "Uredi razširitev", "edit": "Uredi razširitev",
"delete-extension-title": "Ali ste prepričani, da želite izbrisati razširitev '{{extensionId}}'?", "delete-extension-title": "Ali ste prepričani, da želite izbrisati razširitev '{{extensionId}}'?",
"delete-extension-text": "Bodite previdni, po potrditvi podaljšanje in vsi povezani podatki ne bodo več obnovljivi.", "delete-extension-text": "Bodite previdni, po potrditvi podaljšanje in vsi povezani podatki ne bodo več obnovljivi.",
"delete-extensions-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 extension} other {# extensions} }?", "delete-extensions-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 extension} other {# extensions} }?",
"delete-extensions-text": "Previdno, po potrditvi bodo odstranjene vse izbrane razširitve.", "delete-extensions-text": "Previdno, po potrditvi bodo odstranjene vse izbrane razširitve.",
"converters": "Pretvorniki", "converters": "Pretvorniki",
"converter-id": "ID pretvornika", "converter-id": "ID pretvornika",
@ -1673,8 +1673,8 @@
"grid": { "grid": {
"delete-item-title": "Ali ste prepričani, da želite izbrisati ta element?", "delete-item-title": "Ali ste prepričani, da želite izbrisati ta element?",
"delete-item-text": "Bodite previdni, po potrditvi bodo ta element in vsi povezani podatki nepopravljivi.", "delete-item-text": "Bodite previdni, po potrditvi bodo ta element in vsi povezani podatki nepopravljivi.",
"delete-items-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 item} other {# items} }?", "delete-items-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 item} other {# items} }?",
"delete-items-action-title": "Izbriši { count, plural, 1 {1 item} other {# items} }", "delete-items-action-title": "Izbriši { count, plural, =1 {1 item} other {# items} }",
"delete-items-text": "Bodite previdni, po potrditvi bodo vsi izbrani elementi odstranjeni in vsi povezani podatki nepopravljivi.", "delete-items-text": "Bodite previdni, po potrditvi bodo vsi izbrani elementi odstranjeni in vsi povezani podatki nepopravljivi.",
"add-item-text": "Dodaj novo postavko", "add-item-text": "Dodaj novo postavko",
"no-items-text": "Ni najdenih postavk", "no-items-text": "Ni najdenih postavk",
@ -1824,7 +1824,7 @@
}, },
"from-relations": "Odhodna razmerja", "from-relations": "Odhodna razmerja",
"to-relations": "Vhodna razmerja", "to-relations": "Vhodna razmerja",
"selected-relations": "{ count, plural, 1 {1 relationship} other {# Relations} } izbran", "selected-relations": "{ count, plural, =1 {1 relationship} other {# Relations} } izbran",
"type": "Vrsta", "type": "Vrsta",
"to-entity-type": "Za vrsto entitete", "to-entity-type": "Za vrsto entitete",
"to-entity-name": "Za ime entitete", "to-entity-name": "Za ime entitete",
@ -1840,11 +1840,11 @@
"edit": "Uredi relacijo", "edit": "Uredi relacijo",
"delete-to-relation-title": "Ali ste prepričani, da želite izbrisati relacijo z entiteto '{{entityName}}'?", "delete-to-relation-title": "Ali ste prepričani, da želite izbrisati relacijo z entiteto '{{entityName}}'?",
"delete-to-relation-text": "Previdno, po potrditvi entiteta '{{entityName}}' ne bo v relaciji s trenutno entiteto.", "delete-to-relation-text": "Previdno, po potrditvi entiteta '{{entityName}}' ne bo v relaciji s trenutno entiteto.",
"delete-to-relations-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 relacijo} other {# relacije} }?", "delete-to-relations-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 relacijo} other {# relacije} }?",
"delete-to-relations-text": "Bodite previdni, po potrditvi bodo vse izbrane relacije odstranjene in entitete ne bodo povezane med sabo.", "delete-to-relations-text": "Bodite previdni, po potrditvi bodo vse izbrane relacije odstranjene in entitete ne bodo povezane med sabo.",
"delete-from-relation-title": "Ali ste prepričani, da želite izbrisati relacijo iz entitete '{{entityName}}'?", "delete-from-relation-title": "Ali ste prepričani, da želite izbrisati relacijo iz entitete '{{entityName}}'?",
"delete-from-relation-text": "Bodite previdni, po potrditvi trenutna entiteta ne bo v relacijii z entiteto '{{entityName}}'.", "delete-from-relation-text": "Bodite previdni, po potrditvi trenutna entiteta ne bo v relacijii z entiteto '{{entityName}}'.",
"delete-from-relations-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 relacija} other {# odnosi} }?", "delete-from-relations-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 relacija} other {# odnosi} }?",
"delete-from-relations-text": "Bodite previdni, po potrditvi bodo odstranjene vse izbrane relacije in trenutna entiteta ne bo v relaciji z omenjenimi entitetami.", "delete-from-relations-text": "Bodite previdni, po potrditvi bodo odstranjene vse izbrane relacije in trenutna entiteta ne bo v relaciji z omenjenimi entitetami.",
"remove-relation-filter": "Odstrani relacijski filter", "remove-relation-filter": "Odstrani relacijski filter",
"add-relation-filter": "Dodaj relacijski filter", "add-relation-filter": "Dodaj relacijski filter",
@ -1868,8 +1868,8 @@
"set-root-rulechain-text": "Po potrditvi bo veriga pravil postala izvorna in bo obravnavala vsa dohodna prometna sporočila.", "set-root-rulechain-text": "Po potrditvi bo veriga pravil postala izvorna in bo obravnavala vsa dohodna prometna sporočila.",
"delete-rulechain-title": "Ali ste prepričani, da želite izbrisati verigo pravil '{{ruleChainName}}'?", "delete-rulechain-title": "Ali ste prepričani, da želite izbrisati verigo pravil '{{ruleChainName}}'?",
"delete-rulechain-text": "Bodite previdni, po potrditvi bodo veriga pravil in vsi povezani podatki nepopravljivi.", "delete-rulechain-text": "Bodite previdni, po potrditvi bodo veriga pravil in vsi povezani podatki nepopravljivi.",
"delete-rulechains-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 rule chain} other {# rule chains} }?", "delete-rulechains-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 rule chain} other {# rule chains} }?",
"delete-rulechains-action-title": "Izbriši { count, plural, 1 {1 rule chain} other {# rule chains} }", "delete-rulechains-action-title": "Izbriši { count, plural, =1 {1 rule chain} other {# rule chains} }",
"delete-rulechains-text": "Bodite previdni, po potrditvi bodo odstranjene vse izbrane verige pravil in vsi povezani podatki bodo postali nepopravljivi.", "delete-rulechains-text": "Bodite previdni, po potrditvi bodo odstranjene vse izbrane verige pravil in vsi povezani podatki bodo postali nepopravljivi.",
"add-rulechain-text": "Dodaj novo verigo pravil", "add-rulechain-text": "Dodaj novo verigo pravil",
"no-rulechains-text": "Nobena veriga pravil ni najdena", "no-rulechains-text": "Nobena veriga pravil ni najdena",
@ -1891,7 +1891,7 @@
"management": "Upravljanje pravil", "management": "Upravljanje pravil",
"debug-mode": "Način za odpravljanje napak", "debug-mode": "Način za odpravljanje napak",
"search": "Iskanje verig pravil", "search": "Iskanje verig pravil",
"selected-rulechains": "{ count, plural, 1 {1 rule chain} other {# rule chains} } izbrano", "selected-rulechains": "{ count, plural, =1 {1 rule chain} other {# rule chains} } izbrano",
"open-rulechain": "Odprta veriga pravil" "open-rulechain": "Odprta veriga pravil"
}, },
"rulenode": { "rulenode": {
@ -1982,8 +1982,8 @@
"tenant-details": "Podrobnosti o najemniku", "tenant-details": "Podrobnosti o najemniku",
"delete-tenant-title": "Ali ste prepričani, da želite izbrisati najemnika '{{tenantTitle}}'?", "delete-tenant-title": "Ali ste prepričani, da želite izbrisati najemnika '{{tenantTitle}}'?",
"delete-tenant-text": "Previdno, po potrditvi bodo najemnik in vsi povezani podatki postali nepopravljivi.", "delete-tenant-text": "Previdno, po potrditvi bodo najemnik in vsi povezani podatki postali nepopravljivi.",
"delete-tenants-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 tenant} other {# tenants} }?", "delete-tenants-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 tenant} other {# tenants} }?",
"delete-tenants-action-title": "Izbriši { count, plural, 1 {1 tenant} other {# tenants} }", "delete-tenants-action-title": "Izbriši { count, plural, =1 {1 tenant} other {# tenants} }",
"delete-tenants-text": "Bodite previdni, po potrditvi bodo vsi izbrani najemniki odstranjeni in vsi povezani podatki nepopravljivi.", "delete-tenants-text": "Bodite previdni, po potrditvi bodo vsi izbrani najemniki odstranjeni in vsi povezani podatki nepopravljivi.",
"title": "Naslov", "title": "Naslov",
"title-required": "Naslov je obvezen.", "title-required": "Naslov je obvezen.",
@ -1996,7 +1996,7 @@
"no-tenants-matching": "Najden ni bil noben najemnik, ki se ujema z '{{entity}}'.", "no-tenants-matching": "Najden ni bil noben najemnik, ki se ujema z '{{entity}}'.",
"tenant-required": "Najemnik je obvezen", "tenant-required": "Najemnik je obvezen",
"search": "Iskanje najemnikov", "search": "Iskanje najemnikov",
"selected-tenants": "{ count, plural, 1 {1 tenant} other {# tenants} } izbran", "selected-tenants": "{ count, plural, =1 {1 tenant} other {# tenants} } izbran",
"isolated-tb-rule-engine": "Obdelava v izoliranem odlagališču ThingsBoard Rule Engine", "isolated-tb-rule-engine": "Obdelava v izoliranem odlagališču ThingsBoard Rule Engine",
"isolated-tb-rule-engine-details": "Zahteva ločene mikro storitve na izoliranega najemnika" "isolated-tb-rule-engine-details": "Zahteva ločene mikro storitve na izoliranega najemnika"
}, },
@ -2008,7 +2008,7 @@
"tenant-profile-details": "Tenant profile details", "tenant-profile-details": "Tenant profile details",
"no-tenant-profiles-text": "No tenant profiles found", "no-tenant-profiles-text": "No tenant profiles found",
"search": "Search tenant profiles", "search": "Search tenant profiles",
"selected-tenant-profiles": "{ count, plural, 1 {1 tenant profile} other {# tenant profiles} } selected", "selected-tenant-profiles": "{ count, plural, =1 {1 tenant profile} other {# tenant profiles} } selected",
"no-tenant-profiles-matching": "No tenant profile matching '{{entity}}' were found.", "no-tenant-profiles-matching": "No tenant profile matching '{{entity}}' were found.",
"tenant-profile-required": "Tenant profile is required", "tenant-profile-required": "Tenant profile is required",
"idCopiedMessage": "Tenant profile Id has been copied to clipboard", "idCopiedMessage": "Tenant profile Id has been copied to clipboard",
@ -2023,7 +2023,7 @@
"default": "Default", "default": "Default",
"delete-tenant-profile-title": "Are you sure you want to delete the tenant profile '{{tenantProfileName}}'?", "delete-tenant-profile-title": "Are you sure you want to delete the tenant profile '{{tenantProfileName}}'?",
"delete-tenant-profile-text": "Be careful, after the confirmation the tenant profile and all related data will become unrecoverable.", "delete-tenant-profile-text": "Be careful, after the confirmation the tenant profile and all related data will become unrecoverable.",
"delete-tenant-profiles-title": "Are you sure you want to delete { count, plural, 1 {1 tenant profile} other {# tenant profiles} }?", "delete-tenant-profiles-title": "Are you sure you want to delete { count, plural, =1 {1 tenant profile} other {# tenant profiles} }?",
"delete-tenant-profiles-text": "Be careful, after the confirmation all selected tenant profiles will be removed and all related data will become unrecoverable.", "delete-tenant-profiles-text": "Be careful, after the confirmation all selected tenant profiles will be removed and all related data will become unrecoverable.",
"set-default-tenant-profile-title": "Are you sure you want to make the tenant profile '{{tenantProfileName}}' default?", "set-default-tenant-profile-title": "Are you sure you want to make the tenant profile '{{tenantProfileName}}' default?",
"set-default-tenant-profile-text": "After the confirmation the tenant profile will be marked as default and will be used for new tenants with no profile specified.", "set-default-tenant-profile-text": "After the confirmation the tenant profile will be marked as default and will be used for new tenants with no profile specified.",
@ -2082,10 +2082,10 @@
"max-sms-range": "Maximum number of SMS sent can't be negative" "max-sms-range": "Maximum number of SMS sent can't be negative"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 second} other {# seconds} }", "seconds-interval": "{ seconds, plural, =1 {1 second} other {# seconds} }",
"minutes-interval": "{ minutes, plural, 1 {1 minute} other {# minutes} }", "minutes-interval": "{ minutes, plural, =1 {1 minute} other {# minutes} }",
"hours-interval": "{ hours, plural, 1 {1 hour} other {# hours} }", "hours-interval": "{ hours, plural, =1 {1 hour} other {# hours} }",
"days-interval": "{ days, plural, 1 {1 day} other {# days} }", "days-interval": "{ days, plural, =1 {1 day} other {# days} }",
"days": "Dnevi", "days": "Dnevi",
"hours": "Ure", "hours": "Ure",
"minutes": "Minute", "minutes": "Minute",
@ -2099,10 +2099,10 @@
"days": "Days" "days": "Days"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 {dan} other {# dni} }", "days": "{ days, plural, =1 {dan} other {# dni} }",
"hours": "{ hours, plural, 0 {hour} 1 {1 hour} other {# hours} }", "hours": "{ hours, plural, =0 {hour} =1 {1 hour} other {# hours} }",
"minutes": "{ minute, plural, 0 {minute} 1 {1 minuta} other {# minut} }", "minutes": "{ minute, plural, =0 {minute} =1 {1 minuta} other {# minut} }",
"seconds": "{ seconds, plural, 0 {second} 1 {1 second} other {# seconds} }", "seconds": "{ seconds, plural, =0 {second} =1 {1 second} other {# seconds} }",
"realtime": "V realnem času", "realtime": "V realnem času",
"history": "Zgodovina", "history": "Zgodovina",
"last-prefix": "zadnji", "last-prefix": "zadnji",
@ -2129,8 +2129,8 @@
"user-details": "Podrobnosti o uporabniku", "user-details": "Podrobnosti o uporabniku",
"delete-user-title": "Ali ste prepričani, da želite izbrisati uporabnika '{{userEmail}}'?", "delete-user-title": "Ali ste prepričani, da želite izbrisati uporabnika '{{userEmail}}'?",
"delete-user-text": "Previdno, po potrditvi bodo uporabnik in vsi povezani podatki nepopravljivi.", "delete-user-text": "Previdno, po potrditvi bodo uporabnik in vsi povezani podatki nepopravljivi.",
"delete-users-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 user} other {# users} }?", "delete-users-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 user} other {# users} }?",
"delete-users-action-title": "Izbriši { count, plural, 1 {1 user} other {# users} }", "delete-users-action-title": "Izbriši { count, plural, =1 {1 user} other {# users} }",
"delete-users-text": "Previdno, po potrditvi bodo vsi izbrani uporabniki odstranjeni in vsi povezani podatki nepopravljivi.", "delete-users-text": "Previdno, po potrditvi bodo vsi izbrani uporabniki odstranjeni in vsi povezani podatki nepopravljivi.",
"activation-email-sent-message": "Aktivacijsko e-poštno sporočilo je bilo uspešno poslano!", "activation-email-sent-message": "Aktivacijsko e-poštno sporočilo je bilo uspešno poslano!",
"resend-activation": "Znova pošlji aktivacijo", "resend-activation": "Znova pošlji aktivacijo",
@ -2156,7 +2156,7 @@
"login-as-tenant-admin": "Prijava kot skrbnik najemnika", "login-as-tenant-admin": "Prijava kot skrbnik najemnika",
"login-as-customer-user": "Prijavi se kot uporabnik stranke", "login-as-customer-user": "Prijavi se kot uporabnik stranke",
"search": "Iskanje uporabnikov", "search": "Iskanje uporabnikov",
"selected-users": "{ count, plural, 1 {1 user} other {# users} } izbranih", "selected-users": "{ count, plural, =1 {1 user} other {# users} } izbranih",
"disable-account": "Onemogoči uporabniški račun", "disable-account": "Onemogoči uporabniški račun",
"enable-account": "Omogoči uporabniški račun", "enable-account": "Omogoči uporabniški račun",
"enable-account-message": "Uporabniški račun je bil uspešno omogočen!", "enable-account-message": "Uporabniški račun je bil uspešno omogočen!",
@ -2268,8 +2268,8 @@
"widgets-bundle-details": "Podrobnosti o paketu pripomočkov", "widgets-bundle-details": "Podrobnosti o paketu pripomočkov",
"delete-widgets-bundle-title": "Ali ste prepričani, da želite izbrisati paket pripomočkov '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Ali ste prepričani, da želite izbrisati paket pripomočkov '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Bodite previdni, po potrditvi bodo pripomočki in vsi povezani podatki postali nepopravljivi.", "delete-widgets-bundle-text": "Bodite previdni, po potrditvi bodo pripomočki in vsi povezani podatki postali nepopravljivi.",
"delete-widgets-bundles-title": "Ali ste prepričani, da želite izbrisati { count, plural, 1 {1 widgets bundle} other {# widgets bundles} }?", "delete-widgets-bundles-title": "Ali ste prepričani, da želite izbrisati { count, plural, =1 {1 widgets bundle} other {# widgets bundles} }?",
"delete-widgets-bundles-action-title": "Izbriši { count, plural, 1 {1 widgets bundle} other {# widgets bundles} }", "delete-widgets-bundles-action-title": "Izbriši { count, plural, =1 {1 widgets bundle} other {# widgets bundles} }",
"delete-widgets-bundles-text": "Bodite previdni, po potrditvi bodo odstranjeni vsi paketi pripomočkov, vsi povezani podatki pa bodo postali nepopravljivi.", "delete-widgets-bundles-text": "Bodite previdni, po potrditvi bodo odstranjeni vsi paketi pripomočkov, vsi povezani podatki pa bodo postali nepopravljivi.",
"no-widgets-bundles-matching": "Najden ni bil noben paket pripomočkov, ki se ujema z '{{widgetsBundle}}'.", "no-widgets-bundles-matching": "Najden ni bil noben paket pripomočkov, ki se ujema z '{{widgetsBundle}}'.",
"widgets-bundle-required": "Paket pripomočkov je potreben.", "widgets-bundle-required": "Paket pripomočkov je potreben.",
@ -2281,7 +2281,7 @@
"widgets-bundle-file": "Datoteka paketa pripomočkov", "widgets-bundle-file": "Datoteka paketa pripomočkov",
"invalid-widgets-bundle-file-error": "Ni mogoče uvoziti paketa pripomočkov: neveljavna podatkovna struktura paketa pripomočkov.", "invalid-widgets-bundle-file-error": "Ni mogoče uvoziti paketa pripomočkov: neveljavna podatkovna struktura paketa pripomočkov.",
"search": "Iskanje po paketih pripomočkov", "search": "Iskanje po paketih pripomočkov",
"selected-widgets-bundles": "{ count, plural, 1 {1 widgets bundle} other {# widgets bundles} } izbranih", "selected-widgets-bundles": "{ count, plural, =1 {1 widgets bundle} other {# widgets bundles} } izbranih",
"open-widgets-bundle": "Odpri paket pripomočkov" "open-widgets-bundle": "Odpri paket pripomočkov"
}, },
"widget-config": { "widget-config": {
@ -2310,7 +2310,7 @@
"display-timewindow": "Prikaži časovno okno", "display-timewindow": "Prikaži časovno okno",
"display-legend": "Prikaži legendo", "display-legend": "Prikaži legendo",
"datasources": "Viri podatkov", "datasources": "Viri podatkov",
"maximum-datasources": "Največ { count, plural, 1 {1 vir podatkov je dovoljen.} other {# vir podatkov je dovoljen} }", "maximum-datasources": "Največ { count, plural, =1 {1 vir podatkov je dovoljen.} other {# vir podatkov je dovoljen} }",
"datasource-type": "Vrsta", "datasource-type": "Vrsta",
"datasource-parameters": "Parametri", "datasource-parameters": "Parametri",
"remove-datasource": "Odstrani vir podatkov", "remove-datasource": "Odstrani vir podatkov",

208
ui-ngx/src/assets/locale/locale.constant-tr_TR.json

@ -287,17 +287,17 @@
"acknowledge": "Onayla", "acknowledge": "Onayla",
"clear": "Temizle", "clear": "Temizle",
"search": "Alarm ara", "search": "Alarm ara",
"selected-alarms": "{ count, plural, 1 {1 alarm} other {# alarm} } seçildi", "selected-alarms": "{ count, plural, =1 {1 alarm} other {# alarm} } seçildi",
"no-data": "Görüntülenecek veri bulunmuyor", "no-data": "Görüntülenecek veri bulunmuyor",
"polling-interval": "Alarm yoklama aralığı (saniye)", "polling-interval": "Alarm yoklama aralığı (saniye)",
"polling-interval-required": "Alarm yoklama aralığı gerekli.", "polling-interval-required": "Alarm yoklama aralığı gerekli.",
"min-polling-interval-message": "Alarm yoklama aralığı en az 1 saniye olmalıdır.", "min-polling-interval-message": "Alarm yoklama aralığı en az 1 saniye olmalıdır.",
"aknowledge-alarms-title": "{ count, plural, 1 {1 alarmı} other {# alarmı} } onayla", "aknowledge-alarms-title": "{ count, plural, =1 {1 alarmı} other {# alarmı} } onayla",
"aknowledge-alarms-text": "{ count, plural, 1 {1 alarmı} other {# alarmı} } onaylamak istediğinize emin misiniz?", "aknowledge-alarms-text": "{ count, plural, =1 {1 alarmı} other {# alarmı} } onaylamak istediğinize emin misiniz?",
"aknowledge-alarm-title": "Alarmı Onayla", "aknowledge-alarm-title": "Alarmı Onayla",
"aknowledge-alarm-text": "Alarmı onaylamak istediğinizden emin misiniz?", "aknowledge-alarm-text": "Alarmı onaylamak istediğinizden emin misiniz?",
"clear-alarms-title": "{ count, plural, 1 {1 alarmı} other {# alarmı} } temizle", "clear-alarms-title": "{ count, plural, =1 {1 alarmı} other {# alarmı} } temizle",
"clear-alarms-text": "{ count, plural, 1 {1 alarmı} other {# alarmı} } temizlemek istediğinize emin misiniz?", "clear-alarms-text": "{ count, plural, =1 {1 alarmı} other {# alarmı} } temizlemek istediğinize emin misiniz?",
"clear-alarm-title": "Alarmı Temizle", "clear-alarm-title": "Alarmı Temizle",
"clear-alarm-text": "Alarmı silmek istediğinizden emin misiniz?", "clear-alarm-text": "Alarmı silmek istediğinizden emin misiniz?",
"alarm-status-filter": "Alarm Durum Filtresi", "alarm-status-filter": "Alarm Durum Filtresi",
@ -400,17 +400,17 @@
"add-asset-text": "Yeni varlık ekle", "add-asset-text": "Yeni varlık ekle",
"asset-details": "Varlık detayları", "asset-details": "Varlık detayları",
"assign-assets": "Varlıkları ata", "assign-assets": "Varlıkları ata",
"assign-assets-text": "{ count, plural, 1 {1 varlığı} other {# varlığı} } kullanıcı grubuna ata", "assign-assets-text": "{ count, plural, =1 {1 varlığı} other {# varlığı} } kullanıcı grubuna ata",
"assign-asset-to-edge-title": "Varlıkları Uç'a Ata", "assign-asset-to-edge-title": "Varlıkları Uç'a Ata",
"assign-asset-to-edge-text": "Lütfen uca atanacak varlıkları seçin", "assign-asset-to-edge-text": "Lütfen uca atanacak varlıkları seçin",
"delete-assets": "Varlıkları sil", "delete-assets": "Varlıkları sil",
"unassign-assets": "Varlıkların atamalarını kaldır", "unassign-assets": "Varlıkların atamalarını kaldır",
"unassign-assets-action-title": "{ count, plural, 1 {1 varlığın} other {# varlığın} } atamalarını kullanıcı grubundan kaldır", "unassign-assets-action-title": "{ count, plural, =1 {1 varlığın} other {# varlığın} } atamalarını kullanıcı grubundan kaldır",
"assign-new-asset": "Yeni varlık ata", "assign-new-asset": "Yeni varlık ata",
"delete-asset-title": "'{{assetName}}' isimli varlığı silmek istediğinize emin misiniz?", "delete-asset-title": "'{{assetName}}' isimli varlığı silmek istediğinize emin misiniz?",
"delete-asset-text": "UYARI: Onaylandıktan sonra varlık ve ilgili tüm veriler geri yüklenemeyecek şekilde silinecek.", "delete-asset-text": "UYARI: Onaylandıktan sonra varlık ve ilgili tüm veriler geri yüklenemeyecek şekilde silinecek.",
"delete-assets-title": "{ count, plural, 1 {1 varlığı} other {# varlığı} } silmek istediğinize emin misiniz?", "delete-assets-title": "{ count, plural, =1 {1 varlığı} other {# varlığı} } silmek istediğinize emin misiniz?",
"delete-assets-action-title": "{ count, plural, 1 {1 varlığı} other {# varlığı} } sil", "delete-assets-action-title": "{ count, plural, =1 {1 varlığı} other {# varlığı} } sil",
"delete-assets-text": "UYARI: Onaylandıktan sonra tüm seçili varlıklar ver ilgili tüm veriler geri yüklenemyeck şekilde silinecek.", "delete-assets-text": "UYARI: Onaylandıktan sonra tüm seçili varlıklar ver ilgili tüm veriler geri yüklenemyeck şekilde silinecek.",
"make-public-asset-title": "'{{assetName}}' isimli varlığı açık hale getirmek istediğinize emin misiniz?", "make-public-asset-title": "'{{assetName}}' isimli varlığı açık hale getirmek istediğinize emin misiniz?",
"make-public-asset-text": "Onaylandıktan sonra varlık ve ilgili veriler açık hale gelecek ve başkaları tarafından erişilebilir olacaktır.", "make-public-asset-text": "Onaylandıktan sonra varlık ve ilgili veriler açık hale gelecek ve başkaları tarafından erişilebilir olacaktır.",
@ -419,7 +419,7 @@
"unassign-asset-title": "'{{assetName}}' isimli varlığın atamasını kaldırmak istediğinize emin misiniz?", "unassign-asset-title": "'{{assetName}}' isimli varlığın atamasını kaldırmak istediğinize emin misiniz?",
"unassign-asset-text": "Onaylandıktan sonra varlığın ataması kaldırılacak ve kullanıcı grubu tarafından erişilemez olacaktır.", "unassign-asset-text": "Onaylandıktan sonra varlığın ataması kaldırılacak ve kullanıcı grubu tarafından erişilemez olacaktır.",
"unassign-asset": "Varlık atamasını kaldır", "unassign-asset": "Varlık atamasını kaldır",
"unassign-assets-title": " { count, plural, 1 {1 varlık} other {# varlık} } atamasını kaldırmak istediğinize emin misiniz?", "unassign-assets-title": " { count, plural, =1 {1 varlık} other {# varlık} } atamasını kaldırmak istediğinize emin misiniz?",
"unassign-assets-text": "Onaylandıktan sonra tüm seçili varlıkların ataması kaldırılacak ve kullanıcı grubu tarafından erişilemez olacaktır.", "unassign-assets-text": "Onaylandıktan sonra tüm seçili varlıkların ataması kaldırılacak ve kullanıcı grubu tarafından erişilemez olacaktır.",
"unassign-assets-from-edge": "Uçtan varlıkların atamasını kaldır", "unassign-assets-from-edge": "Uçtan varlıkların atamasını kaldır",
"copyId": "Varlık kimliğini kopyala", "copyId": "Varlık kimliğini kopyala",
@ -437,9 +437,9 @@
"unassign-asset-from-edge": "Öğe atamasını kaldır", "unassign-asset-from-edge": "Öğe atamasını kaldır",
"unassign-asset-from-edge-title": "'{{assetName}}' öğesinin atamasını kaldırmak istediğinizden emin misiniz?", "unassign-asset-from-edge-title": "'{{assetName}}' öğesinin atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-asset-from-edge-text": "Onaydan sonra varlığın ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır.", "unassign-asset-from-edge-text": "Onaydan sonra varlığın ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır.",
"unassign-assets-from-edge-title": "{ count, plural, 1 {1 varlık} other {# varlık} } atamasını kaldırmak istediğinizden emin misiniz?", "unassign-assets-from-edge-title": "{ count, plural, =1 {1 varlık} other {# varlık} } atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-assets-from-edge-text": "Onaydan sonra seçilen tüm varlıkların ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır.", "unassign-assets-from-edge-text": "Onaydan sonra seçilen tüm varlıkların ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır.",
"selected-assets": "{ count, plural, 1 {1 varlık} other {# varlık} } seçildi" "selected-assets": "{ count, plural, =1 {1 varlık} other {# varlık} } seçildi"
}, },
"attribute": { "attribute": {
"attributes": "Öznitelikler", "attributes": "Öznitelikler",
@ -455,7 +455,7 @@
"key-required": "Öznitelik anahtarı gerekli.", "key-required": "Öznitelik anahtarı gerekli.",
"value": "Değer", "value": "Değer",
"value-required": "Öznitelik değeri gerekli.", "value-required": "Öznitelik değeri gerekli.",
"delete-attributes-title": "Silmek istediğinize emin misiniz { count, plural, 1 {1 öznitelik} other {# öznitelik} }?", "delete-attributes-title": "Silmek istediğinize emin misiniz { count, plural, =1 {1 öznitelik} other {# öznitelik} }?",
"delete-attributes-text": "UYARI: Onaylandıktan sonra tüm seçili öznitelikler kaldırılacak.", "delete-attributes-text": "UYARI: Onaylandıktan sonra tüm seçili öznitelikler kaldırılacak.",
"delete-attributes": "Öznitelikleri sil", "delete-attributes": "Öznitelikleri sil",
"enter-attribute-value": "Öznitelik değeri gir", "enter-attribute-value": "Öznitelik değeri gir",
@ -465,8 +465,8 @@
"prev-widget": "Önceki gösterge", "prev-widget": "Önceki gösterge",
"add-to-dashboard": "Gösterge paneline ekle", "add-to-dashboard": "Gösterge paneline ekle",
"add-widget-to-dashboard": "Göstergeyi, gösterge paneline ekle", "add-widget-to-dashboard": "Göstergeyi, gösterge paneline ekle",
"selected-attributes": "{ count, plural, 1 {1 öznitelik} other {# öznitelik} } seçildi", "selected-attributes": "{ count, plural, =1 {1 öznitelik} other {# öznitelik} } seçildi",
"selected-telemetry": "{ count, plural, 1 {1 telemetri birimi} other {# telemetri birimi} } seçildi", "selected-telemetry": "{ count, plural, =1 {1 telemetri birimi} other {# telemetri birimi} } seçildi",
"no-attributes-text": "Öznitelik bulunamadı", "no-attributes-text": "Öznitelik bulunamadı",
"no-telemetry-text": "Telemetri bulunamadı" "no-telemetry-text": "Telemetri bulunamadı"
}, },
@ -639,8 +639,8 @@
"customer-details": "Kullanıcı Grubu detayları", "customer-details": "Kullanıcı Grubu detayları",
"delete-customer-title": "'{{customerTitle}}' Kullanıcı Grubunu silmek istediğinizden emin misiniz?", "delete-customer-title": "'{{customerTitle}}' Kullanıcı Grubunu silmek istediğinizden emin misiniz?",
"delete-customer-text": "Dikkatli olun, onaydan sonra kullanıcı grubu ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-customer-text": "Dikkatli olun, onaydan sonra kullanıcı grubu ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"delete-customers-title": "{ count, plural, 1 {1 kullanıcı grubunu} other {# kullanıcı grubunu} } silmek istediğinize emin misiniz?", "delete-customers-title": "{ count, plural, =1 {1 kullanıcı grubunu} other {# kullanıcı grubunu} } silmek istediğinize emin misiniz?",
"delete-customers-action-title": "{ count, plural, 1 {1 kullanıcı grubunu} other {# kullanıcı grubunu} } sil", "delete-customers-action-title": "{ count, plural, =1 {1 kullanıcı grubunu} other {# kullanıcı grubunu} } sil",
"delete-customers-text": "YARI: Onaylandıktan sonra tüm seçili kullanıcı grupları ve ilişkili veriler geri yüklenemez şekilde silinecek.", "delete-customers-text": "YARI: Onaylandıktan sonra tüm seçili kullanıcı grupları ve ilişkili veriler geri yüklenemez şekilde silinecek.",
"manage-users": "Kullanıcıları yönet", "manage-users": "Kullanıcıları yönet",
"manage-assets": "Varlıkları yönet", "manage-assets": "Varlıkları yönet",
@ -660,7 +660,7 @@
"default-customer": "Varsayılan kullanıcı grubu", "default-customer": "Varsayılan kullanıcı grubu",
"default-customer-required": "Tenant düzeyinde gösterge tablosunda hata ayıklamak için varsayılan kullanıcı grubu gerekiyor", "default-customer-required": "Tenant düzeyinde gösterge tablosunda hata ayıklamak için varsayılan kullanıcı grubu gerekiyor",
"search": "Kullanıcı grubu ara", "search": "Kullanıcı grubu ara",
"selected-customers": "{ count, plural, 1 {1 kullanıcı grubu} other {# kullanıcı grubu} } seçildi", "selected-customers": "{ count, plural, =1 {1 kullanıcı grubu} other {# kullanıcı grubu} } seçildi",
"edges": "Kullanıcı Grubu uç örnekleri", "edges": "Kullanıcı Grubu uç örnekleri",
"manage-edges": "Uçları yönet" "manage-edges": "Uçları yönet"
}, },
@ -711,20 +711,20 @@
"add-dashboard-text": "Yeni Gösterge paneli ekle", "add-dashboard-text": "Yeni Gösterge paneli ekle",
"assign-dashboards": "Gösterge panelleri ata", "assign-dashboards": "Gösterge panelleri ata",
"assign-new-dashboard": "Yeni gösterge paneli ata", "assign-new-dashboard": "Yeni gösterge paneli ata",
"assign-dashboards-text": "{ count, plural, 1 {1 gösterge panelini} other {# gösterge panelini} } kullanıcı grubuna ata", "assign-dashboards-text": "{ count, plural, =1 {1 gösterge panelini} other {# gösterge panelini} } kullanıcı grubuna ata",
"unassign-dashboards-action-text": "Kullanıcı Gruplarından atama { count, plural, 1 {1 gösterge tablosu} other {# panolar} }", "unassign-dashboards-action-text": "Kullanıcı Gruplarından atama { count, plural, =1 {1 gösterge tablosu} other {# panolar} }",
"delete-dashboards": "Gösterge panellerini sil", "delete-dashboards": "Gösterge panellerini sil",
"unassign-dashboards": "Gösterge panellerinden atamayı kaldır", "unassign-dashboards": "Gösterge panellerinden atamayı kaldır",
"unassign-dashboards-action-title": "{ count, plural, 1 {1 gösterge panelinin} other {# gösterge panelinin} } atamaları kullanıcı grubundan kaldır", "unassign-dashboards-action-title": "{ count, plural, =1 {1 gösterge panelinin} other {# gösterge panelinin} } atamaları kullanıcı grubundan kaldır",
"delete-dashboard-title": "'{{dashboardTitle}}' isimli gösterge panelini silmek istediğinize emin misiniz?", "delete-dashboard-title": "'{{dashboardTitle}}' isimli gösterge panelini silmek istediğinize emin misiniz?",
"delete-dashboard-text": "UYARI: Onaylandıktan sonra gösterge paneli ve ilişkili verileri geri yüklenemez şekilde silinecek.", "delete-dashboard-text": "UYARI: Onaylandıktan sonra gösterge paneli ve ilişkili verileri geri yüklenemez şekilde silinecek.",
"delete-dashboards-title": "{ count, plural, 1 {1 gösterge panelini} other {# gösterge panelini} } silmek istediğinize emin misiniz?", "delete-dashboards-title": "{ count, plural, =1 {1 gösterge panelini} other {# gösterge panelini} } silmek istediğinize emin misiniz?",
"delete-dashboards-action-title": "{ count, plural, 1 {1 gösterge panelini} other {# gösterge panelini} } sil", "delete-dashboards-action-title": "{ count, plural, =1 {1 gösterge panelini} other {# gösterge panelini} } sil",
"delete-dashboards-text": "UYARI: Onaylandıktan sonra tüm seçili gösterge panelleri ve ilişkili verileri geri yüklenemez şekilde silinecek.", "delete-dashboards-text": "UYARI: Onaylandıktan sonra tüm seçili gösterge panelleri ve ilişkili verileri geri yüklenemez şekilde silinecek.",
"unassign-dashboard-title": "'{{dashboardTitle}}' isimli gösterge panelindeki atamayı kaldırmak istediğinize emin misiniz?", "unassign-dashboard-title": "'{{dashboardTitle}}' isimli gösterge panelindeki atamayı kaldırmak istediğinize emin misiniz?",
"unassign-dashboard-text": "Onaylandıktan sonra gösterge panelinin ataması kaldırılacak ve kullanıcı grubu tarafından erişilemez hale gelecektir.", "unassign-dashboard-text": "Onaylandıktan sonra gösterge panelinin ataması kaldırılacak ve kullanıcı grubu tarafından erişilemez hale gelecektir.",
"unassign-dashboard": "Gösterge panelinin ataması kaldır", "unassign-dashboard": "Gösterge panelinin ataması kaldır",
"unassign-dashboards-title": "{count, plural, 1 {1 gösterge panelindeki} other {# gösterge panelindeki} } atamayı kaldırmak istediğinize emin misiniz?", "unassign-dashboards-title": "{count, plural, =1 {1 gösterge panelindeki} other {# gösterge panelindeki} } atamayı kaldırmak istediğinize emin misiniz?",
"unassign-dashboards-text": "Onaylandıktan <sonra seçili gösterge panellerinin atamaları kaldırılacak ve kullanıcı grubu tarafından erişilemez hale gelecektir.", "unassign-dashboards-text": "Onaylandıktan <sonra seçili gösterge panellerinin atamaları kaldırılacak ve kullanıcı grubu tarafından erişilemez hale gelecektir.",
"public-dashboard-title": "Gösterge paneli açık hale getirildi", "public-dashboard-title": "Gösterge paneli açık hale getirildi",
"public-dashboard-text": "Gösterge paneliniz <b>{{dashboardTitle}}</b> açık hale getirildi ve bu <a href='{{publicLink}}' target='_blank'>bağlantıdan</a> erişilebilir durumda", "public-dashboard-text": "Gösterge paneliniz <b>{{dashboardTitle}}</b> açık hale getirildi ve bu <a href='{{publicLink}}' target='_blank'>bağlantıdan</a> erişilebilir durumda",
@ -816,7 +816,7 @@
"manage-states": "Gösterge paneli durumlarını yönet", "manage-states": "Gösterge paneli durumlarını yönet",
"states": "Gösterge paneli durumları", "states": "Gösterge paneli durumları",
"search-states": "Gösterge paneli durumlarını ara", "search-states": "Gösterge paneli durumlarını ara",
"selected-states": "{ count, plural, 1 {1 gösterge paneli durumu} other {# gösterge paneli durumları} } seçildi", "selected-states": "{ count, plural, =1 {1 gösterge paneli durumu} other {# gösterge paneli durumları} } seçildi",
"edit-state": "Gösterge paneli durumunu düzenle", "edit-state": "Gösterge paneli durumunu düzenle",
"delete-state": "Gösterge paneli durumunu sil", "delete-state": "Gösterge paneli durumunu sil",
"add-state": "Gösterge paneli durumu ekle", "add-state": "Gösterge paneli durumu ekle",
@ -835,11 +835,11 @@
"select-state": "Hedef durumu seçin", "select-state": "Hedef durumu seçin",
"state-controller": "Durum denetleyicisi", "state-controller": "Durum denetleyicisi",
"search": "Gösterge panellerini ara", "search": "Gösterge panellerini ara",
"selected-dashboards": "{ count, plural, 1 {1 gösterge paneli} other {# gösterge panelleri} } seçildi", "selected-dashboards": "{ count, plural, =1 {1 gösterge paneli} other {# gösterge panelleri} } seçildi",
"home-dashboard": "Ana sayfa gösterge paneli", "home-dashboard": "Ana sayfa gösterge paneli",
"home-dashboard-hide-toolbar": "Ana sayfa gösterge paneli araç çubuğunu gizle", "home-dashboard-hide-toolbar": "Ana sayfa gösterge paneli araç çubuğunu gizle",
"unassign-dashboard-from-edge-text": "Onaydan sonra gösterge panelinin ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır.", "unassign-dashboard-from-edge-text": "Onaydan sonra gösterge panelinin ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır.",
"unassign-dashboards-from-edge-title": "{ count, plural, 1 {1 gösterge paneli} other {# gösterge panelleri} } atamasını kaldırmak istediğinizden emin misiniz?", "unassign-dashboards-from-edge-title": "{ count, plural, =1 {1 gösterge paneli} other {# gösterge panelleri} } atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-dashboards-from-edge-text": "Onaydan sonra, seçilen tüm gösterge panellerinin ataması kaldırılacak ve uç tarafından erişilemeyecek.", "unassign-dashboards-from-edge-text": "Onaydan sonra, seçilen tüm gösterge panellerinin ataması kaldırılacak ve uç tarafından erişilemeyecek.",
"assign-dashboard-to-edge": "Gösterge panellerini uca ata", "assign-dashboard-to-edge": "Gösterge panellerini uca ata",
"assign-dashboard-to-edge-text": "Lütfen uca atanacak gösterge panellerini seçin" "assign-dashboard-to-edge-text": "Lütfen uca atanacak gösterge panellerini seçin"
@ -861,11 +861,11 @@
"timeseries-required": "Zaman serisi öğesi gerekli.", "timeseries-required": "Zaman serisi öğesi gerekli.",
"timeseries-or-attributes-required": "Zaman serisi/öznitelikler öğesi gerekli.", "timeseries-or-attributes-required": "Zaman serisi/öznitelikler öğesi gerekli.",
"alarm-fields-timeseries-or-attributes-required": "Alarm alanları veya Zaman serisi/öznitelikler öğesi gerekli.", "alarm-fields-timeseries-or-attributes-required": "Alarm alanları veya Zaman serisi/öznitelikler öğesi gerekli.",
"maximum-timeseries-or-attributes": "Maksimum { count, plural, 1 {1 zamanserisi/öznitelik kabul edilir.} other {# zamanserisi/öznitelik kabul edilir} }", "maximum-timeseries-or-attributes": "Maksimum { count, plural, =1 {1 zamanserisi/öznitelik kabul edilir.} other {# zamanserisi/öznitelik kabul edilir} }",
"alarm-fields-required": "Alarm alanları gerekli.", "alarm-fields-required": "Alarm alanları gerekli.",
"function-types": "Fonksiyon türleri", "function-types": "Fonksiyon türleri",
"function-types-required": "Fonksiyon türleri gerekli.", "function-types-required": "Fonksiyon türleri gerekli.",
"maximum-function-types": "Maksimum { count, plural, 1 {1 fonksiyon türü kabul edilir.} other {# fonksiyon türü kabul edilir} }", "maximum-function-types": "Maksimum { count, plural, =1 {1 fonksiyon türü kabul edilir.} other {# fonksiyon türü kabul edilir} }",
"time-description": "geçerli değerin zaman damgası;", "time-description": "geçerli değerin zaman damgası;",
"value-description": "geçerli değer;", "value-description": "geçerli değer;",
"prev-value-description": "önceki fonksiyon çağrısının sonucu;", "prev-value-description": "önceki fonksiyon çağrısının sonucu;",
@ -928,11 +928,11 @@
"manage-credentials": "Kimlik bilgilerini yönet", "manage-credentials": "Kimlik bilgilerini yönet",
"delete": "Cihaz sil", "delete": "Cihaz sil",
"assign-devices": "Cihaz ata", "assign-devices": "Cihaz ata",
"assign-devices-text": "{ count, plural, 1 {1 cihazı} other {# cihazı} } kullanıcı grubuna ata", "assign-devices-text": "{ count, plural, =1 {1 cihazı} other {# cihazı} } kullanıcı grubuna ata",
"delete-devices": "Cihazları sil", "delete-devices": "Cihazları sil",
"unassign-from-customer": "Kullanıcı Grubundan atamayı kaldır", "unassign-from-customer": "Kullanıcı Grubundan atamayı kaldır",
"unassign-devices": "Cihazlardan atamayı kaldır", "unassign-devices": "Cihazlardan atamayı kaldır",
"unassign-devices-action-title": "{ count, plural, 1 {1 cihazın} other {# cihazın} } atamasını kullanıcı grubundan kaldır", "unassign-devices-action-title": "{ count, plural, =1 {1 cihazın} other {# cihazın} } atamasını kullanıcı grubundan kaldır",
"unassign-device-from-edge-title": "'{{deviceName}}' cihazının atamasını kaldırmak istediğinizden emin misiniz?", "unassign-device-from-edge-title": "'{{deviceName}}' cihazının atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-device-from-edge-text": "Onaydan sonra cihazın ataması kaldırılacak ve cihaza uç tarafından erişilemeyecek.", "unassign-device-from-edge-text": "Onaydan sonra cihazın ataması kaldırılacak ve cihaza uç tarafından erişilemeyecek.",
"unassign-devices-from-edge": "Cihazların atamasını uçtan kaldır", "unassign-devices-from-edge": "Cihazların atamasını uçtan kaldır",
@ -944,13 +944,13 @@
"view-credentials": "Kimlik bilgilerini görüntüle", "view-credentials": "Kimlik bilgilerini görüntüle",
"delete-device-title": "'{{deviceName}}' isimli cihazı silmek istediğinize emin misiniz?", "delete-device-title": "'{{deviceName}}' isimli cihazı silmek istediğinize emin misiniz?",
"delete-device-text": "UYARI: Onaylandıktan sonra cihaz ve ilişkili verileri geri yüklenemez şekilde silinecek.", "delete-device-text": "UYARI: Onaylandıktan sonra cihaz ve ilişkili verileri geri yüklenemez şekilde silinecek.",
"delete-devices-title": "{ count, plural, 1 {1 cihazı} other {# cihazı} } silmek istediğinize emin misiniz?", "delete-devices-title": "{ count, plural, =1 {1 cihazı} other {# cihazı} } silmek istediğinize emin misiniz?",
"delete-devices-action-title": "{ count, plural, 1 {1 cihazı} other {# cihazı} } sil", "delete-devices-action-title": "{ count, plural, =1 {1 cihazı} other {# cihazı} } sil",
"delete-devices-text": "UYARI: Onaylandıktan sonra tüm seçili cihazlar ve ilişkili verileri geri yüklenemez şekilde silinecek.", "delete-devices-text": "UYARI: Onaylandıktan sonra tüm seçili cihazlar ve ilişkili verileri geri yüklenemez şekilde silinecek.",
"unassign-device-title": "'{{deviceName}}' isimli cihazın atamasını kaldırmak istediğinize emin misiniz?", "unassign-device-title": "'{{deviceName}}' isimli cihazın atamasını kaldırmak istediğinize emin misiniz?",
"unassign-device-text": "Onaylandıktan sonra cihazın ataması kaldırılacak ve kullanıcı grubu tarafından erişilemez olacak.", "unassign-device-text": "Onaylandıktan sonra cihazın ataması kaldırılacak ve kullanıcı grubu tarafından erişilemez olacak.",
"unassign-device": "Cihaz atamasını kaldır", "unassign-device": "Cihaz atamasını kaldır",
"unassign-devices-title": "{ count, plural, 1 {1 cihazın} other {# cihazın} } atamasını kaldırmak istediğinize emin misiniz?", "unassign-devices-title": "{ count, plural, =1 {1 cihazın} other {# cihazın} } atamasını kaldırmak istediğinize emin misiniz?",
"unassign-devices-text": "Onaylandıktan sonra seçili cihazların atamaları kaldırılacak ve kullanıcı grubu tarafından erişilemez olacak.", "unassign-devices-text": "Onaylandıktan sonra seçili cihazların atamaları kaldırılacak ve kullanıcı grubu tarafından erişilemez olacak.",
"device-credentials": "Cihaz Kimlik Bilgileri", "device-credentials": "Cihaz Kimlik Bilgileri",
"loading-device-credentials": "Cihaz kimlik bilgileri yükleniyor...", "loading-device-credentials": "Cihaz kimlik bilgileri yükleniyor...",
@ -1017,7 +1017,7 @@
"import": "Cihazı içe aktar", "import": "Cihazı içe aktar",
"device-file": "Cihaz dosyası", "device-file": "Cihaz dosyası",
"search": "Cihaz ara", "search": "Cihaz ara",
"selected-devices": "{ count, plural, 1 {1 cihaz} other {# cihaz} } seçildi", "selected-devices": "{ count, plural, =1 {1 cihaz} other {# cihaz} } seçildi",
"device-configuration": "Cihaz yapılandırması", "device-configuration": "Cihaz yapılandırması",
"transport-configuration": "Aktarım yapılandırması", "transport-configuration": "Aktarım yapılandırması",
"wizard": { "wizard": {
@ -1029,7 +1029,7 @@
"customer-to-assign-device": "Cihazı atamak için kullanıcı grubu", "customer-to-assign-device": "Cihazı atamak için kullanıcı grubu",
"add-credentials": "Kimlik bilgileri ekle" "add-credentials": "Kimlik bilgileri ekle"
}, },
"unassign-devices-from-edge-title": "{ count, plural, 1 {1 cihazın} other {# cihazın} } atamasını kaldırmak istediğinizden emin misiniz?", "unassign-devices-from-edge-title": "{ count, plural, =1 {1 cihazın} other {# cihazın} } atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-devices-from-edge-text": "Onaydan sonra, seçilen tüm cihazların ataması kaldırılacak ve uç tarafından erişilemeyecek." "unassign-devices-from-edge-text": "Onaydan sonra, seçilen tüm cihazların ataması kaldırılacak ve uç tarafından erişilemeyecek."
}, },
"device-profile": { "device-profile": {
@ -1041,7 +1041,7 @@
"device-profile-details": "Cihaz profili ayrıntıları", "device-profile-details": "Cihaz profili ayrıntıları",
"no-device-profiles-text": "Cihaz profili bulunamadı", "no-device-profiles-text": "Cihaz profili bulunamadı",
"search": "Cihaz profillerini ara", "search": "Cihaz profillerini ara",
"selected-device-profiles": "{ count, plural, 1 {1 cihaz profili} other {# cihaz profili} } seçildi", "selected-device-profiles": "{ count, plural, =1 {1 cihaz profili} other {# cihaz profili} } seçildi",
"no-device-profiles-matching": "'{{entity}}' ile eşleşen cihaz profili bulunamadı.", "no-device-profiles-matching": "'{{entity}}' ile eşleşen cihaz profili bulunamadı.",
"device-profile-required": "Cihaz profili gerekli", "device-profile-required": "Cihaz profili gerekli",
"idCopiedMessage": "Cihaz profili kimliği panoya kopyalandı", "idCopiedMessage": "Cihaz profili kimliği panoya kopyalandı",
@ -1078,7 +1078,7 @@
"select-queue-hint": "Açılır listeden seçin veya özel bir ad ekleyin.", "select-queue-hint": "Açılır listeden seçin veya özel bir ad ekleyin.",
"delete-device-profile-title": "'{{deviceProfileName}}' cihaz profilini silmek istediğinizden emin misiniz?", "delete-device-profile-title": "'{{deviceProfileName}}' cihaz profilini silmek istediğinizden emin misiniz?",
"delete-device-profile-text": "Dikkatli olun, onaydan sonra cihaz profili ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-device-profile-text": "Dikkatli olun, onaydan sonra cihaz profili ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"delete-device-profiles-title": "{ count, plural, 1 {1 cihaz profilini} other {# cihaz profilini} } silmek istediğinizden emin misiniz?", "delete-device-profiles-title": "{ count, plural, =1 {1 cihaz profilini} other {# cihaz profilini} } silmek istediğinizden emin misiniz?",
"delete-device-profiles-text": "Dikkatli olun, onaydan sonra seçilen tüm cihaz profilleri kaldırılacak ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-device-profiles-text": "Dikkatli olun, onaydan sonra seçilen tüm cihaz profilleri kaldırılacak ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"set-default-device-profile-title": "'{{deviceProfileName}}' cihaz profilini varsayılan yapmak istediğinizden emin misiniz?", "set-default-device-profile-title": "'{{deviceProfileName}}' cihaz profilini varsayılan yapmak istediğinizden emin misiniz?",
"set-default-device-profile-text": "Onaydan sonra cihaz profili varsayılan olarak işaretlenecek ve profil belirtilmemiş yeni cihazlar için kullanılacaktır.", "set-default-device-profile-text": "Onaydan sonra cihaz profili varsayılan olarak işaretlenecek ve profil belirtilmemiş yeni cihazlar için kullanılacaktır.",
@ -1189,8 +1189,8 @@
"condition-repeating-value-range": "Etkinlik sayısı 1 ile 2147483647 arasında olmalıdır.", "condition-repeating-value-range": "Etkinlik sayısı 1 ile 2147483647 arasında olmalıdır.",
"condition-repeating-value-pattern": "Etkinlik sayısı tamsayı olmalıdır.", "condition-repeating-value-pattern": "Etkinlik sayısı tamsayı olmalıdır.",
"condition-repeating-value-required": "Etkinlik sayısı gerekli.", "condition-repeating-value-required": "Etkinlik sayısı gerekli.",
"condition-repeat-times": "{ count, plural, 1 {1 kere} other {# kere} } tekrar eder", "condition-repeat-times": "{ count, plural, =1 {1 kere} other {# kere} } tekrar eder",
"condition-repeat-times-dynamic": "\"{ attribute }\" ({ count, plural, 1 {1 kere} other {# kere} } tekrar eder)", "condition-repeat-times-dynamic": "\"{ attribute }\" ({ count, plural, =1 {1 kere} other {# kere} } tekrar eder)",
"schedule-type": "Plan türü", "schedule-type": "Plan türü",
"schedule-type-required": "Plan türü gerekli.", "schedule-type-required": "Plan türü gerekli.",
"schedule": "Plan", "schedule": "Plan",
@ -1400,7 +1400,7 @@
"delete": "Delete edge", "delete": "Delete edge",
"delete-edge-title": "Are you sure you want to delete the edge '{{edgeName}}'?", "delete-edge-title": "Are you sure you want to delete the edge '{{edgeName}}'?",
"delete-edge-text": "Be careful, after the confirmation the edge and all related data will become unrecoverable.", "delete-edge-text": "Be careful, after the confirmation the edge and all related data will become unrecoverable.",
"delete-edges-title": "Are you sure you want to edge { count, plural, 1 {1 edge} other {# edges} }?", "delete-edges-title": "Are you sure you want to edge { count, plural, =1 {1 edge} other {# edges} }?",
"delete-edges-text": "Be careful, after the confirmation all selected edges will be removed and all related data will become unrecoverable.", "delete-edges-text": "Be careful, after the confirmation all selected edges will be removed and all related data will become unrecoverable.",
"name": "Name", "name": "Name",
"name-starts-with": "Edge name starts with", "name-starts-with": "Edge name starts with",
@ -1427,7 +1427,7 @@
"unassign-from-customer": "Unassign from customer", "unassign-from-customer": "Unassign from customer",
"unassign-edge-title": "Are you sure you want to unassign the edge '{{edgeName}}'?", "unassign-edge-title": "Are you sure you want to unassign the edge '{{edgeName}}'?",
"unassign-edge-text": "After the confirmation the edge will be unassigned and won't be accessible by the customer.", "unassign-edge-text": "After the confirmation the edge will be unassigned and won't be accessible by the customer.",
"unassign-edges-title": "Are you sure you want to unassign { count, plural, 1 {1 edge} other {# edges} }?", "unassign-edges-title": "Are you sure you want to unassign { count, plural, =1 {1 edge} other {# edges} }?",
"unassign-edges-text": "After the confirmation all selected edges will be unassigned and won't be accessible by the customer.", "unassign-edges-text": "After the confirmation all selected edges will be unassigned and won't be accessible by the customer.",
"make-public": "Make edge public", "make-public": "Make edge public",
"make-public-edge-title": "Are you sure you want to make the edge '{{edgeName}}' public?", "make-public-edge-title": "Are you sure you want to make the edge '{{edgeName}}' public?",
@ -1460,7 +1460,7 @@
"rulechain-templates": "Rule chain templates", "rulechain-templates": "Rule chain templates",
"rulechains": "Rule chains", "rulechains": "Rule chains",
"search": "Search edges", "search": "Search edges",
"selected-edges": "{ count, plural, 1 {1 edge} other {# edges} } selected", "selected-edges": "{ count, plural, =1 {1 edge} other {# edges} } selected",
"any-edge": "Any edge", "any-edge": "Any edge",
"no-edge-types-matching": "No edge types matching '{{entitySubtype}}' were found.", "no-edge-types-matching": "No edge types matching '{{entitySubtype}}' were found.",
"edge-type-list-empty": "No edge types selected.", "edge-type-list-empty": "No edge types selected.",
@ -1560,66 +1560,66 @@
"type-required": "Öğe türü gerekli.", "type-required": "Öğe türü gerekli.",
"type-device": "Cihaz", "type-device": "Cihaz",
"type-devices": "Cihazlar", "type-devices": "Cihazlar",
"list-of-devices": "{ count, plural, 1 {Bir cihaz} other {# cihazın listesi} }", "list-of-devices": "{ count, plural, =1 {Bir cihaz} other {# cihazın listesi} }",
"device-name-starts-with": "İsimleri '{{prefix}}' ile başlayan cihazlar", "device-name-starts-with": "İsimleri '{{prefix}}' ile başlayan cihazlar",
"type-device-profile": "Cihaz profili", "type-device-profile": "Cihaz profili",
"type-device-profiles": "Cihaz profilleri", "type-device-profiles": "Cihaz profilleri",
"list-of-device-profiles": "{ count, plural, 1 {Bir cihaz profili} other {# cihaz profilinin listesi} }", "list-of-device-profiles": "{ count, plural, =1 {Bir cihaz profili} other {# cihaz profilinin listesi} }",
"device-profile-name-starts-with": "Adları '{{prefix}}' ile başlayan cihaz profilleri", "device-profile-name-starts-with": "Adları '{{prefix}}' ile başlayan cihaz profilleri",
"type-asset": "Varlık", "type-asset": "Varlık",
"type-assets": "Varlıklar", "type-assets": "Varlıklar",
"list-of-assets": "{ count, plural, 1 {Bir varlık} other {# Varlığın Listesi} }", "list-of-assets": "{ count, plural, =1 {Bir varlık} other {# Varlığın Listesi} }",
"asset-name-starts-with": "İsmi '{{prefix}}' ile başlayan varlıklar", "asset-name-starts-with": "İsmi '{{prefix}}' ile başlayan varlıklar",
"type-entity-view": "Varlık Görünümü", "type-entity-view": "Varlık Görünümü",
"type-entity-views": "Varlık Görünümleri", "type-entity-views": "Varlık Görünümleri",
"list-of-entity-views": "{ count, plural, 1 {Bir varlık görünümü} other {# varlık görüntüleme} } listesi", "list-of-entity-views": "{ count, plural, =1 {Bir varlık görünümü} other {# varlık görüntüleme} } listesi",
"entity-view-name-starts-with": "İsmi {{prefix}} ile başlayan varlık görünümleri", "entity-view-name-starts-with": "İsmi {{prefix}} ile başlayan varlık görünümleri",
"type-rule": "Kural", "type-rule": "Kural",
"type-rules": "Kurallar", "type-rules": "Kurallar",
"list-of-rules": "{ count, plural, 1 {Bir kural} other {# Kuralın Listesi} }", "list-of-rules": "{ count, plural, =1 {Bir kural} other {# Kuralın Listesi} }",
"rule-name-starts-with": "İsmi '{{prefix}}' ile başlayan kurallar", "rule-name-starts-with": "İsmi '{{prefix}}' ile başlayan kurallar",
"type-plugin": "Eklenti", "type-plugin": "Eklenti",
"type-plugins": "Eklentiler", "type-plugins": "Eklentiler",
"list-of-plugins": "{ count, plural, 1 {Bir eklenti} other {# Eklentinin Listesi} }", "list-of-plugins": "{ count, plural, =1 {Bir eklenti} other {# Eklentinin Listesi} }",
"plugin-name-starts-with": "İsmi '{{prefix}}' ile başlayan eklentiler", "plugin-name-starts-with": "İsmi '{{prefix}}' ile başlayan eklentiler",
"type-tenant": "Tenant", "type-tenant": "Tenant",
"type-tenants": "Tenantlar", "type-tenants": "Tenantlar",
"list-of-tenants": "{ count, plural, 1 {Bir tenant} other {# Tenantın Listesi} }", "list-of-tenants": "{ count, plural, =1 {Bir tenant} other {# Tenantın Listesi} }",
"tenant-name-starts-with": "İsmi '{{prefix}}' ile başlayan tenantlar", "tenant-name-starts-with": "İsmi '{{prefix}}' ile başlayan tenantlar",
"type-tenant-profile": "Tenant profili", "type-tenant-profile": "Tenant profili",
"type-tenant-profiles": "Tenant profilleri", "type-tenant-profiles": "Tenant profilleri",
"list-of-tenant-profiles": "{ count, plural, 1 {Bir tenant profili} other {# tenant profili listesi} }", "list-of-tenant-profiles": "{ count, plural, =1 {Bir tenant profili} other {# tenant profili listesi} }",
"tenant-profile-name-starts-with": "İsmi '{{prefix}}' ile başlayan tenant profilleri", "tenant-profile-name-starts-with": "İsmi '{{prefix}}' ile başlayan tenant profilleri",
"type-customer": "Kullanıcı Grubu", "type-customer": "Kullanıcı Grubu",
"type-customers": "Kullanıcı Grupları", "type-customers": "Kullanıcı Grupları",
"list-of-customers": "{ count, plural, 1 {Bir kullanıcı grubu} other {# kullanıcı grupları listesi} }", "list-of-customers": "{ count, plural, =1 {Bir kullanıcı grubu} other {# kullanıcı grupları listesi} }",
"customer-name-starts-with": "İsmi '{{prefix}}' ile başlayan kullanıcı grupları", "customer-name-starts-with": "İsmi '{{prefix}}' ile başlayan kullanıcı grupları",
"type-user": "Kullanıcı", "type-user": "Kullanıcı",
"type-users": "Kullanıcılar", "type-users": "Kullanıcılar",
"list-of-users": "{ count, plural, 1 {Bir kullanıcı} other {# kullanıcı listesi} }", "list-of-users": "{ count, plural, =1 {Bir kullanıcı} other {# kullanıcı listesi} }",
"user-name-starts-with": "İsmi '{{prefix}}' ile başlayan kullanıcılar", "user-name-starts-with": "İsmi '{{prefix}}' ile başlayan kullanıcılar",
"type-dashboard": "Gösterge Paneli", "type-dashboard": "Gösterge Paneli",
"type-dashboards": "Gösterge Panelleri", "type-dashboards": "Gösterge Panelleri",
"list-of-dashboards": "{ count, plural, 1 {Bir gösterge paneli} other {# gösterge paneli listesi} }", "list-of-dashboards": "{ count, plural, =1 {Bir gösterge paneli} other {# gösterge paneli listesi} }",
"dashboard-name-starts-with": "İsmi '{{prefix}}' ile başlayan gösterge panelleri", "dashboard-name-starts-with": "İsmi '{{prefix}}' ile başlayan gösterge panelleri",
"type-alarm": "Alarm", "type-alarm": "Alarm",
"type-alarms": "Alarmlar", "type-alarms": "Alarmlar",
"list-of-alarms": "{ count, plural, 1 {Bir alarm} other {# alarm listesi} }", "list-of-alarms": "{ count, plural, =1 {Bir alarm} other {# alarm listesi} }",
"alarm-name-starts-with": "İsmi '{{prefix}}' ile başlayan alarmlar", "alarm-name-starts-with": "İsmi '{{prefix}}' ile başlayan alarmlar",
"type-rulechain": "Kural zinciri", "type-rulechain": "Kural zinciri",
"type-rulechains": "Kural zincirleri", "type-rulechains": "Kural zincirleri",
"list-of-rulechains": "{ count, plural, 1 {Bir kural zinciri} other {# kural zinciri listesi} }", "list-of-rulechains": "{ count, plural, =1 {Bir kural zinciri} other {# kural zinciri listesi} }",
"rulechain-name-starts-with": "İsmi '{{prefix}}' ile başlayan kural zincirleri", "rulechain-name-starts-with": "İsmi '{{prefix}}' ile başlayan kural zincirleri",
"type-rulenode": "Kural düğümü", "type-rulenode": "Kural düğümü",
"type-rulenodes": "Kural düğümleri", "type-rulenodes": "Kural düğümleri",
"list-of-rulenodes": "{ count, plural, 1 {One rule node} other {List of # rule nodes} }", "list-of-rulenodes": "{ count, plural, =1 {One rule node} other {List of # rule nodes} }",
"rulenode-name-starts-with": "İsmi '{{prefix}}' ile başlayan kural düğümleri", "rulenode-name-starts-with": "İsmi '{{prefix}}' ile başlayan kural düğümleri",
"type-current-customer": "Aktif Kullanıcı Grubu", "type-current-customer": "Aktif Kullanıcı Grubu",
"type-current-tenant": "Aktif Tenant", "type-current-tenant": "Aktif Tenant",
"type-current-user": "Aktif Kullanıcı", "type-current-user": "Aktif Kullanıcı",
"type-current-user-owner": "Aktif Kullanıcı Sahibi", "type-current-user-owner": "Aktif Kullanıcı Sahibi",
"search": "Öğeleri ara", "search": "Öğeleri ara",
"selected-entities": "{ count, plural, 1 {1 öğe} other {# öğe} } seçildi", "selected-entities": "{ count, plural, =1 {1 öğe} other {# öğe} } seçildi",
"entity-name": "Öğe adı", "entity-name": "Öğe adı",
"entity-label": "Öğe etiketi", "entity-label": "Öğe etiketi",
"details": "Öğe detayları", "details": "Öğe detayları",
@ -1629,7 +1629,7 @@
"type-api-usage-state": "API Kullanım Durumu", "type-api-usage-state": "API Kullanım Durumu",
"type-edge": "Uç", "type-edge": "Uç",
"type-edges": "Uçlar", "type-edges": "Uçlar",
"list-of-edges": "{ count, plural, 1 {Bir uç} other {# uç listesi} }", "list-of-edges": "{ count, plural, =1 {Bir uç} other {# uç listesi} }",
"edge-name-starts-with": "İsmi '{{prefix}}' ile başlayan uçlar", "edge-name-starts-with": "İsmi '{{prefix}}' ile başlayan uçlar",
"type-tb-resource": "Kaynak", "type-tb-resource": "Kaynak",
"type-ota-package": "OTA paketi" "type-ota-package": "OTA paketi"
@ -1692,21 +1692,21 @@
"add-entity-view-text": "Yeni öğe görünümü ekle", "add-entity-view-text": "Yeni öğe görünümü ekle",
"delete": "Öğe görünümünü sil", "delete": "Öğe görünümünü sil",
"assign-entity-views": "Öğe görünümlerini ata", "assign-entity-views": "Öğe görünümlerini ata",
"assign-entity-views-text": "{ count, plural, 1 {1 öğe görünümünü} other {# öğe görünümünü} } kullanıcı grubuna ata", "assign-entity-views-text": "{ count, plural, =1 {1 öğe görünümünü} other {# öğe görünümünü} } kullanıcı grubuna ata",
"delete-entity-views": "Öğe görünümlerini sil", "delete-entity-views": "Öğe görünümlerini sil",
"unassign-from-customer": "Kullanıcı grubundan atamayı kaldır", "unassign-from-customer": "Kullanıcı grubundan atamayı kaldır",
"unassign-entity-views": "Öğe görünümlerinin atamasını kaldır", "unassign-entity-views": "Öğe görünümlerinin atamasını kaldır",
"unassign-entity-views-action-title": "{ count, plural, 1 {1 öğe görünümünü} other {# öğe görünümünü} } kullanıcı grubundan kaldır", "unassign-entity-views-action-title": "{ count, plural, =1 {1 öğe görünümünü} other {# öğe görünümünü} } kullanıcı grubundan kaldır",
"assign-new-entity-view": "Yeni öğe görünümü ata", "assign-new-entity-view": "Yeni öğe görünümü ata",
"delete-entity-view-title": "'{{entityViewName}}' öğe görünümünü silmek istediğinizden emin misiniz?", "delete-entity-view-title": "'{{entityViewName}}' öğe görünümünü silmek istediğinizden emin misiniz?",
"delete-entity-view-text": "Dikkatli olun, onaydan sonra öğe görünümü ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-entity-view-text": "Dikkatli olun, onaydan sonra öğe görünümü ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"delete-entity-views-title": "{ count, plural, 1 {1 öğe görünümünü} other {# öğe görünümünü} } silmek istediğinizden emin misiniz?", "delete-entity-views-title": "{ count, plural, =1 {1 öğe görünümünü} other {# öğe görünümünü} } silmek istediğinizden emin misiniz?",
"delete-entity-views-action-title": "{ count, plural, 1 {1 öğe görünümünü} other {# öğe görünümünü} } sil", "delete-entity-views-action-title": "{ count, plural, =1 {1 öğe görünümünü} other {# öğe görünümünü} } sil",
"delete-entity-views-text": "Dikkatli olun, onaydan sonra seçilen tüm öğe görünümleri kaldırılacak ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-entity-views-text": "Dikkatli olun, onaydan sonra seçilen tüm öğe görünümleri kaldırılacak ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"unassign-entity-view-title": "'{{entityViewName}}' öğe görünümünün atamasını kaldırmak istediğinizden emin misiniz?", "unassign-entity-view-title": "'{{entityViewName}}' öğe görünümünün atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-entity-view-text": "Onaydan sonra öğe görünümünün ataması kaldırılacak ve müşteri tarafından erişilebilir olmayacaktır.", "unassign-entity-view-text": "Onaydan sonra öğe görünümünün ataması kaldırılacak ve müşteri tarafından erişilebilir olmayacaktır.",
"unassign-entity-view": "Öğe görünümünün atamasını kaldır", "unassign-entity-view": "Öğe görünümünün atamasını kaldır",
"unassign-entity-views-title": "{ count, plural, 1 {1 öğe görünümünün} other {# öğe görünümünün} } atamasını kaldırmak istediğinizden emin misiniz?", "unassign-entity-views-title": "{ count, plural, =1 {1 öğe görünümünün} other {# öğe görünümünün} } atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-entity-views-text": "Onaydan sonra, seçilen tüm öğe görünümlerinin ataması kaldırılacak ve kullanıcı grubu tarafından erişilebilir olmayacaktır.", "unassign-entity-views-text": "Onaydan sonra, seçilen tüm öğe görünümlerinin ataması kaldırılacak ve kullanıcı grubu tarafından erişilebilir olmayacaktır.",
"entity-view-type": "Öğe Görünümü türü", "entity-view-type": "Öğe Görünümü türü",
"entity-view-type-required": "Öğe Görünümü türü gerekli.", "entity-view-type-required": "Öğe Görünümü türü gerekli.",
@ -1756,9 +1756,9 @@
"assign-entity-view-to-edge-text": "Lütfen uca atanacak öğe görünümlerini seçin", "assign-entity-view-to-edge-text": "Lütfen uca atanacak öğe görünümlerini seçin",
"unassign-entity-view-from-edge-title": "'{{entityViewName}}' öğe görünümünün atamasını kaldırmak istediğinizden emin misiniz?", "unassign-entity-view-from-edge-title": "'{{entityViewName}}' öğe görünümünün atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-entity-view-from-edge-text": "Onaydan sonra öğe görünümünün ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır.", "unassign-entity-view-from-edge-text": "Onaydan sonra öğe görünümünün ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır.",
"unassign-entity-views-from-edge-action-title": "{ count, plural, 1 {1 öğe görünümünü} other {# öğe görünümünü} } uçtan kaldır", "unassign-entity-views-from-edge-action-title": "{ count, plural, =1 {1 öğe görünümünü} other {# öğe görünümünü} } uçtan kaldır",
"unassign-entity-view-from-edge": "Öğe görünümünün atamasını kaldır", "unassign-entity-view-from-edge": "Öğe görünümünün atamasını kaldır",
"unassign-entity-views-from-edge-title": "{ count, plural, 1 {1 öğe görünümünün} other {# öğe görünümünün} } atamasını kaldırmak istediğinizden emin misiniz?", "unassign-entity-views-from-edge-title": "{ count, plural, =1 {1 öğe görünümünün} other {# öğe görünümünün} } atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-entity-views-from-edge-text": "Onaydan sonra, seçilen tüm öğe görünümlerinin ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır." "unassign-entity-views-from-edge-text": "Onaydan sonra, seçilen tüm öğe görünümlerinin ataması kaldırılacak ve uç tarafından erişilebilir olmayacaktır."
}, },
"event": { "event": {
@ -1799,7 +1799,7 @@
}, },
"extension": { "extension": {
"extensions": "Uzantılar", "extensions": "Uzantılar",
"selected-extensions": "{ count, plural, 1 {1 uzantı} other {# uzantı} } seçildi", "selected-extensions": "{ count, plural, =1 {1 uzantı} other {# uzantı} } seçildi",
"type": "Tür", "type": "Tür",
"key": "Anahtar", "key": "Anahtar",
"value": "Değer", "value": "Değer",
@ -1813,7 +1813,7 @@
"edit": "Uzantıyı düzenle", "edit": "Uzantıyı düzenle",
"delete-extension-title": "'{{extensionId}}' uzantısını silmek istediğinizden emin misiniz?", "delete-extension-title": "'{{extensionId}}' uzantısını silmek istediğinizden emin misiniz?",
"delete-extension-text": "Dikkatli olun, onaydan sonra uzantı ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-extension-text": "Dikkatli olun, onaydan sonra uzantı ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"delete-extensions-title": "{ count, plural, 1 {1 uzantıyı} other {# uzantıyı} } silmek istediğinizden emin misiniz?", "delete-extensions-title": "{ count, plural, =1 {1 uzantıyı} other {# uzantıyı} } silmek istediğinizden emin misiniz?",
"delete-extensions-text": "Dikkatli olun, onaydan sonra seçilen tüm uzantılar kaldırılacaktır.", "delete-extensions-text": "Dikkatli olun, onaydan sonra seçilen tüm uzantılar kaldırılacaktır.",
"converters": "Çeviriciler", "converters": "Çeviriciler",
"converter-id": "Çevirici ID", "converter-id": "Çevirici ID",
@ -2130,8 +2130,8 @@
"grid": { "grid": {
"delete-item-title": "Bu öğeyi silmek istediğinizden emin misiniz?", "delete-item-title": "Bu öğeyi silmek istediğinizden emin misiniz?",
"delete-item-text": "Dikkatli olun, onaylandıktan sonra bu öğe ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-item-text": "Dikkatli olun, onaylandıktan sonra bu öğe ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"delete-items-title": "{ count, plural, 1 {1 öğeyi} other {# öğeyi} } silmek istediğinizden emin misiniz??", "delete-items-title": "{ count, plural, =1 {1 öğeyi} other {# öğeyi} } silmek istediğinizden emin misiniz??",
"delete-items-action-title": "{ count, plural, 1 {1 öğeyi} other {# öğeyi} } sil", "delete-items-action-title": "{ count, plural, =1 {1 öğeyi} other {# öğeyi} } sil",
"delete-items-text": "Dikkatli olun, onaydan sonra seçilen tüm öğeler kaldırılacak ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-items-text": "Dikkatli olun, onaydan sonra seçilen tüm öğeler kaldırılacak ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"add-item-text": "Yeni öğe ekle", "add-item-text": "Yeni öğe ekle",
"no-items-text": "Hiç bir öğe bulunamadı", "no-items-text": "Hiç bir öğe bulunamadı",
@ -2271,8 +2271,8 @@
"checksum-hint": "Checksum boşsa, otomatik olarak oluşturulur", "checksum-hint": "Checksum boşsa, otomatik olarak oluşturulur",
"checksum-algorithm": "Checksum algoritması", "checksum-algorithm": "Checksum algoritması",
"checksum-copied-message": "Paket checksum panoya kopyalandı", "checksum-copied-message": "Paket checksum panoya kopyalandı",
"change-firmware": "Firmware değişikliği { count, plural, 1 {1 cihazın} other {# cihazın} } güncellenmesine neden olabilir.", "change-firmware": "Firmware değişikliği { count, plural, =1 {1 cihazın} other {# cihazın} } güncellenmesine neden olabilir.",
"change-software": "Software değişikliği { count, plural, 1 {1 cihazın} other {# cihazın} }.", "change-software": "Software değişikliği { count, plural, =1 {1 cihazın} other {# cihazın} }.",
"chose-compatible-device-profile": "Yüklenen paket yalnızca seçilen profile sahip cihazlar için geçerli olacaktır.", "chose-compatible-device-profile": "Yüklenen paket yalnızca seçilen profile sahip cihazlar için geçerli olacaktır.",
"chose-firmware-distributed-device": "Cihazlara dağıtılacak firmware'i seçin", "chose-firmware-distributed-device": "Cihazlara dağıtılacak firmware'i seçin",
"chose-software-distributed-device": "Cihazlara dağıtılacak software'i seçin", "chose-software-distributed-device": "Cihazlara dağıtılacak software'i seçin",
@ -2285,7 +2285,7 @@
"delete-ota-update-text": "Dikkatli olun, onaydan sonra OTA güncellemesi kurtarılamaz hale gelecektir.", "delete-ota-update-text": "Dikkatli olun, onaydan sonra OTA güncellemesi kurtarılamaz hale gelecektir.",
"delete-ota-update-title": "'{{title}}' OTA güncellemesini silmek istediğinizden emin misiniz?", "delete-ota-update-title": "'{{title}}' OTA güncellemesini silmek istediğinizden emin misiniz?",
"delete-ota-updates-text": "Dikkatli olun, onaydan sonra seçilen tüm OTA güncellemeleri kaldırılacaktır.", "delete-ota-updates-text": "Dikkatli olun, onaydan sonra seçilen tüm OTA güncellemeleri kaldırılacaktır.",
"delete-ota-updates-title": "{ count, plural, 1 {1 OTA güncellemesini} other {# OTA güncellemesini} } silmek istediğinizden emin misiniz?", "delete-ota-updates-title": "{ count, plural, =1 {1 OTA güncellemesini} other {# OTA güncellemesini} } silmek istediğinizden emin misiniz?",
"description": "Açıklama", "description": "Açıklama",
"direct-url": "Açık URL", "direct-url": "Açık URL",
"direct-url-copied-message": "Paket açık URL'si panoya kopyalandı", "direct-url-copied-message": "Paket açık URL'si panoya kopyalandı",
@ -2307,7 +2307,7 @@
"package-type": "Paket Tipi", "package-type": "Paket Tipi",
"packages-repository": "Paket deposu", "packages-repository": "Paket deposu",
"search": "Paketleri ara", "search": "Paketleri ara",
"selected-package": "{ count, plural, 1 {1 paket} other {# paket} } seçildi", "selected-package": "{ count, plural, =1 {1 paket} other {# paket} } seçildi",
"title": "Başlık", "title": "Başlık",
"title-required": "Başlık gerekli.", "title-required": "Başlık gerekli.",
"types": { "types": {
@ -2347,7 +2347,7 @@
}, },
"from-relations": "Giden ilişkiler", "from-relations": "Giden ilişkiler",
"to-relations": "Gelen ilişkiler", "to-relations": "Gelen ilişkiler",
"selected-relations": "{ count, plural, 1 {1 ilişki} other {# ilişki} } seçildi", "selected-relations": "{ count, plural, =1 {1 ilişki} other {# ilişki} } seçildi",
"type": "Tür", "type": "Tür",
"to-entity-type": "Hedef Öğe Türü", "to-entity-type": "Hedef Öğe Türü",
"to-entity-name": "Hedef Öğe Adı", "to-entity-name": "Hedef Öğe Adı",
@ -2363,11 +2363,11 @@
"edit": "İlişki düzenle", "edit": "İlişki düzenle",
"delete-to-relation-title": "'{{entityName}}' öğesine olan ilişkiyi silmek istediğinize emin misiniz?", "delete-to-relation-title": "'{{entityName}}' öğesine olan ilişkiyi silmek istediğinize emin misiniz?",
"delete-to-relation-text": "UYARI: Onaylandıktan sonra '{{entityName}}' öğesinin şimdiki öğeyle olan ilişkisi sona erecektir.", "delete-to-relation-text": "UYARI: Onaylandıktan sonra '{{entityName}}' öğesinin şimdiki öğeyle olan ilişkisi sona erecektir.",
"delete-to-relations-title": "{ count, plural, 1 {1 ilişkiyi} other {# ilişkiyi} } silmek istediğinize emin misiniz?", "delete-to-relations-title": "{ count, plural, =1 {1 ilişkiyi} other {# ilişkiyi} } silmek istediğinize emin misiniz?",
"delete-to-relations-text": "UYARI: Onaylandıktan sonra tüm seçili ilişkiler kaldırılacaktır ve ilgili öğelerin şimdiki öğeyle ilişkisi sona erecektir.", "delete-to-relations-text": "UYARI: Onaylandıktan sonra tüm seçili ilişkiler kaldırılacaktır ve ilgili öğelerin şimdiki öğeyle ilişkisi sona erecektir.",
"delete-from-relation-title": "'{{entityName}}' öğesinden ilişkiyi silmek istediğinize emin misiniz?", "delete-from-relation-title": "'{{entityName}}' öğesinden ilişkiyi silmek istediğinize emin misiniz?",
"delete-from-relation-text": "UYARI: Onaylandıktan sonra şimdiki öğenin '{{entityName}}' öğesiyle ilişkisi sonlandırılacaktır.", "delete-from-relation-text": "UYARI: Onaylandıktan sonra şimdiki öğenin '{{entityName}}' öğesiyle ilişkisi sonlandırılacaktır.",
"delete-from-relations-title": "{ count, plural, 1 {1 ilişkiyi} other {# ilişkiyi} } silmek istediğinize emin misiniz?", "delete-from-relations-title": "{ count, plural, =1 {1 ilişkiyi} other {# ilişkiyi} } silmek istediğinize emin misiniz?",
"delete-from-relations-text": "UYARI: Onaylandıktan sonra tüm seçili ilişkiler kaldırılacak ve şimdiki öğenin ilgili tüm öğelerle ilişkisi sona erecektir.", "delete-from-relations-text": "UYARI: Onaylandıktan sonra tüm seçili ilişkiler kaldırılacak ve şimdiki öğenin ilgili tüm öğelerle ilişkisi sona erecektir.",
"remove-relation-filter": "İlişki filtresini kaldır", "remove-relation-filter": "İlişki filtresini kaldır",
"add-relation-filter": "İlişkisi ekle", "add-relation-filter": "İlişkisi ekle",
@ -2383,9 +2383,9 @@
"delete": "Kaynağı sil", "delete": "Kaynağı sil",
"delete-resource-text": "Dikkatli olun, onaydan sonra kaynak kurtarılamaz hale gelecektir..", "delete-resource-text": "Dikkatli olun, onaydan sonra kaynak kurtarılamaz hale gelecektir..",
"delete-resource-title": "'{{resourceTitle}}' kaynağını silmek istediğinizden emin misiniz?", "delete-resource-title": "'{{resourceTitle}}' kaynağını silmek istediğinizden emin misiniz?",
"delete-resources-action-title": "{ count, plural, 1 {1 kaynağı} other {# kaynağı} } sil", "delete-resources-action-title": "{ count, plural, =1 {1 kaynağı} other {# kaynağı} } sil",
"delete-resources-text": "Lütfen seçilen kaynakların cihaz profillerinde kullanılsalar bile silineceğini unutmayın.", "delete-resources-text": "Lütfen seçilen kaynakların cihaz profillerinde kullanılsalar bile silineceğini unutmayın.",
"delete-resources-title": "{ count, plural, 1 {1 kaynağı} other {# kaynağı} } silmek istediğinizden emin misiniz?", "delete-resources-title": "{ count, plural, =1 {1 kaynağı} other {# kaynağı} } silmek istediğinizden emin misiniz?",
"download": "Kaynağı indir", "download": "Kaynağı indir",
"drop-file": "Bir kaynak dosyası bırakın veya yüklenecek dosyayı seçmek için tıklayın.", "drop-file": "Bir kaynak dosyası bırakın veya yüklenecek dosyayı seçmek için tıklayın.",
"empty": "Kaynak boş", "empty": "Kaynak boş",
@ -2399,7 +2399,7 @@
"resource-type": "Kaynak türü", "resource-type": "Kaynak türü",
"resources-library": "Kaynak kütüphanesi", "resources-library": "Kaynak kütüphanesi",
"search": "Kaynak ara", "search": "Kaynak ara",
"selected-resources": "{ count, plural, 1 {1 kaynak} other {# kaynak} } seçildi", "selected-resources": "{ count, plural, =1 {1 kaynak} other {# kaynak} } seçildi",
"system": "Sistem", "system": "Sistem",
"title": "Başlık", "title": "Başlık",
"title-required": "Başlık gerekli." "title-required": "Başlık gerekli."
@ -2418,8 +2418,8 @@
"set-root-rulechain-text": "Onaydan sonra kural zinciri kökleşecek ve gelen tüm iletilerle ilgilenecek.", "set-root-rulechain-text": "Onaydan sonra kural zinciri kökleşecek ve gelen tüm iletilerle ilgilenecek.",
"delete-rulechain-title": "'{{ruleName}}' isimli kuralı silmek istediğinize emin misiniz?", "delete-rulechain-title": "'{{ruleName}}' isimli kuralı silmek istediğinize emin misiniz?",
"delete-rulechain-text": "UYARI: Onaylandıktan sonra kural ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.", "delete-rulechain-text": "UYARI: Onaylandıktan sonra kural ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.",
"delete-rulechains-title": "{ count, plural, 1 {1 kuralı} other {# kuralı} } sikmek istediğinize emin misiniz?", "delete-rulechains-title": "{ count, plural, =1 {1 kuralı} other {# kuralı} } sikmek istediğinize emin misiniz?",
"delete-rulechains-action-title": "{ count, plural, 1 {1 kuralı} other {# kuralı} } sil", "delete-rulechains-action-title": "{ count, plural, =1 {1 kuralı} other {# kuralı} } sil",
"delete-rulechains-text": "UYARI: Onaylandıktan sonra seçili tüm kurallar ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.", "delete-rulechains-text": "UYARI: Onaylandıktan sonra seçili tüm kurallar ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.",
"add-rulechain-text": "Yeni kural ekle", "add-rulechain-text": "Yeni kural ekle",
"no-rulechains-text": "Hiçbir kural bulunamadı", "no-rulechains-text": "Hiçbir kural bulunamadı",
@ -2441,14 +2441,14 @@
"management": "Kural yönetimi", "management": "Kural yönetimi",
"debug-mode": "Hata ayıklama modu", "debug-mode": "Hata ayıklama modu",
"search": "Kural Ara", "search": "Kural Ara",
"selected-rulechains": "{ count, plural, 1 {1 kural} other {# kural} } seçildi", "selected-rulechains": "{ count, plural, =1 {1 kural} other {# kural} } seçildi",
"open-rulechain": "Kuralı Aç", "open-rulechain": "Kuralı Aç",
"assign-new-rulechain": "Yeni kural zinciri atayın", "assign-new-rulechain": "Yeni kural zinciri atayın",
"edge-template-root": "Şablon Kökü", "edge-template-root": "Şablon Kökü",
"assign-to-edge": "Uca Ata", "assign-to-edge": "Uca Ata",
"edge-rulechain": "Uç kuralı zinciri", "edge-rulechain": "Uç kuralı zinciri",
"unassign-rulechain-from-edge-text": "Onaydan sonra kural zincirinin ataması kaldırılacak ve kenar tarafından erişilebilir olmayacak.", "unassign-rulechain-from-edge-text": "Onaydan sonra kural zincirinin ataması kaldırılacak ve kenar tarafından erişilebilir olmayacak.",
"unassign-rulechains-from-edge-title": "{ count, plural, 1 {1 kural zincirinin} other {# kural zincirinin} } atamasını kaldırmak istediğinizden emin misiniz?", "unassign-rulechains-from-edge-title": "{ count, plural, =1 {1 kural zincirinin} other {# kural zincirinin} } atamasını kaldırmak istediğinizden emin misiniz?",
"unassign-rulechains-from-edge-text": "Onaydan sonra, seçilen tüm kural zincirlerinin ataması kaldırılacak ve uç tarafından erişilemeyecek.", "unassign-rulechains-from-edge-text": "Onaydan sonra, seçilen tüm kural zincirlerinin ataması kaldırılacak ve uç tarafından erişilemeyecek.",
"assign-rulechain-to-edge-title": "Uca Kural Zinciri/Zincirleri Ata", "assign-rulechain-to-edge-title": "Uca Kural Zinciri/Zincirleri Ata",
"assign-rulechain-to-edge-text": "Lütfen uca atanacak kural zincirlerini seçin", "assign-rulechain-to-edge-text": "Lütfen uca atanacak kural zincirlerini seçin",
@ -2554,8 +2554,8 @@
"tenant-details": "Tenant detayları", "tenant-details": "Tenant detayları",
"delete-tenant-title": "'{{tenantTitle}}' isimli tenantı silmek istediğinize emin misiniz?", "delete-tenant-title": "'{{tenantTitle}}' isimli tenantı silmek istediğinize emin misiniz?",
"delete-tenant-text": "UYARI: Onaylandıktan sonra tenant ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.", "delete-tenant-text": "UYARI: Onaylandıktan sonra tenant ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.",
"delete-tenants-title": "{ count, plural, 1 {1 tenantı} other {# tenantı} } silmek istediğinize emin misiniz?", "delete-tenants-title": "{ count, plural, =1 {1 tenantı} other {# tenantı} } silmek istediğinize emin misiniz?",
"delete-tenants-action-title": "{ count, plural, 1 {1 tenantı} other {# tenantı} } sil", "delete-tenants-action-title": "{ count, plural, =1 {1 tenantı} other {# tenantı} } sil",
"delete-tenants-text": "UYARI: Onaylandıktan sonra seçili tüm tenantlar ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir", "delete-tenants-text": "UYARI: Onaylandıktan sonra seçili tüm tenantlar ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir",
"title": "Başlık", "title": "Başlık",
"title-required": "Başlık gerekli.", "title-required": "Başlık gerekli.",
@ -2568,7 +2568,7 @@
"no-tenants-matching": "'{{entity}}' ile eşleşen tenant bulunamadı.", "no-tenants-matching": "'{{entity}}' ile eşleşen tenant bulunamadı.",
"tenant-required": "Tenant gerekli", "tenant-required": "Tenant gerekli",
"search": "Tenantları ara", "search": "Tenantları ara",
"selected-tenants": "{ count, plural, 1 {1 tenant} other {# tenant} } seçildi", "selected-tenants": "{ count, plural, =1 {1 tenant} other {# tenant} } seçildi",
"isolated-tb-rule-engine": "ThingsBoard soyutlanmış kural yönetimi konteynerda işlensin", "isolated-tb-rule-engine": "ThingsBoard soyutlanmış kural yönetimi konteynerda işlensin",
"isolated-tb-rule-engine-details": "Her soyutlanmış tenant ayrı bir mikro servis gerektirir" "isolated-tb-rule-engine-details": "Her soyutlanmış tenant ayrı bir mikro servis gerektirir"
}, },
@ -2580,7 +2580,7 @@
"tenant-profile-details": "Tenant profili ayrıntıları", "tenant-profile-details": "Tenant profili ayrıntıları",
"no-tenant-profiles-text": "Tenant profili bulunamadı", "no-tenant-profiles-text": "Tenant profili bulunamadı",
"search": "Tenant profillerini ara", "search": "Tenant profillerini ara",
"selected-tenant-profiles": "{ count, plural, 1 {1 tenant profili} other {# tenant profili} } seçildi", "selected-tenant-profiles": "{ count, plural, =1 {1 tenant profili} other {# tenant profili} } seçildi",
"no-tenant-profiles-matching": "'{{entity}}' ile eşleşen tenant profili bulunamadı.", "no-tenant-profiles-matching": "'{{entity}}' ile eşleşen tenant profili bulunamadı.",
"tenant-profile-required": "Tenant profili gerekli", "tenant-profile-required": "Tenant profili gerekli",
"idCopiedMessage": "Tenant profili kimliği panoya kopyalandı", "idCopiedMessage": "Tenant profili kimliği panoya kopyalandı",
@ -2595,7 +2595,7 @@
"default": "Varsayılan", "default": "Varsayılan",
"delete-tenant-profile-title": "'{{tenantProfileName}}' tenant profilini silmek istediğinizden emin misiniz?", "delete-tenant-profile-title": "'{{tenantProfileName}}' tenant profilini silmek istediğinizden emin misiniz?",
"delete-tenant-profile-text": "Dikkatli olun, onaydan sonra tenant profili ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-tenant-profile-text": "Dikkatli olun, onaydan sonra tenant profili ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"delete-tenant-profiles-title": "{ count, plural, 1 {1 tenant profilini} other {# tenant profilini} } silmek istediğinizden emin misiniz?", "delete-tenant-profiles-title": "{ count, plural, =1 {1 tenant profilini} other {# tenant profilini} } silmek istediğinizden emin misiniz?",
"delete-tenant-profiles-text": "Dikkatli olun, onaydan sonra seçilen tüm tenant profilleri kaldırılacak ve ilgili tüm veriler kurtarılamaz hale gelecektir.", "delete-tenant-profiles-text": "Dikkatli olun, onaydan sonra seçilen tüm tenant profilleri kaldırılacak ve ilgili tüm veriler kurtarılamaz hale gelecektir.",
"set-default-tenant-profile-title": "Tenant profilini '{{tenantProfileName}}' varsayılan yapmak istediğinizden emin misiniz?", "set-default-tenant-profile-title": "Tenant profilini '{{tenantProfileName}}' varsayılan yapmak istediğinizden emin misiniz?",
"set-default-tenant-profile-text": "Onaydan sonra tenant profili varsayılan olarak işaretlenecek ve profili belirtilmemiş yeni tenantlar için kullanılacaktır.", "set-default-tenant-profile-text": "Onaydan sonra tenant profili varsayılan olarak işaretlenecek ve profili belirtilmemiş yeni tenantlar için kullanılacaktır.",
@ -2675,10 +2675,10 @@
"max-created-alarms-range": "Oluşturulan maksimum alarm sayısı negatif olamaz" "max-created-alarms-range": "Oluşturulan maksimum alarm sayısı negatif olamaz"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 saniye} other {# saniye} }", "seconds-interval": "{ seconds, plural, =1 {1 saniye} other {# saniye} }",
"minutes-interval": "{ minutes, plural, 1 {1 dakika} other {# dakika} }", "minutes-interval": "{ minutes, plural, =1 {1 dakika} other {# dakika} }",
"hours-interval": "{ hours, plural, 1 {1 saat} other {# saat} }", "hours-interval": "{ hours, plural, =1 {1 saat} other {# saat} }",
"days-interval": "{ days, plural, 1 {1 gün} other {# gün} }", "days-interval": "{ days, plural, =1 {1 gün} other {# gün} }",
"days": "Gün", "days": "Gün",
"hours": "Saat", "hours": "Saat",
"minutes": "Dakika", "minutes": "Dakika",
@ -2713,10 +2713,10 @@
"days": "Gün" "days": "Gün"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { gün } other {# gün } }", "days": "{ days, plural, =1 { gün } other {# gün } }",
"hours": "{ hours, plural, 0 { saat } 1 {1 saat } other {# saat } }", "hours": "{ hours, plural, =0 { saat } =1 {1 saat } other {# saat } }",
"minutes": "{ minutes, plural, 0 { dakika } 1 {1 dakika } other {# dakika } }", "minutes": "{ minutes, plural, =0 { dakika } =1 {1 dakika } other {# dakika } }",
"seconds": "{ seconds, plural, 0 { saniye } 1 {1 saniye } other {# saniye } }", "seconds": "{ seconds, plural, =0 { saniye } =1 {1 saniye } other {# saniye } }",
"realtime": "Gerçek zaman", "realtime": "Gerçek zaman",
"history": "Tarih", "history": "Tarih",
"last-prefix": "son", "last-prefix": "son",
@ -2744,8 +2744,8 @@
"user-details": "Kullanıcı detayları", "user-details": "Kullanıcı detayları",
"delete-user-title": "'{{userEmail}}' kullanıcısını silmek istediğinize emin misiniz?", "delete-user-title": "'{{userEmail}}' kullanıcısını silmek istediğinize emin misiniz?",
"delete-user-text": "UYARI: Onaylandıktan sonra kullanıcı ve ilişkili tüm verileri geri yüklenemez şekilde silinecektir.", "delete-user-text": "UYARI: Onaylandıktan sonra kullanıcı ve ilişkili tüm verileri geri yüklenemez şekilde silinecektir.",
"delete-users-title": "{ count, plural, 1 {1 kullanıcıyı} other {# kullanıcıyı} } sikmek istediğinize emin misiniz?", "delete-users-title": "{ count, plural, =1 {1 kullanıcıyı} other {# kullanıcıyı} } sikmek istediğinize emin misiniz?",
"delete-users-action-title": "{ count, plural, 1 {1 kullancıyı} other {# kullanıcıyı} } sil", "delete-users-action-title": "{ count, plural, =1 {1 kullancıyı} other {# kullanıcıyı} } sil",
"delete-users-text": "UYARI: Onaylandıktan sonra kullanıcı ve ilişkili tüm verileri geri yüklenemez şekilde silinecektir.", "delete-users-text": "UYARI: Onaylandıktan sonra kullanıcı ve ilişkili tüm verileri geri yüklenemez şekilde silinecektir.",
"activation-email-sent-message": "Etkinleştirme e-postası başarılı bir şekilde gönderildi!", "activation-email-sent-message": "Etkinleştirme e-postası başarılı bir şekilde gönderildi!",
"resend-activation": "Etkinleştirme e-postasını yeniden gönder", "resend-activation": "Etkinleştirme e-postasını yeniden gönder",
@ -2771,7 +2771,7 @@
"login-as-tenant-admin": "Tenant Yönetici Girişi", "login-as-tenant-admin": "Tenant Yönetici Girişi",
"login-as-customer-user": "Kullanıcı olarak giriş yap", "login-as-customer-user": "Kullanıcı olarak giriş yap",
"search": "Kullanıcı ara", "search": "Kullanıcı ara",
"selected-users": "{ count, plural, 1 {1 kullanıcı} other {# kullanıcı} } seçildi", "selected-users": "{ count, plural, =1 {1 kullanıcı} other {# kullanıcı} } seçildi",
"disable-account": "Kullanıcı Hesabını Devre Dışı Bırak", "disable-account": "Kullanıcı Hesabını Devre Dışı Bırak",
"enable-account": "Kullanıcı Hesabını Etkinleştir", "enable-account": "Kullanıcı Hesabını Etkinleştir",
"enable-account-message": "Kullanıcı hesabı başarıyla etkinleştirildi!", "enable-account-message": "Kullanıcı hesabı başarıyla etkinleştirildi!",
@ -2910,8 +2910,8 @@
"widgets-bundle-details": "Gösterge paketi detayları", "widgets-bundle-details": "Gösterge paketi detayları",
"delete-widgets-bundle-title": "'{{widgetsBundleTitle}}' isimli gösterge paketini silmek istediğinize emin misiniz?", "delete-widgets-bundle-title": "'{{widgetsBundleTitle}}' isimli gösterge paketini silmek istediğinize emin misiniz?",
"delete-widgets-bundle-text": "UYARI: Onaylandıktan sonra gösterge paketi ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.", "delete-widgets-bundle-text": "UYARI: Onaylandıktan sonra gösterge paketi ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.",
"delete-widgets-bundles-title": "{ count, plural, 1 {1 gösterge paketini} other {# gösterge paketini} } silmek istediğinize emin misiniz?", "delete-widgets-bundles-title": "{ count, plural, =1 {1 gösterge paketini} other {# gösterge paketini} } silmek istediğinize emin misiniz?",
"delete-widgets-bundles-action-title": "{ count, plural, 1 {1 gösterge paketini} other {# gösterge paketini} } sil", "delete-widgets-bundles-action-title": "{ count, plural, =1 {1 gösterge paketini} other {# gösterge paketini} } sil",
"delete-widgets-bundles-text": "UYARI: Onaylandıktan sonra seçili tüm gösterge paketleri ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.", "delete-widgets-bundles-text": "UYARI: Onaylandıktan sonra seçili tüm gösterge paketleri ve ilişkili tüm veriler geri yüklenemez şekilde silinecektir.",
"no-widgets-bundles-matching": "'{{widgetsBundle}}' ile eşleşen gösterge paketi bulunamadı.", "no-widgets-bundles-matching": "'{{widgetsBundle}}' ile eşleşen gösterge paketi bulunamadı.",
"widgets-bundle-required": "Gösterge paketi gerekli.", "widgets-bundle-required": "Gösterge paketi gerekli.",
@ -2923,7 +2923,7 @@
"widgets-bundle-file": "Gösterge paketi dosyası", "widgets-bundle-file": "Gösterge paketi dosyası",
"invalid-widgets-bundle-file-error": "Gösterge paketi içe aktarılamadı: Geçersiz gösterge paketi veri yapısı.", "invalid-widgets-bundle-file-error": "Gösterge paketi içe aktarılamadı: Geçersiz gösterge paketi veri yapısı.",
"search": "Gösterge paketi ara", "search": "Gösterge paketi ara",
"selected-widgets-bundles": "{ count, plural, 1 {1 gösterge paketi} other {# gösterge paketi} } seçildi", "selected-widgets-bundles": "{ count, plural, =1 {1 gösterge paketi} other {# gösterge paketi} } seçildi",
"open-widgets-bundle": "Gösterge paketlerini aç", "open-widgets-bundle": "Gösterge paketlerini aç",
"loading-widgets-bundles": "Gösterge paketleri yükleniyor..." "loading-widgets-bundles": "Gösterge paketleri yükleniyor..."
}, },
@ -2954,7 +2954,7 @@
"display-timewindow": "Zaman penceresini göster", "display-timewindow": "Zaman penceresini göster",
"display-legend": "Lejant göster", "display-legend": "Lejant göster",
"datasources": "Veri kaynakları", "datasources": "Veri kaynakları",
"maximum-datasources": "En fazla { count, plural, 1 {1 veri kaynağı kullanılabilir.} other {# veri kaynağı kullanılabilir} }", "maximum-datasources": "En fazla { count, plural, =1 {1 veri kaynağı kullanılabilir.} other {# veri kaynağı kullanılabilir} }",
"datasource-type": "Tür", "datasource-type": "Tür",
"datasource-parameters": "Parametreler", "datasource-parameters": "Parametreler",
"remove-datasource": "Veri kaynağını kaldır", "remove-datasource": "Veri kaynağını kaldır",

192
ui-ngx/src/assets/locale/locale.constant-uk_UA.json

@ -192,17 +192,17 @@
"acknowledge": "Прийняти", "acknowledge": "Прийняти",
"clear": "Деактивувати", "clear": "Деактивувати",
"search": "Шукати сигнали тривоги", "search": "Шукати сигнали тривоги",
"selected-alarms": "{ count, plural, 1 {1 сигнал тривоги} other {# сигнали тривоги} } вибрані", "selected-alarms": "{ count, plural, =1 {1 сигнал тривоги} other {# сигнали тривоги} } вибрані",
"no-data": "Немає даних для відображення", "no-data": "Немає даних для відображення",
"polling-interval": "Інтервал опитування (сек)", "polling-interval": "Інтервал опитування (сек)",
"polling-interval-required": "Необхідно задати інтервал опитування.", "polling-interval-required": "Необхідно задати інтервал опитування.",
"min-polling-interval-message": "Дозволяється щонайменше 1 секунда інтервалу очікування.", "min-polling-interval-message": "Дозволяється щонайменше 1 секунда інтервалу очікування.",
"aknowledge-alarms-title": "Підтвердити { count, plural, 1 {1 сигнал тривоги} other {# сигнали тривоги} }", "aknowledge-alarms-title": "Підтвердити { count, plural, =1 {1 сигнал тривоги} other {# сигнали тривоги} }",
"aknowledge-alarms-text": "Ви впевнені, що хочете підтвердити { count, plural, 1 {1 сигнал тривоги} other {# сигнали тривоги} }?", "aknowledge-alarms-text": "Ви впевнені, що хочете підтвердити { count, plural, =1 {1 сигнал тривоги} other {# сигнали тривоги} }?",
"aknowledge-alarm-title": "Підтвердити сигнал тривоги", "aknowledge-alarm-title": "Підтвердити сигнал тривоги",
"aknowledge-alarm-text": "Ви впевнені, що хочете підтвердити сигнал тривоги?", "aknowledge-alarm-text": "Ви впевнені, що хочете підтвердити сигнал тривоги?",
"clear-alarms-title": "Деактивувати { count, plural, 1 {1 сигнал тривоги} other {# сигнали тривоги} }", "clear-alarms-title": "Деактивувати { count, plural, =1 {1 сигнал тривоги} other {# сигнали тривоги} }",
"clear-alarms-text": "Ви впевнені, що хочете деактивувати { count, plural, 1 {1 сигнал тривоги} other {# сигнали тривоги} }?", "clear-alarms-text": "Ви впевнені, що хочете деактивувати { count, plural, =1 {1 сигнал тривоги} other {# сигнали тривоги} }?",
"clear-alarm-title": "Деактивувати сигнал тривоги", "clear-alarm-title": "Деактивувати сигнал тривоги",
"clear-alarm-text": "Ви впевнені, що хочете деактивувати сигнал тривоги?", "clear-alarm-text": "Ви впевнені, що хочете деактивувати сигнал тривоги?",
"alarm-status-filter": "Фільтр статусу сигналу тривоги", "alarm-status-filter": "Фільтр статусу сигналу тривоги",
@ -301,15 +301,15 @@
"add-asset-text": "Додати новий актив", "add-asset-text": "Додати новий актив",
"asset-details": "Інформація про актив", "asset-details": "Інформація про актив",
"assign-assets": "Надати активи", "assign-assets": "Надати активи",
"assign-assets-text": "Надати { count, plural, 1 {1 актив} other {# активи} } клієнту", "assign-assets-text": "Надати { count, plural, =1 {1 актив} other {# активи} } клієнту",
"delete-assets": "Видалити активи", "delete-assets": "Видалити активи",
"unassign-assets": "Позбавити активів", "unassign-assets": "Позбавити активів",
"unassign-assets-action-title": "Позбавити { count, plural, 1 {1 актив} other {# активи} } клієнта", "unassign-assets-action-title": "Позбавити { count, plural, =1 {1 актив} other {# активи} } клієнта",
"assign-new-asset": "Надати новий актив", "assign-new-asset": "Надати новий актив",
"delete-asset-title": "Ви впевнені, що хочете видалити актив '{{assetName}}'?", "delete-asset-title": "Ви впевнені, що хочете видалити актив '{{assetName}}'?",
"delete-asset-text": "Будьте обережні, після підтвердження, актив і всі пов'язані з ним дані буде втрачено", "delete-asset-text": "Будьте обережні, після підтвердження, актив і всі пов'язані з ним дані буде втрачено",
"delete-assets-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 актив} other {# активи} }?", "delete-assets-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 актив} other {# активи} }?",
"delete-assets-action-title": "Видалити{ count, plural, 1 {1 актив} other {# активи} }", "delete-assets-action-title": "Видалити{ count, plural, =1 {1 актив} other {# активи} }",
"delete-assets-text": "Будьте обережні, після підтвердження всі вибрані об'єкти буде видалено, і всі пов'язані з ними дані буде втрачено.", "delete-assets-text": "Будьте обережні, після підтвердження всі вибрані об'єкти буде видалено, і всі пов'язані з ними дані буде втрачено.",
"make-public-asset-title": "Ви дійсно хочете, щоб актив '{{assetName}}' був загальнодоступним?", "make-public-asset-title": "Ви дійсно хочете, щоб актив '{{assetName}}' був загальнодоступним?",
"make-public-asset-text": "Після підтвердження, актив і всі його дані будуть доступними для інших.", "make-public-asset-text": "Після підтвердження, актив і всі його дані будуть доступними для інших.",
@ -318,7 +318,7 @@
"unassign-asset-title": "Ви впевнені, що хочете позбавити активу '{{assetName}}'?", "unassign-asset-title": "Ви впевнені, що хочете позбавити активу '{{assetName}}'?",
"unassign-asset-text": "Після підтвердження клієнт буде позбавлений активу. Дані активу не будуть доступні клієнту.", "unassign-asset-text": "Після підтвердження клієнт буде позбавлений активу. Дані активу не будуть доступні клієнту.",
"unassign-asset": "Позбавити активу", "unassign-asset": "Позбавити активу",
"unassign-assets-title": "Ви впевнені, що хочете позбавити активів { count, plural, 1 {1 актив} other {# активи} }?", "unassign-assets-title": "Ви впевнені, що хочете позбавити активів { count, plural, =1 {1 актив} other {# активи} }?",
"unassign-assets-text": "Після підтвердження, клієнт буде позбавлений усіх вибраних активів. Дані активів не будуть доступні клієнту.", "unassign-assets-text": "Після підтвердження, клієнт буде позбавлений усіх вибраних активів. Дані активів не будуть доступні клієнту.",
"copyId": "Копіювати Id активу", "copyId": "Копіювати Id активу",
"idCopiedMessage": "Id активу був скопійований у буфер обміну", "idCopiedMessage": "Id активу був скопійований у буфер обміну",
@ -326,13 +326,13 @@
"no-assets-matching": "Не знайдено жодних активів, що відповідають'{{entity}}'.", "no-assets-matching": "Не знайдено жодних активів, що відповідають'{{entity}}'.",
"asset-required": "Необхідно задати актив", "asset-required": "Необхідно задати актив",
"name-starts-with": "Назва активу починається з", "name-starts-with": "Назва активу починається з",
"selected-assets": "{ count, plural, 1 {1 актив} other {# активи} } selected", "selected-assets": "{ count, plural, =1 {1 актив} other {# активи} } selected",
"search": "Пошук активів", "search": "Пошук активів",
"select-group-to-add": "Виберіть цільову групу, щоб додати вибрані активи", "select-group-to-add": "Виберіть цільову групу, щоб додати вибрані активи",
"select-group-to-move": "Виберіть цільову групу для переміщення вибраних активів", "select-group-to-move": "Виберіть цільову групу для переміщення вибраних активів",
"remove-assets-from-group": "Ви впевнені, що хочете видалити { count, plural, 1 {1 актив} other {# актив} } з групи '{entityGroup}'?", "remove-assets-from-group": "Ви впевнені, що хочете видалити { count, plural, =1 {1 актив} other {# актив} } з групи '{entityGroup}'?",
"group": "Група активів", "group": "Група активів",
"list-of-groups": "{ count, plural, 1 {Одна група активів} other {Список # груп активів} }", "list-of-groups": "{ count, plural, =1 {Одна група активів} other {Список # груп активів} }",
"group-name-starts-with": "Групи активів, чиї імена починаються з '{{prefix}}'", "group-name-starts-with": "Групи активів, чиї імена починаються з '{{prefix}}'",
"import": "Імпортувати активи", "import": "Імпортувати активи",
"asset-file": "Файл з активами", "asset-file": "Файл з активами",
@ -353,7 +353,7 @@
"key-required": "Ключ атрибута обов'язковий.", "key-required": "Ключ атрибута обов'язковий.",
"value": "Значення", "value": "Значення",
"value-required": "Значення атрибута обов'язкове.", "value-required": "Значення атрибута обов'язкове.",
"delete-attributes-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 attribute} other {# attributes} }?", "delete-attributes-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 attribute} other {# attributes} }?",
"delete-attributes-text": "Будьте обережні, після підтвердження, всі виділені атрибути будуть видалені.", "delete-attributes-text": "Будьте обережні, після підтвердження, всі виділені атрибути будуть видалені.",
"delete-attributes": "Видалити атрибути", "delete-attributes": "Видалити атрибути",
"enter-attribute-value": "Введіть значення атрибута", "enter-attribute-value": "Введіть значення атрибута",
@ -363,8 +363,8 @@
"prev-widget": "Попередній віджет", "prev-widget": "Попередній віджет",
"add-to-dashboard": "Додати до інформаційної панелі", "add-to-dashboard": "Додати до інформаційної панелі",
"add-widget-to-dashboard": "Додати віджет до інформаційної панелі", "add-widget-to-dashboard": "Додати віджет до інформаційної панелі",
"selected-attributes": "{ count, plural, 1 {1 attribute} other {# attributes} } selected ...вибрані вибрати", "selected-attributes": "{ count, plural, =1 {1 attribute} other {# attributes} } selected ...вибрані вибрати",
"selected-telemetry": "{ count, plural, 1 {1 telemetry unit} other {# telemetry units} } selected" "selected-telemetry": "{ count, plural, =1 {1 telemetry unit} other {# telemetry units} } selected"
}, },
"audit-log": { "audit-log": {
"audit": "Операція", "audit": "Операція",
@ -444,11 +444,11 @@
"management": "Управління перетворювачами даних", "management": "Управління перетворювачами даних",
"add-converter-text": "Додати новий перетворювач даних", "add-converter-text": "Додати новий перетворювач даних",
"no-converters-text": "Перетворювачів даних не знайдено", "no-converters-text": "Перетворювачів даних не знайдено",
"selected-converters": "{ count, plural, 1 {1 перетворювач даних} other {# перетворювачі даних} } вибраний", "selected-converters": "{ count, plural, =1 {1 перетворювач даних} other {# перетворювачі даних} } вибраний",
"delete-converter-title": "Ви впевнені, що хочете видалити перетворювач даних '{{converterName}}'?", "delete-converter-title": "Ви впевнені, що хочете видалити перетворювач даних '{{converterName}}'?",
"delete-converter-text": "Будьте обережні, після підтвердження, перетворювач даних та всі пов'язані з ним дані,стануть недоступними).", "delete-converter-text": "Будьте обережні, після підтвердження, перетворювач даних та всі пов'язані з ним дані,стануть недоступними).",
"delete-converters-title": "Ви впевнені, що хочете видалити{ count, plural, 1 {1 перетворювач даних} other {# перетворювачі даних} }?", "delete-converters-title": "Ви впевнені, що хочете видалити{ count, plural, =1 {1 перетворювач даних} other {# перетворювачі даних} }?",
"delete-converters-action-title": "Видалити { count, plural, 1 {1 перетворювач даних} other {# перетворювачі даних} }", "delete-converters-action-title": "Видалити { count, plural, =1 {1 перетворювач даних} other {# перетворювачі даних} }",
"delete-converters-text": "Будьте обережні, після підтвердження всі вибрані перетворювачі даних буде видалено, і всі пов'язані з ними дані буде втрачено.", "delete-converters-text": "Будьте обережні, після підтвердження всі вибрані перетворювачі даних буде видалено, і всі пов'язані з ними дані буде втрачено.",
"events": "Події", "events": "Події",
"add": "Додати перетворювач даних", "add": "Додати перетворювач даних",
@ -521,8 +521,8 @@
"customer-details": "Інформація про клієнта", "customer-details": "Інформація про клієнта",
"delete-customer-title": "Ви впевнені, що хочете видалити клієнта '{{customerTitle}}'?", "delete-customer-title": "Ви впевнені, що хочете видалити клієнта '{{customerTitle}}'?",
"delete-customer-text": "Будьте обережні, після підтвердження, клієнт та всі пов'язані з ним дані, стануть недоступними.", "delete-customer-text": "Будьте обережні, після підтвердження, клієнт та всі пов'язані з ним дані, стануть недоступними.",
"delete-customers-title": "Ви впевнені, що хочете видалити {count, plural, 1 {1 клієнт} other {# клієнти} }?", "delete-customers-title": "Ви впевнені, що хочете видалити {count, plural, =1 {1 клієнт} other {# клієнти} }?",
"delete-customers-action-title": "Видалити{ count, plural, 1 {1 клієнт} other {# клієнти} }", "delete-customers-action-title": "Видалити{ count, plural, =1 {1 клієнт} other {# клієнти} }",
"delete-customers-text": "Будьте обережні, після підтвердження, всі вибрані клієнти будуть видалені і всі пов'язані з ними дані, стануть недоступними.", "delete-customers-text": "Будьте обережні, після підтвердження, всі вибрані клієнти будуть видалені і всі пов'язані з ними дані, стануть недоступними.",
"manage-users": "Керування користувачами", "manage-users": "Керування користувачами",
"manage-assets": "Керування активами", "manage-assets": "Керування активами",
@ -538,13 +538,13 @@
"select-customer": "Виберіть клієнта", "select-customer": "Виберіть клієнта",
"no-customers-matching": "Клієнтів, які відповідають '{{entity}}' не знайдено.", "no-customers-matching": "Клієнтів, які відповідають '{{entity}}' не знайдено.",
"customer-required": "Необхідно задати клієнта", "customer-required": "Необхідно задати клієнта",
"selected-customers": "{ count, plural, 1 {1 клієнт} other {# клієнти} } вибрано", "selected-customers": "{ count, plural, =1 {1 клієнт} other {# клієнти} } вибрано",
"search": "Пошук клієнтів", "search": "Пошук клієнтів",
"select-group-to-add": "Виберіть цільову групу, щоб додати вибраних клієнтів", "select-group-to-add": "Виберіть цільову групу, щоб додати вибраних клієнтів",
"select-group-to-move": "Виберіть цільову групу для переміщення вибраних клієнтів", "select-group-to-move": "Виберіть цільову групу для переміщення вибраних клієнтів",
"remove-customers-from-group": "Ви впевнені, що хочете видалити{ count, plural, 1 {1 клієнт} other {# клієнти} } з групи'{entityGroup}'?", "remove-customers-from-group": "Ви впевнені, що хочете видалити{ count, plural, =1 {1 клієнт} other {# клієнти} } з групи'{entityGroup}'?",
"group": "Група клієнтів", "group": "Група клієнтів",
"list-of-groups": "{ count, plural, 1 {Одна група клієнтів} other {Список # груп клієнтів} }", "list-of-groups": "{ count, plural, =1 {Одна група клієнтів} other {Список # груп клієнтів} }",
"group-name-starts-with": "Групи клієнтів, імена яких починаються з '{{prefix}}'", "group-name-starts-with": "Групи клієнтів, імена яких починаються з '{{prefix}}'",
"select-default-customer": "Вибрати клієнта за замовчуванням", "select-default-customer": "Вибрати клієнта за замовчуванням",
"default-customer": "Клієнт за замовчуванням", "default-customer": "Клієнт за замовчуванням",
@ -605,20 +605,20 @@
"add-dashboard-text": "Додати нову панель приладів", "add-dashboard-text": "Додати нову панель приладів",
"assign-dashboards": "Призначити панель приладів", "assign-dashboards": "Призначити панель приладів",
"assign-new-dashboard": "Призначити нову панель приладів", "assign-new-dashboard": "Призначити нову панель приладів",
"assign-dashboards-text": "Призначити { count, plural, 1 {1 панель приладів} other {# панелі приладів} } користувачам", "assign-dashboards-text": "Призначити { count, plural, =1 {1 панель приладів} other {# панелі приладів} } користувачам",
"unassign-dashboards-action-text": "Позбавити { count, plural, 1 {1 палелі приладів} other {# панелей приладів} } клієнтів", "unassign-dashboards-action-text": "Позбавити { count, plural, =1 {1 палелі приладів} other {# панелей приладів} } клієнтів",
"delete-dashboards": "Видалити панель приладів", "delete-dashboards": "Видалити панель приладів",
"unassign-dashboards": "Позбавити панелей приладів", "unassign-dashboards": "Позбавити панелей приладів",
"unassign-dashboards-action-title": "Позбавити { count, plural, 1 {1 палелі приладів} other {# панелей приладів} } клієнтів", "unassign-dashboards-action-title": "Позбавити { count, plural, =1 {1 палелі приладів} other {# панелей приладів} } клієнтів",
"delete-dashboard-title": "Ви впевнені, що хочете видалити панель приладів '{{назва панелі приладів}}'?", "delete-dashboard-title": "Ви впевнені, що хочете видалити панель приладів '{{назва панелі приладів}}'?",
"delete-dashboard-text": "Будьте обережні, після підтвердження, панель приладів і всі пов'язані з нею дані стануть недоступними.", "delete-dashboard-text": "Будьте обережні, після підтвердження, панель приладів і всі пов'язані з нею дані стануть недоступними.",
"delete-dashboards-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 панель приладів} other {# панелі приладів} }?", "delete-dashboards-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 панель приладів} other {# панелі приладів} }?",
"delete-dashboards-action-title": "Видалити { count, plural, 1 {1 панель приладів} other {# панелі приладів} }", "delete-dashboards-action-title": "Видалити { count, plural, =1 {1 панель приладів} other {# панелі приладів} }",
"delete-dashboards-text": "Будьте обережні, після підтвердження, всі вибрані панелі приладів буде видалено, і всі пов'язані з ними дані стануть недоступними.", "delete-dashboards-text": "Будьте обережні, після підтвердження, всі вибрані панелі приладів буде видалено, і всі пов'язані з ними дані стануть недоступними.",
"unassign-dashboard-title": "Ви впевнені, що хочете позбавити панелі приладів '{{назва інформаційної панелі}}'?", "unassign-dashboard-title": "Ви впевнені, що хочете позбавити панелі приладів '{{назва інформаційної панелі}}'?",
"unassign-dashboard-text": "Після підтвердження, клієнт буде позбавлений панелі приладів. Панель приладів і пов'язані з нею дані будуть недоступні клієнтові.", "unassign-dashboard-text": "Після підтвердження, клієнт буде позбавлений панелі приладів. Панель приладів і пов'язані з нею дані будуть недоступні клієнтові.",
"unassign-dashboard": "Позбавити панелі приладів", "unassign-dashboard": "Позбавити панелі приладів",
"unassign-dashboards-title": "Ви впевнені, що хочете позбавити { count, plural, 1 {1 панелі приладів} other {# панелей приладів} }?", "unassign-dashboards-title": "Ви впевнені, що хочете позбавити { count, plural, =1 {1 панелі приладів} other {# панелей приладів} }?",
"unassign-dashboards-text": "Після підтвердження, клієтн буде позбавлений усіх вибраних панелей приладів і даних, які з ними пов'язані.", "unassign-dashboards-text": "Після підтвердження, клієтн буде позбавлений усіх вибраних панелей приладів і даних, які з ними пов'язані.",
"public-dashboard-title": "Панель приладів тепер публічна", "public-dashboard-title": "Панель приладів тепер публічна",
"public-dashboard-text": "Ваша панель приладів <b>{{dashboardTitle}}</b> тепер публічна і доступна іншим <a href='{{publicLink}}' target='_blank'>link</a>:", "public-dashboard-text": "Ваша панель приладів <b>{{dashboardTitle}}</b> тепер публічна і доступна іншим <a href='{{publicLink}}' target='_blank'>link</a>:",
@ -700,7 +700,7 @@
"manage-states": "Керування станами панелі візуалізації", "manage-states": "Керування станами панелі візуалізації",
"states": "Стани панелі візуалізації", "states": "Стани панелі візуалізації",
"search-states": "Пошук станів панелі візуалізації", "search-states": "Пошук станів панелі візуалізації",
"selected-states": "{ count, plural, 1 {1 dashboard state} other {# dashboard states} } вибрано", "selected-states": "{ count, plural, =1 {1 dashboard state} other {# dashboard states} } вибрано",
"edit-state": "Редагувати стан панелі візуалізації", "edit-state": "Редагувати стан панелі візуалізації",
"delete-state": "Видалити стан панелі візуалізації ", "delete-state": "Видалити стан панелі візуалізації ",
"add-state": "Додати стан панелі візуалізації", "add-state": "Додати стан панелі візуалізації",
@ -734,11 +734,11 @@
"alarm": "Поля сигнала тривоги", "alarm": "Поля сигнала тривоги",
"timeseries-required": "Необхідно вказати Телеметрія.", "timeseries-required": "Необхідно вказати Телеметрія.",
"timeseries-or-attributes-required": "Необхідно вказати телеметрію/атрибути.", "timeseries-or-attributes-required": "Необхідно вказати телеметрію/атрибути.",
"maximum-timeseries-or-attributes": "Максимальні { count, plural, 1 {1 телеметрія/атрибут дозволені.} other {# телеметрія/атрибути дозволені} }", "maximum-timeseries-or-attributes": "Максимальні { count, plural, =1 {1 телеметрія/атрибут дозволені.} other {# телеметрія/атрибути дозволені} }",
"alarm-fields-required": "Необхідно вказати поля сигнала тривоги.", "alarm-fields-required": "Необхідно вказати поля сигнала тривоги.",
"function-types": "Типи функцій", "function-types": "Типи функцій",
"function-types-required": "Необхідно вказати типи функцій.", "function-types-required": "Необхідно вказати типи функцій.",
"maximum-function-types": "Maximum { count, plural, 1 {1 function type is allowed.} other {# function types are allowed} }", "maximum-function-types": "Maximum { count, plural, =1 {1 function type is allowed.} other {# function types are allowed} }",
"time-description": "мітка часу поточного значення;", "time-description": "мітка часу поточного значення;",
"value-description": "поточне значення;", "value-description": "поточне значення;",
"prev-value-description": "результат попереднього виклику функції;", "prev-value-description": "результат попереднього виклику функції;",
@ -797,11 +797,11 @@
"manage-credentials": "Керування авторизаційними даними", "manage-credentials": "Керування авторизаційними даними",
"delete": "Видалити пристрій", "delete": "Видалити пристрій",
"assign-devices": "Призначити пристрої", "assign-devices": "Призначити пристрої",
"assign-devices-text": "Призначити { count, plural, 1 {1 пристрій} other {# пристрої} } клієнту", "assign-devices-text": "Призначити { count, plural, =1 {1 пристрій} other {# пристрої} } клієнту",
"delete-devices": "Видалити пристрої", "delete-devices": "Видалити пристрої",
"unassign-from-customer": "Позбавити клієнта пристроїв", "unassign-from-customer": "Позбавити клієнта пристроїв",
"unassign-devices": "Позбавити пристроїв", "unassign-devices": "Позбавити пристроїв",
"unassign-devices-action-title": "Позбавити клієнта { count, plural, 1 {1 пристрою} other {# пристроїв} }", "unassign-devices-action-title": "Позбавити клієнта { count, plural, =1 {1 пристрою} other {# пристроїв} }",
"assign-new-device": "Призначити новий пристрій", "assign-new-device": "Призначити новий пристрій",
"make-public-device-title": "Ви впевнені, що хочете зробити пристрій '{{deviceName}}' публічним?", "make-public-device-title": "Ви впевнені, що хочете зробити пристрій '{{deviceName}}' публічним?",
"make-public-device-text": "Після підтвердження пристрій і всі його дані будуть публічними та доступними для інших.", "make-public-device-text": "Після підтвердження пристрій і всі його дані будуть публічними та доступними для інших.",
@ -810,13 +810,13 @@
"view-credentials": "Переглянути авторизаційні дані", "view-credentials": "Переглянути авторизаційні дані",
"delete-device-title": "Ви впевнені, що хочете видалити пристрій '{{deviceName}}'?", "delete-device-title": "Ви впевнені, що хочете видалити пристрій '{{deviceName}}'?",
"delete-device-text": "Будьте обережні, після підтвердження, пристрій і всі пов'язані з ним дані стануть недоступними.", "delete-device-text": "Будьте обережні, після підтвердження, пристрій і всі пов'язані з ним дані стануть недоступними.",
"delete-devices-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 пристрій} other {# пристрої} }?", "delete-devices-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 пристрій} other {# пристрої} }?",
"delete-devices-action-title": "Видалити { count, plural, 1 {1 пристрій} other {# пристрої} }", "delete-devices-action-title": "Видалити { count, plural, =1 {1 пристрій} other {# пристрої} }",
"delete-devices-text": "Будьте обережні, після підтвердження, всі вибрані пристрої будуть видалені, і всі пов'язані з ними дані стануть недоступними.", "delete-devices-text": "Будьте обережні, після підтвердження, всі вибрані пристрої будуть видалені, і всі пов'язані з ними дані стануть недоступними.",
"unassign-device-title": "Ви впевнені, що хочете позбавити пристрою '{{deviceName}}'?", "unassign-device-title": "Ви впевнені, що хочете позбавити пристрою '{{deviceName}}'?",
"unassign-device-text": "Після підтвердження, клієнт буде позбавлений пристрою.", "unassign-device-text": "Після підтвердження, клієнт буде позбавлений пристрою.",
"unassign-device": "Позбавити пристою", "unassign-device": "Позбавити пристою",
"unassign-devices-title": "Ви впевненені, що хочете позбавити { count, plural, 1 {1 пристрою} other {# пристроїв} }?", "unassign-devices-title": "Ви впевненені, що хочете позбавити { count, plural, =1 {1 пристрою} other {# пристроїв} }?",
"unassign-devices-text": "Після підтвердження, клієнт буде позбавлений пристрою і пристрій стане не доступним клієнту", "unassign-devices-text": "Після підтвердження, клієнт буде позбавлений пристрою і пристрій стане не доступним клієнту",
"device-credentials": "Авторизаційні дані прстрою", "device-credentials": "Авторизаційні дані прстрою",
"credentials-type": "Тип авторизаційних даних", "credentials-type": "Тип авторизаційних даних",
@ -851,13 +851,13 @@
"select-device": "Виберіть пристрій", "select-device": "Виберіть пристрій",
"import": "Імпортувати пристрої", "import": "Імпортувати пристрої",
"device-file": "Файл з пристроями", "device-file": "Файл з пристроями",
"selected-devices": "{ count, plural, 1 {1 пристрій} other {# пристрої} } вибрано", "selected-devices": "{ count, plural, =1 {1 пристрій} other {# пристрої} } вибрано",
"search": "Шукати пристрої", "search": "Шукати пристрої",
"select-group-to-add": "Виберіть цільову групу, щоб додати вибраний пристрій", "select-group-to-add": "Виберіть цільову групу, щоб додати вибраний пристрій",
"select-group-to-move": "Виберіть цільову групу для переміщення вибраних пристроїв", "select-group-to-move": "Виберіть цільову групу для переміщення вибраних пристроїв",
"remove-devices-from-group": "Ви впевнені, що хочете видалити { count, plural, 1 {1 пристрій} other {# пристрої} } з групи '{entityGroup}'?", "remove-devices-from-group": "Ви впевнені, що хочете видалити { count, plural, =1 {1 пристрій} other {# пристрої} } з групи '{entityGroup}'?",
"group": "Група пристроїв", "group": "Група пристроїв",
"list-of-groups": "{ count, plural, 1 {Одна група пристроїв} other {Список # груп пристроїв} }", "list-of-groups": "{ count, plural, =1 {Одна група пристроїв} other {Список # груп пристроїв} }",
"group-name-starts-with": "Групи пристроїв, імена яких починаються з '{{prefix}}'" "group-name-starts-with": "Групи пристроїв, імена яких починаються з '{{prefix}}'"
}, },
"dialog": { "dialog": {
@ -914,64 +914,64 @@
"type-required": "Необхідно задати тип сутності.", "type-required": "Необхідно задати тип сутності.",
"type-device": "Пристрій", "type-device": "Пристрій",
"type-devices": "Пристрої", "type-devices": "Пристрої",
"list-of-devices": "{ count, plural, 1 {Один пристрій} other {Список # пристроїв} }", "list-of-devices": "{ count, plural, =1 {Один пристрій} other {Список # пристроїв} }",
"device-name-starts-with": "Пристрої, імена яких починаються з '{{prefix}}'", "device-name-starts-with": "Пристрої, імена яких починаються з '{{prefix}}'",
"type-asset": "Актив", "type-asset": "Актив",
"type-assets": "Активи", "type-assets": "Активи",
"list-of-assets": "{ count, plural, 1 {Один актив} other {Список # активів} }", "list-of-assets": "{ count, plural, =1 {Один актив} other {Список # активів} }",
"asset-name-starts-with": "Активи, імена яких починаються з '{{prefix}}'", "asset-name-starts-with": "Активи, імена яких починаються з '{{prefix}}'",
"type-entity-view": "Перегляд сутності", "type-entity-view": "Перегляд сутності",
"type-entity-views": "Перегляди сутності", "type-entity-views": "Перегляди сутності",
"list-of-entity-views": "{ count, plural, 1 {Один перегляд сутності} other {Список # переглядів сутності} }", "list-of-entity-views": "{ count, plural, =1 {Один перегляд сутності} other {Список # переглядів сутності} }",
"entity-view-name-starts-with": "Перегляди сутностей, імена яких починаються з '{{prefix}}'", "entity-view-name-starts-with": "Перегляди сутностей, імена яких починаються з '{{prefix}}'",
"type-rule": "Правило", "type-rule": "Правило",
"type-rules": "Правила", "type-rules": "Правила",
"list-of-rules": "{ count, plural, 1 {Одне правило} other {Список # правил} }", "list-of-rules": "{ count, plural, =1 {Одне правило} other {Список # правил} }",
"rule-name-starts-with": "Правила, імена яких починаються з '{{prefix}}'", "rule-name-starts-with": "Правила, імена яких починаються з '{{prefix}}'",
"type-plugin": "Плагін", "type-plugin": "Плагін",
"type-plugins": "Плагіни", "type-plugins": "Плагіни",
"list-of-plugins": "{ count, plural, 1 {Один плагін} other {Список # плагінів} }", "list-of-plugins": "{ count, plural, =1 {Один плагін} other {Список # плагінів} }",
"plugin-name-starts-with": "Плагіни, імена яких починаються з '{{prefix}}'", "plugin-name-starts-with": "Плагіни, імена яких починаються з '{{prefix}}'",
"type-tenant": "Власник", "type-tenant": "Власник",
"type-tenants": "Власники", "type-tenants": "Власники",
"list-of-tenants": "{ count, plural, 1 {Один власник} other {Список # власників} }", "list-of-tenants": "{ count, plural, =1 {Один власник} other {Список # власників} }",
"tenant-name-starts-with": "Власники, імена яких починаються з '{{prefix}}'", "tenant-name-starts-with": "Власники, імена яких починаються з '{{prefix}}'",
"type-customer": "Клієнт", "type-customer": "Клієнт",
"type-customers": "Клієнти", "type-customers": "Клієнти",
"list-of-customers": "{ count, plural, 1 {Один клієнт} other {Список # клієнтів} }", "list-of-customers": "{ count, plural, =1 {Один клієнт} other {Список # клієнтів} }",
"customer-name-starts-with": "Клієнти, імена яких починаються з '{{prefix}}'", "customer-name-starts-with": "Клієнти, імена яких починаються з '{{prefix}}'",
"type-user": "Користувач", "type-user": "Користувач",
"type-users": "Користувачі", "type-users": "Користувачі",
"list-of-users": "{ count, plural, 1 {Один користувач} other {Список # користувачів } }", "list-of-users": "{ count, plural, =1 {Один користувач} other {Список # користувачів } }",
"user-name-starts-with": "Користувачі, імена яких починаються з '{{prefix}}'", "user-name-starts-with": "Користувачі, імена яких починаються з '{{prefix}}'",
"type-dashboard": "Панель візуалізації", "type-dashboard": "Панель візуалізації",
"type-dashboards": "Панелі візуалізації", "type-dashboards": "Панелі візуалізації",
"list-of-dashboards": "{ count, plural, 1 {Одна панель візуалізації} other {Список # панелей візуалізації} }", "list-of-dashboards": "{ count, plural, =1 {Одна панель візуалізації} other {Список # панелей візуалізації} }",
"dashboard-name-starts-with": "Панелі візуалізації, імена яких починаються з '{{prefix}}'", "dashboard-name-starts-with": "Панелі візуалізації, імена яких починаються з '{{prefix}}'",
"type-alarm": "Сигнал тривоги", "type-alarm": "Сигнал тривоги",
"type-alarms": "Сигнали тривоги", "type-alarms": "Сигнали тривоги",
"list-of-alarms": "{ count, plural, 1 {Один сигнал тривоги} other {Список # сигналів тривоги} }", "list-of-alarms": "{ count, plural, =1 {Один сигнал тривоги} other {Список # сигналів тривоги} }",
"alarm-name-starts-with": "Сигнали тривоги, імена яких починаються '{{prefix}}'", "alarm-name-starts-with": "Сигнали тривоги, імена яких починаються '{{prefix}}'",
"type-rulechain": "Ланцюжок правил", "type-rulechain": "Ланцюжок правил",
"type-rulechains": "Ланцюжки правил", "type-rulechains": "Ланцюжки правил",
"list-of-rulechains": "{ count, plural, 1 {Один ланцюжок правил} other {Список # ланцюжків правил} }", "list-of-rulechains": "{ count, plural, =1 {Один ланцюжок правил} other {Список # ланцюжків правил} }",
"rulechain-name-starts-with": "Правило ланцюжків, імена яких починаються '{{prefix}}'", "rulechain-name-starts-with": "Правило ланцюжків, імена яких починаються '{{prefix}}'",
"type-scheduler-event": "Scheduler event", "type-scheduler-event": "Scheduler event",
"type-scheduler-events": "Scheduler events", "type-scheduler-events": "Scheduler events",
"list-of-scheduler-events": "{ count, plural, 1 {One scheduler event} other {List of # scheduler events} }", "list-of-scheduler-events": "{ count, plural, =1 {One scheduler event} other {List of # scheduler events} }",
"scheduler-event-name-starts-with": "Scheduler events whose names start with '{{prefix}}'", "scheduler-event-name-starts-with": "Scheduler events whose names start with '{{prefix}}'",
"type-blob-entity": "Blob entity", "type-blob-entity": "Blob entity",
"type-blob-entities": "Blob entities", "type-blob-entities": "Blob entities",
"list-of-blob-entities": "{ count, plural, 1 {One blob entity} other {List of # blob entities} }", "list-of-blob-entities": "{ count, plural, =1 {One blob entity} other {List of # blob entities} }",
"blob-entity-name-starts-with": "Blob entities whose names start with '{{prefix}}'", "blob-entity-name-starts-with": "Blob entities whose names start with '{{prefix}}'",
"type-rulenode": "Правило", "type-rulenode": "Правило",
"type-rulenodes": "Правила", "type-rulenodes": "Правила",
"list-of-rulenodes": "{ count, plural, 1 {Одне правило} other {Список # правил} }", "list-of-rulenodes": "{ count, plural, =1 {Одне правило} other {Список # правил} }",
"rulenode-name-starts-with": "Список правил, імена яких починаються '{{prefix}}'", "rulenode-name-starts-with": "Список правил, імена яких починаються '{{prefix}}'",
"type-current-customer": "Поточний клієнт", "type-current-customer": "Поточний клієнт",
"type-current-tenant": "Поточний власник", "type-current-tenant": "Поточний власник",
"search": "Пошук сутностей", "search": "Пошук сутностей",
"selected-entities": "{ count, plural, 1 {1 сутність} other {# сутності} } вибрано", "selected-entities": "{ count, plural, =1 {1 сутність} other {# сутності} } вибрано",
"entity-name": "Ім'я сутності", "entity-name": "Ім'я сутності",
"entity-label": "Мітка сутності", "entity-label": "Мітка сутності",
"details": "Подробиці сутності", "details": "Подробиці сутності",
@ -981,11 +981,11 @@
"type-entity-group": "Група сутностей", "type-entity-group": "Група сутностей",
"type-converter": "Перетворювач даних", "type-converter": "Перетворювач даних",
"type-converters": "Перетворювачі даних", "type-converters": "Перетворювачі даних",
"list-of-converters": "{ count, plural, 1 {Однин перетворювач даних} other {Список # перетворювачів даних} }", "list-of-converters": "{ count, plural, =1 {Однин перетворювач даних} other {Список # перетворювачів даних} }",
"converter-name-starts-with": "Перетворювачі даних, імена яких починаються з '{{prefix}}'", "converter-name-starts-with": "Перетворювачі даних, імена яких починаються з '{{prefix}}'",
"type-integration": "Інтеграція", "type-integration": "Інтеграція",
"type-integrations": "Інтеграції", "type-integrations": "Інтеграції",
"list-of-integrations": "{ count, plural, 1 {Одна інтеграція} other {Список # інтеграцій} }", "list-of-integrations": "{ count, plural, =1 {Одна інтеграція} other {Список # інтеграцій} }",
"integration-name-starts-with": "Інтеграції, імена яких починаються з '{{prefix}}'" "integration-name-starts-with": "Інтеграції, імена яких починаються з '{{prefix}}'"
}, },
"entity-field": { "entity-field": {
@ -1033,8 +1033,8 @@
"delete-entity-groups": "Видалити групи сутностей", "delete-entity-groups": "Видалити групи сутностей",
"delete-entity-group-title": "Ви впевнені, що хочете видалити групу сутності '{{entityGroupName}}'?", "delete-entity-group-title": "Ви впевнені, що хочете видалити групу сутності '{{entityGroupName}}'?",
"delete-entity-group-text": "Будьте обережні, після підтвердження, група сутностей і всі пов'язані з нею дані стануть недоступними.", "delete-entity-group-text": "Будьте обережні, після підтвердження, група сутностей і всі пов'язані з нею дані стануть недоступними.",
"delete-entity-groups-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 групу сутності} other {# групи сутностей} }?", "delete-entity-groups-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 групу сутності} other {# групи сутностей} }?",
"delete-entity-groups-action-title": "Видалити { count, plural, 1 {1 групу сутності} other {# групи сутностей} }", "delete-entity-groups-action-title": "Видалити { count, plural, =1 {1 групу сутності} other {# групи сутностей} }",
"delete-entity-groups-text": "Будьте обережні, після підтвердження, всі виділені групи сутностей і пов'язані з ними дані, стануть недоступними.", "delete-entity-groups-text": "Будьте обережні, після підтвердження, всі виділені групи сутностей і пов'язані з ними дані, стануть недоступними.",
"device-groups": "Групи пристроїв", "device-groups": "Групи пристроїв",
"asset-groups": "Групи активів", "asset-groups": "Групи активів",
@ -1146,21 +1146,21 @@
"add-entity-view-text": "Додати нове представлення сутності", "add-entity-view-text": "Додати нове представлення сутності",
"delete": "Видалити представлення сутності", "delete": "Видалити представлення сутності",
"assign-entity-views": "Призначити представлення сутності", "assign-entity-views": "Призначити представлення сутності",
"assign-entity-views-text": "Призначити { count, plural, 1 {1 представлення сутності} other {# представлення сутностей } } клієнту", "assign-entity-views-text": "Призначити { count, plural, =1 {1 представлення сутності} other {# представлення сутностей } } клієнту",
"delete-entity-views": "Видалити представлення сутностей", "delete-entity-views": "Видалити представлення сутностей",
"unassign-from-customer": "Відкликати у клієнта", "unassign-from-customer": "Відкликати у клієнта",
"unassign-entity-views": "Відкликати представлення сутностей", "unassign-entity-views": "Відкликати представлення сутностей",
"unassign-entity-views-action-title": "Відкликати { count, plural, 1 {1 представлення сутності} other {# представлень сутностей} } у клієнта", "unassign-entity-views-action-title": "Відкликати { count, plural, =1 {1 представлення сутності} other {# представлень сутностей} } у клієнта",
"assign-new-entity-view": "Призначити нове представлення сутності", "assign-new-entity-view": "Призначити нове представлення сутності",
"delete-entity-view-title": "Ви впевнені, що хочете видалити представлення сутності'{{entityViewName}}'?", "delete-entity-view-title": "Ви впевнені, що хочете видалити представлення сутності'{{entityViewName}}'?",
"delete-entity-view-text": "Будьте обережні, після підтвердження, представлення сутності та всі пов'язані з ним дані стануть недоступними.", "delete-entity-view-text": "Будьте обережні, після підтвердження, представлення сутності та всі пов'язані з ним дані стануть недоступними.",
"delete-entity-views-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 представлення сутності } other {# представлення сутностей } }?", "delete-entity-views-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 представлення сутності } other {# представлення сутностей } }?",
"delete-entity-views-action-title": "Видалити { count, plural, 1 {1 представлення сутності } other {# представлення сутностей } }", "delete-entity-views-action-title": "Видалити { count, plural, =1 {1 представлення сутності } other {# представлення сутностей } }",
"delete-entity-views-text": "Будьте обережні, після підтвердження, всі виділені представлення сутностей та дні, пов'язані з ними стануть недоступними.", "delete-entity-views-text": "Будьте обережні, після підтвердження, всі виділені представлення сутностей та дні, пов'язані з ними стануть недоступними.",
"unassign-entity-view-title": "Ви впевнені, що хочете відкликати представлення сутності '{{entityViewName}}'?", "unassign-entity-view-title": "Ви впевнені, що хочете відкликати представлення сутності '{{entityViewName}}'?",
"unassign-entity-view-text": "Після підтвердження представлення сутності буде відкликане у клієнта. Дані представлення сутності не будуть доступні клієнту.", "unassign-entity-view-text": "Після підтвердження представлення сутності буде відкликане у клієнта. Дані представлення сутності не будуть доступні клієнту.",
"unassign-entity-view": "Відкликати представлення сутності", "unassign-entity-view": "Відкликати представлення сутності",
"unassign-entity-views-title": "Ви впевнені, що хочете відкликати { count, plural, 1 {1 представлення сутності} other {# представлень сутностей} }?", "unassign-entity-views-title": "Ви впевнені, що хочете відкликати { count, plural, =1 {1 представлення сутності} other {# представлень сутностей} }?",
"unassign-entity-views-text": "Після підтвердження, клієнта буде позбавлено всіх виділених представлень сутностей. Дані представлень сутностей не будуть доступні клієнту.", "unassign-entity-views-text": "Після підтвердження, клієнта буде позбавлено всіх виділених представлень сутностей. Дані представлень сутностей не будуть доступні клієнту.",
"entity-view-type": "Тип представлення сутності", "entity-view-type": "Тип представлення сутності",
"entity-view-type-required": "Необхідно вказати тип представлення сутності.", "entity-view-type-required": "Необхідно вказати тип представлення сутності.",
@ -1245,7 +1245,7 @@
}, },
"extension": { "extension": {
"extensions": "Розширення", "extensions": "Розширення",
"selected-extensions": " вибрано { count, plural, 1 {1 розширення} other {# розширення} }", "selected-extensions": " вибрано { count, plural, =1 {1 розширення} other {# розширення} }",
"type": "Тип", "type": "Тип",
"key": "Ключ", "key": "Ключ",
"value": "Значення", "value": "Значення",
@ -1259,7 +1259,7 @@
"edit": "Редагувати розширення", "edit": "Редагувати розширення",
"delete-extension-title": "Ви дійсно бажаєте видалити розширення '{{extensionId}}'?", "delete-extension-title": "Ви дійсно бажаєте видалити розширення '{{extensionId}}'?",
"delete-extension-text": "Будьте обережні, після підтвердження, розширення та всі пов'язані з ним дані стануть недоступними.", "delete-extension-text": "Будьте обережні, після підтвердження, розширення та всі пов'язані з ним дані стануть недоступними.",
"delete-extensions-title": "Ви дійсно бажаєте видалити { count, plural, 1 {1 розширення} other {# розширення} }?", "delete-extensions-title": "Ви дійсно бажаєте видалити { count, plural, =1 {1 розширення} other {# розширення} }?",
"delete-extensions-text": "Будьте обережні, після підтвердження, всі вибрані розширення будуть видалені.", "delete-extensions-text": "Будьте обережні, після підтвердження, всі вибрані розширення будуть видалені.",
"converters": "Перетворювачі", "converters": "Перетворювачі",
"converter-id": "Id перетворювача", "converter-id": "Id перетворювача",
@ -1411,8 +1411,8 @@
"grid": { "grid": {
"delete-item-title": "Ви впенені, що хочете видалити цей елемент?", "delete-item-title": "Ви впенені, що хочете видалити цей елемент?",
"delete-item-text": "Будьте обережні, після підтвердження, цей елемент і всі пов'язані з ним дані, стануть недоступними.", "delete-item-text": "Будьте обережні, після підтвердження, цей елемент і всі пов'язані з ним дані, стануть недоступними.",
"delete-items-title": "Ви впенені, що хочете видалити { count, plural, 1 {1 елемент} other {# елементи} }?", "delete-items-title": "Ви впенені, що хочете видалити { count, plural, =1 {1 елемент} other {# елементи} }?",
"delete-items-action-title": "Видалити{ count, plural, 1 {1 елемент} other {# елементи} }", "delete-items-action-title": "Видалити{ count, plural, =1 {1 елемент} other {# елементи} }",
"delete-items-text": "Будьте обережні, після підтвердження, всі виділені елементи і пов'язані з ними дані, стануть недоступними.", "delete-items-text": "Будьте обережні, після підтвердження, всі виділені елементи і пов'язані з ними дані, стануть недоступними.",
"add-item-text": "Додати новий елемент", "add-item-text": "Додати новий елемент",
"no-items-text": "Не знайдено жодного елемента", "no-items-text": "Не знайдено жодного елемента",
@ -1479,11 +1479,11 @@
"management": "Управління інтеграціями", "management": "Управління інтеграціями",
"add-integration-text": "Додати нову інтеграцію", "add-integration-text": "Додати нову інтеграцію",
"no-integrations-text": "Не знайдено жодної інтеграції", "no-integrations-text": "Не знайдено жодної інтеграції",
"selected-integrations": "{ count, plural, 1 {1 інтеграція} other {# інтеграції} } вибрано", "selected-integrations": "{ count, plural, =1 {1 інтеграція} other {# інтеграції} } вибрано",
"delete-integration-title": "Ви впевнені, що хочете видалити інтеграцію '{{integrationName}}'?", "delete-integration-title": "Ви впевнені, що хочете видалити інтеграцію '{{integrationName}}'?",
"delete-integration-text": "Будьте обережні, після підтвердження інтеграція та всі пов'язані з нею дані стануть недоступними.", "delete-integration-text": "Будьте обережні, після підтвердження інтеграція та всі пов'язані з нею дані стануть недоступними.",
"delete-integrations-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 інтеграцію} other {# інтеграції} }?", "delete-integrations-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 інтеграцію} other {# інтеграції} }?",
"delete-integrations-action-title": "Видалити { count, plural, 1 {1 інтеграцію} other {# інтеграції} }", "delete-integrations-action-title": "Видалити { count, plural, =1 {1 інтеграцію} other {# інтеграції} }",
"delete-integrations-text": "Будьте обережні, після підтвердження всі вибрані інтеграції будуть видалені, і всі пов'язані з ними дані стануть недоступними.", "delete-integrations-text": "Будьте обережні, після підтвердження всі вибрані інтеграції будуть видалені, і всі пов'язані з ними дані стануть недоступними.",
"events": "Події", "events": "Події",
"add": "Додати інтеграцію", "add": "Додати інтеграцію",
@ -1722,7 +1722,7 @@
}, },
"from-relations": "Вихідні відношення", "from-relations": "Вихідні відношення",
"to-relations": "Вхідні відношення", "to-relations": "Вхідні відношення",
"selected-relations": "Вибрано { count, plural, 1 {1 відношення} other {# відношення} }", "selected-relations": "Вибрано { count, plural, =1 {1 відношення} other {# відношення} }",
"type": "Тип", "type": "Тип",
"to-entity-type": "До типу сутності", "to-entity-type": "До типу сутності",
"to-entity-name": "До імені сутності", "to-entity-name": "До імені сутності",
@ -1738,11 +1738,11 @@
"edit": "Редагувати відношення", "edit": "Редагувати відношення",
"delete-to-relation-title": "Ви впевнені, що хочете видалити відношення до сутності '{{entityName}}'?", "delete-to-relation-title": "Ви впевнені, що хочете видалити відношення до сутності '{{entityName}}'?",
"delete-to-relation-text": "Будьте обережні, після підтвердження, сутність '{{entityName}}' не буде пов'язана з поточним об'єктом.", "delete-to-relation-text": "Будьте обережні, після підтвердження, сутність '{{entityName}}' не буде пов'язана з поточним об'єктом.",
"delete-to-relations-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 відношення} other {# відношення} }?", "delete-to-relations-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 відношення} other {# відношення} }?",
"delete-to-relations-text": "Будьте обережні, після підтвердження, всі вибрані відношення стануть не пов'язані з поточною сутністю.", "delete-to-relations-text": "Будьте обережні, після підтвердження, всі вибрані відношення стануть не пов'язані з поточною сутністю.",
"delete-from-relation-title": "Ви впевнені, що хочете видалити зв'язок, який йде від сутності '{{entityName}}'?", "delete-from-relation-title": "Ви впевнені, що хочете видалити зв'язок, який йде від сутності '{{entityName}}'?",
"delete-from-relation-text": "Будьте обережні, після підтвердження поточна сутність буде відв'язана від сутності '{{entityName}}'.", "delete-from-relation-text": "Будьте обережні, після підтвердження поточна сутність буде відв'язана від сутності '{{entityName}}'.",
"delete-from-relations-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 відношення} other {# відношення} }?", "delete-from-relations-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 відношення} other {# відношення} }?",
"delete-from-relations-text": "Будьте обережні, після підтвердження, всі вибрані відношення будуть видалені, а поточна сутність стане не зв'язаною з відповідними сутностями.", "delete-from-relations-text": "Будьте обережні, після підтвердження, всі вибрані відношення будуть видалені, а поточна сутність стане не зв'язаною з відповідними сутностями.",
"remove-relation-filter": "Видалити фільтр відношення", "remove-relation-filter": "Видалити фільтр відношення",
"add-relation-filter": "Додати фільтр відношення", "add-relation-filter": "Додати фільтр відношення",
@ -1765,8 +1765,8 @@
"set-root-rulechain-text": "Після підтвердження ланцюг правил стане основним і буде обробляти всі вхідні транспортні повідомлення.", "set-root-rulechain-text": "Після підтвердження ланцюг правил стане основним і буде обробляти всі вхідні транспортні повідомлення.",
"delete-rulechain-title": "Ви впевнені, що хочете видалити ланцюг правил '{{ruleChainName}}'?", "delete-rulechain-title": "Ви впевнені, що хочете видалити ланцюг правил '{{ruleChainName}}'?",
"delete-rulechain-text": "Будьте обережні, після підтвердження ланцюг правил і всі пов'язані з ним дані стануть недоступними.", "delete-rulechain-text": "Будьте обережні, після підтвердження ланцюг правил і всі пов'язані з ним дані стануть недоступними.",
"delete-rulechains-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 ланцюг правил} other {# ланцюги правил} }?", "delete-rulechains-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 ланцюг правил} other {# ланцюги правил} }?",
"delete-rulechains-action-title": "Видалити{ count, plural, 1 {1 ланцюг правил} other {# ланцюги правил} }", "delete-rulechains-action-title": "Видалити{ count, plural, =1 {1 ланцюг правил} other {# ланцюги правил} }",
"delete-rulechains-text": "Будьте обережні, після підтвердження, вибрані ланцюги правил і всі пов'язані з ними дані стануть недоступними.", "delete-rulechains-text": "Будьте обережні, після підтвердження, вибрані ланцюги правил і всі пов'язані з ними дані стануть недоступними.",
"add-rulechain-text": "Додати новий ланцюг правил", "add-rulechain-text": "Додати новий ланцюг правил",
"no-rulechains-text": "Ланцюг правил не знайдено", "no-rulechains-text": "Ланцюг правил не знайдено",
@ -1871,10 +1871,10 @@
"edit-scheduler-event": "Редагувати подію", "edit-scheduler-event": "Редагувати подію",
"delete-scheduler-event": "Видалити подію", "delete-scheduler-event": "Видалити подію",
"no-scheduler-events": "Не знайдено жодних запланованих подій", "no-scheduler-events": "Не знайдено жодних запланованих подій",
"selected-scheduler-events": "{ count, plural, 1 {1 запланована подія} other {# заплановані події} } вибрано", "selected-scheduler-events": "{ count, plural, =1 {1 запланована подія} other {# заплановані події} } вибрано",
"delete-scheduler-event-title": "Ви впевнені, що хочете видалити подію '{{schedulerEventName}}'?", "delete-scheduler-event-title": "Ви впевнені, що хочете видалити подію '{{schedulerEventName}}'?",
"delete-scheduler-event-text": "Будьте обережні, після підтвердження подія і всі пов'язані з нею дані стануть недоступними.", "delete-scheduler-event-text": "Будьте обережні, після підтвердження подія і всі пов'язані з нею дані стануть недоступними.",
"delete-scheduler-events-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 запланована подія} other {# заплановані події} }?", "delete-scheduler-events-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 запланована подія} other {# заплановані події} }?",
"delete-scheduler-events-text": "Будьте обережні, після підтвердження всі вибрані події будуть видалені, і всі пов'язані з ними дані стануть недоступними.", "delete-scheduler-events-text": "Будьте обережні, після підтвердження всі вибрані події будуть видалені, і всі пов'язані з ними дані стануть недоступними.",
"create": "Створити подію планувальника", "create": "Створити подію планувальника",
"edit": "Змінити подію планувальника", "edit": "Змінити подію планувальника",
@ -2019,8 +2019,8 @@
"tenant-details": "Подробиці про власника", "tenant-details": "Подробиці про власника",
"delete-tenant-title": "Ви впевнені, що хочете видалити власника'{{tenantTitle}}'?", "delete-tenant-title": "Ви впевнені, що хочете видалити власника'{{tenantTitle}}'?",
"delete-tenant-text": "Будьте обережні, після підтвердження власник і всі пов'язані з ним дані стануть недоступними.", "delete-tenant-text": "Будьте обережні, після підтвердження власник і всі пов'язані з ним дані стануть недоступними.",
"delete-tenants-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 власник} other {# власники} }?", "delete-tenants-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 власник} other {# власники} }?",
"delete-tenants-action-title": "Видалити { count, plural, 1 {1 власник} other {# власники} }", "delete-tenants-action-title": "Видалити { count, plural, =1 {1 власник} other {# власники} }",
"delete-tenants-text": "Будьте обережні, після підтвердження, усі вибрані власники будуть видалені, і всі пов'язані з ними дані стануть недоступними.", "delete-tenants-text": "Будьте обережні, після підтвердження, усі вибрані власники будуть видалені, і всі пов'язані з ними дані стануть недоступними.",
"title": "Назва", "title": "Назва",
"title-required": "Необхідно вказати назву.", "title-required": "Необхідно вказати назву.",
@ -2032,14 +2032,14 @@
"select-tenant": "Вибрати власника", "select-tenant": "Вибрати власника",
"no-tenants-matching": "Не знайдено жодних власників, які відповідають '{{entity}}'.", "no-tenants-matching": "Не знайдено жодних власників, які відповідають '{{entity}}'.",
"tenant-required": "Необхідно вказати власника", "tenant-required": "Необхідно вказати власника",
"selected-tenants": "{ count, plural, 1 {1 власник} other {# власники} } вибрано", "selected-tenants": "{ count, plural, =1 {1 власник} other {# власники} } вибрано",
"search": "Пошук власників" "search": "Пошук власників"
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 секунда} other {# секунди} }", "seconds-interval": "{ seconds, plural, =1 {1 секунда} other {# секунди} }",
"minutes-interval": "{ minutes, plural, 1 {1 хвилина} other {# хвилини} }", "minutes-interval": "{ minutes, plural, =1 {1 хвилина} other {# хвилини} }",
"hours-interval": "{ hours, plural, 1 {1 година} other {# години} }", "hours-interval": "{ hours, plural, =1 {1 година} other {# години} }",
"days-interval": "{ days, plural, 1 {1 день} other {# дні} }", "days-interval": "{ days, plural, =1 {1 день} other {# дні} }",
"days": "Дні", "days": "Дні",
"hours": "Години", "hours": "Години",
"minutes": "Хвилини", "minutes": "Хвилини",
@ -2047,10 +2047,10 @@
"advanced": "Додатково" "advanced": "Додатково"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { день } other {# дні } }", "days": "{ days, plural, =1 { день } other {# дні } }",
"hours": "{ hours, plural, 0 { годин } 1 {1 година } other {# години } }", "hours": "{ hours, plural, =0 { годин } =1 {1 година } other {# години } }",
"minutes": "{ minutes, plural, 0 { хвилин } 1 {1 хвилина } other {# хвилини } }", "minutes": "{ minutes, plural, =0 { хвилин } =1 {1 хвилина } other {# хвилини } }",
"seconds": "{ seconds, plural, 0 { секунд } 1 {1 секунда } other {# секунди } }", "seconds": "{ seconds, plural, =0 { секунд } =1 {1 секунда } other {# секунди } }",
"realtime": "Реальний час", "realtime": "Реальний час",
"history": "Історія", "history": "Історія",
"last-prefix": "Останнє", "last-prefix": "Останнє",
@ -2077,8 +2077,8 @@
"user-details": "Подробиці про користувача", "user-details": "Подробиці про користувача",
"delete-user-title": "Ви впевнені, що хочете видалити користувача'{{userEmail}}'?", "delete-user-title": "Ви впевнені, що хочете видалити користувача'{{userEmail}}'?",
"delete-user-text": "Будьте обережні, після підтвердження, користувач і всі пов'язані з ним дані стануть недоступними.", "delete-user-text": "Будьте обережні, після підтвердження, користувач і всі пов'язані з ним дані стануть недоступними.",
"delete-users-title": "Ви впевнені, що хочете видалити { count, plural, 1 {1 користувача} other {# користувачів} }?", "delete-users-title": "Ви впевнені, що хочете видалити { count, plural, =1 {1 користувача} other {# користувачів} }?",
"delete-users-action-title": "Видалити { count, plural, 1 {1 користувача} other {# користувачів} }", "delete-users-action-title": "Видалити { count, plural, =1 {1 користувача} other {# користувачів} }",
"delete-users-text": "Будьте обережні, після підтвердження, усіх виділених користувачів буде видалено, і всі пов'язані з ними дані стануть недоступними.", "delete-users-text": "Будьте обережні, після підтвердження, усіх виділених користувачів буде видалено, і всі пов'язані з ними дані стануть недоступними.",
"activation-email-sent-message": "Активаційний лист успішно надіслано!", "activation-email-sent-message": "Активаційний лист успішно надіслано!",
"resend-activation": "Повторно надіслати активаційного листа", "resend-activation": "Повторно надіслати активаційного листа",
@ -2100,7 +2100,7 @@
"activation-link-text": "Для активації користувача, скористайтеся наступним <a href='{{activationLink}}' target='_blank'>посиланням</a> :", "activation-link-text": "Для активації користувача, скористайтеся наступним <a href='{{activationLink}}' target='_blank'>посиланням</a> :",
"copy-activation-link": "Скопіювати активаційне посилання ", "copy-activation-link": "Скопіювати активаційне посилання ",
"activation-link-copied-message": "Посилання на активацію користувача було скопійовано в буфер обміну", "activation-link-copied-message": "Посилання на активацію користувача було скопійовано в буфер обміну",
"selected-users": "{ count, plural, 1 {1 користувач} other {# користувачі} } вибрано", "selected-users": "{ count, plural, =1 {1 користувач} other {# користувачі} } вибрано",
"search": "Пошук користувачів", "search": "Пошук користувачів",
"details": "Подробиці", "details": "Подробиці",
"login-as-tenant-admin": "Увійти як адміністратор власника", "login-as-tenant-admin": "Увійти як адміністратор власника",
@ -2209,8 +2209,8 @@
"widgets-bundle-details": "Деталі пакетів віджетів", "widgets-bundle-details": "Деталі пакетів віджетів",
"delete-widgets-bundle-title": "Ви впевнені, що хочете видалити пакет віджетів '{{widgetsBundleTitle}}'?", "delete-widgets-bundle-title": "Ви впевнені, що хочете видалити пакет віджетів '{{widgetsBundleTitle}}'?",
"delete-widgets-bundle-text": "Будьте обережні, після підтвердження, пакети віджетів і всі пов'язані з ними дані стануть недоступними.", "delete-widgets-bundle-text": "Будьте обережні, після підтвердження, пакети віджетів і всі пов'язані з ними дані стануть недоступними.",
"delete-widgets-bundles-title": "Ви впевнені, що хочете видалити { count, plural, 1 {пакет віджетів} other {# пакети віджетів} }?", "delete-widgets-bundles-title": "Ви впевнені, що хочете видалити { count, plural, =1 {пакет віджетів} other {# пакети віджетів} }?",
"delete-widgets-bundles-action-title": "Видалити { count, plural, 1 {1 пакет віджетів} other {# пакет віджетів} }", "delete-widgets-bundles-action-title": "Видалити { count, plural, =1 {1 пакет віджетів} other {# пакет віджетів} }",
"delete-widgets-bundles-text": "Будьте обережні, після підтвердження, всі виділені пакети віджетів і всі пов'язані з ними дані стануть недоступними.", "delete-widgets-bundles-text": "Будьте обережні, після підтвердження, всі виділені пакети віджетів і всі пов'язані з ними дані стануть недоступними.",
"no-widgets-bundles-matching": "Не знайдено жодних пакетів віджетів, які відповідають '{{widgetsBundle}}'.", "no-widgets-bundles-matching": "Не знайдено жодних пакетів віджетів, які відповідають '{{widgetsBundle}}'.",
"widgets-bundle-required": "Необхідно вказати пакет віджетів.", "widgets-bundle-required": "Необхідно вказати пакет віджетів.",
@ -2249,7 +2249,7 @@
"legend": "Легенда", "legend": "Легенда",
"display-legend": "Показати легенду", "display-legend": "Показати легенду",
"datasources": "Джерела даних", "datasources": "Джерела даних",
"maximum-datasources": "Максимально { count, plural, 1 {1 дозволене джерело даних.} other {# дозволені джерела даних } }", "maximum-datasources": "Максимально { count, plural, =1 {1 дозволене джерело даних.} other {# дозволені джерела даних } }",
"datasource-type": "Тип", "datasource-type": "Тип",
"datasource-parameters": "Параметри", "datasource-parameters": "Параметри",
"remove-datasource": "Видалити джерело даних", "remove-datasource": "Видалити джерело даних",

263
ui-ngx/src/assets/locale/locale.constant-zh_CN.json

@ -428,17 +428,17 @@
"acknowledge": "应答", "acknowledge": "应答",
"clear": "清除", "clear": "清除",
"search": "查找告警", "search": "查找告警",
"selected-alarms": "已选择 { count, plural, 1 {# 个告警} other {# 个告警} }", "selected-alarms": "已选择 { count, plural, =1 {# 个告警} other {# 个告警} }",
"no-data": "无数据显示", "no-data": "无数据显示",
"polling-interval": "告警轮询间隔(秒)", "polling-interval": "告警轮询间隔(秒)",
"polling-interval-required": "告警轮询间隔必填。", "polling-interval-required": "告警轮询间隔必填。",
"min-polling-interval-message": "轮询间隔至少是1秒。", "min-polling-interval-message": "轮询间隔至少是1秒。",
"aknowledge-alarms-title": "确认 { count, plural, 1 {# 个告警} other {# 个告警} }", "aknowledge-alarms-title": "确认 { count, plural, =1 {# 个告警} other {# 个告警} }",
"aknowledge-alarms-text": "确定要确认 { count, plural, 1 {# 个告警} other {# 个告警} }吗?", "aknowledge-alarms-text": "确定要确认 { count, plural, =1 {# 个告警} other {# 个告警} }吗?",
"aknowledge-alarm-title": "确认告警", "aknowledge-alarm-title": "确认告警",
"aknowledge-alarm-text": "确定要确认告警吗?", "aknowledge-alarm-text": "确定要确认告警吗?",
"clear-alarms-title": "清除 { count, plural, 1 {# 个告警} other {# 个告警} }", "clear-alarms-title": "清除 { count, plural, =1 {# 个告警} other {# 个告警} }",
"clear-alarms-text": "确定要清除 { count, plural, 1 {# 个告警} other {# 个告警} }?", "clear-alarms-text": "确定要清除 { count, plural, =1 {# 个告警} other {# 个告警} }?",
"clear-alarm-title": "清除警报", "clear-alarm-title": "清除警报",
"clear-alarm-text": "确定要清除警报吗?", "clear-alarm-text": "确定要清除警报吗?",
"alarm-status-filter": "告警状态筛选器", "alarm-status-filter": "告警状态筛选器",
@ -545,17 +545,17 @@
"add-asset-text": "添加新资产", "add-asset-text": "添加新资产",
"asset-details": "资产详情", "asset-details": "资产详情",
"assign-assets": "分配资产", "assign-assets": "分配资产",
"assign-assets-text": "分配 { count, plural, 1 {# 个资产} other {# 个资产} } 给客户", "assign-assets-text": "分配 { count, plural, =1 {# 个资产} other {# 个资产} } 给客户",
"assign-asset-to-edge-title": "将资产分配给边缘", "assign-asset-to-edge-title": "将资产分配给边缘",
"assign-asset-to-edge-text": "请选择要分配给边缘的资产", "assign-asset-to-edge-text": "请选择要分配给边缘的资产",
"delete-assets": "删除资产", "delete-assets": "删除资产",
"unassign-assets": "取消分配资产", "unassign-assets": "取消分配资产",
"unassign-assets-action-title": "从客户处取消分配 { count, plural, 1 {# 个资产} other {# 个资产} }", "unassign-assets-action-title": "从客户处取消分配 { count, plural, =1 {# 个资产} other {# 个资产} }",
"assign-new-asset": "分配新资产", "assign-new-asset": "分配新资产",
"delete-asset-title": "确定要删除资产 '{{assetName}}'吗?", "delete-asset-title": "确定要删除资产 '{{assetName}}'吗?",
"delete-asset-text": "请注意:确认后,资产及其所有相关数据将不可恢复。", "delete-asset-text": "请注意:确认后,资产及其所有相关数据将不可恢复。",
"delete-assets-title": "确定要删除 { count, plural, 1 {# 个资产} other {# 个资产} }吗?", "delete-assets-title": "确定要删除 { count, plural, =1 {# 个资产} other {# 个资产} }吗?",
"delete-assets-action-title": "删除 { count, plural, 1 {# 个资产} other {# 个资产} }", "delete-assets-action-title": "删除 { count, plural, =1 {# 个资产} other {# 个资产} }",
"delete-assets-text": "请注意:确认后,所有选定的资产将被删除,所有相关的数据将不可恢复。", "delete-assets-text": "请注意:确认后,所有选定的资产将被删除,所有相关的数据将不可恢复。",
"make-public-asset-title": "确定要将资产 '{{assetName}}' 设为公开吗?", "make-public-asset-title": "确定要将资产 '{{assetName}}' 设为公开吗?",
"make-public-asset-text": "确认后,资产及其所有数据将被公开并被他人访问。", "make-public-asset-text": "确认后,资产及其所有数据将被公开并被他人访问。",
@ -564,7 +564,7 @@
"unassign-asset-title": "确定要取消对'{{assetName}}'资产的分配吗?", "unassign-asset-title": "确定要取消对'{{assetName}}'资产的分配吗?",
"unassign-asset-text": "确认后,资产将未分配,客户无法访问。", "unassign-asset-text": "确认后,资产将未分配,客户无法访问。",
"unassign-asset": "未分配资产", "unassign-asset": "未分配资产",
"unassign-assets-title": "确定要取消分配 { count, plural, 1 {# 个资产} other {# 个资产} }吗?", "unassign-assets-title": "确定要取消分配 { count, plural, =1 {# 个资产} other {# 个资产} }吗?",
"unassign-assets-text": "确认后,所有选定的资产将被分配,客户无法访问。", "unassign-assets-text": "确认后,所有选定的资产将被分配,客户无法访问。",
"unassign-assets-from-edge": "取消分配边缘", "unassign-assets-from-edge": "取消分配边缘",
"copyId": "复制资产ID", "copyId": "复制资产ID",
@ -582,9 +582,9 @@
"unassign-asset-from-edge": "取消分配边缘", "unassign-asset-from-edge": "取消分配边缘",
"unassign-asset-from-edge-title": "确定要取消对'{{assetName}}'资产的分配吗?", "unassign-asset-from-edge-title": "确定要取消对'{{assetName}}'资产的分配吗?",
"unassign-asset-from-edge-text": "确认后,所有选定的资产将被分配,边缘无法访问。", "unassign-asset-from-edge-text": "确认后,所有选定的资产将被分配,边缘无法访问。",
"unassign-assets-from-edge-title": "确定要取消分配 { count, plural, 1 {1 资产} other {# 个资产} }吗?", "unassign-assets-from-edge-title": "确定要取消分配 { count, plural, =1 {1 资产} other {# 个资产} }吗?",
"unassign-assets-from-edge-text": "确认后,所有选定的资产将被分配,边缘无法访问。", "unassign-assets-from-edge-text": "确认后,所有选定的资产将被分配,边缘无法访问。",
"selected-assets": "已选择 { count, plural, 1 {# 个资产} other {# 个资产} }" "selected-assets": "已选择 { count, plural, =1 {# 个资产} other {# 个资产} }"
}, },
"attribute": { "attribute": {
"attributes": "属性", "attributes": "属性",
@ -601,7 +601,7 @@
"key-required": "属性键必填。", "key-required": "属性键必填。",
"value": "数值", "value": "数值",
"value-required": "属性值必填。", "value-required": "属性值必填。",
"delete-attributes-title": "确定要删除 { count, plural, 1 {# 个属性} other {# 个属性} }吗?", "delete-attributes-title": "确定要删除 { count, plural, =1 {# 个属性} other {# 个属性} }吗?",
"delete-attributes-text": "注意,确认后所有选中的属性都会被删除。", "delete-attributes-text": "注意,确认后所有选中的属性都会被删除。",
"delete-attributes": "删除属性", "delete-attributes": "删除属性",
"enter-attribute-value": "输入属性值", "enter-attribute-value": "输入属性值",
@ -611,8 +611,8 @@
"prev-widget": "上一个部件", "prev-widget": "上一个部件",
"add-to-dashboard": "添加到仪表板", "add-to-dashboard": "添加到仪表板",
"add-widget-to-dashboard": "将部件添加到仪表板", "add-widget-to-dashboard": "将部件添加到仪表板",
"selected-attributes": "已选择{ count, plural, 1 {# 个属性} other {# 个属性} }", "selected-attributes": "已选择{ count, plural, =1 {# 个属性} other {# 个属性} }",
"selected-telemetry": "已选择 { count, plural, 1 {# 遥测} other {# 遥测} }", "selected-telemetry": "已选择 { count, plural, =1 {# 遥测} other {# 遥测} }",
"no-attributes-text": "未找到属性", "no-attributes-text": "未找到属性",
"no-telemetry-text": "未找到遥测数据" "no-telemetry-text": "未找到遥测数据"
}, },
@ -789,8 +789,8 @@
"customer-details": "客户详情", "customer-details": "客户详情",
"delete-customer-title": "确定要删除客户'{{customerTitle}}'吗?", "delete-customer-title": "确定要删除客户'{{customerTitle}}'吗?",
"delete-customer-text": "请注意:确认后,客户及其所有相关数据将不可恢复。", "delete-customer-text": "请注意:确认后,客户及其所有相关数据将不可恢复。",
"delete-customers-title": "确定要删除 { count, plural, 1 {# 个客户} other {# 个客户} }吗?", "delete-customers-title": "确定要删除 { count, plural, =1 {# 个客户} other {# 个客户} }吗?",
"delete-customers-action-title": "删除 { count, plural, 1 {# 个客户} other {# 个客户} }", "delete-customers-action-title": "删除 { count, plural, =1 {# 个客户} other {# 个客户} }",
"delete-customers-text": "请注意:确认后,所有选定的客户将被删除,所有相关数据将不可恢复。", "delete-customers-text": "请注意:确认后,所有选定的客户将被删除,所有相关数据将不可恢复。",
"manage-users": "管理用户", "manage-users": "管理用户",
"manage-assets": "管理资产", "manage-assets": "管理资产",
@ -811,7 +811,7 @@
"default-customer": "默认客户", "default-customer": "默认客户",
"default-customer-required": "为了调试租户级别上的仪表板,需要默认客户。", "default-customer-required": "为了调试租户级别上的仪表板,需要默认客户。",
"search": "查找客户", "search": "查找客户",
"selected-customers": "已选择 { count, plural, 1 {# 个客户} other {# 个客户} }", "selected-customers": "已选择 { count, plural, =1 {# 个客户} other {# 个客户} }",
"edges": "客户边缘实例", "edges": "客户边缘实例",
"manage-edges": "管理边缘" "manage-edges": "管理边缘"
}, },
@ -863,20 +863,20 @@
"add-dashboard-text": "添加新的仪表板", "add-dashboard-text": "添加新的仪表板",
"assign-dashboards": "分配仪表板", "assign-dashboards": "分配仪表板",
"assign-new-dashboard": "分配新的仪表板", "assign-new-dashboard": "分配新的仪表板",
"assign-dashboards-text": "分配 { count, plural, 1 {# 个仪表板} other {# 个仪表板} } 给客户", "assign-dashboards-text": "分配 { count, plural, =1 {# 个仪表板} other {# 个仪表板} } 给客户",
"unassign-dashboards-action-text": "取消分配 { count, plural, 1 {# 个仪表板} other {# 个仪表板} } 给客户", "unassign-dashboards-action-text": "取消分配 { count, plural, =1 {# 个仪表板} other {# 个仪表板} } 给客户",
"delete-dashboards": "删除仪表板", "delete-dashboards": "删除仪表板",
"unassign-dashboards": "取消分配仪表板", "unassign-dashboards": "取消分配仪表板",
"unassign-dashboards-action-title": "取消分配此客户 { count, plural, 1 {# 个仪表板} other {# 个仪表板} }", "unassign-dashboards-action-title": "取消分配此客户 { count, plural, =1 {# 个仪表板} other {# 个仪表板} }",
"delete-dashboard-title": "确定要删除仪表板 '{{dashboardTitle}}'吗?", "delete-dashboard-title": "确定要删除仪表板 '{{dashboardTitle}}'吗?",
"delete-dashboard-text": "请注意:确认后,仪表板及其所有相关数据将不可恢复。", "delete-dashboard-text": "请注意:确认后,仪表板及其所有相关数据将不可恢复。",
"delete-dashboards-title": "确定要删除 { count, plural, 1 {# 个仪表板} other {# 个仪表板} }吗?", "delete-dashboards-title": "确定要删除 { count, plural, =1 {# 个仪表板} other {# 个仪表板} }吗?",
"delete-dashboards-action-title": "删除 { count, plural, 1 {# 个仪表板} other {# 个仪表板} }", "delete-dashboards-action-title": "删除 { count, plural, =1 {# 个仪表板} other {# 个仪表板} }",
"delete-dashboards-text": "请注意:确认后,所有选定的仪表板将被删除,所有相关数据将不可恢复。", "delete-dashboards-text": "请注意:确认后,所有选定的仪表板将被删除,所有相关数据将不可恢复。",
"unassign-dashboard-title": "确定要取消分配仪表板 '{{dashboardTitle}}'吗?", "unassign-dashboard-title": "确定要取消分配仪表板 '{{dashboardTitle}}'吗?",
"unassign-dashboard-text": "确认后,面板将被取消分配,客户将无法访问。", "unassign-dashboard-text": "确认后,面板将被取消分配,客户将无法访问。",
"unassign-dashboard": "取消分配仪表板", "unassign-dashboard": "取消分配仪表板",
"unassign-dashboards-title": "确定要取消分配仪表板 { count, plural, 1 {# 个仪表板} other {# 个仪表板} } 吗?", "unassign-dashboards-title": "确定要取消分配仪表板 { count, plural, =1 {# 个仪表板} other {# 个仪表板} } 吗?",
"unassign-dashboards-text": "确认后,所有选定的仪表板将被取消分配,客户将无法访问。", "unassign-dashboards-text": "确认后,所有选定的仪表板将被取消分配,客户将无法访问。",
"public-dashboard-title": "仪表板现已公开", "public-dashboard-title": "仪表板现已公开",
"public-dashboard-text": "仪表板 <b>{{dashboardTitle}}</b> 已被公开,可通过如下 <a href='{{publicLink}}' target='_blank'>链接</a>访问:", "public-dashboard-text": "仪表板 <b>{{dashboardTitle}}</b> 已被公开,可通过如下 <a href='{{publicLink}}' target='_blank'>链接</a>访问:",
@ -972,7 +972,7 @@
"manage-states": "仪表板状态管理", "manage-states": "仪表板状态管理",
"states": "仪表板状态", "states": "仪表板状态",
"search-states": "仪表板状态检索", "search-states": "仪表板状态检索",
"selected-states": "已选择 { count, plural, 1 {# 个仪表板状态} other {# 个仪表板状态} }", "selected-states": "已选择 { count, plural, =1 {# 个仪表板状态} other {# 个仪表板状态} }",
"edit-state": "仪表板状态编辑", "edit-state": "仪表板状态编辑",
"delete-state": "删除仪表板状态", "delete-state": "删除仪表板状态",
"add-state": "添加仪表板状态", "add-state": "添加仪表板状态",
@ -991,11 +991,11 @@
"select-state": "选择目标状态", "select-state": "选择目标状态",
"state-controller": "状态控制", "state-controller": "状态控制",
"search": "查找仪表板", "search": "查找仪表板",
"selected-dashboards": "已选择 { count, plural, 1 {# 个仪表盘} other {# 个仪表盘} }", "selected-dashboards": "已选择 { count, plural, =1 {# 个仪表盘} other {# 个仪表盘} }",
"home-dashboard": "首页仪表板", "home-dashboard": "首页仪表板",
"home-dashboard-hide-toolbar": "隐藏首页仪表板工具栏", "home-dashboard-hide-toolbar": "隐藏首页仪表板工具栏",
"unassign-dashboard-from-edge-text": "确认后,所有选定的仪表板将被取消分配,边缘将无法访问。", "unassign-dashboard-from-edge-text": "确认后,所有选定的仪表板将被取消分配,边缘将无法访问。",
"unassign-dashboards-from-edge-title": "确定要取消分配仪表板 { count, plural, 1 {# 个仪表板} other {# 个仪表板} } 吗?", "unassign-dashboards-from-edge-title": "确定要取消分配仪表板 { count, plural, =1 {# 个仪表板} other {# 个仪表板} } 吗?",
"unassign-dashboards-from-edge-text": "确认后,所有选定的仪表板将被取消分配,边缘将无法访问。", "unassign-dashboards-from-edge-text": "确认后,所有选定的仪表板将被取消分配,边缘将无法访问。",
"assign-dashboard-to-edge": "将仪表板分配给边缘", "assign-dashboard-to-edge": "将仪表板分配给边缘",
"assign-dashboard-to-edge-text": "请选择要分配给边缘的仪表板", "assign-dashboard-to-edge-text": "请选择要分配给边缘的仪表板",
@ -1018,7 +1018,7 @@
"timeseries-required": "实体 Timeseries 必填。", "timeseries-required": "实体 Timeseries 必填。",
"timeseries-or-attributes-required": "实体 Timeseries/属性必填。", "timeseries-or-attributes-required": "实体 Timeseries/属性必填。",
"alarm-fields-timeseries-or-attributes-required": "告警字段或实体 Timeseries/属性必填。", "alarm-fields-timeseries-or-attributes-required": "告警字段或实体 Timeseries/属性必填。",
"maximum-timeseries-or-attributes": "最多允许 { count, plural, 1 {# 个 timeseries/属性。} other {# 个 timeseries/属性。} }", "maximum-timeseries-or-attributes": "最多允许 { count, plural, =1 {# 个 timeseries/属性。} other {# 个 timeseries/属性。} }",
"alarm-fields-required": "告警字段必填。", "alarm-fields-required": "告警字段必填。",
"function-types": "函数类型", "function-types": "函数类型",
"function-type": "函数类型", "function-type": "函数类型",
@ -1035,7 +1035,7 @@
"timeseries-key": "时序数据键", "timeseries-key": "时序数据键",
"timeseries-key-functions": "时序数据函数", "timeseries-key-functions": "时序数据函数",
"timeseries-key-function": "时序数据函数", "timeseries-key-function": "时序数据函数",
"maximum-function-types": "最多允许 { count, plural, 1 {# 个函数类型} other {# 个函数类型} }", "maximum-function-types": "最多允许 { count, plural, =1 {# 个函数类型} other {# 个函数类型} }",
"time-description": "当前值的时间戳;", "time-description": "当前值的时间戳;",
"value-description": "当前值;", "value-description": "当前值;",
"prev-value-description": "上一次函数调用的结果;", "prev-value-description": "上一次函数调用的结果;",
@ -1114,11 +1114,11 @@
"manage-credentials": "管理凭据", "manage-credentials": "管理凭据",
"delete": "删除设备", "delete": "删除设备",
"assign-devices": "分配设备", "assign-devices": "分配设备",
"assign-devices-text": "将 {count,plural,1 {# 个设备} other {# 个设备} }分配给客户", "assign-devices-text": "将 {count,plural, =1 {# 个设备} other {# 个设备} }分配给客户",
"delete-devices": "删除设备", "delete-devices": "删除设备",
"unassign-from-customer": "取消分配客户", "unassign-from-customer": "取消分配客户",
"unassign-devices": "取消分配设备", "unassign-devices": "取消分配设备",
"unassign-devices-action-title": "取消分配此客户 {count,plural,1 {# 个设备} other {# 个设备} }", "unassign-devices-action-title": "取消分配此客户 {count,plural, =1 {# 个设备} other {# 个设备} }",
"unassign-device-from-edge-title": "确定要取消分配设备 '{{deviceName}}' 吗?", "unassign-device-from-edge-title": "确定要取消分配设备 '{{deviceName}}' 吗?",
"unassign-device-from-edge-text": "确认后,设备将被取消分配,边缘将无法访问。", "unassign-device-from-edge-text": "确认后,设备将被取消分配,边缘将无法访问。",
"unassign-devices-from-edge": "取消分配边缘", "unassign-devices-from-edge": "取消分配边缘",
@ -1130,13 +1130,13 @@
"view-credentials": "查看凭据", "view-credentials": "查看凭据",
"delete-device-title": "确定要删除设备的{{deviceName}}吗?", "delete-device-title": "确定要删除设备的{{deviceName}}吗?",
"delete-device-text": "请注意:确认后,设备及其所有相关数据将不可恢复。", "delete-device-text": "请注意:确认后,设备及其所有相关数据将不可恢复。",
"delete-devices-title": "确定要删除{count,plural,1 {# 个设备} other {# 个设备} } 吗?", "delete-devices-title": "确定要删除{count,plural, =1 {# 个设备} other {# 个设备} } 吗?",
"delete-devices-action-title": "删除 {count,plural,1 {# 个设备} other {# 个设备} }", "delete-devices-action-title": "删除 {count,plural, =1 {# 个设备} other {# 个设备} }",
"delete-devices-text": "请注意:确认后,所有选定的设备将被删除,所有相关数据将不可恢复。", "delete-devices-text": "请注意:确认后,所有选定的设备将被删除,所有相关数据将不可恢复。",
"unassign-device-title": "确定要取消分配设备 '{{deviceName}}' 吗?", "unassign-device-title": "确定要取消分配设备 '{{deviceName}}' 吗?",
"unassign-device-text": "确认后,设备将被取消分配,客户将无法访问。", "unassign-device-text": "确认后,设备将被取消分配,客户将无法访问。",
"unassign-device": "取消分配设备", "unassign-device": "取消分配设备",
"unassign-devices-title": "确定要取消分配 {count,plural,1 {# 个设备} other {# 个设备} } 吗?", "unassign-devices-title": "确定要取消分配 {count,plural, =1 {# 个设备} other {# 个设备} } 吗?",
"unassign-devices-text": "确认后,所有选定的设备将被取消分配,并且客户将无法访问。", "unassign-devices-text": "确认后,所有选定的设备将被取消分配,并且客户将无法访问。",
"device-credentials": "设备凭据", "device-credentials": "设备凭据",
"loading-device-credentials": "加载设备凭证...", "loading-device-credentials": "加载设备凭证...",
@ -1217,7 +1217,7 @@
"import": "导入设备", "import": "导入设备",
"device-file": "设备文件", "device-file": "设备文件",
"search": "查找设备", "search": "查找设备",
"selected-devices": "已选择 { count, plural, 1 {# 个设备} other {# 个设备} }", "selected-devices": "已选择 { count, plural, =1 {# 个设备} other {# 个设备} }",
"device-configuration": "设备配置", "device-configuration": "设备配置",
"transport-configuration": "传输配置", "transport-configuration": "传输配置",
"wizard": { "wizard": {
@ -1229,7 +1229,7 @@
"customer-to-assign-device": "客户分配设备", "customer-to-assign-device": "客户分配设备",
"add-credentials": "添加凭据" "add-credentials": "添加凭据"
}, },
"unassign-devices-from-edge-title": "确定要取消分配 { count, plural, 1 {1 个设备} other {# 个设备} } 吗?", "unassign-devices-from-edge-title": "确定要取消分配 { count, plural, =1 {1 个设备} other {# 个设备} } 吗?",
"unassign-devices-from-edge-text": "确认后,设备将被取消分配,边缘将无法访问。" "unassign-devices-from-edge-text": "确认后,设备将被取消分配,边缘将无法访问。"
}, },
"asset-profile": { "asset-profile": {
@ -1241,7 +1241,7 @@
"asset-profile-details": "资产配置详情", "asset-profile-details": "资产配置详情",
"no-asset-profiles-text": "未找到资产配置", "no-asset-profiles-text": "未找到资产配置",
"search": "搜索资产配置", "search": "搜索资产配置",
"selected-asset-profiles": "已选择 { count, plural, 1 {1 个资产配置} other {# 个资产配置} }", "selected-asset-profiles": "已选择 { count, plural, =1 {1 个资产配置} other {# 个资产配置} }",
"no-asset-profiles-matching": "未找到与 '{{entity}}' 匹配的资产配置。", "no-asset-profiles-matching": "未找到与 '{{entity}}' 匹配的资产配置。",
"asset-profile-required": "资产配置必填", "asset-profile-required": "资产配置必填",
"idCopiedMessage": "资产配置ID已复制到剪贴板", "idCopiedMessage": "资产配置ID已复制到剪贴板",
@ -1262,7 +1262,7 @@
"select-queue-hint": "从下拉列表中选择。", "select-queue-hint": "从下拉列表中选择。",
"delete-asset-profile-title": "确定要删除 '{{assetProfileName}}' 资产配置吗?", "delete-asset-profile-title": "确定要删除 '{{assetProfileName}}' 资产配置吗?",
"delete-asset-profile-text": "请注意:确认后,资产配置和所有相关数据将不可恢复。", "delete-asset-profile-text": "请注意:确认后,资产配置和所有相关数据将不可恢复。",
"delete-asset-profiles-title": "确定要删除 { count, plural, 1 {1 个资产配置} other {# 个资产配置} }吗?", "delete-asset-profiles-title": "确定要删除 { count, plural, =1 {1 个资产配置} other {# 个资产配置} }吗?",
"delete-asset-profiles-text": "请注意:确认后,所有选定的资产配置将被删除,所有相关数据将不可恢复。", "delete-asset-profiles-text": "请注意:确认后,所有选定的资产配置将被删除,所有相关数据将不可恢复。",
"set-default-asset-profile-title": "确定要将 '{{assetProfileName}}' 设为默认资产配置吗?", "set-default-asset-profile-title": "确定要将 '{{assetProfileName}}' 设为默认资产配置吗?",
"set-default-asset-profile-text": "确认后,资产配置将被标记为默认,并将用于未指定配置的新资产。", "set-default-asset-profile-text": "确认后,资产配置将被标记为默认,并将用于未指定配置的新资产。",
@ -1284,7 +1284,7 @@
"device-profile-details": "设备配置详情", "device-profile-details": "设备配置详情",
"no-device-profiles-text": "未找到设备配置", "no-device-profiles-text": "未找到设备配置",
"search": "查找设备配置", "search": "查找设备配置",
"selected-device-profiles": "已选择 { count, plural, 1 {# 个设备配置} other {# 个设备配置} }", "selected-device-profiles": "已选择 { count, plural, =1 {# 个设备配置} other {# 个设备配置} }",
"no-device-profiles-matching": "未找到与 '{{entity}}' 匹配的设备配置。", "no-device-profiles-matching": "未找到与 '{{entity}}' 匹配的设备配置。",
"device-profile-required": "设备配置必填", "device-profile-required": "设备配置必填",
"idCopiedMessage": "设备配置 ID 已复制到剪贴板", "idCopiedMessage": "设备配置 ID 已复制到剪贴板",
@ -1322,7 +1322,7 @@
"select-queue-hint": "从下拉列表中选择或添加自定义名称。", "select-queue-hint": "从下拉列表中选择或添加自定义名称。",
"delete-device-profile-title": "确定要删除 '{{deviceProfileName}}' 设备配置吗?", "delete-device-profile-title": "确定要删除 '{{deviceProfileName}}' 设备配置吗?",
"delete-device-profile-text": "请注意:确认后,设备配置和所有相关数据将不可恢复。", "delete-device-profile-text": "请注意:确认后,设备配置和所有相关数据将不可恢复。",
"delete-device-profiles-title": "确定要删除 { count, plural, 1 {# 个设备配置} other {# 个设备配置} }吗?", "delete-device-profiles-title": "确定要删除 { count, plural, =1 {# 个设备配置} other {# 个设备配置} }吗?",
"delete-device-profiles-text": "请注意:确认后,所有选定的设备配置将被删除,所有相关数据将不可恢复。", "delete-device-profiles-text": "请注意:确认后,所有选定的设备配置将被删除,所有相关数据将不可恢复。",
"set-default-device-profile-title": "确定要将设备配置 '{{deviceProfileName}}' 设为默认值吗?", "set-default-device-profile-title": "确定要将设备配置 '{{deviceProfileName}}' 设为默认值吗?",
"set-default-device-profile-text": "确认后,设备配置将被标记为默认,并将用于未指定配置的新设备。", "set-default-device-profile-text": "确认后,设备配置将被标记为默认,并将用于未指定配置的新设备。",
@ -1443,8 +1443,8 @@
"condition-repeating-value-range": "事件计数应在1到2147483647之间。", "condition-repeating-value-range": "事件计数应在1到2147483647之间。",
"condition-repeating-value-pattern": "事件计数应为整数。", "condition-repeating-value-pattern": "事件计数应为整数。",
"condition-repeating-value-required": "事件计数值必填。", "condition-repeating-value-required": "事件计数值必填。",
"condition-repeat-times": "重复 { count, plural, 1 {# 次} other {# 次} }", "condition-repeat-times": "重复 { count, plural, =1 {# 次} other {# 次} }",
"condition-repeat-times-dynamic": "重复\"{ attribute }\" ({ count, plural, 1 {1 时间} other {# 时间} })", "condition-repeat-times-dynamic": "重复\"{ attribute }\" ({ count, plural, =1 {1 时间} other {# 时间} })",
"schedule-type": "计划程序类型", "schedule-type": "计划程序类型",
"schedule-type-required": "计划类型必填。", "schedule-type-required": "计划类型必填。",
"schedule": "启用规则:", "schedule": "启用规则:",
@ -1686,7 +1686,7 @@
"delete": "删除边缘", "delete": "删除边缘",
"delete-edge-title": "确定删除边缘 '{{edgeName}}'吗?", "delete-edge-title": "确定删除边缘 '{{edgeName}}'吗?",
"delete-edge-text": "当心, 确认后,边缘以及所有关联数据将不可恢复。", "delete-edge-text": "当心, 确认后,边缘以及所有关联数据将不可恢复。",
"delete-edges-title": "确定删除 { count, plural, 1 {1 个边缘} other {# 个边缘} }吗?", "delete-edges-title": "确定删除 { count, plural, =1 {1 个边缘} other {# 个边缘} }吗?",
"delete-edges-text": "当心, 确认后,选定的边缘以及所有关联数据将不可恢复。", "delete-edges-text": "当心, 确认后,选定的边缘以及所有关联数据将不可恢复。",
"name": "名称", "name": "名称",
"name-starts-with": "边缘名称前缀", "name-starts-with": "边缘名称前缀",
@ -1713,7 +1713,7 @@
"unassign-from-customer": "取消分配客户", "unassign-from-customer": "取消分配客户",
"unassign-edge-title": "确定取消分配边缘 '{{edgeName}}' 吗?", "unassign-edge-title": "确定取消分配边缘 '{{edgeName}}' 吗?",
"unassign-edge-text": "确定后,边缘将被取消分配,并且客户将无法访问。", "unassign-edge-text": "确定后,边缘将被取消分配,并且客户将无法访问。",
"unassign-edges-title": "确定要取消分配 {count,plural,1 {1 个边缘} other {# 个边缘} } 吗?", "unassign-edges-title": "确定要取消分配 {count,plural, =1 {1 个边缘} other {# 个边缘} } 吗?",
"unassign-edges-text": "确定后,所有选定的边缘将被取消分配,并且客户将无法访问。", "unassign-edges-text": "确定后,所有选定的边缘将被取消分配,并且客户将无法访问。",
"make-public": "公开", "make-public": "公开",
"make-public-edge-title": "确定要将边缘 '{{edgeName}}' 设为公开吗?", "make-public-edge-title": "确定要将边缘 '{{edgeName}}' 设为公开吗?",
@ -1746,7 +1746,7 @@
"rulechain-templates": "规则链模版", "rulechain-templates": "规则链模版",
"rulechains": "规则链", "rulechains": "规则链",
"search": "搜索边缘", "search": "搜索边缘",
"selected-edges": "{ count, plural, 1 {1 个边缘} other {# 个边缘} } 被选中", "selected-edges": "{ count, plural, =1 {1 个边缘} other {# 个边缘} } 被选中",
"any-edge": "任何边缘", "any-edge": "任何边缘",
"no-edge-types-matching": "未找到匹配的边缘类型 '{{entitySubtype}}'。", "no-edge-types-matching": "未找到匹配的边缘类型 '{{entitySubtype}}'。",
"edge-type-list-empty": "没有选择边缘类型。", "edge-type-list-empty": "没有选择边缘类型。",
@ -1847,63 +1847,63 @@
"type-required": "实体类型必填。", "type-required": "实体类型必填。",
"type-device": "设备", "type-device": "设备",
"type-devices": "设备", "type-devices": "设备",
"list-of-devices": "{ count, plural, 1 {1 个设备} other {# 个设备} }", "list-of-devices": "{ count, plural, =1 {1 个设备} other {# 个设备} }",
"device-name-starts-with": "以 '{{prefix}}' 开头的设备", "device-name-starts-with": "以 '{{prefix}}' 开头的设备",
"type-device-profile": "设备配置", "type-device-profile": "设备配置",
"type-device-profiles": "设备配置", "type-device-profiles": "设备配置",
"list-of-device-profiles": "{ count, plural, 1 {1 个设备配置} other {# 个设备配置} }", "list-of-device-profiles": "{ count, plural, =1 {1 个设备配置} other {# 个设备配置} }",
"device-profile-name-starts-with": "名称以 '{{prefix}}' 开头的设备配置", "device-profile-name-starts-with": "名称以 '{{prefix}}' 开头的设备配置",
"type-asset-profile": "资产配置", "type-asset-profile": "资产配置",
"type-asset-profiles": "资产配置", "type-asset-profiles": "资产配置",
"list-of-asset-profiles": "{ count, plural, 1 {One asset profile} other {List of # asset profiles} }", "list-of-asset-profiles": "{ count, plural, =1 {One asset profile} other {List of # asset profiles} }",
"asset-profile-name-starts-with": "Asset profiles whose names start with '{{prefix}}'", "asset-profile-name-starts-with": "Asset profiles whose names start with '{{prefix}}'",
"type-asset": "资产", "type-asset": "资产",
"type-assets": "资产", "type-assets": "资产",
"list-of-assets": "{ count, plural, 1 {1 个资产} other {# 个资产} }", "list-of-assets": "{ count, plural, =1 {1 个资产} other {# 个资产} }",
"asset-name-starts-with": "以 '{{prefix}}' 开头的资产", "asset-name-starts-with": "以 '{{prefix}}' 开头的资产",
"type-entity-view": "实体视图", "type-entity-view": "实体视图",
"type-entity-views": "实体视图", "type-entity-views": "实体视图",
"list-of-entity-views": "{ count, plural, 1 {1 个实体视图} other {# 个实体视图} }", "list-of-entity-views": "{ count, plural, =1 {1 个实体视图} other {# 个实体视图} }",
"entity-view-name-starts-with": "以 '{{prefix}}' 开头的实体视图", "entity-view-name-starts-with": "以 '{{prefix}}' 开头的实体视图",
"type-rule": "规则", "type-rule": "规则",
"type-rules": "规则", "type-rules": "规则",
"list-of-rules": "{ count, plural, 1 {1 个规则} other {# 个规则} }", "list-of-rules": "{ count, plural, =1 {1 个规则} other {# 个规则} }",
"rule-name-starts-with": "以 '{{prefix}}' 开头的规则", "rule-name-starts-with": "以 '{{prefix}}' 开头的规则",
"type-plugin": "插件", "type-plugin": "插件",
"type-plugins": "插件", "type-plugins": "插件",
"list-of-plugins": "{ count, plural, 1 {1 个插件} other {# 个插件} }", "list-of-plugins": "{ count, plural, =1 {1 个插件} other {# 个插件} }",
"plugin-name-starts-with": "以 '{{prefix}}' 开头的插件", "plugin-name-starts-with": "以 '{{prefix}}' 开头的插件",
"type-tenant": "租户", "type-tenant": "租户",
"type-tenants": "租户", "type-tenants": "租户",
"list-of-tenants": "{ count, plural, 1 {1 个租户} other {# 个租户} }", "list-of-tenants": "{ count, plural, =1 {1 个租户} other {# 个租户} }",
"tenant-name-starts-with": "以 '{{prefix}}' 开头的租户", "tenant-name-starts-with": "以 '{{prefix}}' 开头的租户",
"type-tenant-profile": "租户简介", "type-tenant-profile": "租户简介",
"type-tenant-profiles": "租户配置", "type-tenant-profiles": "租户配置",
"list-of-tenant-profiles": "{ count, plural, 1 {1 个租户配置} other {# 个租户配置} }", "list-of-tenant-profiles": "{ count, plural, =1 {1 个租户配置} other {# 个租户配置} }",
"tenant-profile-name-starts-with": "名称以 '{{prefix}}' 开头的租户配置", "tenant-profile-name-starts-with": "名称以 '{{prefix}}' 开头的租户配置",
"type-customer": "客户", "type-customer": "客户",
"type-customers": "客户", "type-customers": "客户",
"list-of-customers": "{ count, plural, 1 {1 个客户} other {# 个客户} }", "list-of-customers": "{ count, plural, =1 {1 个客户} other {# 个客户} }",
"customer-name-starts-with": "以 '{{prefix}}' 开头的客户", "customer-name-starts-with": "以 '{{prefix}}' 开头的客户",
"type-user": "用户", "type-user": "用户",
"type-users": "用户", "type-users": "用户",
"list-of-users": "{ count, plural, 1 {1 个用户} other {# 个用户} }", "list-of-users": "{ count, plural, =1 {1 个用户} other {# 个用户} }",
"user-name-starts-with": "以 '{{prefix}}' 开头的用户", "user-name-starts-with": "以 '{{prefix}}' 开头的用户",
"type-dashboard": "仪表板", "type-dashboard": "仪表板",
"type-dashboards": "仪表板", "type-dashboards": "仪表板",
"list-of-dashboards": "{ count, plural, 1 {1 个仪表板} other {# 个仪表板} }", "list-of-dashboards": "{ count, plural, =1 {1 个仪表板} other {# 个仪表板} }",
"dashboard-name-starts-with": "以 '{{prefix}}' 开头的仪表板", "dashboard-name-starts-with": "以 '{{prefix}}' 开头的仪表板",
"type-alarm": "告警", "type-alarm": "告警",
"type-alarms": "告警", "type-alarms": "告警",
"list-of-alarms": "{ count, plural, 1 {1 个告警} other {# 个告警} }", "list-of-alarms": "{ count, plural, =1 {1 个告警} other {# 个告警} }",
"alarm-name-starts-with": "以 '{{prefix}}' 开头的告警", "alarm-name-starts-with": "以 '{{prefix}}' 开头的告警",
"type-rulechain": "规则链", "type-rulechain": "规则链",
"type-rulechains": "规则链库", "type-rulechains": "规则链库",
"list-of-rulechains": "{ count, plural, 1 {1 个规则链} other {# 个规则链} }", "list-of-rulechains": "{ count, plural, =1 {1 个规则链} other {# 个规则链} }",
"rulechain-name-starts-with": "规则链前缀名称 '{{prefix}}'", "rulechain-name-starts-with": "规则链前缀名称 '{{prefix}}'",
"type-rulenode": "规则节点", "type-rulenode": "规则节点",
"type-rulenodes": "规则节点", "type-rulenodes": "规则节点",
"list-of-rulenodes": "{ count, plural, 1 {1 个规则节点} other {# 个规则节点} }", "list-of-rulenodes": "{ count, plural, =1 {1 个规则节点} other {# 个规则节点} }",
"rulenode-name-starts-with": "名称以 '{{prefix}}' 开头的规则节点", "rulenode-name-starts-with": "名称以 '{{prefix}}' 开头的规则节点",
"type-current-customer": "当前客户", "type-current-customer": "当前客户",
"type-current-tenant": "当前租户", "type-current-tenant": "当前租户",
@ -1911,9 +1911,9 @@
"type-current-user-owner": "当前用户所有者", "type-current-user-owner": "当前用户所有者",
"type-widgets-bundle": "Widgets bundle", "type-widgets-bundle": "Widgets bundle",
"type-widgets-bundles": "Widgets bundles", "type-widgets-bundles": "Widgets bundles",
"list-of-widgets-bundles": "{ count, plural, 1 {1 个部件包} other {列表 # 部件包} }", "list-of-widgets-bundles": "{ count, plural, =1 {1 个部件包} other {列表 # 部件包} }",
"search": "实体检索", "search": "实体检索",
"selected-entities": "已选择 { count, plural, 1 {# 个实体} other {# 个实体} }", "selected-entities": "已选择 { count, plural, =1 {# 个实体} other {# 个实体} }",
"entity-name": "实体名", "entity-name": "实体名",
"entity-label": "实体标签", "entity-label": "实体标签",
"details": "实体详情", "details": "实体详情",
@ -1923,7 +1923,7 @@
"type-api-usage-state": "Api使用状态", "type-api-usage-state": "Api使用状态",
"type-edge": "边缘", "type-edge": "边缘",
"type-edges": "边缘", "type-edges": "边缘",
"list-of-edges": "{ count, plural, 1 {1 个边缘} other {列表 # 个边缘} }", "list-of-edges": "{ count, plural, =1 {1 个边缘} other {列表 # 个边缘} }",
"edge-name-starts-with": "以 '{{prefix}}' 开头的边缘", "edge-name-starts-with": "以 '{{prefix}}' 开头的边缘",
"type-tb-resource": "资源", "type-tb-resource": "资源",
"type-ota-package": "OTA包" "type-ota-package": "OTA包"
@ -1986,21 +1986,21 @@
"add-entity-view-text": "添加新实体视图", "add-entity-view-text": "添加新实体视图",
"delete": "删除实体视图", "delete": "删除实体视图",
"assign-entity-views": "分配实体视图", "assign-entity-views": "分配实体视图",
"assign-entity-views-text": "分配 { count, plural, 1 {# 个实体视图} other {# 个实体视图} } 给客户", "assign-entity-views-text": "分配 { count, plural, =1 {# 个实体视图} other {# 个实体视图} } 给客户",
"delete-entity-views": "删除实体视图", "delete-entity-views": "删除实体视图",
"unassign-from-customer": "取消分配客户", "unassign-from-customer": "取消分配客户",
"unassign-entity-views": "取消分配实体视图", "unassign-entity-views": "取消分配实体视图",
"unassign-entity-views-action-title": "从客户处取消分配{count,plural,1 {# 实体视图} other {# 实体视图} }", "unassign-entity-views-action-title": "从客户处取消分配{count,plural, =1 {# 实体视图} other {# 实体视图} }",
"assign-new-entity-view": "分配新实体视图", "assign-new-entity-view": "分配新实体视图",
"delete-entity-view-title": "确定要删除实体视图 '{{entityViewName}}'吗?", "delete-entity-view-title": "确定要删除实体视图 '{{entityViewName}}'吗?",
"delete-entity-view-text": "请注意:确认后实体视图及其所有相关数据将不可恢复。", "delete-entity-view-text": "请注意:确认后实体视图及其所有相关数据将不可恢复。",
"delete-entity-views-title": "确定要删除 { count, plural, 1 {# 实体视图} other {# 实体视图} }吗?", "delete-entity-views-title": "确定要删除 { count, plural, =1 {# 实体视图} other {# 实体视图} }吗?",
"delete-entity-views-action-title": "删除 { count, plural, 1 {# 个实体视图} other {# 个实体视图} }", "delete-entity-views-action-title": "删除 { count, plural, =1 {# 个实体视图} other {# 个实体视图} }",
"delete-entity-views-text": "请注意:确认后,所有选定的实体视图将被删除,所有相关的数据将不可恢复。", "delete-entity-views-text": "请注意:确认后,所有选定的实体视图将被删除,所有相关的数据将不可恢复。",
"unassign-entity-view-title": "确定要取消对 '{{entityViewName}}' 实体视图的分配吗?", "unassign-entity-view-title": "确定要取消对 '{{entityViewName}}' 实体视图的分配吗?",
"unassign-entity-view-text": "确认后,实体视图将未分配,客户无法访问。", "unassign-entity-view-text": "确认后,实体视图将未分配,客户无法访问。",
"unassign-entity-view": "未分配实体视图", "unassign-entity-view": "未分配实体视图",
"unassign-entity-views-title": "确定要取消分配 { count, plural, 1 {# 个实体视图} other {# 个实体视图} } 吗?", "unassign-entity-views-title": "确定要取消分配 { count, plural, =1 {# 个实体视图} other {# 个实体视图} } 吗?",
"unassign-entity-views-text": "确认后,所有选定的实体视图将被分配,客户无法访问。", "unassign-entity-views-text": "确认后,所有选定的实体视图将被分配,客户无法访问。",
"entity-view-type": "实体视图类型", "entity-view-type": "实体视图类型",
"entity-view-type-required": "实体视图类型必填。", "entity-view-type-required": "实体视图类型必填。",
@ -2045,7 +2045,7 @@
"timeseries-data": "时间序列数据", "timeseries-data": "时间序列数据",
"timeseries-data-hint": "配置目标实体的 Timeseries 数据键,以便实体视图可以访问这些键。此 Timeseries 数据是只读的。", "timeseries-data-hint": "配置目标实体的 Timeseries 数据键,以便实体视图可以访问这些键。此 Timeseries 数据是只读的。",
"search": "查找实体视图", "search": "查找实体视图",
"selected-entity-views": "已选择 { count, plural, 1 {# 个实体视图} other {# 个实体视图} }", "selected-entity-views": "已选择 { count, plural, =1 {# 个实体视图} other {# 个实体视图} }",
"make-public-entity-view-title": "确定要将实体视图 '{{entityViewName}}' 设为公开吗?", "make-public-entity-view-title": "确定要将实体视图 '{{entityViewName}}' 设为公开吗?",
"make-public-entity-view-text": "确认后,实体视图及其所有数据将被公开并被他人访问。", "make-public-entity-view-text": "确认后,实体视图及其所有数据将被公开并被他人访问。",
"make-private-entity-view-title": "确定要将实体视图 '{{entityViewName}}' 设为私有吗?", "make-private-entity-view-title": "确定要将实体视图 '{{entityViewName}}' 设为私有吗?",
@ -2054,9 +2054,9 @@
"assign-entity-view-to-edge-text": "请选择要分配给边缘的实体视图", "assign-entity-view-to-edge-text": "请选择要分配给边缘的实体视图",
"unassign-entity-view-from-edge-title": "确定要取消对 '{{entityViewName}}' 实体视图的分配吗?", "unassign-entity-view-from-edge-title": "确定要取消对 '{{entityViewName}}' 实体视图的分配吗?",
"unassign-entity-view-from-edge-text": "确认后,实体视图将未分配,边缘无法访问。", "unassign-entity-view-from-edge-text": "确认后,实体视图将未分配,边缘无法访问。",
"unassign-entity-views-from-edge-action-title": "从边缘处取消分配{count,plural,1 {# 实体视图} other {# 实体视图} }", "unassign-entity-views-from-edge-action-title": "从边缘处取消分配{count,plural, =1 {# 实体视图} other {# 实体视图} }",
"unassign-entity-view-from-edge": "未分配实体视图", "unassign-entity-view-from-edge": "未分配实体视图",
"unassign-entity-views-from-edge-title": "确定要取消分配 { count, plural, 1 {# 个实体视图} other {# 个实体视图} } 吗?", "unassign-entity-views-from-edge-title": "确定要取消分配 { count, plural, =1 {# 个实体视图} other {# 个实体视图} } 吗?",
"unassign-entity-views-from-edge-text": "确认后,所有选定的实体视图将被分配,边缘无法访问。" "unassign-entity-views-from-edge-text": "确认后,所有选定的实体视图将被分配,边缘无法访问。"
}, },
"event": { "event": {
@ -2106,7 +2106,7 @@
}, },
"extension": { "extension": {
"extensions": "扩展", "extensions": "扩展",
"selected-extensions": "已选择 { count, plural, 1 {# 个扩展} other {# 个扩展} }", "selected-extensions": "已选择 { count, plural, =1 {# 个扩展} other {# 个扩展} }",
"type": "类型", "type": "类型",
"key": "键名", "key": "键名",
"value": "价值", "value": "价值",
@ -2120,7 +2120,7 @@
"edit": "编辑扩展", "edit": "编辑扩展",
"delete-extension-title": "确定要删除扩展 '{{extensionId}}'吗?", "delete-extension-title": "确定要删除扩展 '{{extensionId}}'吗?",
"delete-extension-text": "请注意:确认后,扩展和所有相关数据将不可恢复。", "delete-extension-text": "请注意:确认后,扩展和所有相关数据将不可恢复。",
"delete-extensions-title": "确定要删除 { count, plural, 1 {# 个扩展} other {# 个扩展} }吗?", "delete-extensions-title": "确定要删除 { count, plural, =1 {# 个扩展} other {# 个扩展} }吗?",
"delete-extensions-text": "请注意:确认后,所有选定的扩展将被删除,所有相关数据将不可恢复。", "delete-extensions-text": "请注意:确认后,所有选定的扩展将被删除,所有相关数据将不可恢复。",
"converters": "转换器", "converters": "转换器",
"converter-id": "转换器序号", "converter-id": "转换器序号",
@ -2440,8 +2440,8 @@
"grid": { "grid": {
"delete-item-title": "确定要删除此项吗?", "delete-item-title": "确定要删除此项吗?",
"delete-item-text": "请注意,确认后,项目及其所有相关数据将不可恢复。", "delete-item-text": "请注意,确认后,项目及其所有相关数据将不可恢复。",
"delete-items-title": "确定删除 { count, plural, 1 {# 项} other {# 项} }吗?", "delete-items-title": "确定删除 { count, plural, =1 {# 项} other {# 项} }吗?",
"delete-items-action-title": "删除 { count, plural, 1 {# 个元素} other {# 个元素} }", "delete-items-action-title": "删除 { count, plural, =1 {# 个元素} other {# 个元素} }",
"delete-items-text": "请注意,确认后所有选择的项目将被删除,所有相关数据将不可恢复。", "delete-items-text": "请注意,确认后所有选择的项目将被删除,所有相关数据将不可恢复。",
"add-item-text": "添加新项目", "add-item-text": "添加新项目",
"no-items-text": "未找到项目", "no-items-text": "未找到项目",
@ -2625,7 +2625,7 @@
"verify-your-identity": "身份验证", "verify-your-identity": "身份验证",
"select-way-to-verify": "选择验证方式", "select-way-to-verify": "选择验证方式",
"resend-code": "重发验证码", "resend-code": "重发验证码",
"resend-code-wait": "{ time, plural, 1 {1 秒} other {# 秒} }后重发验证码", "resend-code-wait": "{ time, plural, =1 {1 秒} other {# 秒} }后重发验证码",
"try-another-way": "尝试其他方法", "try-another-way": "尝试其他方法",
"totp-auth-description": "请从验证APP中查看验证码。", "totp-auth-description": "请从验证APP中查看验证码。",
"totp-auth-placeholder": "验证码", "totp-auth-placeholder": "验证码",
@ -2653,8 +2653,8 @@
"checksum-hint": "如果校验和为空,会自动生成", "checksum-hint": "如果校验和为空,会自动生成",
"checksum-algorithm": "校验和算法", "checksum-algorithm": "校验和算法",
"checksum-copied-message": "包校验和已复制到剪贴板", "checksum-copied-message": "包校验和已复制到剪贴板",
"change-firmware": "固件的更改可能会导致 { count, plural, 1 {1 个设备} other {# 个设备} } 的更新。", "change-firmware": "固件的更改可能会导致 { count, plural, =1 {1 个设备} other {# 个设备} } 的更新。",
"change-software": "软件的更改可能会导致 { count, plural, 1 {1 个设备} other {# 个设备} } 的更新。", "change-software": "软件的更改可能会导致 { count, plural, =1 {1 个设备} other {# 个设备} } 的更新。",
"chose-compatible-device-profile": "上传的包仅适用于具有所选配置文件的设备。", "chose-compatible-device-profile": "上传的包仅适用于具有所选配置文件的设备。",
"chose-firmware-distributed-device": "选择将分发到设备的固件", "chose-firmware-distributed-device": "选择将分发到设备的固件",
"chose-software-distributed-device": "选择将分发到设备的软件", "chose-software-distributed-device": "选择将分发到设备的软件",
@ -2667,7 +2667,7 @@
"delete-ota-update-text": "请注意:确认后,OTA升级将不可恢复。", "delete-ota-update-text": "请注意:确认后,OTA升级将不可恢复。",
"delete-ota-update-title": "确定要删除 '{{title}}' OTA升级吗?", "delete-ota-update-title": "确定要删除 '{{title}}' OTA升级吗?",
"delete-ota-updates-text": "请注意:确认后,所有选中的OTA升级将被删除。", "delete-ota-updates-text": "请注意:确认后,所有选中的OTA升级将被删除。",
"delete-ota-updates-title": "确定要删除 { count, plural, 1 {1 OTA升级} other {# OTA升级} } 吗?", "delete-ota-updates-title": "确定要删除 { count, plural, =1 {1 OTA升级} other {# OTA升级} } 吗?",
"description": "说明", "description": "说明",
"direct-url": "直接URL", "direct-url": "直接URL",
"direct-url-copied-message": "包直接URL已复制到剪贴板", "direct-url-copied-message": "包直接URL已复制到剪贴板",
@ -2690,7 +2690,7 @@
"package-type": "包类型", "package-type": "包类型",
"packages-repository": "包仓库", "packages-repository": "包仓库",
"search": "搜索包", "search": "搜索包",
"selected-package": "{ count, plural, 1 {1 个包} other {# 个包} } 选中", "selected-package": "{ count, plural, =1 {1 个包} other {# 个包} } 选中",
"title": "标题", "title": "标题",
"title-required": "标题必填。", "title-required": "标题必填。",
"title-max-length": "标题长度必须少于256个字符", "title-max-length": "标题长度必须少于256个字符",
@ -2785,17 +2785,17 @@
}, },
"password-requirement": { "password-requirement": {
"at-least": "至少:", "at-least": "至少:",
"character": "{ count, plural, 1 {1 位字符} other {# 位字符} }", "character": "{ count, plural, =1 {1 位字符} other {# 位字符} }",
"digit": "{ count, plural, 1 {1 位数字} other {# 位数字} }", "digit": "{ count, plural, =1 {1 位数字} other {# 位数字} }",
"incorrect-password-try-again": "密码不正确。再试一次", "incorrect-password-try-again": "密码不正确。再试一次",
"lowercase-letter": "{ count, plural, 1 {1 位小写字母} other {# 位小写字母} }", "lowercase-letter": "{ count, plural, =1 {1 位小写字母} other {# 位小写字母} }",
"new-passwords-not-match": "新密码不匹配", "new-passwords-not-match": "新密码不匹配",
"password-should-not-contain-spaces": "密码不应包含空格", "password-should-not-contain-spaces": "密码不应包含空格",
"password-not-meet-requirements": "密码不符合要求", "password-not-meet-requirements": "密码不符合要求",
"password-requirements": "密码要求", "password-requirements": "密码要求",
"password-should-difference": "新密码应与当前密码不同", "password-should-difference": "新密码应与当前密码不同",
"special-character": "{ count, plural, 1 {1 位特殊字符} other {# 位特殊字符} }", "special-character": "{ count, plural, =1 {1 位特殊字符} other {# 位特殊字符} }",
"uppercase-letter": "{ count, plural, 1 {1 位大写字母} other {# 位大写字母} }" "uppercase-letter": "{ count, plural, =1 {1 位大写字母} other {# 位大写字母} }"
} }
}, },
"relation": { "relation": {
@ -2811,7 +2811,7 @@
}, },
"from-relations": "向外的关联", "from-relations": "向外的关联",
"to-relations": "向内的关联", "to-relations": "向内的关联",
"selected-relations": "已选择{ count, plural, 1 {# 个关联} other {# 个关联} }", "selected-relations": "已选择{ count, plural, =1 {# 个关联} other {# 个关联} }",
"type": "类型", "type": "类型",
"to-entity-type": "到实体类型", "to-entity-type": "到实体类型",
"to-entity-name": "到实体名称", "to-entity-name": "到实体名称",
@ -2828,11 +2828,11 @@
"edit": "编辑关联", "edit": "编辑关联",
"delete-to-relation-title": "确定要删除实体 '{{entityName}}' 的关联吗?", "delete-to-relation-title": "确定要删除实体 '{{entityName}}' 的关联吗?",
"delete-to-relation-text": "确定删除后实体 '{{entityName}}' 将取消与当前实体的关联关系。", "delete-to-relation-text": "确定删除后实体 '{{entityName}}' 将取消与当前实体的关联关系。",
"delete-to-relations-title": "确定要删除 { count, plural, 1 {# 个关联} other {# 个关联} }吗?", "delete-to-relations-title": "确定要删除 { count, plural, =1 {# 个关联} other {# 个关联} }吗?",
"delete-to-relations-text": "确定删除所有选择的关联关系后,与当前实体对应的所有关联关系将被移除。", "delete-to-relations-text": "确定删除所有选择的关联关系后,与当前实体对应的所有关联关系将被移除。",
"delete-from-relation-title": "确定要从实体 '{{entityName}}' 删除关联吗?", "delete-from-relation-title": "确定要从实体 '{{entityName}}' 删除关联吗?",
"delete-from-relation-text": "确定删除后,当前实体将与实体 '{{entityName}}' 取消关联", "delete-from-relation-text": "确定删除后,当前实体将与实体 '{{entityName}}' 取消关联",
"delete-from-relations-title": "确定删除 { count, plural, 1 {# 个关联} other {# 个关联} } 吗?", "delete-from-relations-title": "确定删除 { count, plural, =1 {# 个关联} other {# 个关联} } 吗?",
"delete-from-relations-text": "确定删除所有选择的关联关系后,当前实体将与对应的实体取消关联", "delete-from-relations-text": "确定删除所有选择的关联关系后,当前实体将与对应的实体取消关联",
"remove-relation-filter": "移除关联筛选器", "remove-relation-filter": "移除关联筛选器",
"add-relation-filter": "添加关联筛选器", "add-relation-filter": "添加关联筛选器",
@ -2848,9 +2848,9 @@
"delete": "删除资源", "delete": "删除资源",
"delete-resource-text": "请注意:确认后,资源将不可恢复。", "delete-resource-text": "请注意:确认后,资源将不可恢复。",
"delete-resource-title": "确定要删除资源 '{{resourceTitle}}' 吗?", "delete-resource-title": "确定要删除资源 '{{resourceTitle}}' 吗?",
"delete-resources-action-title": "删除 { count, plural, 1 {# 个资源} other {# 个资源} }", "delete-resources-action-title": "删除 { count, plural, =1 {# 个资源} other {# 个资源} }",
"delete-resources-text": "请注意:确认后,所有选定的资源将被删除。", "delete-resources-text": "请注意:确认后,所有选定的资源将被删除。",
"delete-resources-title": "确定要删除 { count, plural, 1 {# 个资源} other {# 个资源} }吗?", "delete-resources-title": "确定要删除 { count, plural, =1 {# 个资源} other {# 个资源} }吗?",
"download": "Download resource", "download": "Download resource",
"drop-file": "拖拽资源文件或单击以选择要上传的文件。", "drop-file": "拖拽资源文件或单击以选择要上传的文件。",
"drop-resource-file-or": "Drag and drop a resource file or", "drop-resource-file-or": "Drag and drop a resource file or",
@ -2865,7 +2865,7 @@
"resource-type": "资源类型", "resource-type": "资源类型",
"resources-library": "资源库", "resources-library": "资源库",
"search": "查找资源", "search": "查找资源",
"selected-resources": "已选择{ count, plural, 1 {# 个资源} other {# 个资源} }", "selected-resources": "已选择{ count, plural, =1 {# 个资源} other {# 个资源} }",
"system": "系统", "system": "系统",
"title": "标题", "title": "标题",
"title-required": "标题是必填项。", "title-required": "标题是必填项。",
@ -2886,8 +2886,8 @@
"set-root-rulechain-text": "确认后,规则链将变为根规格链,并将处理所有传入的传输消息。", "set-root-rulechain-text": "确认后,规则链将变为根规格链,并将处理所有传入的传输消息。",
"delete-rulechain-title": " 确定要删除规则链'{{ruleChainName}}'吗?", "delete-rulechain-title": " 确定要删除规则链'{{ruleChainName}}'吗?",
"delete-rulechain-text": "请注意,确认后,规则链和所有相关数据将不可恢复。", "delete-rulechain-text": "请注意,确认后,规则链和所有相关数据将不可恢复。",
"delete-rulechains-title": "确定要删除{count, plural, 1 { 1 个规则链} other {# 个规则链} }吗?", "delete-rulechains-title": "确定要删除{count, plural, =1 { 1 个规则链} other {# 个规则链} }吗?",
"delete-rulechains-action-title": "删除 { count, plural, 1 {# 个规则链} other {# 个规则链} }", "delete-rulechains-action-title": "删除 { count, plural, =1 {# 个规则链} other {# 个规则链} }",
"delete-rulechains-text": "请注意:确认后,所有选定的规则链将被删除,所有相关的数据将不可恢复。", "delete-rulechains-text": "请注意:确认后,所有选定的规则链将被删除,所有相关的数据将不可恢复。",
"add-rulechain-text": "添加新的规则链", "add-rulechain-text": "添加新的规则链",
"no-rulechains-text": "未找到规则链", "no-rulechains-text": "未找到规则链",
@ -2909,14 +2909,14 @@
"management": "规则集管理", "management": "规则集管理",
"debug-mode": "调试模式", "debug-mode": "调试模式",
"search": "查找规则链", "search": "查找规则链",
"selected-rulechains": "已选择 { count, plural, 1 {# 个规则链} other {# 个规则链} }", "selected-rulechains": "已选择 { count, plural, =1 {# 个规则链} other {# 个规则链} }",
"open-rulechain": "打开规则链", "open-rulechain": "打开规则链",
"assign-new-rulechain": "Assign new rulechain", "assign-new-rulechain": "Assign new rulechain",
"edge-template-root": "模版根链", "edge-template-root": "模版根链",
"assign-to-edge": "分配给边缘", "assign-to-edge": "分配给边缘",
"edge-rulechain": "边缘规则链", "edge-rulechain": "边缘规则链",
"unassign-rulechain-from-edge-text": "确认后,规则链将会取消分配,边缘无法访问。", "unassign-rulechain-from-edge-text": "确认后,规则链将会取消分配,边缘无法访问。",
"unassign-rulechains-from-edge-title": "确定要取消分配 { count, plural, 1 {1 个规则链} other {# 个规则链} }吗?", "unassign-rulechains-from-edge-title": "确定要取消分配 { count, plural, =1 {1 个规则链} other {# 个规则链} }吗?",
"unassign-rulechains-from-edge-text": "确认后,选定的规则链将会取消分配,边缘无法访问。", "unassign-rulechains-from-edge-text": "确认后,选定的规则链将会取消分配,边缘无法访问。",
"assign-rulechain-to-edge-title": "分配规则链给边缘", "assign-rulechain-to-edge-title": "分配规则链给边缘",
"assign-rulechain-to-edge-text": "请选择要分配给边缘的规则链", "assign-rulechain-to-edge-text": "请选择要分配给边缘的规则链",
@ -3041,9 +3041,9 @@
"submit-strategy-type-required": "提交策略类型必填。", "submit-strategy-type-required": "提交策略类型必填。",
"processing-strategy-type-required": "处理策略类型必填。", "processing-strategy-type-required": "处理策略类型必填。",
"queues": "队列", "queues": "队列",
"selected-queues": "已选择 { count, plural, 1 {1 个队列} other {# 个队列} }", "selected-queues": "已选择 { count, plural, =1 {1 个队列} other {# 个队列} }",
"delete-queue-title": "确定要删除 '{{queueName}}' 队列吗?", "delete-queue-title": "确定要删除 '{{queueName}}' 队列吗?",
"delete-queues-title": "确定要删除 { count, plural, 1 {1 个队列} other {# 个队列} }吗?", "delete-queues-title": "确定要删除 { count, plural, =1 {1 个队列} other {# 个队列} }吗?",
"delete-queue-text": "请注意:确认后,队列和所有相关数据将不可恢复。", "delete-queue-text": "请注意:确认后,队列和所有相关数据将不可恢复。",
"delete-queues-text": "确认后,所有选定队列都将被删除,无法访问。", "delete-queues-text": "确认后,所有选定队列都将被删除,无法访问。",
"search": "搜索队列", "search": "搜索队列",
@ -3127,8 +3127,8 @@
"title-max-length": "标题长度必须少于256个字符", "title-max-length": "标题长度必须少于256个字符",
"delete-tenant-title": "确定要删除租户'{{tenantTitle}}'吗?", "delete-tenant-title": "确定要删除租户'{{tenantTitle}}'吗?",
"delete-tenant-text": "请注意:确认后,租户和所有相关数据将不可恢复。", "delete-tenant-text": "请注意:确认后,租户和所有相关数据将不可恢复。",
"delete-tenants-title": "确定要删除 {count,plural,1 {# 个租户} other {# 个租户} } 吗?", "delete-tenants-title": "确定要删除 {count,plural, =1 {# 个租户} other {# 个租户} } 吗?",
"delete-tenants-action-title": "删除 { count, plural, 1 {# 个租户} other {# 个租户} }", "delete-tenants-action-title": "删除 { count, plural, =1 {# 个租户} other {# 个租户} }",
"delete-tenants-text": "请注意:确认后,所有选定的租户将被删除,所有相关数据将不可恢复。", "delete-tenants-text": "请注意:确认后,所有选定的租户将被删除,所有相关数据将不可恢复。",
"title": "标题", "title": "标题",
"title-required": "标题必填。", "title-required": "标题必填。",
@ -3141,7 +3141,7 @@
"no-tenants-matching": "未找到匹配 '{{entity}}' 的租户", "no-tenants-matching": "未找到匹配 '{{entity}}' 的租户",
"tenant-required": "租户必填", "tenant-required": "租户必填",
"search": "查找租户", "search": "查找租户",
"selected-tenants": "已选择 { count, plural, 1 {# 个租户} other {# 个租户} }", "selected-tenants": "已选择 { count, plural, =1 {# 个租户} other {# 个租户} }",
"isolated-tb-rule-engine": "使用独立的规则引擎服务", "isolated-tb-rule-engine": "使用独立的规则引擎服务",
"isolated-tb-rule-engine-details": "每个独立租户需要单独的规则引擎微服务" "isolated-tb-rule-engine-details": "每个独立租户需要单独的规则引擎微服务"
}, },
@ -3154,7 +3154,7 @@
"no-tenant-profiles-text": "未找到租户配置", "no-tenant-profiles-text": "未找到租户配置",
"name-max-length": "名称长度必须少于256个字符", "name-max-length": "名称长度必须少于256个字符",
"search": "查找租户配置", "search": "查找租户配置",
"selected-tenant-profiles": "已选择 { count, plural, 1 {# 个租户配置} other {# 个租户配置} }", "selected-tenant-profiles": "已选择 { count, plural, =1 {# 个租户配置} other {# 个租户配置} }",
"no-tenant-profiles-matching": "未找到与 '{{entity}}' 匹配的租户配置。", "no-tenant-profiles-matching": "未找到与 '{{entity}}' 匹配的租户配置。",
"tenant-profile-required": "租户配置必填", "tenant-profile-required": "租户配置必填",
"idCopiedMessage": "租户配置ID已复制到剪贴板", "idCopiedMessage": "租户配置ID已复制到剪贴板",
@ -3169,7 +3169,7 @@
"default": "默认", "default": "默认",
"delete-tenant-profile-title": "确定要删除租户配置 '{{tenantProfileName}}'吗?", "delete-tenant-profile-title": "确定要删除租户配置 '{{tenantProfileName}}'吗?",
"delete-tenant-profile-text": "请注意:确认后,租户配置和所有相关数据将不可恢复。", "delete-tenant-profile-text": "请注意:确认后,租户配置和所有相关数据将不可恢复。",
"delete-tenant-profiles-title": "确定要删除 { count, plural, 1 {# 个租户配置} other {# 个租户配置} }吗?", "delete-tenant-profiles-title": "确定要删除 { count, plural, =1 {# 个租户配置} other {# 个租户配置} }吗?",
"delete-tenant-profiles-text": "请注意:确认后,所有选定的租户配置将被删除,所有相关数据将不可恢复。", "delete-tenant-profiles-text": "请注意:确认后,所有选定的租户配置将被删除,所有相关数据将不可恢复。",
"set-default-tenant-profile-title": "确定要将租户配置 '{{tenantProfileName}}' 设为默认值吗?", "set-default-tenant-profile-title": "确定要将租户配置 '{{tenantProfileName}}' 设为默认值吗?",
"set-default-tenant-profile-text": "确认后,此租户配置将被标记为默认配置,并将用于未指定配置的新租户。", "set-default-tenant-profile-text": "确认后,此租户配置将被标记为默认配置,并将用于未指定配置的新租户。",
@ -3314,10 +3314,10 @@
} }
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {# 秒} other {# 秒} }", "seconds-interval": "{ seconds, plural, =1 {# 秒} other {# 秒} }",
"minutes-interval": "{ minutes, plural, 1 {# 分} other {# 分} }", "minutes-interval": "{ minutes, plural, =1 {# 分} other {# 分} }",
"hours-interval": "{ hours, plural, 1 {# 小时} other {# 小时} }", "hours-interval": "{ hours, plural, =1 {# 小时} other {# 小时} }",
"days-interval": "{ days, plural, 1 {# 天} other {# 天} }", "days-interval": "{ days, plural, =1 {# 天} other {# 天} }",
"days": "天", "days": "天",
"hours": "小时", "hours": "小时",
"minutes": "分钟", "minutes": "分钟",
@ -3352,10 +3352,10 @@
"days": "天" "days": "天"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 {# 天 } other {# 天 } }", "days": "{ days, plural, =1 {# 天 } other {# 天 } }",
"hours": "{ hours, plural, 0 {- 小时 } 1 {# 小时 } other {# 小时 } }", "hours": "{ hours, plural, =0 {- 小时 } =1 {# 小时 } other {# 小时 } }",
"minutes": "{ minutes, plural, 0 {- 分 } 1 {# 分 } other {# 分 } }", "minutes": "{ minutes, plural, =0 {- 分 } =1 {# 分 } other {# 分 } }",
"seconds": "{ seconds, plural, 0 {- 秒 } 1 {# 秒 } other {# 秒 } }", "seconds": "{ seconds, plural, =0 {- 秒 } =1 {# 秒 } other {# 秒 } }",
"realtime": "实时", "realtime": "实时",
"history": "历史", "history": "历史",
"last-prefix": "最后", "last-prefix": "最后",
@ -3383,8 +3383,8 @@
"user-details": "用户详细信息", "user-details": "用户详细信息",
"delete-user-title": "确定要删除用户 '{{userEmail}}' 吗?", "delete-user-title": "确定要删除用户 '{{userEmail}}' 吗?",
"delete-user-text": "请注意:确认后,用户和所有相关数据将不可恢复。", "delete-user-text": "请注意:确认后,用户和所有相关数据将不可恢复。",
"delete-users-title": "确定要删除 { count, plural, 1 {# 个用户} other {# 个用户} } 吗?", "delete-users-title": "确定要删除 { count, plural, =1 {# 个用户} other {# 个用户} } 吗?",
"delete-users-action-title": "删除 { count, plural, 1 {# 个用户} other {# 个用户} }", "delete-users-action-title": "删除 { count, plural, =1 {# 个用户} other {# 个用户} }",
"delete-users-text": "请注意:确认后,所有选定的用户将被删除,所有相关数据将不可恢复。", "delete-users-text": "请注意:确认后,所有选定的用户将被删除,所有相关数据将不可恢复。",
"activation-email-sent-message": "激活电子邮件已成功发送!", "activation-email-sent-message": "激活电子邮件已成功发送!",
"resend-activation": "重新发送激活", "resend-activation": "重新发送激活",
@ -3410,7 +3410,7 @@
"login-as-tenant-admin": "以租户管理员身份登录", "login-as-tenant-admin": "以租户管理员身份登录",
"login-as-customer-user": "以客户用户身份登录", "login-as-customer-user": "以客户用户身份登录",
"search": "查找用户", "search": "查找用户",
"selected-users": "已选择 { count, plural, 1 {# 个用户} other {# 个用户} }", "selected-users": "已选择 { count, plural, =1 {# 个用户} other {# 个用户} }",
"disable-account": "禁用用户帐户", "disable-account": "禁用用户帐户",
"enable-account": "启用用户帐户", "enable-account": "启用用户帐户",
"enable-account-message": "已成功启用用户帐户!", "enable-account-message": "已成功启用用户帐户!",
@ -3476,7 +3476,7 @@
"previous-difference": "上一个差异", "previous-difference": "上一个差异",
"next-difference": "下一个差异", "next-difference": "下一个差异",
"current": "当前", "current": "当前",
"differences": "{ count, plural, 1 {1 个差异} other {# 个差异} }", "differences": "{ count, plural, =1 {1 个差异} other {# 个差异} }",
"create-entities-version": "创建实体版本", "create-entities-version": "创建实体版本",
"default-sync-strategy": "默认同步策略", "default-sync-strategy": "默认同步策略",
"sync-strategy-merge": "合并", "sync-strategy-merge": "合并",
@ -3489,7 +3489,7 @@
"no-entities-to-restore-prompt": "请指定要还原的实体", "no-entities-to-restore-prompt": "请指定要还原的实体",
"add-entity-type": "添加实体类型", "add-entity-type": "添加实体类型",
"remove-all": "全部删除", "remove-all": "全部删除",
"version-create-result": "{ added, plural, 0 {没有实体} 1 {1 个实体} other {# 个实体} } 被添加。<br/>{ modified, plural, 0 {没有实体} 1 {1 个实体} other {# 个实体} } 被修改。<br/>{ removed, plural, 0 {没有实体} 1 {1 个实体} other {# 个实体} } 被删除。", "version-create-result": "{ added, plural, =0 {没有实体} =1 {1 个实体} other {# 个实体} } 被添加。<br/>{ modified, plural, =0 {没有实体} =1 {1 个实体} other {# 个实体} } 被修改。<br/>{ removed, plural, =0 {没有实体} =1 {1 个实体} other {# 个实体} } 被删除。",
"remove-other-entities": "删除其他实体", "remove-other-entities": "删除其他实体",
"find-existing-entity-by-name": "按名称查找现有实体", "find-existing-entity-by-name": "按名称查找现有实体",
"restore-entities-from-version": "从版本 '{{versionName}}' 还原实体", "restore-entities-from-version": "从版本 '{{versionName}}' 还原实体",
@ -3647,8 +3647,8 @@
"widgets-bundle-details": "部件包详细信息", "widgets-bundle-details": "部件包详细信息",
"delete-widgets-bundle-title": "确定要删除部件包 '{{widgetsBundleTitle}}'吗?", "delete-widgets-bundle-title": "确定要删除部件包 '{{widgetsBundleTitle}}'吗?",
"delete-widgets-bundle-text": "请注意:确认后,部件包和所有相关数据将不可恢复。", "delete-widgets-bundle-text": "请注意:确认后,部件包和所有相关数据将不可恢复。",
"delete-widgets-bundles-title": "确定要删除 { count, plural, 1 {# 个部件包} other {# 个部件包} } 吗?", "delete-widgets-bundles-title": "确定要删除 { count, plural, =1 {# 个部件包} other {# 个部件包} } 吗?",
"delete-widgets-bundles-action-title": "删除 { count, plural, 1 {# 个部件包} other {# 个部件包} }", "delete-widgets-bundles-action-title": "删除 { count, plural, =1 {# 个部件包} other {# 个部件包} }",
"delete-widgets-bundles-text": "请注意:确认后,所有选定的部件包将被删除,所有相关数据将不可恢复。", "delete-widgets-bundles-text": "请注意:确认后,所有选定的部件包将被删除,所有相关数据将不可恢复。",
"no-widgets-bundles-matching": "未找到与 '{{widgetsBundle}}' 匹配的部件包。", "no-widgets-bundles-matching": "未找到与 '{{widgetsBundle}}' 匹配的部件包。",
"widgets-bundle-required": "部件包必填。", "widgets-bundle-required": "部件包必填。",
@ -3660,7 +3660,7 @@
"widgets-bundle-file": "部件包文件", "widgets-bundle-file": "部件包文件",
"invalid-widgets-bundle-file-error": "无法导入部件包:无效的部件包数据结构。", "invalid-widgets-bundle-file-error": "无法导入部件包:无效的部件包数据结构。",
"search": "查找部件包", "search": "查找部件包",
"selected-widgets-bundles": "已选择 { count, plural, 1 {# 个部件包} other {# 个部件包} }", "selected-widgets-bundles": "已选择 { count, plural, =1 {# 个部件包} other {# 个部件包} }",
"open-widgets-bundle": "打开部件包", "open-widgets-bundle": "打开部件包",
"loading-widgets-bundles": "加载部件包..." "loading-widgets-bundles": "加载部件包..."
}, },
@ -3693,7 +3693,7 @@
"legend": "图例", "legend": "图例",
"display-legend": "显示图例", "display-legend": "显示图例",
"datasources": "数据源", "datasources": "数据源",
"maximum-datasources": "最大允许{ count, plural, 1 {1个数据源。} other {#个数据源。} }", "maximum-datasources": "最大允许{ count, plural, =1 {1个数据源。} other {#个数据源。} }",
"timeseries-key-error": "应至少指定一个时间序列数据密钥", "timeseries-key-error": "应至少指定一个时间序列数据密钥",
"datasource-type": "类型", "datasource-type": "类型",
"datasource-parameters": "参数", "datasource-parameters": "参数",
@ -4758,29 +4758,6 @@
"items-per-page-separator": "-" "items-per-page-separator": "-"
}, },
"language": { "language": {
"language": "语言", "language": "语言"
"locales": {
"de_DE": "德语",
"fr_FR": "法语",
"zh_CN": "简体中文",
"zh_TW": "繁體中文",
"en_US": "英语",
"it_IT": "意大利语",
"ko_KR": "韩语",
"ru_RU": "俄罗斯语",
"es_ES": "西班牙语",
"es_CA": "Catalan",
"ja_JP": "日本語",
"tr_TR": "土耳其语",
"fa_IR": "波斯语",
"uk_UA": "乌克兰语",
"cs_CZ": "捷克语",
"el_GR": "希腊语",
"ro_RO": "罗马尼亚语",
"lv_LV": "拉脱维亚语",
"ka_GE": "格鲁吉亚语",
"pt_BR": "葡萄牙语",
"sl_SI": "斯洛文尼亚语"
}
} }
} }

244
ui-ngx/src/assets/locale/locale.constant-zh_TW.json

@ -474,17 +474,17 @@
"add-asset-text": "增加新資產", "add-asset-text": "增加新資產",
"asset-details": "資產詳細資訊", "asset-details": "資產詳細資訊",
"assign-assets": "分配資產", "assign-assets": "分配資產",
"assign-assets-text": "分配 { count, plural, 1 {1 資產} other {# 資產} } 給客戶", "assign-assets-text": "分配 { count, plural, =1 {1 資產} other {# 資產} } 給客戶",
"assign-asset-to-edge-title": "將資產分配給邊緣", "assign-asset-to-edge-title": "將資產分配給邊緣",
"assign-asset-to-edge-text": "請選擇要分配給邊緣的資產", "assign-asset-to-edge-text": "請選擇要分配給邊緣的資產",
"delete-assets": "刪除資產", "delete-assets": "刪除資產",
"unassign-assets": "取消分配資產", "unassign-assets": "取消分配資產",
"unassign-assets-action-title": "從客戶處取消分配 { count, plural, 1 {1 資產} other {# 資產} } ", "unassign-assets-action-title": "從客戶處取消分配 { count, plural, =1 {1 資產} other {# 資產} } ",
"assign-new-asset": "分配新資產", "assign-new-asset": "分配新資產",
"delete-asset-title": "確定要刪除資產 '{{assetName}}'?", "delete-asset-title": "確定要刪除資產 '{{assetName}}'?",
"delete-asset-text": "小心!確認後資產及其所有相關資料將無法恢復。", "delete-asset-text": "小心!確認後資產及其所有相關資料將無法恢復。",
"delete-assets-title": "確定要刪除 { count, plural, 1 {1 資產} other {# 資產} }?", "delete-assets-title": "確定要刪除 { count, plural, =1 {1 資產} other {# 資產} }?",
"delete-assets-action-title": "刪除 { count, plural, 1 {1 資產} other {# 資產} }", "delete-assets-action-title": "刪除 { count, plural, =1 {1 資產} other {# 資產} }",
"delete-assets-text": "小心,確認後,所有選擇的資產將被刪除,所有相關的資料將變得無法恢復。", "delete-assets-text": "小心,確認後,所有選擇的資產將被刪除,所有相關的資料將變得無法恢復。",
"make-public-asset-title": "你確定你想建立公開'{{assetName}}'資產?", "make-public-asset-title": "你確定你想建立公開'{{assetName}}'資產?",
"make-public-asset-text": "確認後,資產及其所有資料將被公開並被他人存取。", "make-public-asset-text": "確認後,資產及其所有資料將被公開並被他人存取。",
@ -493,7 +493,7 @@
"unassign-asset-title": "您確定要取消對'{{assetName}}'資產的分配嗎?", "unassign-asset-title": "您確定要取消對'{{assetName}}'資產的分配嗎?",
"unassign-asset-text": "確認後,資產將未分配,客戶無法存取。", "unassign-asset-text": "確認後,資產將未分配,客戶無法存取。",
"unassign-asset": "未分配資產", "unassign-asset": "未分配資產",
"unassign-assets-title": "您確定要取消分配 { count, plural, 1 {1 資產} other {# 資產} }嗎?", "unassign-assets-title": "您確定要取消分配 { count, plural, =1 {1 資產} other {# 資產} }嗎?",
"unassign-assets-text": "確認後,所有選擇的資產將被分配,客戶無法存取。", "unassign-assets-text": "確認後,所有選擇的資產將被分配,客戶無法存取。",
"unassign-assets-from-edge": "從邊緣取消分配資產", "unassign-assets-from-edge": "從邊緣取消分配資產",
"copyId": "複製資產ID", "copyId": "複製資產ID",
@ -511,9 +511,9 @@
"unassign-asset-from-edge": "取消分配資產", "unassign-asset-from-edge": "取消分配資產",
"unassign-asset-from-edge-title": "您確定要取消分配資產'{{assetName}}'嗎?", "unassign-asset-from-edge-title": "您確定要取消分配資產'{{assetName}}'嗎?",
"unassign-asset-from-edge-text": "確認後,資產將被取消分配,邊緣將無法訪問。", "unassign-asset-from-edge-text": "確認後,資產將被取消分配,邊緣將無法訪問。",
"unassign-assets-from-edge-title": "您確定要取消分配 { count, plural, 1 {1 資產} other {# 資產} }?", "unassign-assets-from-edge-title": "您確定要取消分配 { count, plural, =1 {1 資產} other {# 資產} }?",
"unassign-assets-from-edge-text": "確認後,所有選定的資產都將被取消分配,邊緣將無法訪問。.", "unassign-assets-from-edge-text": "確認後,所有選定的資產都將被取消分配,邊緣將無法訪問。.",
"selected-assets": "{ count, plural, 1 {1 資產} other {# 資產} }被選中" "selected-assets": "{ count, plural, =1 {1 資產} other {# 資產} }被選中"
}, },
"attribute": { "attribute": {
"attributes": "屬性", "attributes": "屬性",
@ -530,7 +530,7 @@
"key-required": "屬性鍵必填。", "key-required": "屬性鍵必填。",
"value": "值", "value": "值",
"value-required": "屬性值必填。", "value-required": "屬性值必填。",
"delete-attributes-title": "您確定要刪除 { count, plural, 1 {1 屬性} other {# 屬性} }嗎?", "delete-attributes-title": "您確定要刪除 { count, plural, =1 {1 屬性} other {# 屬性} }嗎?",
"delete-attributes-text": "注意,確認後所有選中的屬性都會被刪除。", "delete-attributes-text": "注意,確認後所有選中的屬性都會被刪除。",
"delete-attributes": "刪除屬性", "delete-attributes": "刪除屬性",
"enter-attribute-value": "輸入屬性值", "enter-attribute-value": "輸入屬性值",
@ -540,8 +540,8 @@
"prev-widget": "上一個部件", "prev-widget": "上一個部件",
"add-to-dashboard": "增加到儀表板", "add-to-dashboard": "增加到儀表板",
"add-widget-to-dashboard": "將部件增加到儀表板", "add-widget-to-dashboard": "將部件增加到儀表板",
"selected-attributes": "{ count, plural, 1 {1 屬性} other {# 屬性} } 被選中", "selected-attributes": "{ count, plural, =1 {1 屬性} other {# 屬性} } 被選中",
"selected-telemetry": "{ count, plural, 1 {1 遙測} other {# 遙測} }被選中", "selected-telemetry": "{ count, plural, =1 {1 遙測} other {# 遙測} }被選中",
"no-attributes-text": "找不到屬性", "no-attributes-text": "找不到屬性",
"no-telemetry-text": "找不到遙測" "no-telemetry-text": "找不到遙測"
}, },
@ -717,8 +717,8 @@
"customer-details": "客戶詳細資訊", "customer-details": "客戶詳細資訊",
"delete-customer-title": "您確定要刪除客戶'{{customerTitle}}'嗎?", "delete-customer-title": "您確定要刪除客戶'{{customerTitle}}'嗎?",
"delete-customer-text": "小心!確認後,客戶及其所有相關資料將無法恢復。", "delete-customer-text": "小心!確認後,客戶及其所有相關資料將無法恢復。",
"delete-customers-title": "您確定要刪除 { count, plural, 1 {1 客戶} other {# 客戶} }嗎?", "delete-customers-title": "您確定要刪除 { count, plural, =1 {1 客戶} other {# 客戶} }嗎?",
"delete-customers-action-title": "刪除 { count, plural, 1 {1 客戶} other {# 客戶} }", "delete-customers-action-title": "刪除 { count, plural, =1 {1 客戶} other {# 客戶} }",
"delete-customers-text": "小心!確認後,所有選擇的客戶將被刪除,所有相關資料將無法恢復。", "delete-customers-text": "小心!確認後,所有選擇的客戶將被刪除,所有相關資料將無法恢復。",
"manage-users": "管理用戶", "manage-users": "管理用戶",
"manage-assets": "管理資產", "manage-assets": "管理資產",
@ -739,7 +739,7 @@
"default-customer": "預設客戶", "default-customer": "預設客戶",
"default-customer-required": "為了測試租戶級別上的儀表板,需要預設客戶。", "default-customer-required": "為了測試租戶級別上的儀表板,需要預設客戶。",
"search": "搜尋客戶", "search": "搜尋客戶",
"selected-customers": "{ count, plural, 1 {1 客戶} other {# 客戶} }被選中", "selected-customers": "{ count, plural, =1 {1 客戶} other {# 客戶} }被選中",
"edges": "客戶邊緣實體物件", "edges": "客戶邊緣實體物件",
"manage-edges": "管理邊緣" "manage-edges": "管理邊緣"
}, },
@ -791,20 +791,20 @@
"add-dashboard-text": "增加新的儀表板", "add-dashboard-text": "增加新的儀表板",
"assign-dashboards": "分配儀表板", "assign-dashboards": "分配儀表板",
"assign-new-dashboard": "分配新的儀表板", "assign-new-dashboard": "分配新的儀表板",
"assign-dashboards-text": "分配 { count, plural, 1 {1 儀表板} other {# 儀表板} } 給客戶", "assign-dashboards-text": "分配 { count, plural, =1 {1 儀表板} other {# 儀表板} } 給客戶",
"unassign-dashboards-action-text": "未分配 { count, plural, 1 {1 儀表板} other {# 儀表板} } 給客戶", "unassign-dashboards-action-text": "未分配 { count, plural, =1 {1 儀表板} other {# 儀表板} } 給客戶",
"delete-dashboards": "刪除儀表板", "delete-dashboards": "刪除儀表板",
"unassign-dashboards": "取消分配儀表板", "unassign-dashboards": "取消分配儀表板",
"unassign-dashboards-action-title": "從客戶處取消分配 { count, plural, 1 {1 儀表板} other {# 儀表板} } ", "unassign-dashboards-action-title": "從客戶處取消分配 { count, plural, =1 {1 儀表板} other {# 儀表板} } ",
"delete-dashboard-title": "您確定要刪除儀表板 '{{dashboardTitle}}'嗎?", "delete-dashboard-title": "您確定要刪除儀表板 '{{dashboardTitle}}'嗎?",
"delete-dashboard-text": "小心!確認後儀表板及其所有相關資料將無法恢復。", "delete-dashboard-text": "小心!確認後儀表板及其所有相關資料將無法恢復。",
"delete-dashboards-title": "你確定你要刪除 { count, plural, 1 {1 儀表板} other {# 儀表板} }嗎?", "delete-dashboards-title": "你確定你要刪除 { count, plural, =1 {1 儀表板} other {# 儀表板} }嗎?",
"delete-dashboards-action-title": "刪除 { count, plural, 1 {1 儀表板} other {# 儀表板} }", "delete-dashboards-action-title": "刪除 { count, plural, =1 {1 儀表板} other {# 儀表板} }",
"delete-dashboards-text": "小心!確認後所有選擇的儀表板將被刪除,所有相關資料將無法恢復。", "delete-dashboards-text": "小心!確認後所有選擇的儀表板將被刪除,所有相關資料將無法恢復。",
"unassign-dashboard-title": "您確定要取消分配儀表板 '{{dashboardTitle}}'嗎?", "unassign-dashboard-title": "您確定要取消分配儀表板 '{{dashboardTitle}}'嗎?",
"unassign-dashboard-text": "確認後,面板將被取消分配,客戶將無法存取。", "unassign-dashboard-text": "確認後,面板將被取消分配,客戶將無法存取。",
"unassign-dashboard": "取消分配儀表板", "unassign-dashboard": "取消分配儀表板",
"unassign-dashboards-title": "您確定要取消分配儀表板 { count, plural, 1 {1 儀表板} other {# 儀表板} } 嗎?", "unassign-dashboards-title": "您確定要取消分配儀表板 { count, plural, =1 {1 儀表板} other {# 儀表板} } 嗎?",
"unassign-dashboards-text": "確認後,所有選擇的儀表板將被取消分配,客戶將無法存取。", "unassign-dashboards-text": "確認後,所有選擇的儀表板將被取消分配,客戶將無法存取。",
"public-dashboard-title": "儀表板現已公佈", "public-dashboard-title": "儀表板現已公佈",
"public-dashboard-text": "你的儀表板<b>{{dashboardTitle}}</b> 已被公開,可通過如下<a href='{{publicLink}}' target='_blank'>連結</a>存取:", "public-dashboard-text": "你的儀表板<b>{{dashboardTitle}}</b> 已被公開,可通過如下<a href='{{publicLink}}' target='_blank'>連結</a>存取:",
@ -900,7 +900,7 @@
"manage-states": "儀表板狀態管理", "manage-states": "儀表板狀態管理",
"states": "儀表板狀態", "states": "儀表板狀態",
"search-states": "儀表板狀態檢索", "search-states": "儀表板狀態檢索",
"selected-states": "{ count, plural, 1 {1 儀表板狀態} other {# 儀表板狀態} } 選中", "selected-states": "{ count, plural, =1 {1 儀表板狀態} other {# 儀表板狀態} } 選中",
"edit-state": "儀表板狀態編輯", "edit-state": "儀表板狀態編輯",
"delete-state": "刪除儀表板狀態", "delete-state": "刪除儀表板狀態",
"add-state": "增加儀表板狀態", "add-state": "增加儀表板狀態",
@ -919,11 +919,11 @@
"select-state": "選擇目標狀態", "select-state": "選擇目標狀態",
"state-controller": "狀態控制", "state-controller": "狀態控制",
"search": "搜尋儀表板", "search": "搜尋儀表板",
"selected-dashboards": "{ count, plural, 1 {1 儀表板} other {# 儀表板} }被選中", "selected-dashboards": "{ count, plural, =1 {1 儀表板} other {# 儀表板} }被選中",
"home-dashboard": "主儀表板", "home-dashboard": "主儀表板",
"home-dashboard-hide-toolbar": "隱藏主儀表板工具欄", "home-dashboard-hide-toolbar": "隱藏主儀表板工具欄",
"unassign-dashboard-from-edge-text": "確認後,儀表板將被取消分配,邊緣將無法訪問。", "unassign-dashboard-from-edge-text": "確認後,儀表板將被取消分配,邊緣將無法訪問。",
"unassign-dashboards-from-edge-title": "您確定要取消分配 { count, plural, 1 {1 儀表板} other {# 儀表板} }嗎?", "unassign-dashboards-from-edge-title": "您確定要取消分配 { count, plural, =1 {1 儀表板} other {# 儀表板} }嗎?",
"unassign-dashboards-from-edge-text": "確認後,所有選定的儀表板都將被取消分配,且邊緣將無法訪問。", "unassign-dashboards-from-edge-text": "確認後,所有選定的儀表板都將被取消分配,且邊緣將無法訪問。",
"assign-dashboard-to-edge": "將儀表板分配給邊緣", "assign-dashboard-to-edge": "將儀表板分配給邊緣",
"assign-dashboard-to-edge-text": "請選擇要分配給邊緣的儀表板", "assign-dashboard-to-edge-text": "請選擇要分配給邊緣的儀表板",
@ -946,12 +946,12 @@
"timeseries-required": "需要設備時間序列。", "timeseries-required": "需要設備時間序列。",
"timeseries-or-attributes-required": "設備時間/屬性必填。", "timeseries-or-attributes-required": "設備時間/屬性必填。",
"alarm-fields-timeseries-or-attributes-required": "需要警告字段或實體時間序列/屬性。", "alarm-fields-timeseries-or-attributes-required": "需要警告字段或實體時間序列/屬性。",
"maximum-timeseries-or-attributes": "最大允許 { count, plural, 1 {1 時間序列/屬性} other {# 時間序列/屬性} }", "maximum-timeseries-or-attributes": "最大允許 { count, plural, =1 {1 時間序列/屬性} other {# 時間序列/屬性} }",
"alarm-fields-required": "警告字段必填。", "alarm-fields-required": "警告字段必填。",
"function-types": "函數類型", "function-types": "函數類型",
"function-type": "函數類型", "function-type": "函數類型",
"function-types-required": "需要函數類型。", "function-types-required": "需要函數類型。",
"maximum-function-types": "至少需要 { count, plural, 1 {1 函數類型} other {# 函數類型} }", "maximum-function-types": "至少需要 { count, plural, =1 {1 函數類型} other {# 函數類型} }",
"alarm-keys": "警告資料鍵", "alarm-keys": "警告資料鍵",
"alarm-key": "警告資料鍵", "alarm-key": "警告資料鍵",
"alarm-key-functions": "警告鍵功能", "alarm-key-functions": "警告鍵功能",
@ -1027,11 +1027,11 @@
"manage-credentials": "管理憑據", "manage-credentials": "管理憑據",
"delete": "刪除設備", "delete": "刪除設備",
"assign-devices": "分配設備", "assign-devices": "分配設備",
"assign-devices-text": "將{count,plural,1 {1 設備} other {# 設備} }分配給客戶", "assign-devices-text": "將{count,plural, =1 {1 設備} other {# 設備} }分配給客戶",
"delete-devices": "刪除設備", "delete-devices": "刪除設備",
"unassign-from-customer": "取消分配客戶", "unassign-from-customer": "取消分配客戶",
"unassign-devices": "取消分配設備", "unassign-devices": "取消分配設備",
"unassign-devices-action-title": "從客戶處取消分配{count,plural,1 {1 設備} other {# 設備} }", "unassign-devices-action-title": "從客戶處取消分配{count,plural, =1 {1 設備} other {# 設備} }",
"unassign-device-from-edge-title": "您確定要取消分配設備'{{deviceName}}'嗎?", "unassign-device-from-edge-title": "您確定要取消分配設備'{{deviceName}}'嗎?",
"unassign-device-from-edge-text": "確認後,設備將被取消分配,邊緣將無法訪問。", "unassign-device-from-edge-text": "確認後,設備將被取消分配,邊緣將無法訪問。",
"unassign-devices-from-edge": "從邊緣取消分配設備", "unassign-devices-from-edge": "從邊緣取消分配設備",
@ -1043,13 +1043,13 @@
"view-credentials": "查看憑據", "view-credentials": "查看憑據",
"delete-device-title": "您確定要刪除設備的{{deviceName}}嗎?", "delete-device-title": "您確定要刪除設備的{{deviceName}}嗎?",
"delete-device-text": "小心!確認後設備及其所有相關資料將無法恢復。", "delete-device-text": "小心!確認後設備及其所有相關資料將無法恢復。",
"delete-devices-title": "您確定要刪除{count,plural,1 {1 設備} other {# 設備} } 嗎?", "delete-devices-title": "您確定要刪除{count,plural, =1 {1 設備} other {# 設備} } 嗎?",
"delete-devices-action-title": "刪除 {count,plural,1 {1 設備} other {# 設備} }", "delete-devices-action-title": "刪除 {count,plural, =1 {1 設備} other {# 設備} }",
"delete-devices-text": "小心!確認後所有選擇的設備將被刪除,所有相關資料將無法恢復。", "delete-devices-text": "小心!確認後所有選擇的設備將被刪除,所有相關資料將無法恢復。",
"unassign-device-title": "您確定要取消分配設備 '{{deviceName}}'?", "unassign-device-title": "您確定要取消分配設備 '{{deviceName}}'?",
"unassign-device-text": "確認後,設備將被取消分配,客戶將無法存取。", "unassign-device-text": "確認後,設備將被取消分配,客戶將無法存取。",
"unassign-device": "取消分配設備", "unassign-device": "取消分配設備",
"unassign-devices-title": "您確定要取消分配{count,plural,1 {1 設備} other {# 設備} } 嗎?", "unassign-devices-title": "您確定要取消分配{count,plural, =1 {1 設備} other {# 設備} } 嗎?",
"unassign-devices-text": "確認後,所有選擇的設備將被取消分配,並且客戶將無法存取。", "unassign-devices-text": "確認後,所有選擇的設備將被取消分配,並且客戶將無法存取。",
"device-credentials": "設備憑據", "device-credentials": "設備憑據",
"loading-device-credentials": "正在加載設備憑據...", "loading-device-credentials": "正在加載設備憑據...",
@ -1130,7 +1130,7 @@
"import": "匯入設備", "import": "匯入設備",
"device-file": "設備文件", "device-file": "設備文件",
"search": "搜尋設備", "search": "搜尋設備",
"selected-devices": "{ count, plural, 1 {1 設備} other {# 設備} }被選中", "selected-devices": "{ count, plural, =1 {1 設備} other {# 設備} }被選中",
"device-configuration": "設備配置", "device-configuration": "設備配置",
"transport-configuration": "傳輸配置", "transport-configuration": "傳輸配置",
"wizard": { "wizard": {
@ -1142,7 +1142,7 @@
"customer-to-assign-device": "客戶指定設備", "customer-to-assign-device": "客戶指定設備",
"add-credentials": "新增驗證資訊" "add-credentials": "新增驗證資訊"
}, },
"unassign-devices-from-edge-title": "您確定要解除邊緣設備 { count, plural, 1 {1 device} other {# devices} }的指定嗎?", "unassign-devices-from-edge-title": "您確定要解除邊緣設備 { count, plural, =1 {1 device} other {# devices} }的指定嗎?",
"unassign-devices-from-edge-text": "確認後邊緣指定設備將解除指定及其所有相關資料將無法恢復。" "unassign-devices-from-edge-text": "確認後邊緣指定設備將解除指定及其所有相關資料將無法恢復。"
}, },
"asset-profile": { "asset-profile": {
@ -1154,7 +1154,7 @@
"asset-profile-details": "Asset profile details", "asset-profile-details": "Asset profile details",
"no-asset-profiles-text": "No asset profiles found", "no-asset-profiles-text": "No asset profiles found",
"search": "Search asset profiles", "search": "Search asset profiles",
"selected-asset-profiles": "{ count, plural, 1 {1 asset profile} other {# asset profiles} } selected", "selected-asset-profiles": "{ count, plural, =1 {1 asset profile} other {# asset profiles} } selected",
"no-asset-profiles-matching": "No asset profile matching '{{entity}}' were found.", "no-asset-profiles-matching": "No asset profile matching '{{entity}}' were found.",
"asset-profile-required": "Asset profile is required", "asset-profile-required": "Asset profile is required",
"idCopiedMessage": "Asset profile Id has been copied to clipboard", "idCopiedMessage": "Asset profile Id has been copied to clipboard",
@ -1175,7 +1175,7 @@
"select-queue-hint": "Select from a drop-down list.", "select-queue-hint": "Select from a drop-down list.",
"delete-asset-profile-title": "Are you sure you want to delete the asset profile '{{assetProfileName}}'?", "delete-asset-profile-title": "Are you sure you want to delete the asset profile '{{assetProfileName}}'?",
"delete-asset-profile-text": "Be careful, after the confirmation the asset profile and all related data will become unrecoverable.", "delete-asset-profile-text": "Be careful, after the confirmation the asset profile and all related data will become unrecoverable.",
"delete-asset-profiles-title": "Are you sure you want to delete { count, plural, 1 {1 asset profile} other {# asset profiles} }?", "delete-asset-profiles-title": "Are you sure you want to delete { count, plural, =1 {1 asset profile} other {# asset profiles} }?",
"delete-asset-profiles-text": "Be careful, after the confirmation all selected asset profiles will be removed and all related data will become unrecoverable.", "delete-asset-profiles-text": "Be careful, after the confirmation all selected asset profiles will be removed and all related data will become unrecoverable.",
"set-default-asset-profile-title": "Are you sure you want to make the asset profile '{{assetProfileName}}' default?", "set-default-asset-profile-title": "Are you sure you want to make the asset profile '{{assetProfileName}}' default?",
"set-default-asset-profile-text": "After the confirmation the asset profile will be marked as default and will be used for new assets with no profile specified.", "set-default-asset-profile-text": "After the confirmation the asset profile will be marked as default and will be used for new assets with no profile specified.",
@ -1197,7 +1197,7 @@
"device-profile-details": "設備協議詳情", "device-profile-details": "設備協議詳情",
"no-device-profiles-text": "未找到設備協議文件", "no-device-profiles-text": "未找到設備協議文件",
"search": "搜尋設備協議", "search": "搜尋設備協議",
"selected-device-profiles": "{ count, plural, 1 {1 設備協議} other {# 設備協議} }被選中", "selected-device-profiles": "{ count, plural, =1 {1 設備協議} other {# 設備協議} }被選中",
"no-device-profiles-matching": "未找到與 '{{entity}}'匹配的設備協議。", "no-device-profiles-matching": "未找到與 '{{entity}}'匹配的設備協議。",
"device-profile-required": "需要設備協議", "device-profile-required": "需要設備協議",
"idCopiedMessage": "設備協議Id已複製到剪貼板", "idCopiedMessage": "設備協議Id已複製到剪貼板",
@ -1235,7 +1235,7 @@
"select-queue-hint": "從下拉列表中選擇。", "select-queue-hint": "從下拉列表中選擇。",
"delete-device-profile-title": "您確定要刪除 '{{deviceProfileName}}' 設備協議嗎?", "delete-device-profile-title": "您確定要刪除 '{{deviceProfileName}}' 設備協議嗎?",
"delete-device-profile-text": "小心!確認後此設備協議及其OTA更新的相關資料將無法恢復。", "delete-device-profile-text": "小心!確認後此設備協議及其OTA更新的相關資料將無法恢復。",
"delete-device-profiles-title": "您確定要刪除設備協議標題嗎{ count, plural, 1 {1 設備協議} other {# 設備協議} }?", "delete-device-profiles-title": "您確定要刪除設備協議標題嗎{ count, plural, =1 {1 設備協議} other {# 設備協議} }?",
"delete-device-profiles-text": "小心!確認後所有選擇的設備協議及其OTA更新的相關資料將無法恢復。", "delete-device-profiles-text": "小心!確認後所有選擇的設備協議及其OTA更新的相關資料將無法恢復。",
"set-default-device-profile-title": "您確定要將 '{{deviceProfileName}}' 設為設備協議預設值嗎?", "set-default-device-profile-title": "您確定要將 '{{deviceProfileName}}' 設為設備協議預設值嗎?",
"set-default-device-profile-text": "確認後此預設值將將做爲未指定的新設備協議。", "set-default-device-profile-text": "確認後此預設值將將做爲未指定的新設備協議。",
@ -1356,8 +1356,8 @@
"condition-repeating-value-range": "事件計數應在1到2147483647的範圍內。", "condition-repeating-value-range": "事件計數應在1到2147483647的範圍內。",
"condition-repeating-value-pattern": "事件計數應該是整數", "condition-repeating-value-pattern": "事件計數應該是整數",
"condition-repeating-value-required": "需要事件計數。", "condition-repeating-value-required": "需要事件計數。",
"condition-repeat-times": "重複 { count, plural, 1 {1 次} other {# 次 }", "condition-repeat-times": "重複 { count, plural, =1 {1 次} other {# 次 } }",
"condition-repeat-times-dynamic": "重複 \"{ attribute }\" ({ count, plural, 1 {1 次} other {# 次} })", "condition-repeat-times-dynamic": "重複 \"{ attribute }\" ({ count, plural, =1 {1 次} other {# 次} })",
"schedule-type": "排程類型", "schedule-type": "排程類型",
"schedule-type-required": "排程類型必填", "schedule-type-required": "排程類型必填",
"schedule": "排程", "schedule": "排程",
@ -1599,7 +1599,7 @@
"delete": "刪除邊緣", "delete": "刪除邊緣",
"delete-edge-title": "您確定要刪除邊緣'{{edgeName}}'嗎?", "delete-edge-title": "您確定要刪除邊緣'{{edgeName}}'嗎?",
"delete-edge-text": "小心!確認後邊緣及其所有相關資料將無法恢復。", "delete-edge-text": "小心!確認後邊緣及其所有相關資料將無法恢復。",
"delete-edges-title": "您確定要刪除邊緣 { count, plural, 1 {1 edge} other {# edges} } 嗎?", "delete-edges-title": "您確定要刪除邊緣 { count, plural, =1 {1 edge} other {# edges} } 嗎?",
"delete-edges-text": "小心,確認後,所有選定的邊緣將被刪除,所有相關資料將無法恢復。", "delete-edges-text": "小心,確認後,所有選定的邊緣將被刪除,所有相關資料將無法恢復。",
"name": "名稱", "name": "名稱",
"name-starts-with": "邊緣名稱始于", "name-starts-with": "邊緣名稱始于",
@ -1626,7 +1626,7 @@
"unassign-from-customer": "從客戶取消分配", "unassign-from-customer": "從客戶取消分配",
"unassign-edge-title": "您確定要取消分配邊緣'{{edgeName}}'嗎?", "unassign-edge-title": "您確定要取消分配邊緣'{{edgeName}}'嗎?",
"unassign-edge-text": "確認後,邊緣將被取消分配,客戶將無法訪問。", "unassign-edge-text": "確認後,邊緣將被取消分配,客戶將無法訪問。",
"unassign-edges-title": "您確定要取消分配 { count, plural, 1 {1 邊緣} other {# 邊緣} }嗎?", "unassign-edges-title": "您確定要取消分配 { count, plural, =1 {1 邊緣} other {# 邊緣} }嗎?",
"unassign-edges-text": "確認後,所有選定的邊緣都將被取消分配,客戶將無法訪問。", "unassign-edges-text": "確認後,所有選定的邊緣都將被取消分配,客戶將無法訪問。",
"make-public": "公開邊緣", "make-public": "公開邊緣",
"make-public-edge-title": "您確定要公開邊緣'{{edgeName}}' 嗎?", "make-public-edge-title": "您確定要公開邊緣'{{edgeName}}' 嗎?",
@ -1659,7 +1659,7 @@
"rulechain-templates": "角色鏈模型", "rulechain-templates": "角色鏈模型",
"rulechains": "規則鏈", "rulechains": "規則鏈",
"search": "搜尋邊緣", "search": "搜尋邊緣",
"selected-edges": "{ count, plural, 1 {1 邊緣} other {# 邊緣} }被選中", "selected-edges": "{ count, plural, =1 {1 邊緣} other {# 邊緣} }被選中",
"any-edge": "任何邊緣", "any-edge": "任何邊緣",
"no-edge-types-matching": "未找到與'{{entitySubtype}}'匹配的邊緣類型。", "no-edge-types-matching": "未找到與'{{entitySubtype}}'匹配的邊緣類型。",
"edge-type-list-empty": "未選擇邊緣類型", "edge-type-list-empty": "未選擇邊緣類型",
@ -1759,55 +1759,55 @@
"type-required": "實體類型必填。", "type-required": "實體類型必填。",
"type-device": "設備", "type-device": "設備",
"type-devices": "設備", "type-devices": "設備",
"list-of-devices": "{ count, plural, 1 {一個設備} other {# 設備列表} }", "list-of-devices": "{ count, plural, =1 {一個設備} other {# 設備列表} }",
"device-name-starts-with": "以 '{{prefix}}' 開頭的設備", "device-name-starts-with": "以 '{{prefix}}' 開頭的設備",
"type-asset": "資產", "type-asset": "資產",
"type-assets": "資產", "type-assets": "資產",
"list-of-assets": "{ count, plural, 1 {一個資產} other {# 資產列表} }", "list-of-assets": "{ count, plural, =1 {一個資產} other {# 資產列表} }",
"asset-name-starts-with": "以 '{{prefix}}' 開頭的資產", "asset-name-starts-with": "以 '{{prefix}}' 開頭的資產",
"type-entity-view": "實體視圖", "type-entity-view": "實體視圖",
"type-entity-views": "實體視圖", "type-entity-views": "實體視圖",
"list-of-entity-views": "{ count, plural, 1 {一個實體視圖} other {# 實體視圖列表} }", "list-of-entity-views": "{ count, plural, =1 {一個實體視圖} other {# 實體視圖列表} }",
"entity-view-name-starts-with": "以 '{{prefix}}' 開頭的實體視圖", "entity-view-name-starts-with": "以 '{{prefix}}' 開頭的實體視圖",
"type-rule": "規則", "type-rule": "規則",
"type-rules": "規則", "type-rules": "規則",
"list-of-rules": "{ count, plural, 1 {一個規則} other {# 規則列表} }", "list-of-rules": "{ count, plural, =1 {一個規則} other {# 規則列表} }",
"rule-name-starts-with": "以 '{{prefix}}' 開頭的規則", "rule-name-starts-with": "以 '{{prefix}}' 開頭的規則",
"type-plugin": "插件", "type-plugin": "插件",
"type-plugins": "插件", "type-plugins": "插件",
"list-of-plugins": "{ count, plural, 1 {一個插件} other {# 插件列表} }", "list-of-plugins": "{ count, plural, =1 {一個插件} other {# 插件列表} }",
"tenant-name-starts-with": "名稱以 '{{prefix}}'開頭的租戶", "tenant-name-starts-with": "名稱以 '{{prefix}}'開頭的租戶",
"type-tenant-profile": "租戶屬性", "type-tenant-profile": "租戶屬性",
"type-tenant-profiles": "租戶屬性", "type-tenant-profiles": "租戶屬性",
"list-of-tenant-profiles": "{ count, plural, 1 {一個租戶屬性} other {# 租戶屬性列表} }", "list-of-tenant-profiles": "{ count, plural, =1 {一個租戶屬性} other {# 租戶屬性列表} }",
"tenant-profile-name-starts-with": "名稱以 '{{prefix}}'開頭的租戶屬性", "tenant-profile-name-starts-with": "名稱以 '{{prefix}}'開頭的租戶屬性",
"plugin-name-starts-with": "以 '{{prefix}}' 開頭的插件", "plugin-name-starts-with": "以 '{{prefix}}' 開頭的插件",
"type-tenant": "租戶", "type-tenant": "租戶",
"type-tenants": "租戶", "type-tenants": "租戶",
"list-of-tenants": "{ count, plural, 1 {一個租戶} other {# 租戶列表} }", "list-of-tenants": "{ count, plural, =1 {一個租戶} other {# 租戶列表} }",
"type-customer": "客戶", "type-customer": "客戶",
"type-customers": "客戶", "type-customers": "客戶",
"list-of-customers": "{ count, plural, 1 {一個客戶} other {# 客戶列表} }", "list-of-customers": "{ count, plural, =1 {一個客戶} other {# 客戶列表} }",
"customer-name-starts-with": "以 '{{prefix}}' 開頭的客戶", "customer-name-starts-with": "以 '{{prefix}}' 開頭的客戶",
"type-user": "用戶", "type-user": "用戶",
"type-users": "用戶", "type-users": "用戶",
"list-of-users": "{ count, plural, 1 {一個用戶} other {# 用戶列表} }", "list-of-users": "{ count, plural, =1 {一個用戶} other {# 用戶列表} }",
"user-name-starts-with": "以 '{{prefix}}' 開頭的用戶", "user-name-starts-with": "以 '{{prefix}}' 開頭的用戶",
"type-dashboard": "儀表板", "type-dashboard": "儀表板",
"type-dashboards": "儀表板", "type-dashboards": "儀表板",
"list-of-dashboards": "{ count, plural, 1 {一個儀表板} other {# 儀表板列表} }", "list-of-dashboards": "{ count, plural, =1 {一個儀表板} other {# 儀表板列表} }",
"dashboard-name-starts-with": "以 '{{prefix}}' 開頭的儀表板", "dashboard-name-starts-with": "以 '{{prefix}}' 開頭的儀表板",
"type-alarm": "警告", "type-alarm": "警告",
"type-alarms": "警告", "type-alarms": "警告",
"list-of-alarms": "{ count, plural, 1 {一個警告} other {# 警告列表} }", "list-of-alarms": "{ count, plural, =1 {一個警告} other {# 警告列表} }",
"alarm-name-starts-with": "以 '{{prefix}}' 開頭的警告", "alarm-name-starts-with": "以 '{{prefix}}' 開頭的警告",
"type-rulechain": "規則鏈", "type-rulechain": "規則鏈",
"type-rulechains": "規則鏈", "type-rulechains": "規則鏈",
"list-of-rulechains": "{ count, plural, 1 {一個規則鏈} other {# 規則鏈列表} }", "list-of-rulechains": "{ count, plural, =1 {一個規則鏈} other {# 規則鏈列表} }",
"rulechain-name-starts-with": "規則鏈前綴名稱 '{{prefix}}'", "rulechain-name-starts-with": "規則鏈前綴名稱 '{{prefix}}'",
"type-rulenode": "規則節點", "type-rulenode": "規則節點",
"type-rulenodes": "規則節點", "type-rulenodes": "規則節點",
"list-of-rulenodes": "{ count, plural, 1 {一個規則節點} other {# 規則節點列表} }", "list-of-rulenodes": "{ count, plural, =1 {一個規則節點} other {# 規則節點列表} }",
"rulenode-name-starts-with": "名稱以'{{prefix}}'開頭的規則節點", "rulenode-name-starts-with": "名稱以'{{prefix}}'開頭的規則節點",
"type-current-customer": "當前客戶", "type-current-customer": "當前客戶",
"type-current-tenant": "當前租戶", "type-current-tenant": "當前租戶",
@ -1815,9 +1815,9 @@
"type-current-user-owner": "當前用戶所有者", "type-current-user-owner": "當前用戶所有者",
"type-widgets-bundle": "部件包", "type-widgets-bundle": "部件包",
"type-widgets-bundles": "部件包", "type-widgets-bundles": "部件包",
"list-of-widgets-bundles": "{ count, plural, 1 {一個部件包} other {# 部件包列表} }", "list-of-widgets-bundles": "{ count, plural, =1 {一個部件包} other {# 部件包列表} }",
"search": "實體檢索", "search": "實體檢索",
"selected-entities": "{ count, plural, 1 {1 實體} other {# 實體} } 被選中", "selected-entities": "{ count, plural, =1 {1 實體} other {# 實體} } 被選中",
"entity-name": "實體名", "entity-name": "實體名",
"entity-label": "實體標籤", "entity-label": "實體標籤",
"details": "實體詳細資訊", "details": "實體詳細資訊",
@ -1827,7 +1827,7 @@
"type-api-usage-state": "api使用狀態", "type-api-usage-state": "api使用狀態",
"type-edge": "邊緣", "type-edge": "邊緣",
"type-edges": "邊緣", "type-edges": "邊緣",
"list-of-edges": "{ count, plural, 1 {一個邊緣} other {# 邊緣列表} }", "list-of-edges": "{ count, plural, =1 {一個邊緣} other {# 邊緣列表} }",
"edge-name-starts-with": "名稱以'{{prefix}}'開頭的邊緣", "edge-name-starts-with": "名稱以'{{prefix}}'開頭的邊緣",
"type-tb-resource": "資源", "type-tb-resource": "資源",
"type-ota-package": "OTA套件" "type-ota-package": "OTA套件"
@ -1890,21 +1890,21 @@
"add-entity-view-text": "增加新實體視圖", "add-entity-view-text": "增加新實體視圖",
"delete": "刪除實體視圖", "delete": "刪除實體視圖",
"assign-entity-views": "分配實體視圖", "assign-entity-views": "分配實體視圖",
"assign-entity-views-text": "分配 { count, plural, 1 {1 實體視圖} other {# 實體視圖} } 給客戶", "assign-entity-views-text": "分配 { count, plural, =1 {1 實體視圖} other {# 實體視圖} } 給客戶",
"delete-entity-views": "刪除實體視圖", "delete-entity-views": "刪除實體視圖",
"unassign-from-customer": "取消分配客戶", "unassign-from-customer": "取消分配客戶",
"unassign-entity-views": "取消分配實體視圖", "unassign-entity-views": "取消分配實體視圖",
"unassign-entity-views-action-title": "從客戶處取消分配{count,plural,1 {1 實體視圖} other {# 實體視圖} }", "unassign-entity-views-action-title": "從客戶處取消分配{count,plural, =1 {1 實體視圖} other {# 實體視圖} }",
"assign-new-entity-view": "分配新實體視圖", "assign-new-entity-view": "分配新實體視圖",
"delete-entity-view-title": "確定要刪除實體視圖 '{{entityViewName}}'?", "delete-entity-view-title": "確定要刪除實體視圖 '{{entityViewName}}'?",
"delete-entity-view-text": "小心!確認後實體視圖及其所有相關資料將無法恢復。", "delete-entity-view-text": "小心!確認後實體視圖及其所有相關資料將無法恢復。",
"delete-entity-views-title": "確定要刪除 { count, plural, 1 {1 實體視圖} other {# 實體視圖} }?", "delete-entity-views-title": "確定要刪除 { count, plural, =1 {1 實體視圖} other {# 實體視圖} }?",
"delete-entity-views-action-title": "刪除 { count, plural, 1 {1 實體視圖} other {# 實體視圖} }", "delete-entity-views-action-title": "刪除 { count, plural, =1 {1 實體視圖} other {# 實體視圖} }",
"delete-entity-views-text": "小心,確認後,所有選擇的實體視圖將被刪除,所有相關的資料將變得無法恢復。", "delete-entity-views-text": "小心,確認後,所有選擇的實體視圖將被刪除,所有相關的資料將變得無法恢復。",
"unassign-entity-view-title": "您確定要取消對 '{{entityViewName}}'實體視圖的分配嗎?", "unassign-entity-view-title": "您確定要取消對 '{{entityViewName}}'實體視圖的分配嗎?",
"unassign-entity-view-text": "確認後,實體視圖將未分配,客戶無法存取。", "unassign-entity-view-text": "確認後,實體視圖將未分配,客戶無法存取。",
"unassign-entity-view": "未分配實體視圖", "unassign-entity-view": "未分配實體視圖",
"unassign-entity-views-title": "您確定要取消分配 { count, plural, 1 {1 實體視圖} other {# 實體視圖} }嗎?", "unassign-entity-views-title": "您確定要取消分配 { count, plural, =1 {1 實體視圖} other {# 實體視圖} }嗎?",
"unassign-entity-views-text": "確認後,所有選擇的實體視圖將被分配,客戶無法存取。", "unassign-entity-views-text": "確認後,所有選擇的實體視圖將被分配,客戶無法存取。",
"entity-view-type": "實體視圖類型", "entity-view-type": "實體視圖類型",
"entity-view-type-required": "實體視圖類型必填。", "entity-view-type-required": "實體視圖類型必填。",
@ -1949,7 +1949,7 @@
"timeseries-data": "時間序列資料", "timeseries-data": "時間序列資料",
"timeseries-data-hint": "配置目標實體的時間序列資料鍵,以便實體視圖可以存取這些鍵。這個時間序列資料是只讀的。", "timeseries-data-hint": "配置目標實體的時間序列資料鍵,以便實體視圖可以存取這些鍵。這個時間序列資料是只讀的。",
"search": "搜尋實體視圖", "search": "搜尋實體視圖",
"selected-entity-views": "{ count, plural, 1 {1 實體視圖} other {# 實體視圖} } 被選中", "selected-entity-views": "{ count, plural, =1 {1 實體視圖} other {# 實體視圖} } 被選中",
"make-public-entity-view-title": "你確定你想建立公開 '{{entityViewName}}' 實體視圖?", "make-public-entity-view-title": "你確定你想建立公開 '{{entityViewName}}' 實體視圖?",
"make-public-entity-view-text": "確認後,實體視圖 及其所有資料將被公開並被他人存取。", "make-public-entity-view-text": "確認後,實體視圖 及其所有資料將被公開並被他人存取。",
"make-private-entity-view-title": "你確定你想建立私有 '{{entityViewName}}' 實體視圖?", "make-private-entity-view-title": "你確定你想建立私有 '{{entityViewName}}' 實體視圖?",
@ -1958,9 +1958,9 @@
"assign-entity-view-to-edge-text": "請選擇要分配給邊緣的實體視圖", "assign-entity-view-to-edge-text": "請選擇要分配給邊緣的實體視圖",
"unassign-entity-view-from-edge-title": "您確定要取消分配實體視圖'{{entityViewName}}'嗎?", "unassign-entity-view-from-edge-title": "您確定要取消分配實體視圖'{{entityViewName}}'嗎?",
"unassign-entity-view-from-edge-text": "確認後,實體視圖將被取消分配,邊緣將無法訪問。", "unassign-entity-view-from-edge-text": "確認後,實體視圖將被取消分配,邊緣將無法訪問。",
"unassign-entity-views-from-edge-action-title": "從邊緣取消分配 { count, plural, 1 {1 實體視圖} other {# 實體視圖} } ", "unassign-entity-views-from-edge-action-title": "從邊緣取消分配 { count, plural, =1 {1 實體視圖} other {# 實體視圖} } ",
"unassign-entity-view-from-edge": "取消分配實體視圖", "unassign-entity-view-from-edge": "取消分配實體視圖",
"unassign-entity-views-from-edge-title": "您確定要取消分配{ count, plural, 1 {1 實體視圖} other {# 實體視圖} }嗎?", "unassign-entity-views-from-edge-title": "您確定要取消分配{ count, plural, =1 {1 實體視圖} other {# 實體視圖} }嗎?",
"unassign-entity-views-from-edge-text": "確認後,所有選定的實體視圖都將被取消分配,並且邊緣將無法訪問。" "unassign-entity-views-from-edge-text": "確認後,所有選定的實體視圖都將被取消分配,並且邊緣將無法訪問。"
}, },
"event": { "event": {
@ -2010,7 +2010,7 @@
}, },
"extension": { "extension": {
"extensions": "擴展", "extensions": "擴展",
"selected-extensions": "{ count, plural, 1 {1 擴展} other {# 擴展} } 被選擇", "selected-extensions": "{ count, plural, =1 {1 擴展} other {# 擴展} } 被選擇",
"type": "類型", "type": "類型",
"key": "鍵名", "key": "鍵名",
"value": "值", "value": "值",
@ -2024,7 +2024,7 @@
"edit": "編輯擴展", "edit": "編輯擴展",
"delete-extension-title": "確實要刪除擴展名'{{extensionId}}'嗎?", "delete-extension-title": "確實要刪除擴展名'{{extensionId}}'嗎?",
"delete-extension-text": "小心,確認後,擴展和所有相關資料將變得無法恢復。", "delete-extension-text": "小心,確認後,擴展和所有相關資料將變得無法恢復。",
"delete-extensions-title": "您確定要刪除 { count, plural, 1 {1 表達式} other {# 表達式} }嗎?", "delete-extensions-title": "您確定要刪除 { count, plural, =1 {1 表達式} other {# 表達式} }嗎?",
"delete-extensions-text": "小心,確認後,所有選擇的擴展將被刪除。", "delete-extensions-text": "小心,確認後,所有選擇的擴展將被刪除。",
"converters": "轉換器", "converters": "轉換器",
"converter-id": "轉換器序號", "converter-id": "轉換器序號",
@ -2344,8 +2344,8 @@
"grid": { "grid": {
"delete-item-title": "您確定要刪除此項嗎?", "delete-item-title": "您確定要刪除此項嗎?",
"delete-item-text": "注意,確認後此項及其所有相關資料將變得無法恢復。", "delete-item-text": "注意,確認後此項及其所有相關資料將變得無法恢復。",
"delete-items-title": "你確定你要刪除 { count, plural, 1 {1 項} other {# 項} }嗎?", "delete-items-title": "你確定你要刪除 { count, plural, =1 {1 項} other {# 項} }嗎?",
"delete-items-action-title": "刪除 { count, plural, 1 {1 項} other {# 項} }", "delete-items-action-title": "刪除 { count, plural, =1 {1 項} other {# 項} }",
"delete-items-text": "注意,確認後所有選擇的項目將被刪除,所有相關資料將無法恢復。", "delete-items-text": "注意,確認後所有選擇的項目將被刪除,所有相關資料將無法恢復。",
"add-item-text": "增加新項目", "add-item-text": "增加新項目",
"no-items-text": "沒有找到項目", "no-items-text": "沒有找到項目",
@ -2502,7 +2502,7 @@
"verify-your-identity": "驗證您的身份", "verify-your-identity": "驗證您的身份",
"select-way-to-verify": "選擇驗證方式", "select-way-to-verify": "選擇驗證方式",
"resend-code": "重發碼", "resend-code": "重發碼",
"resend-code-wait": "以 { time, plural, 1 {1 秒} other {# 秒} }重新發送程式碼", "resend-code-wait": "以 { time, plural, =1 {1 秒} other {# 秒} }重新發送程式碼",
"try-another-way": "嘗試別的方式", "try-another-way": "嘗試別的方式",
"totp-auth-description": "請輸入安全驗證碼從您的驗證應用程式", "totp-auth-description": "請輸入安全驗證碼從您的驗證應用程式",
"totp-auth-placeholder": "程式碼", "totp-auth-placeholder": "程式碼",
@ -2530,8 +2530,8 @@
"checksum-hint": "如果核對為空,將自動生成", "checksum-hint": "如果核對為空,將自動生成",
"checksum-algorithm": "核對演算法", "checksum-algorithm": "核對演算法",
"checksum-copied-message": "套件核對已複製到剪貼板", "checksum-copied-message": "套件核對已複製到剪貼板",
"change-firmware": "韌體的更改可能會導致{ count, plural, 1 {1 設備} other {# 設備} }的更新。", "change-firmware": "韌體的更改可能會導致{ count, plural, =1 {1 設備} other {# 設備} }的更新。",
"change-software": "軟體的更改可能會導致{ count, plural, 1 {1 設備} other {# 設備} }的更新。", "change-software": "軟體的更改可能會導致{ count, plural, =1 {1 設備} other {# 設備} }的更新。",
"chose-compatible-device-profile": "上傳套件只有在所選擇的設備配置檔案獲得", "chose-compatible-device-profile": "上傳套件只有在所選擇的設備配置檔案獲得",
"chose-firmware-distributed-device": "選擇將分發到設備的韌體", "chose-firmware-distributed-device": "選擇將分發到設備的韌體",
"chose-software-distributed-device": "選擇將分發到設備的軟體", "chose-software-distributed-device": "選擇將分發到設備的軟體",
@ -2544,7 +2544,7 @@
"delete-ota-update-text": "小心,確認後OTA更新將無法恢復。", "delete-ota-update-text": "小心,確認後OTA更新將無法恢復。",
"delete-ota-update-title": "您確定要刪除OTA更新 '{{title}}'嗎?", "delete-ota-update-title": "您確定要刪除OTA更新 '{{title}}'嗎?",
"delete-ota-updates-text": "小心,確認後,所有選擇的OTA更新都將被刪除。", "delete-ota-updates-text": "小心,確認後,所有選擇的OTA更新都將被刪除。",
"delete-ota-updates-title": "您確定要刪除{ count, plural, 1 {1 OTA更新} other {# OTA更新} }嗎?", "delete-ota-updates-title": "您確定要刪除{ count, plural, =1 {1 OTA更新} other {# OTA更新} }嗎?",
"description": "描述", "description": "描述",
"direct-url": "直接URL", "direct-url": "直接URL",
"direct-url-copied-message": "軟體包直接URL已複製到剪貼板", "direct-url-copied-message": "軟體包直接URL已複製到剪貼板",
@ -2567,7 +2567,7 @@
"package-type": "套件類型", "package-type": "套件類型",
"packages-repository": "軟體包存儲庫", "packages-repository": "軟體包存儲庫",
"search": "搜尋套件", "search": "搜尋套件",
"selected-package": "{ count, plural, 1 {1 套件} other {# 套件} } 被選中", "selected-package": "{ count, plural, =1 {1 套件} other {# 套件} } 被選中",
"title": "標題", "title": "標題",
"title-required": "需要標題。", "title-required": "需要標題。",
"title-max-length": "標題應小於256", "title-max-length": "標題應小於256",
@ -2658,17 +2658,17 @@
}, },
"password-requirement": { "password-requirement": {
"at-least": "至少:", "at-least": "至少:",
"character": "{ count, plural, 1 {1 字元} other {# 字元} }", "character": "{ count, plural, =1 {1 字元} other {# 字元} }",
"digit": "{ count, plural, 1 {1 數字} other {# 數字} }", "digit": "{ count, plural, =1 {1 數字} other {# 數字} }",
"incorrect-password-try-again": "密碼不正確。再試一次", "incorrect-password-try-again": "密碼不正確。再試一次",
"lowercase-letter": "{ count, plural, 1 {1 小寫字母} other {# 小寫字母} }", "lowercase-letter": "{ count, plural, =1 {1 小寫字母} other {# 小寫字母} }",
"new-passwords-not-match": "新密碼不匹配", "new-passwords-not-match": "新密碼不匹配",
"password-should-not-contain-spaces": "您的密碼不應包含空格", "password-should-not-contain-spaces": "您的密碼不應包含空格",
"password-not-meet-requirements": "密碼不符合要求", "password-not-meet-requirements": "密碼不符合要求",
"password-requirements": "密碼要求", "password-requirements": "密碼要求",
"password-should-difference": "新密碼應與當前密碼不同", "password-should-difference": "新密碼應與當前密碼不同",
"special-character": "{ count, plural, 1 {1 特殊字元} other {# 特殊字元} }", "special-character": "{ count, plural, =1 {1 特殊字元} other {# 特殊字元} }",
"uppercase-letter": "{ count, plural, 1 {1 大寫字母} other {# 大寫字母} }" "uppercase-letter": "{ count, plural, =1 {1 大寫字母} other {# 大寫字母} }"
} }
}, },
"relation": { "relation": {
@ -2684,7 +2684,7 @@
}, },
"from-relations": "向外的關聯", "from-relations": "向外的關聯",
"to-relations": "向內的關聯", "to-relations": "向內的關聯",
"selected-relations": "{ count, plural, 1 {1 關聯} other {# 關聯} } 被選中", "selected-relations": "{ count, plural, =1 {1 關聯} other {# 關聯} } 被選中",
"type": "類型", "type": "類型",
"to-entity-type": "到實體類型", "to-entity-type": "到實體類型",
"to-entity-name": "到實體名稱", "to-entity-name": "到實體名稱",
@ -2701,11 +2701,11 @@
"edit": "編輯關聯", "edit": "編輯關聯",
"delete-to-relation-title": "確定要刪除實體 '{{entityName}}' 的關聯嗎?", "delete-to-relation-title": "確定要刪除實體 '{{entityName}}' 的關聯嗎?",
"delete-to-relation-text": "確定刪除後實體 '{{entityName}}' 將取消與當前實體的關聯關係。", "delete-to-relation-text": "確定刪除後實體 '{{entityName}}' 將取消與當前實體的關聯關係。",
"delete-to-relations-title": "確定要刪除 { count, plural, 1 {1 關聯} other {# 關聯} }?", "delete-to-relations-title": "確定要刪除 { count, plural, =1 {1 關聯} other {# 關聯} }?",
"delete-to-relations-text": "確定刪除所有選擇的關聯關係後,與當前實體對應的所有關聯關係將被移除。", "delete-to-relations-text": "確定刪除所有選擇的關聯關係後,與當前實體對應的所有關聯關係將被移除。",
"delete-from-relation-title": "確定要從實體 '{{entityName}}' 刪除關聯嗎?", "delete-from-relation-title": "確定要從實體 '{{entityName}}' 刪除關聯嗎?",
"delete-from-relation-text": "確定刪除後,當前實體將與實體 '{{entityName}}' 取消關聯", "delete-from-relation-text": "確定刪除後,當前實體將與實體 '{{entityName}}' 取消關聯",
"delete-from-relations-title": "確定刪除 { count, plural, 1 {1 關聯} other {# 關聯} } 嗎?", "delete-from-relations-title": "確定刪除 { count, plural, =1 {1 關聯} other {# 關聯} } 嗎?",
"delete-from-relations-text": "確定刪除所有選擇的關聯關係後,當前實體將與對應的實體取消關聯", "delete-from-relations-text": "確定刪除所有選擇的關聯關係後,當前實體將與對應的實體取消關聯",
"remove-relation-filter": "移除關聯過濾器", "remove-relation-filter": "移除關聯過濾器",
"add-relation-filter": "增加關聯過濾器", "add-relation-filter": "增加關聯過濾器",
@ -2721,9 +2721,9 @@
"delete": "刪除資源", "delete": "刪除資源",
"delete-resource-text": "小心,確認後資源將無法恢復。", "delete-resource-text": "小心,確認後資源將無法恢復。",
"delete-resource-title": "您確定要刪除資源'{{resourceTitle}}'嗎?", "delete-resource-title": "您確定要刪除資源'{{resourceTitle}}'嗎?",
"delete-resources-action-title": "刪除 { count, plural, 1 {1 資源} other {# 資源} }", "delete-resources-action-title": "刪除 { count, plural, =1 {1 資源} other {# 資源} }",
"delete-resources-text": "請注意,所選資源,即使用於設備協議,也將被刪除。", "delete-resources-text": "請注意,所選資源,即使用於設備協議,也將被刪除。",
"delete-resources-title": "您確定要刪除 { count, plural, 1 {1 資源} other {# 資源} }嗎?", "delete-resources-title": "您確定要刪除 { count, plural, =1 {1 資源} other {# 資源} }嗎?",
"download": "下載資源", "download": "下載資源",
"drop-file": "拖放資源文件或單擊以選擇要上傳的文件。", "drop-file": "拖放資源文件或單擊以選擇要上傳的文件。",
"drop-resource-file-or": "拖放資源文件或", "drop-resource-file-or": "拖放資源文件或",
@ -2738,7 +2738,7 @@
"resource-type": "資源類型", "resource-type": "資源類型",
"resources-library": "資源庫", "resources-library": "資源庫",
"search": "搜尋資源", "search": "搜尋資源",
"selected-resources": "{ count, plural, 1 {1 資源} other {# 資源} } 被選中", "selected-resources": "{ count, plural, =1 {1 資源} other {# 資源} } 被選中",
"system": "系統", "system": "系統",
"title": "標題", "title": "標題",
"title-required": "需要標題。", "title-required": "需要標題。",
@ -2762,8 +2762,8 @@
"set-root-rulechain-text": "確認之後,規則鏈將變為根規格鏈,並將處理所有傳入的傳輸消息。", "set-root-rulechain-text": "確認之後,規則鏈將變為根規格鏈,並將處理所有傳入的傳輸消息。",
"delete-rulechain-title": " 確實要刪除規則鏈'{{ruleChainName}}'嗎?", "delete-rulechain-title": " 確實要刪除規則鏈'{{ruleChainName}}'嗎?",
"delete-rulechain-text": "小心,在確認規則鏈和所有相關資料將變得無法恢復。", "delete-rulechain-text": "小心,在確認規則鏈和所有相關資料將變得無法恢復。",
"delete-rulechains-title": "確實要刪除{count, plural, 1 { 1 規則鏈} other {# 規則鏈庫} }嗎?", "delete-rulechains-title": "確實要刪除{count, plural, =1 { 1 規則鏈} other {# 規則鏈庫} }嗎?",
"delete-rulechains-action-title": "刪除 { count, plural, 1 {1 規則鏈} other {# 規則鏈庫} }", "delete-rulechains-action-title": "刪除 { count, plural, =1 {1 規則鏈} other {# 規則鏈庫} }",
"delete-rulechains-text": "小心,確認後,所有選擇的規則鏈將被刪除,所有相關的資料將變得無法恢復。", "delete-rulechains-text": "小心,確認後,所有選擇的規則鏈將被刪除,所有相關的資料將變得無法恢復。",
"add-rulechain-text": "增加新的規則鏈", "add-rulechain-text": "增加新的規則鏈",
"no-rulechains-text": "規則鏈沒有發現", "no-rulechains-text": "規則鏈沒有發現",
@ -2891,9 +2891,9 @@
"submit-strategy-type-required": "提交策略類型必填", "submit-strategy-type-required": "提交策略類型必填",
"processing-strategy-type-required": "處理策略類型必填", "processing-strategy-type-required": "處理策略類型必填",
"queues": "佇列", "queues": "佇列",
"selected-queues": "{ count, plural, 1 {1 佇列} other {# 佇列} }被選中", "selected-queues": "{ count, plural, =1 {1 佇列} other {# 佇列} }被選中",
"delete-queue-title": "您確定要刪除佇列'{{queueName}}'嗎?", "delete-queue-title": "您確定要刪除佇列'{{queueName}}'嗎?",
"delete-queues-title": "您確定要刪除{ count, plural, 1 {1 佇列} other {# 佇列} }嗎?", "delete-queues-title": "您確定要刪除{ count, plural, =1 {1 佇列} other {# 佇列} }嗎?",
"delete-queue-text": "小心,確認後佇列和所有相關資料將無法恢復。", "delete-queue-text": "小心,確認後佇列和所有相關資料將無法恢復。",
"delete-queues-text": "確認後,所有選定的佇列將被刪除且無法訪問。", "delete-queues-text": "確認後,所有選定的佇列將被刪除且無法訪問。",
"search": "搜尋佇列", "search": "搜尋佇列",
@ -2977,8 +2977,8 @@
"title-max-length": "標題應小於256", "title-max-length": "標題應小於256",
"delete-tenant-title": "您確定要刪除租戶'{{tenantTitle}}'嗎?", "delete-tenant-title": "您確定要刪除租戶'{{tenantTitle}}'嗎?",
"delete-tenant-text": "小心!確認後,租戶和所有相關資料將無法恢復。", "delete-tenant-text": "小心!確認後,租戶和所有相關資料將無法恢復。",
"delete-tenants-title": "您確定要刪除 {count,plural,1 {1 租戶} other {# 租戶} } 嗎?", "delete-tenants-title": "您確定要刪除 {count,plural, =1 {1 租戶} other {# 租戶} } 嗎?",
"delete-tenants-action-title": "刪除 { count, plural, 1 {1 租戶} other {# 租戶} }", "delete-tenants-action-title": "刪除 { count, plural, =1 {1 租戶} other {# 租戶} }",
"delete-tenants-text": "小心!確認後,所有選擇的租戶將被刪除,所有相關資料將無法恢復。", "delete-tenants-text": "小心!確認後,所有選擇的租戶將被刪除,所有相關資料將無法恢復。",
"title": "標題", "title": "標題",
"title-required": "標題必填。", "title-required": "標題必填。",
@ -2991,7 +2991,7 @@
"no-tenants-matching": "沒有找到符合 '{{entity}}' 的租戶", "no-tenants-matching": "沒有找到符合 '{{entity}}' 的租戶",
"tenant-required": "租戶必填", "tenant-required": "租戶必填",
"search": "搜尋租戶", "search": "搜尋租戶",
"selected-tenants": "{ count, plural, 1 {1 租戶} other {# 租戶} } 已選中", "selected-tenants": "{ count, plural, =1 {1 租戶} other {# 租戶} } 已選中",
"isolated-tb-rule-engine": "在隔離的ThingsBoard Rule規則引擎容器中處理", "isolated-tb-rule-engine": "在隔離的ThingsBoard Rule規則引擎容器中處理",
"isolated-tb-rule-engine-details": "每個獨立租戶需要單獨的微服務" "isolated-tb-rule-engine-details": "每個獨立租戶需要單獨的微服務"
}, },
@ -3004,7 +3004,7 @@
"no-tenant-profiles-text": "找不到租戶屬性", "no-tenant-profiles-text": "找不到租戶屬性",
"name-max-length": "租戶屬性名稱應小於256", "name-max-length": "租戶屬性名稱應小於256",
"search": "搜尋租戶屬性", "search": "搜尋租戶屬性",
"selected-tenant-profiles": "{ count, plural, 1 {1 租戶屬性} other {# 租戶屬性} } 被選中", "selected-tenant-profiles": "{ count, plural, =1 {1 租戶屬性} other {# 租戶屬性} } 被選中",
"no-tenant-profiles-matching": "找不到與'{{entity}}'匹配的租戶屬性 ", "no-tenant-profiles-matching": "找不到與'{{entity}}'匹配的租戶屬性 ",
"tenant-profile-required": "租戶屬性為必填", "tenant-profile-required": "租戶屬性為必填",
"idCopiedMessage": "租戶屬性Id已複製到剪貼板", "idCopiedMessage": "租戶屬性Id已複製到剪貼板",
@ -3019,7 +3019,7 @@
"default": "預設", "default": "預設",
"delete-tenant-profile-title": "是否確定要刪除租戶屬性 '{{tenantProfileName}}'?", "delete-tenant-profile-title": "是否確定要刪除租戶屬性 '{{tenantProfileName}}'?",
"delete-tenant-profile-text": "小心,確認後租戶屬性及所有相關資料將變得無法恢復。", "delete-tenant-profile-text": "小心,確認後租戶屬性及所有相關資料將變得無法恢復。",
"delete-tenant-profiles-title": "您確定要刪除 { count, plural, 1 {1 租戶屬性} other {# 租戶屬性} }嗎?", "delete-tenant-profiles-title": "您確定要刪除 { count, plural, =1 {1 租戶屬性} other {# 租戶屬性} }嗎?",
"delete-tenant-profiles-text": "小心,確認後所有選定的租戶屬性將被刪除,所有相關資料將變得無法恢復。", "delete-tenant-profiles-text": "小心,確認後所有選定的租戶屬性將被刪除,所有相關資料將變得無法恢復。",
"set-default-tenant-profile-title": "是否確定要將租戶屬性'{{tenantProfileName}}' 設為預設值?", "set-default-tenant-profile-title": "是否確定要將租戶屬性'{{tenantProfileName}}' 設為預設值?",
"set-default-tenant-profile-text": "確認後,租戶屬性將被標記為預設值,並將用於未指定屬性的新租戶。", "set-default-tenant-profile-text": "確認後,租戶屬性將被標記為預設值,並將用於未指定屬性的新租戶。",
@ -3164,10 +3164,10 @@
} }
}, },
"timeinterval": { "timeinterval": {
"seconds-interval": "{ seconds, plural, 1 {1 秒} other {# 秒} }", "seconds-interval": "{ seconds, plural, =1 {1 秒} other {# 秒} }",
"minutes-interval": "{ minutes, plural, 1 {1 分} other {# 分} }", "minutes-interval": "{ minutes, plural, =1 {1 分} other {# 分} }",
"hours-interval": "{ hours, plural, 1 {1 小時} other {# 小時} }", "hours-interval": "{ hours, plural, =1 {1 小時} other {# 小時} }",
"days-interval": "{ days, plural, 1 {1 天} other {# 天} }", "days-interval": "{ days, plural, =1 {1 天} other {# 天} }",
"days": "天", "days": "天",
"hours": "時", "hours": "時",
"minutes": "分", "minutes": "分",
@ -3202,10 +3202,10 @@
"days": "天" "days": "天"
}, },
"timewindow": { "timewindow": {
"days": "{ days, plural, 1 { 天 } other {# 天 } }", "days": "{ days, plural, =1 { 天 } other {# 天 } }",
"hours": "{ hours, plural, 0 { 小時 } 1 {1 小時 } other {# 小時 } }", "hours": "{ hours, plural, =0 { 小時 } =1 {1 小時 } other {# 小時 } }",
"minutes": "{ minutes, plural, 0 { 分 } 1 {1 分 } other {# 分 } }", "minutes": "{ minutes, plural, =0 { 分 } =1 {1 分 } other {# 分 } }",
"seconds": "{ seconds, plural, 0 { 秒 } 1 {1 秒 } other {# 秒 } }", "seconds": "{ seconds, plural, =0 { 秒 } =1 {1 秒 } other {# 秒 } }",
"realtime": "實時", "realtime": "實時",
"history": "歷史", "history": "歷史",
"last-prefix": "最後", "last-prefix": "最後",
@ -3233,8 +3233,8 @@
"user-details": "用戶詳細訊息", "user-details": "用戶詳細訊息",
"delete-user-title": "您確定要刪除用戶 '{{userEmail}}' 嗎?", "delete-user-title": "您確定要刪除用戶 '{{userEmail}}' 嗎?",
"delete-user-text": "小心!確認後,用戶和所有相關資料將無法恢復。", "delete-user-text": "小心!確認後,用戶和所有相關資料將無法恢復。",
"delete-users-title": "你確定你要刪除 { count, plural, 1 {1 用戶} other {# 用戶} } 嗎?", "delete-users-title": "你確定你要刪除 { count, plural, =1 {1 用戶} other {# 用戶} } 嗎?",
"delete-users-action-title": "刪除 { count, plural, 1 {1 用戶} other {# 用戶} }", "delete-users-action-title": "刪除 { count, plural, =1 {1 用戶} other {# 用戶} }",
"delete-users-text": "小心!確認後,所有選擇的用戶將被刪除,所有相關資料將無法恢復。", "delete-users-text": "小心!確認後,所有選擇的用戶將被刪除,所有相關資料將無法恢復。",
"activation-email-sent-message": "啟動電子郵件已成功發送!", "activation-email-sent-message": "啟動電子郵件已成功發送!",
"resend-activation": "重新發送啟動", "resend-activation": "重新發送啟動",
@ -3260,7 +3260,7 @@
"login-as-tenant-admin": "以租戶管理者帳號登入", "login-as-tenant-admin": "以租戶管理者帳號登入",
"login-as-customer-user": "以顧客用戶帳號登入", "login-as-customer-user": "以顧客用戶帳號登入",
"search": "搜尋用戶", "search": "搜尋用戶",
"selected-users": "{ count, plural, 1 {1 用戶} other {# 用戶} } 被選中", "selected-users": "{ count, plural, =1 {1 用戶} other {# 用戶} } 被選中",
"disable-account": "關閉用戶帳號", "disable-account": "關閉用戶帳號",
"enable-account": "啓用用戶帳號", "enable-account": "啓用用戶帳號",
"enable-account-message": "用戶帳號已成功啓用", "enable-account-message": "用戶帳號已成功啓用",
@ -3326,7 +3326,7 @@
"previous-difference": "上一個差異", "previous-difference": "上一個差異",
"next-difference": "下一個差異", "next-difference": "下一個差異",
"current": "當前的", "current": "當前的",
"differences": "{ count, plural, 1 {1 差異} other {# 差異} }", "differences": "{ count, plural, =1 {1 差異} other {# 差異} }",
"create-entities-version": "創建實體版本", "create-entities-version": "創建實體版本",
"default-sync-strategy": "預設同步策略", "default-sync-strategy": "預設同步策略",
"sync-strategy-merge": "合併", "sync-strategy-merge": "合併",
@ -3339,7 +3339,7 @@
"no-entities-to-restore-prompt": "請指定要恢復的實體", "no-entities-to-restore-prompt": "請指定要恢復的實體",
"add-entity-type": "增加實體類型", "add-entity-type": "增加實體類型",
"remove-all": "移除全部", "remove-all": "移除全部",
"version-create-result": "{ added, plural, 0 {無實體} 1 {1 實體} other {# 實體} } 已增加。.<br/>{ modified, plural, 0 {無實體} 1 {1 實體} other {# 實體} } 已修改。<br/>{ removed, plural, 0 {無實體} 1 {1 實體} other {# 實體} } 已移除。", "version-create-result": "{ added, plural, =0 {無實體} =1 {1 實體} other {# 實體} } 已增加。.<br/>{ modified, plural, =0 {無實體} =1 {1 實體} other {# 實體} } 已修改。<br/>{ removed, plural, =0 {無實體} =1 {1 實體} other {# 實體} } 已移除。",
"remove-other-entities": "移除其他實體", "remove-other-entities": "移除其他實體",
"find-existing-entity-by-name": "按名稱查找現有實體", "find-existing-entity-by-name": "按名稱查找現有實體",
"restore-entities-from-version": "從版本'{{versionName}}恢復實體'", "restore-entities-from-version": "從版本'{{versionName}}恢復實體'",
@ -3496,8 +3496,8 @@
"widgets-bundle-details": "部件包詳細訊息", "widgets-bundle-details": "部件包詳細訊息",
"delete-widgets-bundle-title": "您確定要刪除部件包 '{{widgetsBundleTitle}}'嗎?", "delete-widgets-bundle-title": "您確定要刪除部件包 '{{widgetsBundleTitle}}'嗎?",
"delete-widgets-bundle-text": "小心!確認後,部件包和所有相關資料將無法恢復。", "delete-widgets-bundle-text": "小心!確認後,部件包和所有相關資料將無法恢復。",
"delete-widgets-bundles-title": "你確定你要刪除 { count, plural, 1 {1 部件包} other {# 部件包} } 嗎?", "delete-widgets-bundles-title": "你確定你要刪除 { count, plural, =1 {1 部件包} other {# 部件包} } 嗎?",
"delete-widgets-bundles-action-title": "刪除 { count, plural, 1 {1 部件包} other {# 部件包} }", "delete-widgets-bundles-action-title": "刪除 { count, plural, =1 {1 部件包} other {# 部件包} }",
"delete-widgets-bundles-text": "小心!確認後,所有選擇的部件包將被刪除,所有相關資料將無法恢復。", "delete-widgets-bundles-text": "小心!確認後,所有選擇的部件包將被刪除,所有相關資料將無法恢復。",
"no-widgets-bundles-matching": "沒有找到與 '{{widgetsBundle}}' 符合的部件包。", "no-widgets-bundles-matching": "沒有找到與 '{{widgetsBundle}}' 符合的部件包。",
"widgets-bundle-required": "需要部件包。", "widgets-bundle-required": "需要部件包。",
@ -3509,7 +3509,7 @@
"widgets-bundle-file": "部件包文件", "widgets-bundle-file": "部件包文件",
"invalid-widgets-bundle-file-error": "無法匯入部件包:無效的部件包資料結構。", "invalid-widgets-bundle-file-error": "無法匯入部件包:無效的部件包資料結構。",
"search": "搜尋部件包", "search": "搜尋部件包",
"selected-widgets-bundles": "{ count, plural, 1 {1 部件包} other {#部件包} } 被選中", "selected-widgets-bundles": "{ count, plural, =1 {1 部件包} other {#部件包} } 被選中",
"open-widgets-bundle": "打開部件包", "open-widgets-bundle": "打開部件包",
"loading-widgets-bundles": "加載部件包..." "loading-widgets-bundles": "加載部件包..."
}, },
@ -3542,7 +3542,7 @@
"legend": "圖例", "legend": "圖例",
"display-legend": "顯示圖例", "display-legend": "顯示圖例",
"datasources": "資料源", "datasources": "資料源",
"maximum-datasources": "最大允許 { count, plural, 1 {1 資料} other {# 資料} }", "maximum-datasources": "最大允許 { count, plural, =1 {1 資料} other {# 資料} }",
"datasource-type": "類型", "datasource-type": "類型",
"datasource-parameters": "參數", "datasource-parameters": "參數",
"remove-datasource": "移除資料源", "remove-datasource": "移除資料源",
@ -4591,28 +4591,6 @@
} }
}, },
"language": { "language": {
"language": "語言", "language": "語言"
"locales": {
"de_DE": "Deutsch",
"fr_FR": "Français",
"zh_CN": "简体中文",
"zh_TW": "繁體中文",
"en_US": "English",
"it_IT": "Italiano",
"ko_KR": "한국어",
"ru_RU": "Русский",
"es_ES": "Español",
"ja_JP": "日本語",
"tr_TR": "Türkçe",
"fa_IR": "فارسي",
"uk_UA": "Українська",
"cs_CZ": "Česky",
"el_GR": "Ελληνικά",
"ro_RO": "Română",
"lv_LV": "Latviešu",
"ka_GE": "ქართული",
"pt_BR": "Português do Brasil",
"sl_SI": "Slovenščina"
}
} }
} }

135
ui-ngx/yarn.lock

@ -2443,6 +2443,42 @@
"@material/theme" "15.0.0-canary.684e33d25.0" "@material/theme" "15.0.0-canary.684e33d25.0"
tslib "^2.1.0" tslib "^2.1.0"
"@messageformat/core@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@messageformat/core/-/core-3.0.1.tgz#191e12cf9643704d1fd32e592a3fbdc194dd588e"
integrity sha512-yxj2+0e46hcZqJfNf0ZYbC2q6WlcGoh4g11mCyRtTueR0AD8F9z4JMYAS1aOiFG8Vl1LZg/h5hZHKmWTAyZq8g==
dependencies:
"@messageformat/date-skeleton" "^1.0.0"
"@messageformat/number-skeleton" "^1.0.0"
"@messageformat/parser" "^5.0.0"
"@messageformat/runtime" "^3.0.1"
make-plural "^7.0.0"
safe-identifier "^0.4.1"
"@messageformat/date-skeleton@^1.0.0":
version "1.0.1"
resolved "https://registry.yarnpkg.com/@messageformat/date-skeleton/-/date-skeleton-1.0.1.tgz#980b8babe21a11433b6e1e8f6dc8c4cae4f5f56b"
integrity sha512-jPXy8fg+WMPIgmGjxSlnGJn68h/2InfT0TNSkVx0IGXgp4ynnvYkbZ51dGWmGySEK+pBiYUttbQdu5XEqX5CRg==
"@messageformat/number-skeleton@^1.0.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@messageformat/number-skeleton/-/number-skeleton-1.1.0.tgz#eb636738da8abbd35ccbeb84f7d84d63302aeb61"
integrity sha512-F0Io+GOSvFFxvp9Ze3L5kAoZ2NnOAT0Mr/jpGNd3fqo8A0t4NxNIAcCdggtl2B/gN2ErkIKSBVPrF7xcW1IGvA==
"@messageformat/parser@^5.0.0":
version "5.0.0"
resolved "https://registry.yarnpkg.com/@messageformat/parser/-/parser-5.0.0.tgz#5737e69d7d4a469998b527710f1891174fc1b262"
integrity sha512-WiDKhi8F0zQaFU8cXgqq69eYFarCnTVxKcvhAONufKf0oUxbqLMW6JX6rV4Hqh+BEQWGyKKKHY4g1XA6bCLylA==
dependencies:
moo "^0.5.1"
"@messageformat/runtime@^3.0.1":
version "3.0.1"
resolved "https://registry.yarnpkg.com/@messageformat/runtime/-/runtime-3.0.1.tgz#94d1f6c43265c28ef7aed98ecfcc0968c6c849ac"
integrity sha512-6RU5ol2lDtO8bD9Yxe6CZkl0DArdv0qkuoZC+ZwowU+cdRlVE1157wjCmlA5Rsf1Xc/brACnsZa5PZpEDfTFFg==
dependencies:
make-plural "^7.0.0"
"@ngrx/effects@^15.3.0": "@ngrx/effects@^15.3.0":
version "15.3.0" version "15.3.0"
resolved "https://registry.yarnpkg.com/@ngrx/effects/-/effects-15.3.0.tgz#96af2d8121384d782e278a08b8b3643c1d08ae82" resolved "https://registry.yarnpkg.com/@ngrx/effects/-/effects-15.3.0.tgz#96af2d8121384d782e278a08b8b3643c1d08ae82"
@ -2612,6 +2648,13 @@
resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e"
integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==
"@tufjs/models@1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@tufjs/models/-/models-1.0.0.tgz#5a5784e8770b7d014b5f87bff35af1f71fdebf1f"
integrity sha512-RRMu4uMxWnZlxaIBxahSb2IssFZiu188sndesZflWOe1cA/qUqtemSIoBWbuVKPvvdktapImWNnKpBcc+VrCQw==
dependencies:
minimatch "^6.1.0"
"@turf/bbox@*", "@turf/bbox@^6.5.0": "@turf/bbox@*", "@turf/bbox@^6.5.0":
version "6.5.0" version "6.5.0"
resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-6.5.0.tgz#bec30a744019eae420dac9ea46fb75caa44d8dc5" resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-6.5.0.tgz#bec30a744019eae420dac9ea46fb75caa44d8dc5"
@ -2989,22 +3032,15 @@
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10"
integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==
"@types/moment-timezone@^0.5.30":
version "0.5.30"
resolved "https://registry.yarnpkg.com/@types/moment-timezone/-/moment-timezone-0.5.30.tgz#340ed45fe3e715f4a011f5cfceb7cb52aad46fc7"
integrity sha512-aDVfCsjYnAQaV/E9Qc24C5Njx1CoDjXsEgkxtp9NyXDpYu4CCbmclb6QhWloS9UTU/8YROUEEdEkWI0D7DxnKg==
dependencies:
moment-timezone "*"
"@types/mousetrap@^1.6.0", "@types/mousetrap@^1.6.9": "@types/mousetrap@^1.6.0", "@types/mousetrap@^1.6.9":
version "1.6.11" version "1.6.11"
resolved "https://registry.yarnpkg.com/@types/mousetrap/-/mousetrap-1.6.11.tgz#ef9620160fdcefcb85bccda8aaa3e84d7429376d" resolved "https://registry.yarnpkg.com/@types/mousetrap/-/mousetrap-1.6.11.tgz#ef9620160fdcefcb85bccda8aaa3e84d7429376d"
integrity sha512-F0oAily9Q9QQpv9JKxKn0zMKfOo36KHCW7myYsmUyf2t0g+sBTbG3UleTPoguHdE1z3GLFr3p7/wiOio52QFjQ== integrity sha512-F0oAily9Q9QQpv9JKxKn0zMKfOo36KHCW7myYsmUyf2t0g+sBTbG3UleTPoguHdE1z3GLFr3p7/wiOio52QFjQ==
"@types/node@*", "@types/node@>=10.0.0": "@types/node@*", "@types/node@>=10.0.0":
version "18.14.4" version "18.14.5"
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.14.4.tgz#0e64ec0b35a772e1e3d849f9a0ff61782d0cb647" resolved "https://registry.yarnpkg.com/@types/node/-/node-18.14.5.tgz#4a13a6445862159303fc38586598a9396fc408b3"
integrity sha512-VhCw7I7qO2X49+jaKcAUwi3rR+hbxT5VcYF493+Z5kMLI0DL568b7JI4IDJaxWFH0D/xwmGJNoXisyX+w7GH/g== integrity sha512-CRT4tMK/DHYhw1fcCEBwME9CSaZNclxfzVMe7GsO6ULSwsttbj70wSiX6rZdIjGblu93sTJxLdhNIT85KKI7Qw==
"@types/node@~15.14.9": "@types/node@~15.14.9":
version "15.14.9" version "15.14.9"
@ -4088,9 +4124,9 @@ camelcase@^5.0.0, camelcase@^5.3.1:
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449: caniuse-lite@^1.0.30001426, caniuse-lite@^1.0.30001449:
version "1.0.30001458" version "1.0.30001460"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001458.tgz#871e35866b4654a7d25eccca86864f411825540c" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001460.tgz#31d2e26f0a2309860ed3eff154e03890d9d851a7"
integrity sha512-lQ1VlUUq5q9ro9X+5gOEyH7i3vm+AYVT1WDCVB69XOZ17KZRhnZ9J0Sqz7wTHQaLBJccNCHq8/Ww5LlOIZbB0w== integrity sha512-Bud7abqjvEjipUkpLs4D7gR0l8hBYBHoa+tGtKJHvT2AYzLp1z7EmVkUT4ERpVUfca8S2HGIVs883D8pUH1ZzQ==
canvas-gauges@^2.1.7: canvas-gauges@^2.1.7:
version "2.1.7" version "2.1.7"
@ -5202,9 +5238,9 @@ ee-first@1.1.1:
integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
electron-to-chromium@^1.4.284: electron-to-chromium@^1.4.284:
version "1.4.315" version "1.4.317"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.315.tgz#b60a6676b3a1db332cfc8919118344aa06b9ac99" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.317.tgz#9a3d38a1a37f26a417d3d95dafe198ff11ed072b"
integrity sha512-ndBQYz3Eyy3rASjjQ9poMJGoAlsZ/aZnq6GBsGL4w/4sWIAwiUHVSsMuADbxa8WJw7pZ0oxLpGbtoDt4vRTdCg== integrity sha512-JhCRm9v30FMNzQSsjl4kXaygU+qHBD0Yh7mKxyjmF0V8VwYVB6qpBRX28GyAucrM9wDCpSUctT6FpMUQxbyKuA==
elkjs@^0.8.2: elkjs@^0.8.2:
version "0.8.2" version "0.8.2"
@ -5498,9 +5534,9 @@ eslint-plugin-import@latest:
tsconfig-paths "^3.14.1" tsconfig-paths "^3.14.1"
eslint-plugin-jsdoc@latest: eslint-plugin-jsdoc@latest:
version "40.0.0" version "40.0.1"
resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.0.0.tgz#7f433757aa91721e4b88a527dc17ac0437c3c075" resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.0.1.tgz#5f028b4928d5c77f54bfd3c42c00acb61d27bb9f"
integrity sha512-LOPyIu1vAVvGPkye3ci0moj0iNf3f8bmin6do2DYDj+77NRXWnkmhKRy8swWsatUs3mB5jYPWPUsFg9pyfEiyA== integrity sha512-KkiRInury7YrjjV5aCHDxwsPy6XFt5p2b2CnpDMITnWs8patNPf5kj24+VXIWw45kP6z/B0GOKfrYczB56OjQQ==
dependencies: dependencies:
"@es-joy/jsdoccomment" "~0.36.1" "@es-joy/jsdoccomment" "~0.36.1"
comment-parser "1.3.1" comment-parser "1.3.1"
@ -7633,12 +7669,10 @@ make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1:
socks-proxy-agent "^7.0.0" socks-proxy-agent "^7.0.0"
ssri "^10.0.0" ssri "^10.0.0"
make-plural@^4.3.0: make-plural@^7.0.0:
version "4.3.0" version "7.2.0"
resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-4.3.0.tgz#f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735" resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-7.2.0.tgz#93174b1419672a48a2340db6c1d3fb217530c684"
integrity sha512-xTYd4JVHpSCW+aqDof6w/MebaMVNTVYBZhbB/vi513xXdiPT92JMVCo0Jq8W2UZnzYRFeVbQiQ+I25l13JuKvA== integrity sha512-WkdI+iaWaBCFM2wUXwos8Z7spg5Dt64Xe/VI6NpRaly21cDtD76N6S97K//UtzV0dHOiXX+E90TnszdXHG0aMg==
optionalDependencies:
minimist "^1.2.0"
marked@^4.0.17: marked@^4.0.17:
version "4.2.12" version "4.2.12"
@ -7693,25 +7727,6 @@ mermaid@^9.1.2:
ts-dedent "^2.2.0" ts-dedent "^2.2.0"
uuid "^9.0.0" uuid "^9.0.0"
messageformat-formatters@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/messageformat-formatters/-/messageformat-formatters-2.0.1.tgz#0492c1402a48775f751c9b17c0354e92be012b08"
integrity sha512-E/lQRXhtHwGuiQjI7qxkLp8AHbMD5r2217XNe/SREbBlSawe0lOqsFb7rflZJmlQFSULNLIqlcjjsCPlB3m3Mg==
messageformat-parser@^4.1.2:
version "4.1.3"
resolved "https://registry.yarnpkg.com/messageformat-parser/-/messageformat-parser-4.1.3.tgz#b824787f57fcda7d50769f5b63e8d4fda68f5b9e"
integrity sha512-2fU3XDCanRqeOCkn7R5zW5VQHWf+T3hH65SzuqRvjatBK7r4uyFa5mEX+k6F9Bd04LVM5G4/BHBTUJsOdW7uyg==
messageformat@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/messageformat/-/messageformat-2.3.0.tgz#de263c49029d5eae65d7ee25e0754f57f425ad91"
integrity sha512-uTzvsv0lTeQxYI2y1NPa1lItL5VRI8Gb93Y2K2ue5gBPyrbJxfDi/EYWxh2PKv5yO42AJeeqblS9MJSh/IEk4w==
dependencies:
make-plural "^4.3.0"
messageformat-formatters "^2.0.1"
messageformat-parser "^4.1.2"
methods@~1.1.2: methods@~1.1.2:
version "1.1.2" version "1.1.2"
resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
@ -7880,18 +7895,23 @@ mkdirp@^1.0.3, mkdirp@^1.0.4:
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
moment-timezone@*, moment-timezone@^0.5.40: moment-timezone@^0.5.41:
version "0.5.41" version "0.5.41"
resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.41.tgz#a7ad3285fd24aaf5f93b8119a9d749c8039c64c5" resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.41.tgz#a7ad3285fd24aaf5f93b8119a9d749c8039c64c5"
integrity sha512-e0jGNZDOHfBXJGz8vR/sIMXvBIGJJcqFjmlg9lmE+5KX1U7/RZNMswfD8nKnNCnQdKTIj50IaRKwl1fvMLyyRg== integrity sha512-e0jGNZDOHfBXJGz8vR/sIMXvBIGJJcqFjmlg9lmE+5KX1U7/RZNMswfD8nKnNCnQdKTIj50IaRKwl1fvMLyyRg==
dependencies: dependencies:
moment "^2.29.4" moment "^2.29.4"
moment@^2.29.1, moment@^2.29.4: moment@^2.29.4:
version "2.29.4" version "2.29.4"
resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108" resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108"
integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w== integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==
moo@^0.5.1:
version "0.5.2"
resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.2.tgz#f9fe82473bc7c184b0d32e2215d3f6e67278733c"
integrity sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==
mousetrap@^1.6.5: mousetrap@^1.6.5:
version "1.6.5" version "1.6.5"
resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.5.tgz#8a766d8c272b08393d5f56074e0b5ec183485bf9" resolved "https://registry.yarnpkg.com/mousetrap/-/mousetrap-1.6.5.tgz#8a766d8c272b08393d5f56074e0b5ec183485bf9"
@ -8031,12 +8051,12 @@ ngx-sharebuttons@^11.0.0:
dependencies: dependencies:
tslib "^2.0.0" tslib "^2.0.0"
ngx-translate-messageformat-compiler@^5.1.0: ngx-translate-messageformat-compiler@^6.2.0:
version "5.1.0" version "6.2.0"
resolved "https://registry.yarnpkg.com/ngx-translate-messageformat-compiler/-/ngx-translate-messageformat-compiler-5.1.0.tgz#97b2e9a5f8269f1783e92a2c85d27701a64893f3" resolved "https://registry.yarnpkg.com/ngx-translate-messageformat-compiler/-/ngx-translate-messageformat-compiler-6.2.0.tgz#54cd3dc151e29d035d483ad3ac8951fb1e074a25"
integrity sha512-3P/uut2IGXWfFAn5oYbwEJO6uYzUlySLf3zf13HvFreSlzI8APfUmv6v9mxt9LN0KeJKJiK3mmEbUzgqlsI8OA== integrity sha512-niGhub53gMw8GbmP3u3OB7SVJn7z5JZodQxQxDb6ZE0A9c0WeVBzz30WbekQshBF7ijzLYE/qcM+lzTCpWkRmg==
dependencies: dependencies:
tslib "^2.3.1" tslib "^2.4.1"
ngx-window-token@>=6.0.0: ngx-window-token@>=6.0.0:
version "6.0.0" version "6.0.0"
@ -9340,6 +9360,11 @@ safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0,
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
safe-identifier@^0.4.1:
version "0.4.2"
resolved "https://registry.yarnpkg.com/safe-identifier/-/safe-identifier-0.4.2.tgz#cf6bfca31c2897c588092d1750d30ef501d59fcb"
integrity sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w==
safe-regex-test@^1.0.0: safe-regex-test@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295"
@ -10176,12 +10201,12 @@ tsutils@^3.21.0:
tslib "^1.8.1" tslib "^1.8.1"
tuf-js@^1.0.0: tuf-js@^1.0.0:
version "1.0.0" version "1.1.0"
resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.0.0.tgz#c89daaf69b348081a86e9f766151dfd7ce0f5078" resolved "https://registry.yarnpkg.com/tuf-js/-/tuf-js-1.1.0.tgz#25dd680bce9e3819e1fe4640d85186f862efb827"
integrity sha512-1dxsQwESDzACJjTdYHQ4wJ1f/of7jALWKfJEHSBWUQB/5UTJUx9SW6GHXp4mZ1KvdBRJCpGjssoPFGi4hvw8/A== integrity sha512-Tsqlm419OAlrkCE6rsf1WuPvww44vfK1ZHz+Uq9Mpq5JiV5qnJ9LLItvsbM9OipIIeSG3rydVBS4BmD40ts2uA==
dependencies: dependencies:
"@tufjs/models" "1.0.0"
make-fetch-happen "^11.0.1" make-fetch-happen "^11.0.1"
minimatch "^6.1.0"
tunnel-agent@^0.6.0: tunnel-agent@^0.6.0:
version "0.6.0" version "0.6.0"

Loading…
Cancel
Save