@c8y/ngx-components 1021.66.0 → 1021.70.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (207) hide show
  1. package/core/common/bytes.pipe.d.ts +26 -10
  2. package/core/common/bytes.pipe.d.ts.map +1 -1
  3. package/echart/charts.component.d.ts +14 -3
  4. package/echart/charts.component.d.ts.map +1 -1
  5. package/esm2022/core/common/bytes.pipe.mjs +47 -18
  6. package/esm2022/core/data-grid/data-grid.component.mjs +3 -3
  7. package/esm2022/echart/charts.component.mjs +50 -3
  8. package/esm2022/messaging-management/api/model/backlogQuota.mjs +2 -0
  9. package/esm2022/messaging-management/api/model/namespace.mjs +2 -0
  10. package/esm2022/messaging-management/api/model/namespaceDetails.mjs +2 -0
  11. package/esm2022/messaging-management/api/model/namespaceList.mjs +2 -0
  12. package/esm2022/messaging-management/api/model/namespacePolicies.mjs +2 -0
  13. package/esm2022/messaging-management/api/model/namespacePublishers.mjs +2 -0
  14. package/esm2022/messaging-management/api/model/namespaceSubscribers.mjs +2 -0
  15. package/esm2022/messaging-management/api/model/namespaceTopics.mjs +2 -0
  16. package/esm2022/messaging-management/api/model/pageStatistics.mjs +2 -0
  17. package/esm2022/messaging-management/api/model/pageable.mjs +2 -0
  18. package/esm2022/messaging-management/api/model/sortable.mjs +2 -0
  19. package/esm2022/messaging-management/api/model/subscriber.mjs +2 -0
  20. package/esm2022/messaging-management/api/model/subscriberFilters.mjs +2 -0
  21. package/esm2022/messaging-management/api/model/subscriberList.mjs +2 -0
  22. package/esm2022/messaging-management/api/model/subscriberToDelete.mjs +2 -0
  23. package/esm2022/messaging-management/api/model/topic.mjs +2 -0
  24. package/esm2022/messaging-management/api/model/topicDetailFilters.mjs +2 -0
  25. package/esm2022/messaging-management/api/model/topicList.mjs +2 -0
  26. package/esm2022/messaging-management/api/model/topicListFilters.mjs +2 -0
  27. package/esm2022/messaging-management/api/model/topicType.mjs +9 -0
  28. package/esm2022/messaging-management/api/services/messaging-namespaces.service.mjs +83 -0
  29. package/esm2022/messaging-management/api/services/messaging-subscribers.service.mjs +55 -0
  30. package/esm2022/messaging-management/api/services/messaging-topics.service.mjs +48 -0
  31. package/esm2022/messaging-management/c8y-ngx-components-messaging-management.mjs +5 -0
  32. package/esm2022/messaging-management/constants.mjs +4 -0
  33. package/esm2022/messaging-management/index.mjs +2 -0
  34. package/esm2022/messaging-management/messaging/namespace-list/namespace-item/namespace-item-card/namespace-item-card.component.mjs +43 -0
  35. package/esm2022/messaging-management/messaging/namespace-list/namespace-item/namespace-item.component.mjs +36 -0
  36. package/esm2022/messaging-management/messaging/namespace-list/namespace-list.component.mjs +51 -0
  37. package/esm2022/messaging-management/messaging/shared/usage/usage.component.mjs +68 -0
  38. package/esm2022/messaging-management/messaging/topic/topic-list-view.component.mjs +81 -0
  39. package/esm2022/messaging-management/messaging/topic/topic-subscribers-view/topic-subscribers-data-grid.service.mjs +220 -0
  40. package/esm2022/messaging-management/messaging/topic/topic-subscribers-view/topic-subscribers-view.component.mjs +137 -0
  41. package/esm2022/messaging-management/messaging/topic/topics-data-grid.service.mjs +113 -0
  42. package/esm2022/messaging-management/messaging-management.guard.mjs +40 -0
  43. package/esm2022/messaging-management/messaging-management.module.mjs +72 -0
  44. package/esm2022/messaging-management/navigator/messaging-navigator-factory.mjs +55 -0
  45. package/esm2022/messaging-management/navigator/topic-details-tab.factory.mjs +33 -0
  46. package/esm2022/messaging-management/utils/backlog-quota-limit.pipe.mjs +32 -0
  47. package/esm2022/messaging-management/utils/namespace-props.mjs +23 -0
  48. package/esm2022/messaging-management/utils/time-to-live.pipe.mjs +122 -0
  49. package/esm2022/operations/device-selector/device-selector.component.mjs +5 -1
  50. package/esm2022/widgets/cockpit/index.mjs +3 -1
  51. package/esm2022/widgets/cockpit-exports/index.mjs +8 -1
  52. package/esm2022/widgets/definitions/index.mjs +2 -1
  53. package/esm2022/widgets/definitions/radial-gauge/c8y-ngx-components-widgets-definitions-radial-gauge.mjs +5 -0
  54. package/esm2022/widgets/definitions/radial-gauge/index.mjs +33 -0
  55. package/esm2022/widgets/implementations/datapoints-graph/datapoints-graph-view/datapoints-graph-widget-view.component.mjs +18 -3
  56. package/esm2022/widgets/implementations/info-gauge/index.mjs +2 -2
  57. package/esm2022/widgets/implementations/info-gauge/info-gauge-widget-config/gauge.model.mjs +295 -0
  58. package/esm2022/widgets/implementations/info-gauge/info-gauge-widget-config/info-gauge-widget-config.component.mjs +141 -11
  59. package/esm2022/widgets/implementations/info-gauge/info-gauge-widget-config/preset-preview/preset-preview.component.mjs +67 -0
  60. package/esm2022/widgets/implementations/info-gauge/info-gauge-widget-view/info-gauge-widget-view.component.mjs +34 -6
  61. package/esm2022/widgets/implementations/info-gauge/info-gauge-widget.module.mjs +9 -4
  62. package/esm2022/widgets/implementations/info-gauge/radial-gauge/radial-gauge.component.mjs +97 -0
  63. package/esm2022/widgets/implementations/info-gauge/radial-gauge/radial-gauge.service.mjs +369 -0
  64. package/fesm2022/c8y-ngx-components-echart.mjs +49 -2
  65. package/fesm2022/c8y-ngx-components-echart.mjs.map +1 -1
  66. package/fesm2022/c8y-ngx-components-messaging-management.mjs +1225 -0
  67. package/fesm2022/c8y-ngx-components-messaging-management.mjs.map +1 -0
  68. package/fesm2022/c8y-ngx-components-operations-device-selector.mjs +4 -0
  69. package/fesm2022/c8y-ngx-components-operations-device-selector.mjs.map +1 -1
  70. package/fesm2022/c8y-ngx-components-widgets-cockpit-exports.mjs +7 -0
  71. package/fesm2022/c8y-ngx-components-widgets-cockpit-exports.mjs.map +1 -1
  72. package/fesm2022/c8y-ngx-components-widgets-cockpit.mjs +2 -0
  73. package/fesm2022/c8y-ngx-components-widgets-cockpit.mjs.map +1 -1
  74. package/fesm2022/c8y-ngx-components-widgets-definitions-radial-gauge.mjs +40 -0
  75. package/fesm2022/c8y-ngx-components-widgets-definitions-radial-gauge.mjs.map +1 -0
  76. package/fesm2022/c8y-ngx-components-widgets-definitions.mjs +1 -0
  77. package/fesm2022/c8y-ngx-components-widgets-definitions.mjs.map +1 -1
  78. package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-graph.mjs +17 -2
  79. package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-graph.mjs.map +1 -1
  80. package/fesm2022/c8y-ngx-components-widgets-implementations-info-gauge.mjs +991 -28
  81. package/fesm2022/c8y-ngx-components-widgets-implementations-info-gauge.mjs.map +1 -1
  82. package/fesm2022/c8y-ngx-components.mjs +49 -22
  83. package/fesm2022/c8y-ngx-components.mjs.map +1 -1
  84. package/locales/de.po +272 -5
  85. package/locales/es.po +271 -4
  86. package/locales/fr.po +272 -5
  87. package/locales/ja_JP.po +272 -5
  88. package/locales/ko.po +271 -4
  89. package/locales/locales.pot +271 -4
  90. package/locales/nl.po +271 -4
  91. package/locales/pl.po +271 -4
  92. package/locales/pt_BR.po +272 -5
  93. package/locales/zh_CN.po +271 -4
  94. package/locales/zh_TW.po +272 -5
  95. package/messaging-management/api/model/backlogQuota.d.ts +14 -0
  96. package/messaging-management/api/model/backlogQuota.d.ts.map +1 -0
  97. package/messaging-management/api/model/namespace.d.ts +13 -0
  98. package/messaging-management/api/model/namespace.d.ts.map +1 -0
  99. package/messaging-management/api/model/namespaceDetails.d.ts +8 -0
  100. package/messaging-management/api/model/namespaceDetails.d.ts.map +1 -0
  101. package/messaging-management/api/model/namespaceList.d.ts +5 -0
  102. package/messaging-management/api/model/namespaceList.d.ts.map +1 -0
  103. package/messaging-management/api/model/namespacePolicies.d.ts +10 -0
  104. package/messaging-management/api/model/namespacePolicies.d.ts.map +1 -0
  105. package/messaging-management/api/model/namespacePublishers.d.ts +4 -0
  106. package/messaging-management/api/model/namespacePublishers.d.ts.map +1 -0
  107. package/messaging-management/api/model/namespaceSubscribers.d.ts +4 -0
  108. package/messaging-management/api/model/namespaceSubscribers.d.ts.map +1 -0
  109. package/messaging-management/api/model/namespaceTopics.d.ts +5 -0
  110. package/messaging-management/api/model/namespaceTopics.d.ts.map +1 -0
  111. package/messaging-management/api/model/pageStatistics.d.ts +12 -0
  112. package/messaging-management/api/model/pageStatistics.d.ts.map +1 -0
  113. package/messaging-management/api/model/pageable.d.ts +8 -0
  114. package/messaging-management/api/model/pageable.d.ts.map +1 -0
  115. package/messaging-management/api/model/sortable.d.ts +6 -0
  116. package/messaging-management/api/model/sortable.d.ts.map +1 -0
  117. package/messaging-management/api/model/subscriber.d.ts +28 -0
  118. package/messaging-management/api/model/subscriber.d.ts.map +1 -0
  119. package/messaging-management/api/model/subscriberFilters.d.ts +13 -0
  120. package/messaging-management/api/model/subscriberFilters.d.ts.map +1 -0
  121. package/messaging-management/api/model/subscriberList.d.ts +7 -0
  122. package/messaging-management/api/model/subscriberList.d.ts.map +1 -0
  123. package/messaging-management/api/model/subscriberToDelete.d.ts +12 -0
  124. package/messaging-management/api/model/subscriberToDelete.d.ts.map +1 -0
  125. package/messaging-management/api/model/topic.d.ts +52 -0
  126. package/messaging-management/api/model/topic.d.ts.map +1 -0
  127. package/messaging-management/api/model/topicDetailFilters.d.ts +9 -0
  128. package/messaging-management/api/model/topicDetailFilters.d.ts.map +1 -0
  129. package/messaging-management/api/model/topicList.d.ts +7 -0
  130. package/messaging-management/api/model/topicList.d.ts.map +1 -0
  131. package/messaging-management/api/model/topicListFilters.d.ts +12 -0
  132. package/messaging-management/api/model/topicListFilters.d.ts.map +1 -0
  133. package/messaging-management/api/model/topicType.d.ts +8 -0
  134. package/messaging-management/api/model/topicType.d.ts.map +1 -0
  135. package/messaging-management/api/services/messaging-namespaces.service.d.ts +52 -0
  136. package/messaging-management/api/services/messaging-namespaces.service.d.ts.map +1 -0
  137. package/messaging-management/api/services/messaging-subscribers.service.d.ts +30 -0
  138. package/messaging-management/api/services/messaging-subscribers.service.d.ts.map +1 -0
  139. package/messaging-management/api/services/messaging-topics.service.d.ts +21 -0
  140. package/messaging-management/api/services/messaging-topics.service.d.ts.map +1 -0
  141. package/messaging-management/c8y-ngx-components-messaging-management.d.ts.map +1 -0
  142. package/messaging-management/constants.d.ts +4 -0
  143. package/messaging-management/constants.d.ts.map +1 -0
  144. package/messaging-management/index.d.ts +2 -0
  145. package/messaging-management/index.d.ts.map +1 -0
  146. package/messaging-management/messaging/namespace-list/namespace-item/namespace-item-card/namespace-item-card.component.d.ts +29 -0
  147. package/messaging-management/messaging/namespace-list/namespace-item/namespace-item-card/namespace-item-card.component.d.ts.map +1 -0
  148. package/messaging-management/messaging/namespace-list/namespace-item/namespace-item.component.d.ts +15 -0
  149. package/messaging-management/messaging/namespace-list/namespace-item/namespace-item.component.d.ts.map +1 -0
  150. package/messaging-management/messaging/namespace-list/namespace-list.component.d.ts +17 -0
  151. package/messaging-management/messaging/namespace-list/namespace-list.component.d.ts.map +1 -0
  152. package/messaging-management/messaging/shared/usage/usage.component.d.ts +40 -0
  153. package/messaging-management/messaging/shared/usage/usage.component.d.ts.map +1 -0
  154. package/messaging-management/messaging/topic/topic-list-view.component.d.ts +38 -0
  155. package/messaging-management/messaging/topic/topic-list-view.component.d.ts.map +1 -0
  156. package/messaging-management/messaging/topic/topic-subscribers-view/topic-subscribers-data-grid.service.d.ts +21 -0
  157. package/messaging-management/messaging/topic/topic-subscribers-view/topic-subscribers-data-grid.service.d.ts.map +1 -0
  158. package/messaging-management/messaging/topic/topic-subscribers-view/topic-subscribers-view.component.d.ts +52 -0
  159. package/messaging-management/messaging/topic/topic-subscribers-view/topic-subscribers-view.component.d.ts.map +1 -0
  160. package/messaging-management/messaging/topic/topics-data-grid.service.d.ts +13 -0
  161. package/messaging-management/messaging/topic/topics-data-grid.service.d.ts.map +1 -0
  162. package/messaging-management/messaging-management.guard.d.ts +12 -0
  163. package/messaging-management/messaging-management.guard.d.ts.map +1 -0
  164. package/messaging-management/messaging-management.module.d.ts +7 -0
  165. package/messaging-management/messaging-management.module.d.ts.map +1 -0
  166. package/messaging-management/navigator/messaging-navigator-factory.d.ts +18 -0
  167. package/messaging-management/navigator/messaging-navigator-factory.d.ts.map +1 -0
  168. package/messaging-management/navigator/topic-details-tab.factory.d.ts +15 -0
  169. package/messaging-management/navigator/topic-details-tab.factory.d.ts.map +1 -0
  170. package/messaging-management/utils/backlog-quota-limit.pipe.d.ts +13 -0
  171. package/messaging-management/utils/backlog-quota-limit.pipe.d.ts.map +1 -0
  172. package/messaging-management/utils/namespace-props.d.ts +10 -0
  173. package/messaging-management/utils/namespace-props.d.ts.map +1 -0
  174. package/messaging-management/utils/time-to-live.pipe.d.ts +16 -0
  175. package/messaging-management/utils/time-to-live.pipe.d.ts.map +1 -0
  176. package/operations/device-selector/device-selector.component.d.ts.map +1 -1
  177. package/package.json +1 -1
  178. package/widgets/cockpit/index.d.ts +29 -0
  179. package/widgets/cockpit/index.d.ts.map +1 -1
  180. package/widgets/cockpit-exports/index.d.ts +6 -0
  181. package/widgets/cockpit-exports/index.d.ts.map +1 -1
  182. package/widgets/definitions/index.d.ts +1 -0
  183. package/widgets/definitions/index.d.ts.map +1 -1
  184. package/widgets/definitions/radial-gauge/c8y-ngx-components-widgets-definitions-radial-gauge.d.ts.map +1 -0
  185. package/widgets/definitions/radial-gauge/index.d.ts +33 -0
  186. package/widgets/definitions/radial-gauge/index.d.ts.map +1 -0
  187. package/widgets/implementations/datapoints-graph/datapoints-graph-view/datapoints-graph-widget-view.component.d.ts +2 -0
  188. package/widgets/implementations/datapoints-graph/datapoints-graph-view/datapoints-graph-widget-view.component.d.ts.map +1 -1
  189. package/widgets/implementations/info-gauge/index.d.ts +1 -1
  190. package/widgets/implementations/info-gauge/index.d.ts.map +1 -1
  191. package/widgets/implementations/info-gauge/info-gauge-widget-config/gauge.model.d.ts +339 -0
  192. package/widgets/implementations/info-gauge/info-gauge-widget-config/gauge.model.d.ts.map +1 -0
  193. package/widgets/implementations/info-gauge/info-gauge-widget-config/info-gauge-widget-config.component.d.ts +27 -7
  194. package/widgets/implementations/info-gauge/info-gauge-widget-config/info-gauge-widget-config.component.d.ts.map +1 -1
  195. package/widgets/implementations/info-gauge/info-gauge-widget-config/preset-preview/preset-preview.component.d.ts +33 -0
  196. package/widgets/implementations/info-gauge/info-gauge-widget-config/preset-preview/preset-preview.component.d.ts.map +1 -0
  197. package/widgets/implementations/info-gauge/info-gauge-widget-view/info-gauge-widget-view.component.d.ts +7 -3
  198. package/widgets/implementations/info-gauge/info-gauge-widget-view/info-gauge-widget-view.component.d.ts.map +1 -1
  199. package/widgets/implementations/info-gauge/info-gauge-widget.module.d.ts +2 -1
  200. package/widgets/implementations/info-gauge/info-gauge-widget.module.d.ts.map +1 -1
  201. package/widgets/implementations/info-gauge/radial-gauge/radial-gauge.component.d.ts +37 -0
  202. package/widgets/implementations/info-gauge/radial-gauge/radial-gauge.component.d.ts.map +1 -0
  203. package/widgets/implementations/info-gauge/radial-gauge/radial-gauge.service.d.ts +146 -0
  204. package/widgets/implementations/info-gauge/radial-gauge/radial-gauge.service.d.ts.map +1 -0
  205. package/esm2022/widgets/implementations/info-gauge/info-gauge.model.mjs +0 -2
  206. package/widgets/implementations/info-gauge/info-gauge.model.d.ts +0 -7
  207. package/widgets/implementations/info-gauge/info-gauge.model.d.ts.map +0 -1
package/locales/es.po CHANGED
@@ -112,6 +112,12 @@ msgid_plural "{{ $count }} days"
112
112
  msgstr[0] "1 día"
113
113
  msgstr[1] "{{ $count }} días"
114
114
 
115
+ msgid "1 day 1 hour"
116
+ msgstr "1 día 1 hora"
117
+
118
+ msgid "1 day {{hours}} hours"
119
+ msgstr "1 día {{hours}} horas"
120
+
115
121
  msgid "1 device"
116
122
  msgid_plural "{{$count}} devices"
117
123
  msgstr[0] "1 dispositivo"
@@ -127,6 +133,15 @@ msgid_plural "{{$count}} device credentials"
127
133
  msgstr[0] "1 credencial de dispositivo"
128
134
  msgstr[1] "{{$count}} credenciales de dispositivo"
129
135
 
136
+ msgid "1 hour"
137
+ msgstr "1 hora"
138
+
139
+ msgid "1 hour 1 minute"
140
+ msgstr "1 hora 1 minuto"
141
+
142
+ msgid "1 hour {{minutes}} minutes"
143
+ msgstr "1 hora {{minutes}} minutos"
144
+
130
145
  msgid "1 inbound API request"
131
146
  msgid_plural "{{$count}} inbound API requests"
132
147
  msgstr[0] "1 solicitud de API entrante"
@@ -137,6 +152,15 @@ msgid_plural "{{$count}} mappings"
137
152
  msgstr[0] "1 asignación"
138
153
  msgstr[1] "{{$count}} asignaciones"
139
154
 
155
+ msgid "1 minute"
156
+ msgstr "1 minuto"
157
+
158
+ msgid "1 minute 1 second"
159
+ msgstr "1 minuto 1 segundo"
160
+
161
+ msgid "1 minute {{seconds}} seconds"
162
+ msgstr "1 minuto {{seconds}} segundos"
163
+
140
164
  msgid "1 operation executing"
141
165
  msgid_plural "{{$count}} operations executing"
142
166
  msgstr[0] "1 operación ejecutándose"
@@ -165,6 +189,9 @@ msgid_plural "{{$count}} root devices"
165
189
  msgstr[0] "1 dispositivo raíz"
166
190
  msgstr[1] "{{$count}} dispositivos raíz"
167
191
 
192
+ msgid "1 second"
193
+ msgstr "1 segundo"
194
+
168
195
  msgid "1 selected item."
169
196
  msgstr "1 elemento seleccionado."
170
197
 
@@ -469,9 +496,6 @@ msgstr "Se ha enviado un SMS de confirmación al número proporcionado en el pas
469
496
  msgid "A custom fragment can be added to the message. For example, for the measurement API, we could have c8y_Temperature.T.unit - STRING - °C"
470
497
  msgstr "Se puede añadir un fragmento personalizado al mensaje. Por ejemplo, para la API de medición, podríamos tener c8y_Temperature. t. unit - STRING - °C"
471
498
 
472
- msgid "A gauge graph displaying current values for selected measurements"
473
- msgstr "Gráfico de calibre que muestra los valores actuales de las mediciones seleccionadas"
474
-
475
499
  msgid "A general bulk registration CSV template showing all possible fields"
476
500
  msgstr "Plantilla CSV de registro en masa que muestra todos los campos posibles"
477
501
 
@@ -685,6 +709,9 @@ msgstr "Confirmar"
685
709
  msgid "Acknowledged`alarm`"
686
710
  msgstr "Confirmada"
687
711
 
712
+ msgid "Acknowledgment rate (msg/s)"
713
+ msgstr "Velocidad de confirmación (msg/s)"
714
+
688
715
  msgid "Actility"
689
716
  msgstr "Actility"
690
717
 
@@ -804,6 +831,9 @@ msgstr "Nodo activo"
804
831
  msgid "Active requests count"
805
832
  msgstr "Contar solicitudes activas"
806
833
 
834
+ msgid "Active subscribers"
835
+ msgstr "Activos suscriptores"
836
+
807
837
  msgid "Active text color"
808
838
  msgstr "Color del texto activo"
809
839
 
@@ -1657,6 +1687,9 @@ msgstr "Permite editar las traducciones."
1657
1687
  msgid "Allows to make basic changes to the tenants branding."
1658
1688
  msgstr "Permite realizar cambios básicos en la marca de los tenants."
1659
1689
 
1690
+ msgid "Allows to monitor and manage the usage of messaging service."
1691
+ msgstr "Permite supervisar y gestionar el uso del servicio de mensajería."
1692
+
1660
1693
  msgid "Allows to passthrough a TCP connction."
1661
1694
  msgstr "Permite pasar a través de una conexión TCP."
1662
1695
 
@@ -2290,6 +2323,18 @@ msgstr "Color de fondo"
2290
2323
  msgid "Background color of current item in navigator"
2291
2324
  msgstr "Color de fondo del elemento actual en el navegador"
2292
2325
 
2326
+ msgid "Backlog quota"
2327
+ msgstr "Cuota de atrasos"
2328
+
2329
+ msgid "Backlog quota (per topic)"
2330
+ msgstr "Cuota de atrasos (por tema)"
2331
+
2332
+ msgid "Backlog time to live (TTL)"
2333
+ msgstr "Tiempo de vida (TTL)"
2334
+
2335
+ msgid "Backlog usage"
2336
+ msgstr "Uso de la cartera de pedidos"
2337
+
2293
2338
  msgid "Bars"
2294
2339
  msgstr "Bares"
2295
2340
 
@@ -3718,6 +3763,9 @@ msgstr "Conecte su teléfono inteligente a nuestra plataforma IoT"
3718
3763
  msgid "Connected"
3719
3764
  msgstr "Conectado"
3720
3765
 
3766
+ msgid "Connected clients"
3767
+ msgstr "Clientes conectados"
3768
+
3721
3769
  msgid "Connected to: {{name}}"
3722
3770
  msgstr "Conectado a: {{name}}"
3723
3771
 
@@ -4332,9 +4380,15 @@ msgstr "Crear nuevo grupo y asignar dispositivo"
4332
4380
  msgid "Create new report with widget"
4333
4381
  msgstr "Crear nuevo Informar con Widget"
4334
4382
 
4383
+ msgid "Create new subscribers to monitor them here."
4384
+ msgstr "Crear nuevos suscriptores para seguirlos aquí."
4385
+
4335
4386
  msgid "Create new subscription"
4336
4387
  msgstr "Crear nueva suscripción"
4337
4388
 
4389
+ msgid "Create new topics to monitor them here."
4390
+ msgstr "Crea nuevos temas para seguirlos aquí."
4391
+
4338
4392
  msgid "Create operation"
4339
4393
  msgstr "Crear operación"
4340
4394
 
@@ -4510,6 +4564,9 @@ msgstr "Funcionamiento personalizado"
4510
4564
  msgid "Custom operation type"
4511
4565
  msgstr "Tipo de operación personalizado"
4512
4566
 
4567
+ msgid "Custom preset"
4568
+ msgstr "Personalizar preajuste"
4569
+
4513
4570
  msgid "Custom properties"
4514
4571
  msgstr "Propiedades personalizadas"
4515
4572
 
@@ -4648,6 +4705,9 @@ msgstr "Rango de tiempo del cuadro de mando"
4648
4705
  msgid "Dashboard updated: {{ values }}."
4649
4706
  msgstr "Cuadro de mando actualizado: {{ values }}."
4650
4707
 
4708
+ msgid "Data Broker"
4709
+ msgstr "Broker de datos"
4710
+
4651
4711
  msgid "Data Explorer \"new\""
4652
4712
  msgstr "Explorador de datos \"nuevo\""
4653
4713
 
@@ -4746,6 +4806,9 @@ msgstr "Lista de puntos de datos"
4746
4806
  msgid "Data points table"
4747
4807
  msgstr "Tabla de puntos de datos"
4748
4808
 
4809
+ msgid "Data points`display`"
4810
+ msgstr "Puntos de datos"
4811
+
4749
4812
  msgid "Data reporting"
4750
4813
  msgstr "Informe de datos"
4751
4814
 
@@ -6726,6 +6789,9 @@ msgstr "No ha podido encontrarse la dirección."
6726
6789
  msgid "Failed to set package availability."
6727
6790
  msgstr "No ha podido establecerse la disponibilidad de paquete."
6728
6791
 
6792
+ msgid "Failed to unsubscribe {{ numberOfSubscribers }} subscribers."
6793
+ msgstr "Fallo al cancelar suscripción {{ numberOfSubscribers }} suscriptores."
6794
+
6729
6795
  msgid "Failed to update application."
6730
6796
  msgstr "La aplicación no ha podido actualizarse."
6731
6797
 
@@ -6960,6 +7026,9 @@ msgstr "Filtrar software por tipo de dispositivo"
6960
7026
  msgid "Filter software by name"
6961
7027
  msgstr "Filtrar software por nombre"
6962
7028
 
7029
+ msgid "Filter subscribers by partial name"
7030
+ msgstr "Filtrar suscriptores por nombre parcial"
7031
+
6963
7032
  msgid "Filter target devices"
6964
7033
  msgstr "Filtrar dispositivos de destino"
6965
7034
 
@@ -6978,6 +7047,9 @@ msgstr "Filtrar texto"
6978
7047
  msgid "Filter this column…"
6979
7048
  msgstr "Filtrar esta columna…"
6980
7049
 
7050
+ msgid "Filter topics by partial name"
7051
+ msgstr "Filtrar temas por nombre parcial"
7052
+
6981
7053
  msgid "Filter users"
6982
7054
  msgstr "Filtrar usuarios"
6983
7055
 
@@ -8001,6 +8073,9 @@ msgstr "Ir a la tabla de datos de activos"
8001
8073
  msgid "Got measurements from device."
8002
8074
  msgstr "Las mediciones se han obtenido a partir del dispositivo."
8003
8075
 
8076
+ msgid "Grade rating"
8077
+ msgstr "Calificación de grado"
8078
+
8004
8079
  msgid "Grant permissions on a general level."
8005
8080
  msgstr "Conceder permisos en un nivel general."
8006
8081
 
@@ -8129,6 +8204,9 @@ msgstr "Número hexadecimal"
8129
8204
  msgid "Hidden`style`"
8130
8205
  msgstr "Oculto"
8131
8206
 
8207
+ msgid "Hide advanced options"
8208
+ msgstr "Ocultar opciones extendidas"
8209
+
8132
8210
  msgid "Hide data point"
8133
8211
  msgstr "Ocultar punto de datos"
8134
8212
 
@@ -8871,6 +8949,9 @@ msgstr "Disponibilidad en los últimos 7 días"
8871
8949
  msgid "Last N lines"
8872
8950
  msgstr "Últimas líneas de N"
8873
8951
 
8952
+ msgid "Last acknowledged"
8953
+ msgstr "Último confirmado"
8954
+
8874
8955
  msgid "Last communication"
8875
8956
  msgstr "Última comunicación"
8876
8957
 
@@ -9054,6 +9135,9 @@ msgstr "Solicitudes de stream límite"
9054
9135
  msgid "Limit values saved."
9055
9136
  msgstr "Valores límite guardados."
9056
9137
 
9138
+ msgid "Limit: {{ backlogQuotaLimit }}"
9139
+ msgstr "Límite: {{ backlogQuotaLimit }}"
9140
+
9057
9141
  msgid "Limits"
9058
9142
  msgstr "Límites"
9059
9143
 
@@ -9135,9 +9219,15 @@ msgstr "Cargar más elementos"
9135
9219
  msgid "Load more packages"
9136
9220
  msgstr "Cargar más paquetes"
9137
9221
 
9222
+ msgid "Load more subscribers"
9223
+ msgstr "Cargar más suscriptores"
9224
+
9138
9225
  msgid "Load more tenants"
9139
9226
  msgstr "Cargar más tenants"
9140
9227
 
9228
+ msgid "Load more topics"
9229
+ msgstr "Cargar más temas"
9230
+
9141
9231
  msgid "Load page {{ pageNo }}"
9142
9232
  msgstr "Cargar página {{ pageNo }}"
9143
9233
 
@@ -9177,12 +9267,18 @@ msgstr "Cargando paquetes…"
9177
9267
  msgid "Loading results…"
9178
9268
  msgstr "Cargando resultados…"
9179
9269
 
9270
+ msgid "Loading subscribers..."
9271
+ msgstr "Cargando suscriptores..."
9272
+
9180
9273
  msgid "Loading tenants…"
9181
9274
  msgstr "Cargando tenants…"
9182
9275
 
9183
9276
  msgid "Loading the registration form definition…"
9184
9277
  msgstr "Cargando definición de formulario de registro…"
9185
9278
 
9279
+ msgid "Loading topics..."
9280
+ msgstr "Cargando temas..."
9281
+
9186
9282
  msgid "Loading users…"
9187
9283
  msgstr "Cargando usuarios…"
9188
9284
 
@@ -9342,6 +9438,9 @@ msgstr "MIN"
9342
9438
  msgid "MNC"
9343
9439
  msgstr "MNC"
9344
9440
 
9441
+ msgid "MQTT Service"
9442
+ msgstr "Servicio MQTT"
9443
+
9345
9444
  msgid "MSISDN"
9346
9445
  msgstr "MSISDN"
9347
9446
 
@@ -9578,12 +9677,27 @@ msgstr "ID del mensaje"
9578
9677
  msgid "Message ID must be unique among all message and response templates."
9579
9678
  msgstr "El ID del mensaje debe ser único entre todas las plantillas de mensaje y respuesta."
9580
9679
 
9680
+ msgid "Message backlog"
9681
+ msgstr "Mensajes pendientes"
9682
+
9581
9683
  msgid "Message banner"
9582
9684
  msgstr "Pancarta de mensaje"
9583
9685
 
9584
9686
  msgid "Message content"
9585
9687
  msgstr "Contenido del mensaje"
9586
9688
 
9689
+ msgid "Message rate in"
9690
+ msgstr "Tasa de mensajes en"
9691
+
9692
+ msgid "Message rate in (msg/s)"
9693
+ msgstr "Tasa de mensajes en (msg/s)"
9694
+
9695
+ msgid "Message rate out"
9696
+ msgstr "Salida de mensajes"
9697
+
9698
+ msgid "Message rate out (msg/s)"
9699
+ msgstr "Velocidad de salida de mensajes (msg/s)"
9700
+
9587
9701
  msgid "Message sending"
9588
9702
  msgstr "Enviando de mensajes"
9589
9703
 
@@ -9623,6 +9737,12 @@ msgstr "No está suscrito a la aplicación de mensajería."
9623
9737
  msgid "Messaging provider must be configured to send WAN settings to device via SMS."
9624
9738
  msgstr "El proveedor de mensajería debe configurarse para enviar configuración WAN al dispositivo mediante SMS."
9625
9739
 
9740
+ msgid "Messaging service"
9741
+ msgstr "Servicio de mensajería"
9742
+
9743
+ msgid "Messaging service - monitoring & management"
9744
+ msgstr "Servicio de mensajería - supervisión y gestión"
9745
+
9626
9746
  msgid "Messaging`icons-category`"
9627
9747
  msgstr "Mensajería"
9628
9748
 
@@ -9754,6 +9874,9 @@ msgstr "Configuración de módulo"
9754
9874
  msgid "Module version"
9755
9875
  msgstr "Versión de módulo"
9756
9876
 
9877
+ msgid "Monitoring"
9878
+ msgstr "Supervisión"
9879
+
9757
9880
  msgid "Month"
9758
9881
  msgstr "Mes"
9759
9882
 
@@ -10564,6 +10687,12 @@ msgstr "Ninguna regla inteligente coincidente disponible."
10564
10687
  msgid "No matching software available."
10565
10688
  msgstr "Ninguna software coincidente disponible."
10566
10689
 
10690
+ msgid "No matching subscribers found."
10691
+ msgstr "No se han encontrado suscriptores."
10692
+
10693
+ msgid "No matching topics found."
10694
+ msgstr "No se han encontrado temas coincidentes."
10695
+
10567
10696
  msgid "No measurement to display."
10568
10697
  msgstr "Ninguna medición que pueda mostrarse."
10569
10698
 
@@ -10765,6 +10894,9 @@ msgstr "Ningún dato de origen disponible para capturar el espacio de dirección
10765
10894
  msgid "No subgroups"
10766
10895
  msgstr "Ningún subgrupo"
10767
10896
 
10897
+ msgid "No subscribers to display."
10898
+ msgstr "No hay suscriptores para Mostrar."
10899
+
10768
10900
  msgid "No template"
10769
10901
  msgstr "Ninguna plantilla"
10770
10902
 
@@ -10777,6 +10909,9 @@ msgstr "Sin tenants para mostrar."
10777
10909
  msgid "No top level nodes set."
10778
10910
  msgstr "No se ha establecido ningún conjunto de nodos superior."
10779
10911
 
10912
+ msgid "No topics to display."
10913
+ msgstr "No hay temas para Mostrar."
10914
+
10780
10915
  msgid "No tracker model specified for this device. Select one from the list of supported models\n"
10781
10916
  " below."
10782
10917
  msgstr "Ningún modelo de rastreador indicado para este dispositivo. Seleccione uno de la lista de modelos compatibles\n"
@@ -10899,6 +11034,9 @@ msgstr "Configuración de correo electrónico de notificación actualizada."
10899
11034
  msgid "Notification storing when disabled or offline"
10900
11035
  msgstr "Almacenamiento de notificación si se ha desactivado o está desconectado"
10901
11036
 
11037
+ msgid "Notifications 2.0"
11038
+ msgstr "Notificaciones 2.0"
11039
+
10902
11040
  msgid "Notified global role"
10903
11041
  msgstr "Rol global notificado"
10904
11042
 
@@ -11727,6 +11865,9 @@ msgstr "Plataforma"
11727
11865
  msgid "Please contact your platform administrator."
11728
11866
  msgstr "Póngase en contacto con su administrador de plataforma."
11729
11867
 
11868
+ msgid "Please select a data point first."
11869
+ msgstr "Seleccione primero un punto de datos."
11870
+
11730
11871
  msgid "Plugin installation"
11731
11872
  msgstr "Instalación de complemento"
11732
11873
 
@@ -11763,6 +11904,9 @@ msgstr "El espacio aislado de pod no ha podido crearse."
11763
11904
  msgid "Pod synchronization error."
11764
11905
  msgstr "Error de sincronización de pod."
11765
11906
 
11907
+ msgid "Pointer"
11908
+ msgstr "Puntero"
11909
+
11766
11910
  msgid "Points"
11767
11911
  msgstr "Puntos"
11768
11912
 
@@ -11961,6 +12105,12 @@ msgstr "Programación"
11961
12105
  msgid "Progress"
11962
12106
  msgstr "Progresión"
11963
12107
 
12108
+ msgid "Progress bar"
12109
+ msgstr "Barra de progreso"
12110
+
12111
+ msgid "Progress indicator"
12112
+ msgstr "Indicador de progreso"
12113
+
11964
12114
  msgid "Project data"
11965
12115
  msgstr "Datos del proyecto"
11966
12116
 
@@ -12051,6 +12201,9 @@ msgstr "Clave pública en formato PEM"
12051
12201
  msgid "Public/private keys"
12052
12202
  msgstr "Claves públicas/privadas"
12053
12203
 
12204
+ msgid "Publishers"
12205
+ msgstr "Editores"
12206
+
12054
12207
  msgid "Pulling image: \"{{imageName}}\"."
12055
12208
  msgstr "Leyendo imagen: \"{{imageName}}\"."
12056
12209
 
@@ -12189,7 +12342,7 @@ msgstr "Valor RSSI"
12189
12342
  msgid "RUNNING"
12190
12343
  msgstr "FUNCIONANDO"
12191
12344
 
12192
- msgid "Radial Gauge"
12345
+ msgid "Radial gauge"
12193
12346
  msgstr "Calibre radial"
12194
12347
 
12195
12348
  msgid "Radial gauge and multiple label and value pairs for data points"
@@ -13944,6 +14097,15 @@ msgstr "Tiempo de servidor"
13944
14097
  msgid "Servers written during bootstrap"
13945
14098
  msgstr "Servidores escritos durante el arranque"
13946
14099
 
14100
+ msgid "Service"
14101
+ msgstr "Servicio"
14102
+
14103
+ msgid "Service message backlog limits"
14104
+ msgstr "Límites de mensajes de servicio atrasados"
14105
+
14106
+ msgid "Service usage/limits"
14107
+ msgstr "Uso/límites del servicio"
14108
+
13947
14109
  msgid "Services"
13948
14110
  msgstr "Servicios"
13949
14111
 
@@ -14454,6 +14616,9 @@ msgstr "Mostrar"
14454
14616
  msgid "Show \"Software changes\""
14455
14617
  msgstr "Mostrar \"Cambios efectuados en software\""
14456
14618
 
14619
+ msgid "Show advanced options"
14620
+ msgstr "Mostrar opciones extendidas"
14621
+
14457
14622
  msgid "Show alarms"
14458
14623
  msgstr "Mostrar alarmas"
14459
14624
 
@@ -14603,6 +14768,9 @@ msgstr "Muestra un valor diferente para cada valor configurado."
14603
14768
  msgid "Shows the active alarms for device"
14604
14769
  msgstr "Muestra las alarmas activas del dispositivo"
14605
14770
 
14771
+ msgid "Shows the device measurements in a radial gauge."
14772
+ msgstr "Muestra las medidas del dispositivo en un calibre radial."
14773
+
14606
14774
  msgid "Shows the position of a device or all devices in a group."
14607
14775
  msgstr "Muestra la posición de un dispositivo o de todos los dispositivos dentro de un grupo."
14608
14776
 
@@ -15143,6 +15311,12 @@ msgstr "Las aplicaciones actuales o suscritas no pueden eliminarse. Elimine la a
15143
15311
  msgid "Subscribed`application`"
15144
15312
  msgstr "Suscrita"
15145
15313
 
15314
+ msgid "Subscriber \"{{ subscriberName }}\" unsubscribed."
15315
+ msgstr "Suscriptor «{{ subscriberName }}» Cancelar suscripción."
15316
+
15317
+ msgid "Subscribers"
15318
+ msgstr "Suscriptores"
15319
+
15146
15320
  msgid "Subscribing…"
15147
15321
  msgstr "Subscribiendo…"
15148
15322
 
@@ -15203,6 +15377,9 @@ msgstr "Se ha suscrito correctamente a la aplicación."
15203
15377
  msgid "Successfully unsubscribed from application."
15204
15378
  msgstr "Se ha cancelado correctamente la suscripción a la aplicación."
15205
15379
 
15380
+ msgid "Successfully unsubscribed {{ count }} subscribers.<br/>Failed to unsubscribe: {{ nonUnsubscribedSubscribers }}."
15381
+ msgstr "Cancelar suscripción correctamente {{ count }} suscriptores.<br/>Fallo al cancelar suscripción: {{ nonUnsubscribedSubscribers }}."
15382
+
15206
15383
  msgid "Sum of CPU daily usage in CPU millicores"
15207
15384
  msgstr "Suma de uso diario de CPU en milicores de CPU"
15208
15385
 
@@ -16370,9 +16547,27 @@ msgstr "Barra Superior"
16370
16547
  msgid "Top level nodes"
16371
16548
  msgstr "Nodos de nivel superior"
16372
16549
 
16550
+ msgid "Topic"
16551
+ msgstr "Tema"
16552
+
16553
+ msgid "Topic message backlog"
16554
+ msgstr "Mensajes temáticos atrasados"
16555
+
16556
+ msgid "Topic usage"
16557
+ msgstr "Uso de los temas"
16558
+
16559
+ msgid "Topics"
16560
+ msgstr "Temas"
16561
+
16373
16562
  msgid "Total inbound transfer"
16374
16563
  msgstr "Número total de transferencias entrantes"
16375
16564
 
16565
+ msgid "Total subscribers"
16566
+ msgstr "Total de suscriptores"
16567
+
16568
+ msgid "Total unacknowledged messages"
16569
+ msgstr "Total de mensajes no reconocidos"
16570
+
16376
16571
  msgid "Track hidden"
16377
16572
  msgstr "Ocultar seguimiento"
16378
16573
 
@@ -16637,6 +16832,9 @@ msgstr "No se puede cargar el archivo de Markdown."
16637
16832
  msgid "Unable to upload image."
16638
16833
  msgstr "No se pudo cargar la imagen."
16639
16834
 
16835
+ msgid "Unacknowledged messages"
16836
+ msgstr "Mensajes no reconocidos"
16837
+
16640
16838
  msgid "Unassign"
16641
16839
  msgstr "No Asignado"
16642
16840
 
@@ -16718,6 +16916,12 @@ msgstr "Propiedad desconocida (no está en el esquema)."
16718
16916
  msgid "Unknown`package-type`"
16719
16917
  msgstr "Desconocido"
16720
16918
 
16919
+ msgid "Unlimited` backlog quota`"
16920
+ msgstr "Cuota de atrasos ilimitada"
16921
+
16922
+ msgid "Unlimited` time-to-live period`"
16923
+ msgstr "Cuota de atrasos ilimitada"
16924
+
16721
16925
  msgid "Unlink data point template"
16722
16926
  msgstr "Desenlazar plantilla de punto de datos"
16723
16927
 
@@ -16751,6 +16955,12 @@ msgstr "Sin firmar (8 bits)"
16751
16955
  msgid "Unsubscribe"
16752
16956
  msgstr "Cancelar suscripción"
16753
16957
 
16958
+ msgid "Unsubscribe \"{{ subscriberName }}\"?"
16959
+ msgstr "¿Cancelar suscripción a \"{{ subscriberName }}\"?"
16960
+
16961
+ msgid "Unsubscribe {{ numberOfSubscribers }} subscribers?"
16962
+ msgstr "Cancelar suscripción {{ numberOfSubscribers }} ¿Suscriptores?"
16963
+
16754
16964
  msgid "Unsubscribing…"
16755
16965
  msgstr "Cancelando suscripción…"
16756
16966
 
@@ -17072,6 +17282,9 @@ msgstr "Utilice su ubicación"
17072
17282
  msgid "Use your manage tool to change the setup."
17073
17283
  msgstr "Utilice su herramienta de administración para cambiar la configuración."
17074
17284
 
17285
+ msgid "Used backlog"
17286
+ msgstr "Pendiente de uso"
17287
+
17075
17288
  msgid "User"
17076
17289
  msgstr "Usuario"
17077
17290
 
@@ -18004,6 +18217,18 @@ msgstr "Se dispone a desasignar \"{{name}}\". ¿Desea continuar?"
18004
18217
  msgid "You are about to unassign device \"{{name}}\". Do you want to proceed?"
18005
18218
  msgstr "Se dispone a desasignar el dispositivo \"{{name}}\". ¿Desea continuar?"
18006
18219
 
18220
+ msgid "You are about to unsubscribe \"{{ subscriberName }}\" which has active clients. Do you want to proceed?"
18221
+ msgstr "Usted está a punto de cancelar la suscripción a \"{{ subscriberName }}\", que tiene clientes activos. ¿Desea continuar?"
18222
+
18223
+ msgid "You are about to unsubscribe \"{{ subscriberName }}\". Do you want to proceed?"
18224
+ msgstr "Usted está a punto de cancelar la suscripción a \"{{ subscriberName }}\". ¿Desea continuar?"
18225
+
18226
+ msgid "You are about to unsubscribe {{ numberOfSubscribers }} subscribers. Do you want to proceed?"
18227
+ msgstr "Usted está a punto de cancelar su suscripción a {{ numberOfSubscribers }} suscriptores. ¿Desea continuar?"
18228
+
18229
+ msgid "You are about to unsubscribe {{ numberOfSubscribers }} subscribers. Some of them have active clients. Do you want to proceed?"
18230
+ msgstr "Usted está a punto de Cancelar suscripción {{ numberOfSubscribers }} suscriptores. Algunos de ellos tienen clientes activos. ¿Desea continuar?"
18231
+
18007
18232
  msgid "You are about to update the CRL. Do you want to proceed?"
18008
18233
  msgstr "Se dispone a actualizar la CRL. ¿Desea continuar?"
18009
18234
 
@@ -18312,6 +18537,9 @@ msgstr "en construcción"
18312
18537
  msgid "by`user`"
18313
18538
  msgstr "por"
18314
18539
 
18540
+ msgid "bytes"
18541
+ msgstr "bytes"
18542
+
18315
18543
  msgid "calculating number of API requests"
18316
18544
  msgstr "calculando el número de solicitudes de API"
18317
18545
 
@@ -19286,6 +19514,9 @@ msgstr "Propiedades de {{ label }}"
19286
19514
  msgid "{{ lastUpdated }} by {{ user }}"
19287
19515
  msgstr "{{ lastUpdated }} por {{ user }}"
19288
19516
 
19517
+ msgid "{{ messagesPerSecond }} msg/s"
19518
+ msgstr "{{ messagesPerSecond }} msg/s"
19519
+
19289
19520
  msgid "{{ name }} (v. {{ version }}) is already installed on this device"
19290
19521
  msgstr "{{ name }} (v. {{ version }}) ya se ha instalado en este dispositivo"
19291
19522
 
@@ -19298,12 +19529,18 @@ msgstr "{{ numberOfApps }} aplicaciones seleccionadas para la marca"
19298
19529
  msgid "{{ numberOfReports }} reports selected for widget"
19299
19530
  msgstr "{{ numberOfReports }} Informes seleccionados para el Widget"
19300
19531
 
19532
+ msgid "{{ numberOfSubscribers }} subscribers unsubscribed."
19533
+ msgstr "{{ numberOfSubscribers }} Suscriptores Cancelar suscripción."
19534
+
19301
19535
  msgid "{{ packageContentsTitle | translate: { selectedVersion } }}"
19302
19536
  msgstr "{{ packageContentsTitle | translate: { selectedVersion } }}"
19303
19537
 
19304
19538
  msgid "{{ pageFirstItemIdx }} - {{ pageLastItemIdx }} of {{ itemsTotal }}"
19305
19539
  msgstr "{{ pageFirstItemIdx }} - {{ pageLastItemIdx }} de {{ itemsTotal }}"
19306
19540
 
19541
+ msgid "{{ percentageOfQuota }} used"
19542
+ msgstr "{{ percentageOfQuota }} usado"
19543
+
19307
19544
  msgid "{{ seconds }} s"
19308
19545
  msgstr "{{ seconds }} s"
19309
19546
 
@@ -19328,12 +19565,39 @@ msgstr "{{count}} versión"
19328
19565
  msgid "{{count}} versions"
19329
19566
  msgstr "{{count}} versiones"
19330
19567
 
19568
+ msgid "{{days}} days"
19569
+ msgstr "{{days}} días"
19570
+
19571
+ msgid "{{days}} days 1 hour"
19572
+ msgstr "{{days}} días 1 hora"
19573
+
19574
+ msgid "{{days}} days {{hours}} hours"
19575
+ msgstr "{{days}} días {{hours}} horas"
19576
+
19331
19577
  msgid "{{description | translate}} failed."
19332
19578
  msgstr "{{description | translate}} no ha podido efectuarse."
19333
19579
 
19334
19580
  msgid "{{firstItem}} to {{lastItem}}"
19335
19581
  msgstr "{{firstItem}} a {{lastItem}}"
19336
19582
 
19583
+ msgid "{{hours}} hours"
19584
+ msgstr "{{hours}} horas"
19585
+
19586
+ msgid "{{hours}} hours 1 minute"
19587
+ msgstr "{{hours}} horas 1 minuto"
19588
+
19589
+ msgid "{{hours}} hours {{minutes}} minutes"
19590
+ msgstr "{{hours}} horas {{minutes}} minutos"
19591
+
19592
+ msgid "{{minutes}} minutes"
19593
+ msgstr "{{minutes}} minutos"
19594
+
19595
+ msgid "{{minutes}} minutes 1 second"
19596
+ msgstr "{{minutes}} minutos 1 segundo"
19597
+
19598
+ msgid "{{minutes}} minutes {{seconds}} seconds"
19599
+ msgstr "{{minutes}} minutos {{seconds}} segundos"
19600
+
19337
19601
  msgid "{{protocolName | translate}} devices can send messages of different types with different encodings per type.\n"
19338
19602
  " Depending on the device, the type can be determined by looking either\n"
19339
19603
  " at the FPort parameter of a message (<b>Source</b>: <i>FPort</i>)\n"
@@ -19370,6 +19634,9 @@ msgstr "{{qty}} marcadores"
19370
19634
  msgid "{{qty}} new devices"
19371
19635
  msgstr "{{qty}} nuevos dispositivos"
19372
19636
 
19637
+ msgid "{{seconds}} seconds"
19638
+ msgstr "{{seconds}} segundos"
19639
+
19373
19640
  msgid "{{speed}}/s - {{bufferedBytes}} of {{totalBytes}} buffered ({{percentage}}%)"
19374
19641
  msgstr "{{speed}}/s - {{bufferedBytes}} de {{totalBytes}} en búfer ({{percentage}}%)"
19375
19642