Showing
1 changed file
with
611 additions
and
0 deletions
@@ -98,6 +98,159 @@ export default function addLocaleSpanish(locales) { | @@ -98,6 +98,159 @@ export default function addLocaleSpanish(locales) { | ||
98 | "enable-tls": "Habilitar TLS", | 98 | "enable-tls": "Habilitar TLS", |
99 | "send-test-mail": "Enviar mail de prueba" | 99 | "send-test-mail": "Enviar mail de prueba" |
100 | }, | 100 | }, |
101 | + "alarm": { // TODO | ||
102 | + "alarm": "Alarm", | ||
103 | + "alarms": "Alarms", | ||
104 | + "select-alarm": "Select alarm", | ||
105 | + "no-alarms-matching": "No alarms matching '{{entity}}' were found.", | ||
106 | + "alarm-required": "Alarm is required", | ||
107 | + "alarm-status": "Alarm status", | ||
108 | + "search-status": { | ||
109 | + "ANY": "Any", | ||
110 | + "ACTIVE": "Active", | ||
111 | + "CLEARED": "Cleared", | ||
112 | + "ACK": "Acknowledged", | ||
113 | + "UNACK": "Unacknowledged" | ||
114 | + }, | ||
115 | + "display-status": { | ||
116 | + "ACTIVE_UNACK": "Active Unacknowledged", | ||
117 | + "ACTIVE_ACK": "Active Acknowledged", | ||
118 | + "CLEARED_UNACK": "Cleared Unacknowledged", | ||
119 | + "CLEARED_ACK": "Cleared Acknowledged" | ||
120 | + }, | ||
121 | + "no-alarms-prompt": "No alarms found", | ||
122 | + "created-time": "Created time", | ||
123 | + "type": "Type", | ||
124 | + "severity": "Severity", | ||
125 | + "originator": "Originator", | ||
126 | + "originator-type": "Originator type", | ||
127 | + "details": "Details", | ||
128 | + "status": "Status", | ||
129 | + "alarm-details": "Alarm details", | ||
130 | + "start-time": "Start time", | ||
131 | + "end-time": "End time", | ||
132 | + "ack-time": "Acknowledged time", | ||
133 | + "clear-time": "Cleared time", | ||
134 | + "severity-critical": "Critical", | ||
135 | + "severity-major": "Major", | ||
136 | + "severity-minor": "Minor", | ||
137 | + "severity-warning": "Warning", | ||
138 | + "severity-indeterminate": "Indeterminate", | ||
139 | + "acknowledge": "Acknowledge", | ||
140 | + "clear": "Clear", | ||
141 | + "search": "Search alarms", | ||
142 | + "selected-alarms": "{ count, select, 1 {1 alarm} other {# alarms} } selected", | ||
143 | + "no-data": "No data to display", | ||
144 | + "polling-interval": "Alarms polling interval (sec)", | ||
145 | + "polling-interval-required": "Alarms polling interval is required.", | ||
146 | + "min-polling-interval-message": "At least 1 sec polling interval is allowed.", | ||
147 | + "aknowledge-alarms-title": "Acknowledge { count, select, 1 {1 alarm} other {# alarms} }", | ||
148 | + "aknowledge-alarms-text": "Are you sure you want to acknowledge { count, select, 1 {1 alarm} other {# alarms} }?", | ||
149 | + "clear-alarms-title": "Clear { count, select, 1 {1 alarm} other {# alarms} }", | ||
150 | + "clear-alarms-text": "Are you sure you want to clear { count, select, 1 {1 alarm} other {# alarms} }?" | ||
151 | + }, | ||
152 | + "alias": { // TODO | ||
153 | + "add": "Add alias", | ||
154 | + "edit": "Edit alias", | ||
155 | + "name": "Alias name", | ||
156 | + "name-required": "Alias name is required", | ||
157 | + "duplicate-alias": "Alias with same name is already exists.", | ||
158 | + "filter-type-single-entity": "Single entity", | ||
159 | + "filter-type-entity-list": "Entity list", | ||
160 | + "filter-type-entity-name": "Entity name", | ||
161 | + "filter-type-state-entity": "Entity from dashboard state", | ||
162 | + "filter-type-state-entity-description": "Entity taken from dashboard state parameters", | ||
163 | + "filter-type-asset-type": "Asset type", | ||
164 | + "filter-type-asset-type-description": "Assets of type '{{assetType}}'", | ||
165 | + "filter-type-asset-type-and-name-description": "Assets of type '{{assetType}}' and with name starting with '{{prefix}}'", | ||
166 | + "filter-type-device-type": "Device type", | ||
167 | + "filter-type-device-type-description": "Devices of type '{{deviceType}}'", | ||
168 | + "filter-type-device-type-and-name-description": "Devices of type '{{deviceType}}' and with name starting with '{{prefix}}'", | ||
169 | + "filter-type-relations-query": "Relations query", | ||
170 | + "filter-type-relations-query-description": "{{entities}} that have {{relationType}} relation {{direction}} {{rootEntity}}", | ||
171 | + "filter-type-asset-search-query": "Asset search query", | ||
172 | + "filter-type-asset-search-query-description": "Assets with types {{assetTypes}} that have {{relationType}} relation {{direction}} {{rootEntity}}", | ||
173 | + "filter-type-device-search-query": "Device search query", | ||
174 | + "filter-type-device-search-query-description": "Devices with types {{deviceTypes}} that have {{relationType}} relation {{direction}} {{rootEntity}}", | ||
175 | + "entity-filter": "Entity filter", | ||
176 | + "resolve-multiple": "Resolve as multiple entities", | ||
177 | + "filter-type": "Filter type", | ||
178 | + "filter-type-required": "Filter type is required.", | ||
179 | + "entity-filter-no-entity-matched": "No entities matching specified filter were found.", | ||
180 | + "no-entity-filter-specified": "No entity filter specified", | ||
181 | + "root-state-entity": "Use dashboard state entity as root", | ||
182 | + "root-entity": "Root entity", | ||
183 | + "state-entity-parameter-name": "State entity parameter name", | ||
184 | + "default-state-entity": "Default state entity", | ||
185 | + "default-entity-parameter-name": "By default", | ||
186 | + "max-relation-level": "Max relation level", | ||
187 | + "unlimited-level": "Unlimited level", | ||
188 | + "state-entity": "Dashboard state entity", | ||
189 | + "all-entities": "All entities", | ||
190 | + "any-relation": "any" | ||
191 | + }, | ||
192 | + "asset": { // TODO | ||
193 | + "asset": "Asset", | ||
194 | + "assets": "Assets", | ||
195 | + "management": "Asset management", | ||
196 | + "view-assets": "View Assets", | ||
197 | + "add": "Add Asset", | ||
198 | + "assign-to-customer": "Assign to customer", | ||
199 | + "assign-asset-to-customer": "Assign Asset(s) To Customer", | ||
200 | + "assign-asset-to-customer-text": "Please select the assets to assign to the customer", | ||
201 | + "no-assets-text": "No assets found", | ||
202 | + "assign-to-customer-text": "Please select the customer to assign the asset(s)", | ||
203 | + "public": "Public", | ||
204 | + "assignedToCustomer": "Assigned to customer", | ||
205 | + "make-public": "Make asset public", | ||
206 | + "make-private": "Make asset private", | ||
207 | + "unassign-from-customer": "Unassign from customer", | ||
208 | + "delete": "Delete asset", | ||
209 | + "asset-public": "Asset is public", | ||
210 | + "asset-type": "Asset type", | ||
211 | + "asset-type-required": "Asset type is required.", | ||
212 | + "select-asset-type": "Select asset type", | ||
213 | + "enter-asset-type": "Enter asset type", | ||
214 | + "any-asset": "Any asset", | ||
215 | + "no-asset-types-matching": "No asset types matching '{{entitySubtype}}' were found.", | ||
216 | + "asset-type-list-empty": "No asset types selected.", | ||
217 | + "asset-types": "Asset types", | ||
218 | + "name": "Name", | ||
219 | + "name-required": "Name is required.", | ||
220 | + "description": "Description", | ||
221 | + "type": "Type", | ||
222 | + "type-required": "Type is required.", | ||
223 | + "details": "Details", | ||
224 | + "events": "Events", | ||
225 | + "add-asset-text": "Add new asset", | ||
226 | + "asset-details": "Asset details", | ||
227 | + "assign-assets": "Assign assets", | ||
228 | + "assign-assets-text": "Assign { count, select, 1 {1 asset} other {# assets} } to customer", | ||
229 | + "delete-assets": "Delete assets", | ||
230 | + "unassign-assets": "Unassign assets", | ||
231 | + "unassign-assets-action-title": "Unassign { count, select, 1 {1 asset} other {# assets} } from customer", | ||
232 | + "assign-new-asset": "Assign new asset", | ||
233 | + "delete-asset-title": "Are you sure you want to delete the asset '{{assetName}}'?", | ||
234 | + "delete-asset-text": "Be careful, after the confirmation the asset and all related data will become unrecoverable.", | ||
235 | + "delete-assets-title": "Are you sure you want to delete { count, select, 1 {1 asset} other {# assets} }?", | ||
236 | + "delete-assets-action-title": "Delete { count, select, 1 {1 asset} other {# assets} }", | ||
237 | + "delete-assets-text": "Be careful, after the confirmation all selected assets will be removed and all related data will become unrecoverable.", | ||
238 | + "make-public-asset-title": "Are you sure you want to make the asset '{{assetName}}' public?", | ||
239 | + "make-public-asset-text": "After the confirmation the asset and all its data will be made public and accessible by others.", | ||
240 | + "make-private-asset-title": "Are you sure you want to make the asset '{{assetName}}' private?", | ||
241 | + "make-private-asset-text": "After the confirmation the asset and all its data will be made private and won't be accessible by others.", | ||
242 | + "unassign-asset-title": "Are you sure you want to unassign the asset '{{assetName}}'?", | ||
243 | + "unassign-asset-text": "After the confirmation the asset will be unassigned and won't be accessible by the customer.", | ||
244 | + "unassign-asset": "Unassign asset", | ||
245 | + "unassign-assets-title": "Are you sure you want to unassign { count, select, 1 {1 asset} other {# assets} }?", | ||
246 | + "unassign-assets-text": "After the confirmation all selected assets will be unassigned and won't be accessible by the customer.", | ||
247 | + "copyId": "Copy asset Id", | ||
248 | + "idCopiedMessage": "Asset Id has been copied to clipboard", | ||
249 | + "select-asset": "Select asset", | ||
250 | + "no-assets-matching": "No assets matching '{{entity}}' were found.", | ||
251 | + "asset-required": "Asset is required", | ||
252 | + "name-starts-with": "Asset name starts with" | ||
253 | + }, | ||
101 | "attribute": { | 254 | "attribute": { |
102 | "attributes": "Atributos", | 255 | "attributes": "Atributos", |
103 | "latest-telemetry": "Última telemetría", | 256 | "latest-telemetry": "Última telemetría", |
@@ -124,6 +277,38 @@ export default function addLocaleSpanish(locales) { | @@ -124,6 +277,38 @@ export default function addLocaleSpanish(locales) { | ||
124 | "selected-attributes": "{ count, select, 1 {1 atributo} other {# atributos} } seleccionados", | 277 | "selected-attributes": "{ count, select, 1 {1 atributo} other {# atributos} } seleccionados", |
125 | "selected-telemetry": "{ count, select, 1 {1 unidad de telemetría } other {# unidades de telemetría} } seleccionadas." | 278 | "selected-telemetry": "{ count, select, 1 {1 unidad de telemetría } other {# unidades de telemetría} } seleccionadas." |
126 | }, | 279 | }, |
280 | + "audit-log": { // TODO | ||
281 | + "audit": "Audit", | ||
282 | + "audit-logs": "Audit Logs", | ||
283 | + "timestamp": "Timestamp", | ||
284 | + "entity-type": "Entity Type", | ||
285 | + "entity-name": "Entity Name", | ||
286 | + "user": "User", | ||
287 | + "type": "Type", | ||
288 | + "status": "Status", | ||
289 | + "details": "Details", | ||
290 | + "type-added": "Added", | ||
291 | + "type-deleted": "Deleted", | ||
292 | + "type-updated": "Updated", | ||
293 | + "type-attributes-updated": "Attributes updated", | ||
294 | + "type-attributes-deleted": "Attributes deleted", | ||
295 | + "type-rpc-call": "RPC call", | ||
296 | + "type-credentials-updated": "Credentials updated", | ||
297 | + "type-assigned-to-customer": "Assigned to Customer", | ||
298 | + "type-unassigned-from-customer": "Unassigned from Customer", | ||
299 | + "type-activated": "Activated", | ||
300 | + "type-suspended": "Suspended", | ||
301 | + "type-credentials-read": "Credentials read", | ||
302 | + "type-attributes-read": "Attributes read", | ||
303 | + "status-success": "Success", | ||
304 | + "status-failure": "Failure", | ||
305 | + "audit-log-details": "Audit log details", | ||
306 | + "no-audit-logs-prompt": "No logs found", | ||
307 | + "action-data": "Action data", | ||
308 | + "failure-details": "Failure details", | ||
309 | + "search": "Search audit logs", | ||
310 | + "clear-search": "Clear search" | ||
311 | + }, | ||
127 | "confirm-on-exit": { | 312 | "confirm-on-exit": { |
128 | "message": "Tienes cambios sin guardar. ¿Estás seguro que quieres abandonar la página?", | 313 | "message": "Tienes cambios sin guardar. ¿Estás seguro que quieres abandonar la página?", |
129 | "html-message": "Tienes cambios sin guardar.<br/>¿Estás seguro que quieres abandonar la página?", | 314 | "html-message": "Tienes cambios sin guardar.<br/>¿Estás seguro que quieres abandonar la página?", |
@@ -148,6 +333,11 @@ export default function addLocaleSpanish(locales) { | @@ -148,6 +333,11 @@ export default function addLocaleSpanish(locales) { | ||
148 | "enter-password": "Ingresa la contraseña", | 333 | "enter-password": "Ingresa la contraseña", |
149 | "enter-search": "Ingresa búsqueda" | 334 | "enter-search": "Ingresa búsqueda" |
150 | }, | 335 | }, |
336 | + "content-type": { // TODO | ||
337 | + "json": "Json", | ||
338 | + "text": "Text", | ||
339 | + "binary": "Binary (Base64)" | ||
340 | + }, | ||
151 | "customer": { | 341 | "customer": { |
152 | "customers": "Clientes", | 342 | "customers": "Clientes", |
153 | "management": "Gestión de Clientes", | 343 | "management": "Gestión de Clientes", |
@@ -408,6 +598,94 @@ export default function addLocaleSpanish(locales) { | @@ -408,6 +598,94 @@ export default function addLocaleSpanish(locales) { | ||
408 | "unhandled-error-code": "Código de error no manejado: {{errorCode}}", | 598 | "unhandled-error-code": "Código de error no manejado: {{errorCode}}", |
409 | "unknown-error": "Error desconocido" | 599 | "unknown-error": "Error desconocido" |
410 | }, | 600 | }, |
601 | + "entity": { // TODO | ||
602 | + "entity": "Entity", | ||
603 | + "entities": "Entities", | ||
604 | + "aliases": "Entity aliases", | ||
605 | + "entity-alias": "Entity alias", | ||
606 | + "unable-delete-entity-alias-title": "Unable to delete entity alias", | ||
607 | + "unable-delete-entity-alias-text": "Entity alias '{{entityAlias}}' can't be deleted as it used by the following widget(s):<br/>{{widgetsList}}", | ||
608 | + "duplicate-alias-error": "Duplicate alias found '{{alias}}'.<br>Entity aliases must be unique whithin the dashboard.", | ||
609 | + "missing-entity-filter-error": "Filter is missing for alias '{{alias}}'.", | ||
610 | + "configure-alias": "Configure '{{alias}}' alias", | ||
611 | + "alias": "Alias", | ||
612 | + "alias-required": "Entity alias is required.", | ||
613 | + "remove-alias": "Remove entity alias", | ||
614 | + "add-alias": "Add entity alias", | ||
615 | + "entity-list": "Entity list", | ||
616 | + "entity-type": "Entity type", | ||
617 | + "entity-types": "Entity types", | ||
618 | + "entity-type-list": "Entity type list", | ||
619 | + "any-entity": "Any entity", | ||
620 | + "enter-entity-type": "Enter entity type", | ||
621 | + "no-entities-matching": "No entities matching '{{entity}}' were found.", | ||
622 | + "no-entity-types-matching": "No entity types matching '{{entityType}}' were found.", | ||
623 | + "name-starts-with": "Name starts with", | ||
624 | + "use-entity-name-filter": "Use filter", | ||
625 | + "entity-list-empty": "No entities selected.", | ||
626 | + "entity-type-list-empty": "No entity types selected.", | ||
627 | + "entity-name-filter-required": "Entity name filter is required.", | ||
628 | + "entity-name-filter-no-entity-matched": "No entities starting with '{{entity}}' were found.", | ||
629 | + "all-subtypes": "All", | ||
630 | + "select-entities": "Select entities", | ||
631 | + "no-aliases-found": "No aliases found.", | ||
632 | + "no-alias-matching": "'{{alias}}' not found.", | ||
633 | + "create-new-alias": "Create a new one!", | ||
634 | + "key": "Key", | ||
635 | + "key-name": "Key name", | ||
636 | + "no-keys-found": "No keys found.", | ||
637 | + "no-key-matching": "'{{key}}' not found.", | ||
638 | + "create-new-key": "Create a new one!", | ||
639 | + "type": "Type", | ||
640 | + "type-required": "Entity type is required.", | ||
641 | + "type-device": "Device", | ||
642 | + "type-devices": "Devices", | ||
643 | + "list-of-devices": "{ count, select, 1 {One device} other {List of # devices} }", | ||
644 | + "device-name-starts-with": "Devices whose names start with '{{prefix}}'", | ||
645 | + "type-asset": "Asset", | ||
646 | + "type-assets": "Assets", | ||
647 | + "list-of-assets": "{ count, select, 1 {One asset} other {List of # assets} }", | ||
648 | + "asset-name-starts-with": "Assets whose names start with '{{prefix}}'", | ||
649 | + "type-rule": "Rule", | ||
650 | + "type-rules": "Rules", | ||
651 | + "list-of-rules": "{ count, select, 1 {One rule} other {List of # rules} }", | ||
652 | + "rule-name-starts-with": "Rules whose names start with '{{prefix}}'", | ||
653 | + "type-plugin": "Plugin", | ||
654 | + "type-plugins": "Plugins", | ||
655 | + "list-of-plugins": "{ count, select, 1 {One plugin} other {List of # plugins} }", | ||
656 | + "plugin-name-starts-with": "Plugins whose names start with '{{prefix}}'", | ||
657 | + "type-tenant": "Tenant", | ||
658 | + "type-tenants": "Tenants", | ||
659 | + "list-of-tenants": "{ count, select, 1 {One tenant} other {List of # tenants} }", | ||
660 | + "tenant-name-starts-with": "Tenants whose names start with '{{prefix}}'", | ||
661 | + "type-customer": "Customer", | ||
662 | + "type-customers": "Customers", | ||
663 | + "list-of-customers": "{ count, select, 1 {One customer} other {List of # customers} }", | ||
664 | + "customer-name-starts-with": "Customers whose names start with '{{prefix}}'", | ||
665 | + "type-user": "User", | ||
666 | + "type-users": "Users", | ||
667 | + "list-of-users": "{ count, select, 1 {One user} other {List of # users} }", | ||
668 | + "user-name-starts-with": "Users whose names start with '{{prefix}}'", | ||
669 | + "type-dashboard": "Dashboard", | ||
670 | + "type-dashboards": "Dashboards", | ||
671 | + "list-of-dashboards": "{ count, select, 1 {One dashboard} other {List of # dashboards} }", | ||
672 | + "dashboard-name-starts-with": "Dashboards whose names start with '{{prefix}}'", | ||
673 | + "type-alarm": "Alarm", | ||
674 | + "type-alarms": "Alarms", | ||
675 | + "list-of-alarms": "{ count, select, 1 {One alarms} other {List of # alarms} }", | ||
676 | + "alarm-name-starts-with": "Alarms whose names start with '{{prefix}}'", | ||
677 | + "type-rulechain": "Rule chain", | ||
678 | + "type-rulechains": "Rule chains", | ||
679 | + "list-of-rulechains": "{ count, select, 1 {One rule chain} other {List of # rule chains} }", | ||
680 | + "rulechain-name-starts-with": "Rule chains whose names start with '{{prefix}}'", | ||
681 | + "type-current-customer": "Current Customer", | ||
682 | + "search": "Search entities", | ||
683 | + "selected-entities": "{ count, select, 1 {1 entity} other {# entities} } selected", | ||
684 | + "entity-name": "Entity name", | ||
685 | + "details": "Entity details", | ||
686 | + "no-entities-prompt": "No entities found", | ||
687 | + "no-data": "No data to display" | ||
688 | + }, | ||
411 | "event": { | 689 | "event": { |
412 | "event-type": "Tipo de evento", | 690 | "event-type": "Tipo de evento", |
413 | "type-error": "Error", | 691 | "type-error": "Error", |
@@ -427,6 +705,163 @@ export default function addLocaleSpanish(locales) { | @@ -427,6 +705,163 @@ export default function addLocaleSpanish(locales) { | ||
427 | "messages-processed": "Mensajes procesados", | 705 | "messages-processed": "Mensajes procesados", |
428 | "errors-occurred": "Ocurrieron errores" | 706 | "errors-occurred": "Ocurrieron errores" |
429 | }, | 707 | }, |
708 | + "extension": { // TODO | ||
709 | + "extensions": "Extensions", | ||
710 | + "selected-extensions": "{ count, select, 1 {1 extension} other {# extensions} } selected", | ||
711 | + "type": "Type", | ||
712 | + "key": "Key", | ||
713 | + "value": "Value", | ||
714 | + "id": "Id", | ||
715 | + "extension-id": "Extension id", | ||
716 | + "extension-type": "Extension type", | ||
717 | + "transformer-json": "JSON *", | ||
718 | + "unique-id-required": "Current extension id already exists.", | ||
719 | + "delete": "Delete extension", | ||
720 | + "add": "Add extension", | ||
721 | + "edit": "Edit extension", | ||
722 | + "delete-extension-title": "Are you sure you want to delete the extension '{{extensionId}}'?", | ||
723 | + "delete-extension-text": "Be careful, after the confirmation the extension and all related data will become unrecoverable.", | ||
724 | + "delete-extensions-title": "Are you sure you want to delete { count, select, 1 {1 extension} other {# extensions} }?", | ||
725 | + "delete-extensions-text": "Be careful, after the confirmation all selected extensions will be removed.", | ||
726 | + "converters": "Converters", | ||
727 | + "converter-id": "Converter id", | ||
728 | + "configuration": "Configuration", | ||
729 | + "converter-configurations": "Converter configurations", | ||
730 | + "token": "Security token", | ||
731 | + "add-converter": "Add converter", | ||
732 | + "add-config": "Add converter configuration", | ||
733 | + "device-name-expression": "Device name expression", | ||
734 | + "device-type-expression": "Device type expression", | ||
735 | + "custom": "Custom", | ||
736 | + "to-double": "To Double", | ||
737 | + "transformer": "Transformer", | ||
738 | + "json-required": "Transformer json is required.", | ||
739 | + "json-parse": "Unable to parse transformer json.", | ||
740 | + "attributes": "Attributes", | ||
741 | + "add-attribute": "Add attribute", | ||
742 | + "add-map": "Add mapping element", | ||
743 | + "timeseries": "Timeseries", | ||
744 | + "add-timeseries": "Add timeseries", | ||
745 | + "field-required": "Field is required", | ||
746 | + "brokers": "Brokers", | ||
747 | + "add-broker": "Add broker", | ||
748 | + "host": "Host", | ||
749 | + "port": "Port", | ||
750 | + "port-range": "Port should be in a range from 1 to 65535.", | ||
751 | + "ssl": "Ssl", | ||
752 | + "credentials": "Credentials", | ||
753 | + "username": "Username", | ||
754 | + "password": "Password", | ||
755 | + "retry-interval": "Retry interval in milliseconds", | ||
756 | + "anonymous": "Anonymous", | ||
757 | + "basic": "Basic", | ||
758 | + "pem": "PEM", | ||
759 | + "ca-cert": "CA certificate file *", | ||
760 | + "private-key": "Private key file *", | ||
761 | + "cert": "Certificate file *", | ||
762 | + "no-file": "No file selected.", | ||
763 | + "drop-file": "Drop a file or click to select a file to upload.", | ||
764 | + "mapping": "Mapping", | ||
765 | + "topic-filter": "Topic filter", | ||
766 | + "converter-type": "Converter type", | ||
767 | + "converter-json": "Json", | ||
768 | + "json-name-expression": "Device name json expression", | ||
769 | + "topic-name-expression": "Device name topic expression", | ||
770 | + "json-type-expression": "Device type json expression", | ||
771 | + "topic-type-expression": "Device type topic expression", | ||
772 | + "attribute-key-expression": "Attribute key expression", | ||
773 | + "attr-json-key-expression": "Attribute key json expression", | ||
774 | + "attr-topic-key-expression": "Attribute key topic expression", | ||
775 | + "request-id-expression": "Request id expression", | ||
776 | + "request-id-json-expression": "Request id json expression", | ||
777 | + "request-id-topic-expression": "Request id topic expression", | ||
778 | + "response-topic-expression": "Response topic expression", | ||
779 | + "value-expression": "Value expression", | ||
780 | + "topic": "Topic", | ||
781 | + "timeout": "Timeout in milliseconds", | ||
782 | + "converter-json-required": "Converter json is required.", | ||
783 | + "converter-json-parse": "Unable to parse converter json.", | ||
784 | + "filter-expression": "Filter expression", | ||
785 | + "connect-requests": "Connect requests", | ||
786 | + "add-connect-request": "Add connect request", | ||
787 | + "disconnect-requests": "Disconnect requests", | ||
788 | + "add-disconnect-request": "Add disconnect request", | ||
789 | + "attribute-requests": "Attribute requests", | ||
790 | + "add-attribute-request": "Add attribute request", | ||
791 | + "attribute-updates": "Attribute updates", | ||
792 | + "add-attribute-update": "Add attribute update", | ||
793 | + "server-side-rpc": "Server side RPC", | ||
794 | + "add-server-side-rpc-request": "Add server-side RPC request", | ||
795 | + "device-name-filter": "Device name filter", | ||
796 | + "attribute-filter": "Attribute filter", | ||
797 | + "method-filter": "Method filter", | ||
798 | + "request-topic-expression": "Request topic expression", | ||
799 | + "response-timeout": "Response timeout in milliseconds", | ||
800 | + "topic-expression": "Topic expression", | ||
801 | + "client-scope": "Client scope", | ||
802 | + "add-device": "Add device", | ||
803 | + "opc-server": "Servers", | ||
804 | + "opc-add-server": "Add server", | ||
805 | + "opc-add-server-prompt": "Please add server", | ||
806 | + "opc-application-name": "Application name", | ||
807 | + "opc-application-uri": "Application uri", | ||
808 | + "opc-scan-period-in-seconds": "Scan period in seconds", | ||
809 | + "opc-security": "Security", | ||
810 | + "opc-identity": "Identity", | ||
811 | + "opc-keystore": "Keystore", | ||
812 | + "opc-type": "Type", | ||
813 | + "opc-keystore-type": "Type", | ||
814 | + "opc-keystore-location": "Location *", | ||
815 | + "opc-keystore-password": "Password", | ||
816 | + "opc-keystore-alias": "Alias", | ||
817 | + "opc-keystore-key-password": "Key password", | ||
818 | + "opc-device-node-pattern": "Device node pattern", | ||
819 | + "opc-device-name-pattern": "Device name pattern", | ||
820 | + "modbus-server": "Servers/slaves", | ||
821 | + "modbus-add-server": "Add server/slave", | ||
822 | + "modbus-add-server-prompt": "Please add server/slave", | ||
823 | + "modbus-transport": "Transport", | ||
824 | + "modbus-port-name": "Serial port name", | ||
825 | + "modbus-encoding": "Encoding", | ||
826 | + "modbus-parity": "Parity", | ||
827 | + "modbus-baudrate": "Baud rate", | ||
828 | + "modbus-databits": "Data bits", | ||
829 | + "modbus-stopbits": "Stop bits", | ||
830 | + "modbus-databits-range": "Data bits should be in a range from 7 to 8.", | ||
831 | + "modbus-stopbits-range": "Stop bits should be in a range from 1 to 2.", | ||
832 | + "modbus-unit-id": "Unit ID", | ||
833 | + "modbus-unit-id-range": "Unit ID should be in a range from 1 to 247.", | ||
834 | + "modbus-device-name": "Device name", | ||
835 | + "modbus-poll-period": "Poll period (ms)", | ||
836 | + "modbus-attributes-poll-period": "Attributes poll period (ms)", | ||
837 | + "modbus-timeseries-poll-period": "Timeseries poll period (ms)", | ||
838 | + "modbus-poll-period-range": "Poll period should be positive value.", | ||
839 | + "modbus-tag": "Tag", | ||
840 | + "modbus-function": "Function", | ||
841 | + "modbus-register-address": "Register address", | ||
842 | + "modbus-register-address-range": "Register address should be in a range from 0 to 65535.", | ||
843 | + "modbus-register-bit-index": "Bit index", | ||
844 | + "modbus-register-bit-index-range": "Bit index should be in a range from 0 to 15.", | ||
845 | + "modbus-register-count": "Register count", | ||
846 | + "modbus-register-count-range": "Register count should be a positive value.", | ||
847 | + "modbus-byte-order": "Byte order", | ||
848 | + | ||
849 | + "sync": { | ||
850 | + "status": "Status", | ||
851 | + "sync": "Sync", | ||
852 | + "not-sync": "Not sync", | ||
853 | + "last-sync-time": "Last sync time", | ||
854 | + "not-available": "Not available" | ||
855 | + }, | ||
856 | + | ||
857 | + "export-extensions-configuration": "Export extensions configuration", | ||
858 | + "import-extensions-configuration": "Import extensions configuration", | ||
859 | + "import-extensions": "Import extensions", | ||
860 | + "import-extension": "Import extension", | ||
861 | + "export-extension": "Export extension", | ||
862 | + "file": "Extensions file", | ||
863 | + "invalid-file-error": "Invalid extension file" | ||
864 | + }, | ||
430 | "fullscreen": { | 865 | "fullscreen": { |
431 | "expand": "Expandir a Pantalla Completa", | 866 | "expand": "Expandir a Pantalla Completa", |
432 | "exit": "Salir de Pantalla Completa", | 867 | "exit": "Salir de Pantalla Completa", |
@@ -471,6 +906,22 @@ export default function addLocaleSpanish(locales) { | @@ -471,6 +906,22 @@ export default function addLocaleSpanish(locales) { | ||
471 | "no-return-error": "La función debe retornar un valor!", | 906 | "no-return-error": "La función debe retornar un valor!", |
472 | "return-type-mismatch": "La función debe retornar un valor de tipo: '{{type}}'!" | 907 | "return-type-mismatch": "La función debe retornar un valor de tipo: '{{type}}'!" |
473 | }, | 908 | }, |
909 | + "key-val": { // TODO | ||
910 | + "key": "Key", | ||
911 | + "value": "Value", | ||
912 | + "remove-entry": "Remove entry", | ||
913 | + "add-entry": "Add entry", | ||
914 | + "no-data": "No entries" | ||
915 | + }, | ||
916 | + "layout": { // TODO | ||
917 | + "layout": "Layout", | ||
918 | + "manage": "Manage layouts", | ||
919 | + "settings": "Layout settings", | ||
920 | + "color": "Color", | ||
921 | + "main": "Main", | ||
922 | + "right": "Right", | ||
923 | + "select": "Select target layout" | ||
924 | + }, | ||
474 | "legend": { | 925 | "legend": { |
475 | "position": "Posición de leyenda", | 926 | "position": "Posición de leyenda", |
476 | "show-max": "Mostrar máximo", | 927 | "show-max": "Mostrar máximo", |
@@ -511,6 +962,140 @@ export default function addLocaleSpanish(locales) { | @@ -511,6 +962,140 @@ export default function addLocaleSpanish(locales) { | ||
511 | "change-password": "Cambiar contraseña", | 962 | "change-password": "Cambiar contraseña", |
512 | "current-password": "Contraseña actual" | 963 | "current-password": "Contraseña actual" |
513 | }, | 964 | }, |
965 | + "relation": { // TODO | ||
966 | + "relations": "Relations", | ||
967 | + "direction": "Direction", | ||
968 | + "search-direction": { | ||
969 | + "FROM": "From", | ||
970 | + "TO": "To" | ||
971 | + }, | ||
972 | + "direction-type": { | ||
973 | + "FROM": "from", | ||
974 | + "TO": "to" | ||
975 | + }, | ||
976 | + "from-relations": "Outbound relations", | ||
977 | + "to-relations": "Inbound relations", | ||
978 | + "selected-relations": "{ count, select, 1 {1 relation} other {# relations} } selected", | ||
979 | + "type": "Type", | ||
980 | + "to-entity-type": "To entity type", | ||
981 | + "to-entity-name": "To entity name", | ||
982 | + "from-entity-type": "From entity type", | ||
983 | + "from-entity-name": "From entity name", | ||
984 | + "to-entity": "To entity", | ||
985 | + "from-entity": "From entity", | ||
986 | + "delete": "Delete relation", | ||
987 | + "relation-type": "Relation type", | ||
988 | + "relation-type-required": "Relation type is required.", | ||
989 | + "any-relation-type": "Any type", | ||
990 | + "add": "Add relation", | ||
991 | + "edit": "Edit relation", | ||
992 | + "delete-to-relation-title": "Are you sure you want to delete relation to the entity '{{entityName}}'?", | ||
993 | + "delete-to-relation-text": "Be careful, after the confirmation the entity '{{entityName}}' will be unrelated from the current entity.", | ||
994 | + "delete-to-relations-title": "Are you sure you want to delete { count, select, 1 {1 relation} other {# relations} }?", | ||
995 | + "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.", | ||
996 | + "delete-from-relation-title": "Are you sure you want to delete relation from the entity '{{entityName}}'?", | ||
997 | + "delete-from-relation-text": "Be careful, after the confirmation current entity will be unrelated from the entity '{{entityName}}'.", | ||
998 | + "delete-from-relations-title": "Are you sure you want to delete { count, select, 1 {1 relation} other {# relations} }?", | ||
999 | + "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.", | ||
1000 | + "remove-relation-filter": "Remove relation filter", | ||
1001 | + "add-relation-filter": "Add relation filter", | ||
1002 | + "any-relation": "Any relation", | ||
1003 | + "relation-filters": "Relation filters", | ||
1004 | + "additional-info": "Additional info (JSON)", | ||
1005 | + "invalid-additional-info": "Unable to parse additional info json." | ||
1006 | + }, | ||
1007 | + "rulechain": { // TODO | ||
1008 | + "rulechain": "Rule chain", | ||
1009 | + "rulechains": "Rule chains", | ||
1010 | + "root": "Root", | ||
1011 | + "delete": "Delete rule chain", | ||
1012 | + "name": "Name", | ||
1013 | + "name-required": "Name is required.", | ||
1014 | + "description": "Description", | ||
1015 | + "add": "Add Rule Chain", | ||
1016 | + "set-root": "Make rule chain root", | ||
1017 | + "set-root-rulechain-title": "Are you sure you want to make the rule chain '{{ruleChainName}}' root?", | ||
1018 | + "set-root-rulechain-text": "After the confirmation the rule chain will become root and will handle all incoming transport messages.", | ||
1019 | + "delete-rulechain-title": "Are you sure you want to delete the rule chain '{{ruleChainName}}'?", | ||
1020 | + "delete-rulechain-text": "Be careful, after the confirmation the rule chain and all related data will become unrecoverable.", | ||
1021 | + "delete-rulechains-title": "Are you sure you want to delete { count, select, 1 {1 rule chain} other {# rule chains} }?", | ||
1022 | + "delete-rulechains-action-title": "Delete { count, select, 1 {1 rule chain} other {# rule chains} }", | ||
1023 | + "delete-rulechains-text": "Be careful, after the confirmation all selected rule chains will be removed and all related data will become unrecoverable.", | ||
1024 | + "add-rulechain-text": "Add new rule chain", | ||
1025 | + "no-rulechains-text": "No rule chains found", | ||
1026 | + "rulechain-details": "Rule chain details", | ||
1027 | + "details": "Details", | ||
1028 | + "events": "Events", | ||
1029 | + "system": "System", | ||
1030 | + "import": "Import rule chain", | ||
1031 | + "export": "Export rule chain", | ||
1032 | + "export-failed-error": "Unable to export rule chain: {{error}}", | ||
1033 | + "create-new-rulechain": "Create new rule chain", | ||
1034 | + "rulechain-file": "Rule chain file", | ||
1035 | + "invalid-rulechain-file-error": "Unable to import rule chain: Invalid rule chain data structure.", | ||
1036 | + "copyId": "Copy rule chain Id", | ||
1037 | + "idCopiedMessage": "Rule chain Id has been copied to clipboard", | ||
1038 | + "select-rulechain": "Select rule chain", | ||
1039 | + "no-rulechains-matching": "No rule chains matching '{{entity}}' were found.", | ||
1040 | + "rulechain-required": "Rule chain is required", | ||
1041 | + "management": "Rules management", | ||
1042 | + "debug-mode": "Debug mode" | ||
1043 | + }, | ||
1044 | + "rulenode": { // TODO | ||
1045 | + "details": "Details", | ||
1046 | + "events": "Events", | ||
1047 | + "search": "Search nodes", | ||
1048 | + "open-node-library": "Open node library", | ||
1049 | + "add": "Add rule node", | ||
1050 | + "name": "Name", | ||
1051 | + "name-required": "Name is required.", | ||
1052 | + "type": "Type", | ||
1053 | + "description": "Description", | ||
1054 | + "delete": "Delete rule node", | ||
1055 | + "select-all-objects": "Select all nodes and connections", | ||
1056 | + "deselect-all-objects": "Deselect all nodes and connections", | ||
1057 | + "delete-selected-objects": "Delete selected nodes and connections", | ||
1058 | + "delete-selected": "Delete selected", | ||
1059 | + "select-all": "Select all", | ||
1060 | + "copy-selected": "Copy selected", | ||
1061 | + "deselect-all": "Deselect all", | ||
1062 | + "rulenode-details": "Rule node details", | ||
1063 | + "debug-mode": "Debug mode", | ||
1064 | + "configuration": "Configuration", | ||
1065 | + "link": "Link", | ||
1066 | + "link-details": "Rule node link details", | ||
1067 | + "add-link": "Add link", | ||
1068 | + "link-label": "Link label", | ||
1069 | + "link-label-required": "Link label is required.", | ||
1070 | + "custom-link-label": "Custom link label", | ||
1071 | + "custom-link-label-required": "Custom link label is required.", | ||
1072 | + "type-filter": "Filter", | ||
1073 | + "type-filter-details": "Filter incoming messages with configured conditions", | ||
1074 | + "type-enrichment": "Enrichment", | ||
1075 | + "type-enrichment-details": "Add additional information into Message Metadata", | ||
1076 | + "type-transformation": "Transformation", | ||
1077 | + "type-transformation-details": "Change Message payload and Metadata", | ||
1078 | + "type-action": "Action", | ||
1079 | + "type-action-details": "Perform special action", | ||
1080 | + "type-external": "External", | ||
1081 | + "type-external-details": "Interacts with external system", | ||
1082 | + "type-rule-chain": "Rule Chain", | ||
1083 | + "type-rule-chain-details": "Forwards incoming messages to specified Rule Chain", | ||
1084 | + "type-input": "Input", | ||
1085 | + "type-input-details": "Logical input of Rule Chain, forwards incoming messages to next related Rule Node", | ||
1086 | + "directive-is-not-loaded": "Defined configuration directive '{{directiveName}}' is not available.", | ||
1087 | + "ui-resources-load-error": "Failed to load configuration ui resources.", | ||
1088 | + "invalid-target-rulechain": "Unable to resolve target rule chain!", | ||
1089 | + "test-script-function": "Test script function", | ||
1090 | + "message": "Message", | ||
1091 | + "message-type": "Message type", | ||
1092 | + "message-type-required": "Message type is required", | ||
1093 | + "metadata": "Metadata", | ||
1094 | + "metadata-required": "Metadata entries can't be empty.", | ||
1095 | + "output": "Output", | ||
1096 | + "test": "Test", | ||
1097 | + "help": "Help" | ||
1098 | + }, | ||
514 | "tenant": { | 1099 | "tenant": { |
515 | "tenants": "Tenants", | 1100 | "tenants": "Tenants", |
516 | "management": "Gestión de Tenant", | 1101 | "management": "Gestión de Tenant", |
@@ -646,6 +1231,18 @@ export default function addLocaleSpanish(locales) { | @@ -646,6 +1231,18 @@ export default function addLocaleSpanish(locales) { | ||
646 | "undo": "Deshacer cambios", | 1231 | "undo": "Deshacer cambios", |
647 | "export": "Exportar widget" | 1232 | "export": "Exportar widget" |
648 | }, | 1233 | }, |
1234 | + "widget-action": { // TODO | ||
1235 | + "header-button": "Widget header button", | ||
1236 | + "open-dashboard-state": "Navigate to new dashboard state", | ||
1237 | + "update-dashboard-state": "Update current dashboard state", | ||
1238 | + "open-dashboard": "Navigate to other dashboard", | ||
1239 | + "custom": "Custom action", | ||
1240 | + "target-dashboard-state": "Target dashboard state", | ||
1241 | + "target-dashboard-state-required": "Target dashboard state is required", | ||
1242 | + "set-entity-from-widget": "Set entity from widget", | ||
1243 | + "target-dashboard": "Target dashboard", | ||
1244 | + "open-right-layout": "Open right dashboard layout (mobile view)" | ||
1245 | + }, | ||
649 | "widgets-bundle": { | 1246 | "widgets-bundle": { |
650 | "current": "Paquete actual", | 1247 | "current": "Paquete actual", |
651 | "widgets-bundles": "Paquete de Widgets", | 1248 | "widgets-bundles": "Paquete de Widgets", |
@@ -709,6 +1306,20 @@ export default function addLocaleSpanish(locales) { | @@ -709,6 +1306,20 @@ export default function addLocaleSpanish(locales) { | ||
709 | "widget-type-file": "Tipo de archivo del widget", | 1306 | "widget-type-file": "Tipo de archivo del widget", |
710 | "invalid-widget-type-file-error": "Imposible de importar tipo de widget: Estructura de datos inválida." | 1307 | "invalid-widget-type-file-error": "Imposible de importar tipo de widget: Estructura de datos inválida." |
711 | }, | 1308 | }, |
1309 | + "icon": { // TODO | ||
1310 | + "icon": "Icon", | ||
1311 | + "select-icon": "Select icon", | ||
1312 | + "material-icons": "Material icons", | ||
1313 | + "show-all": "Show all icons" | ||
1314 | + }, | ||
1315 | + "custom": { // TODO | ||
1316 | + "widget-action": { | ||
1317 | + "action-cell-button": "Action cell button", | ||
1318 | + "row-click": "On row click", | ||
1319 | + "marker-click": "On marker click", | ||
1320 | + "tooltip-tag-action": "Tooltip tag action" | ||
1321 | + } | ||
1322 | + }, | ||
712 | "language": { | 1323 | "language": { |
713 | "language": "Lenguaje", | 1324 | "language": "Lenguaje", |
714 | "en_US": "Inglés", | 1325 | "en_US": "Inglés", |