@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/pl.po CHANGED
@@ -122,6 +122,12 @@ msgstr[1] "{{ $count }} dni"
122
122
  msgstr[2] "{{ $count }} dni"
123
123
  msgstr[3] "{{ $count }} dni"
124
124
 
125
+ msgid "1 day 1 hour"
126
+ msgstr "1 dzień 1 godzina"
127
+
128
+ msgid "1 day {{hours}} hours"
129
+ msgstr "1 dzień {{hours}} godziny"
130
+
125
131
  msgid "1 device"
126
132
  msgid_plural "{{$count}} devices"
127
133
  msgstr[0] "Urządzenia: {{$count}}"
@@ -143,6 +149,15 @@ msgstr[1] "Dane do logowania urządzeń: {{$count}}"
143
149
  msgstr[2] "Dane do logowania urządzeń: {{$count}}"
144
150
  msgstr[3] "Dane do logowania urządzeń: {{$count}}"
145
151
 
152
+ msgid "1 hour"
153
+ msgstr "1 godzina"
154
+
155
+ msgid "1 hour 1 minute"
156
+ msgstr "1 godzina 1 minuta"
157
+
158
+ msgid "1 hour {{minutes}} minutes"
159
+ msgstr "1 godzina {{minutes}} minut"
160
+
146
161
  msgid "1 inbound API request"
147
162
  msgid_plural "{{$count}} inbound API requests"
148
163
  msgstr[0] "Przychodzące żądania interfejsu API: {{$count}}"
@@ -157,6 +172,15 @@ msgstr[1] "Mapowania: {{$count}}"
157
172
  msgstr[2] "Mapowania: {{$count}}"
158
173
  msgstr[3] "Mapowania: {{$count}}"
159
174
 
175
+ msgid "1 minute"
176
+ msgstr "1 minuta"
177
+
178
+ msgid "1 minute 1 second"
179
+ msgstr "1 minuta 1 sekunda"
180
+
181
+ msgid "1 minute {{seconds}} seconds"
182
+ msgstr "1 minuta {{seconds}} sekund"
183
+
160
184
  msgid "1 operation executing"
161
185
  msgid_plural "{{$count}} operations executing"
162
186
  msgstr[0] "Wykonywanie {{$count}} operacji"
@@ -195,6 +219,9 @@ msgstr[1] "Urządzenia główne: {{$count}}"
195
219
  msgstr[2] "Urządzenia główne: {{$count}}"
196
220
  msgstr[3] "Urządzenia główne: {{$count}}"
197
221
 
222
+ msgid "1 second"
223
+ msgstr "1 sekunda"
224
+
198
225
  msgid "1 selected item."
199
226
  msgstr "Wybrane elementy: 1."
200
227
 
@@ -504,9 +531,6 @@ msgstr "Wiadomość SMS z potwierdzeniem została wysłana na numer podany w pop
504
531
  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"
505
532
  msgstr "Do komunikatu można dodać fragment niestandardowy. Na przykład w przypadku interfejsu API pomiarów możliwe jest dodanie fragmentu c8y_Temperature.T.unit - STRING - °C"
506
533
 
507
- msgid "A gauge graph displaying current values for selected measurements"
508
- msgstr "Wykres miernika zawierający bieżące wartości wybranych pomiarów"
509
-
510
534
  msgid "A general bulk registration CSV template showing all possible fields"
511
535
  msgstr "Ogólny szablon CSV rejestracji zbiorczej pokazujący wszystkie możliwe pola"
512
536
 
@@ -720,6 +744,9 @@ msgstr "Akceptuj"
720
744
  msgid "Acknowledged`alarm`"
721
745
  msgstr "Potwierdzony"
722
746
 
747
+ msgid "Acknowledgment rate (msg/s)"
748
+ msgstr "Częstotliwość potwierdzania (msg/s)"
749
+
723
750
  msgid "Actility"
724
751
  msgstr "Actility"
725
752
 
@@ -841,6 +868,9 @@ msgstr "Aktywny węzeł"
841
868
  msgid "Active requests count"
842
869
  msgstr "Liczba aktywnych żądań"
843
870
 
871
+ msgid "Active subscribers"
872
+ msgstr "Aktywni subskrybenci"
873
+
844
874
  msgid "Active text color"
845
875
  msgstr "Kolor aktywnego tekstu"
846
876
 
@@ -1694,6 +1724,9 @@ msgstr "Umożliwia edycję tłumaczeń."
1694
1724
  msgid "Allows to make basic changes to the tenants branding."
1695
1725
  msgstr "Umożliwia wprowadzenie podstawowych zmian w oznakowaniu tenanta marką."
1696
1726
 
1727
+ msgid "Allows to monitor and manage the usage of messaging service."
1728
+ msgstr "Umożliwia monitorowanie i zarządzanie korzystaniem z usługi przesyłania wiadomości."
1729
+
1697
1730
  msgid "Allows to passthrough a TCP connction."
1698
1731
  msgstr "Umożliwia przekazywanie połączenia TCP."
1699
1732
 
@@ -2329,6 +2362,18 @@ msgstr "Kolor tła"
2329
2362
  msgid "Background color of current item in navigator"
2330
2363
  msgstr "Kolor tła bieżącego elementu w nawigatorze"
2331
2364
 
2365
+ msgid "Backlog quota"
2366
+ msgstr "Limit zaległości"
2367
+
2368
+ msgid "Backlog quota (per topic)"
2369
+ msgstr "Limit zaległości (na temat)"
2370
+
2371
+ msgid "Backlog time to live (TTL)"
2372
+ msgstr "Czas do wygaśnięcia zaległości (TTL)"
2373
+
2374
+ msgid "Backlog usage"
2375
+ msgstr "Wykorzystanie zaległości"
2376
+
2332
2377
  msgid "Bars"
2333
2378
  msgstr "Słupkowy"
2334
2379
 
@@ -3757,6 +3802,9 @@ msgstr "Połącz swój smartfon z naszą platformą IoT"
3757
3802
  msgid "Connected"
3758
3803
  msgstr "Połączenie nawiązane"
3759
3804
 
3805
+ msgid "Connected clients"
3806
+ msgstr "Połączeni klienci"
3807
+
3760
3808
  msgid "Connected to: {{name}}"
3761
3809
  msgstr "Połączono z: {{name}}"
3762
3810
 
@@ -4373,9 +4421,15 @@ msgstr "Utwórz nową grupę i przypisz urządzenie"
4373
4421
  msgid "Create new report with widget"
4374
4422
  msgstr "Utwórz nowy raport za pomocą Widżetu"
4375
4423
 
4424
+ msgid "Create new subscribers to monitor them here."
4425
+ msgstr "Utwórz nowych subskrybentów, aby monitorować ich tutaj."
4426
+
4376
4427
  msgid "Create new subscription"
4377
4428
  msgstr "Utwórz nową subskrypcję"
4378
4429
 
4430
+ msgid "Create new topics to monitor them here."
4431
+ msgstr "Utwórz nowe tematy, aby monitorować je tutaj."
4432
+
4379
4433
  msgid "Create operation"
4380
4434
  msgstr "Utwórz operację"
4381
4435
 
@@ -4551,6 +4605,9 @@ msgstr "Operacja niestandardowa"
4551
4605
  msgid "Custom operation type"
4552
4606
  msgstr "Niestandardowy typ operacji"
4553
4607
 
4608
+ msgid "Custom preset"
4609
+ msgstr "Niestandardowe ustawienia wstępne"
4610
+
4554
4611
  msgid "Custom properties"
4555
4612
  msgstr "Właściwości niestandardowe"
4556
4613
 
@@ -4689,6 +4746,9 @@ msgstr "Przedział czasu na pulpicie"
4689
4746
  msgid "Dashboard updated: {{ values }}."
4690
4747
  msgstr "Zaktualizowano pulpit: {{ values }}."
4691
4748
 
4749
+ msgid "Data Broker"
4750
+ msgstr "Broker danych"
4751
+
4692
4752
  msgid "Data Explorer \"new\""
4693
4753
  msgstr "Eksplorator danych \"nowy\""
4694
4754
 
@@ -4787,6 +4847,9 @@ msgstr "Lista punktów danych"
4787
4847
  msgid "Data points table"
4788
4848
  msgstr "Tabela punktów danych"
4789
4849
 
4850
+ msgid "Data points`display`"
4851
+ msgstr "Punkty danych"
4852
+
4790
4853
  msgid "Data reporting"
4791
4854
  msgstr "Raportowanie danych"
4792
4855
 
@@ -6767,6 +6830,9 @@ msgstr "Nie można wyszukać adresu."
6767
6830
  msgid "Failed to set package availability."
6768
6831
  msgstr "Nie udało się ustawić dostępności pakietu."
6769
6832
 
6833
+ msgid "Failed to unsubscribe {{ numberOfSubscribers }} subscribers."
6834
+ msgstr "Nieudana próba anulowania subskrypcji {{ numberOfSubscribers }} subskrybentów."
6835
+
6770
6836
  msgid "Failed to update application."
6771
6837
  msgstr "Nie udało się zaktualizować aplikacji."
6772
6838
 
@@ -7001,6 +7067,9 @@ msgstr "Filtruj oprogramowanie według typu urządzenia"
7001
7067
  msgid "Filter software by name"
7002
7068
  msgstr "Filtruj oprogramowanie według nazwy"
7003
7069
 
7070
+ msgid "Filter subscribers by partial name"
7071
+ msgstr "Filtruj subskrybentów według częściowej nazwy"
7072
+
7004
7073
  msgid "Filter target devices"
7005
7074
  msgstr "Filtruj urządzenia docelowe"
7006
7075
 
@@ -7019,6 +7088,9 @@ msgstr "Filtruj tekst"
7019
7088
  msgid "Filter this column…"
7020
7089
  msgstr "Filtruj tę kolumnę…"
7021
7090
 
7091
+ msgid "Filter topics by partial name"
7092
+ msgstr "Filtrowanie tematów według częściowej nazwy"
7093
+
7022
7094
  msgid "Filter users"
7023
7095
  msgstr "Filtruj użytkowników"
7024
7096
 
@@ -8042,6 +8114,9 @@ msgstr "Przejdź do tabeli danych zasobów"
8042
8114
  msgid "Got measurements from device."
8043
8115
  msgstr "Pobrano pomiary z urządzenia."
8044
8116
 
8117
+ msgid "Grade rating"
8118
+ msgstr "Ocena klasy"
8119
+
8045
8120
  msgid "Grant permissions on a general level."
8046
8121
  msgstr "Przyznaj uprawnienia na poziomie ogólnym."
8047
8122
 
@@ -8170,6 +8245,9 @@ msgstr "Liczba szesnastkowa"
8170
8245
  msgid "Hidden`style`"
8171
8246
  msgstr "Ukryty"
8172
8247
 
8248
+ msgid "Hide advanced options"
8249
+ msgstr "Ukryj opcje zaawansowane"
8250
+
8173
8251
  msgid "Hide data point"
8174
8252
  msgstr "Ukryj punkt danych"
8175
8253
 
@@ -8914,6 +8992,9 @@ msgstr "Dostępność w ostatnich 7 dniach"
8914
8992
  msgid "Last N lines"
8915
8993
  msgstr "Ostatnie N wierszy"
8916
8994
 
8995
+ msgid "Last acknowledged"
8996
+ msgstr "Ostatnio akceptowane"
8997
+
8917
8998
  msgid "Last communication"
8918
8999
  msgstr "Ostatnia komunikacja"
8919
9000
 
@@ -9097,6 +9178,9 @@ msgstr "Ogranicz żądania strumienia"
9097
9178
  msgid "Limit values saved."
9098
9179
  msgstr "Zapisane wartości graniczne."
9099
9180
 
9181
+ msgid "Limit: {{ backlogQuotaLimit }}"
9182
+ msgstr "Limit: {{ backlogQuotaLimit }}"
9183
+
9100
9184
  msgid "Limits"
9101
9185
  msgstr "Ograniczenia"
9102
9186
 
@@ -9178,9 +9262,15 @@ msgstr "Załaduj więcej elementów"
9178
9262
  msgid "Load more packages"
9179
9263
  msgstr "Załaduj więcej pakietów"
9180
9264
 
9265
+ msgid "Load more subscribers"
9266
+ msgstr "Załaduj więcej subskrybentów"
9267
+
9181
9268
  msgid "Load more tenants"
9182
9269
  msgstr "Załaduj więcej tenantów"
9183
9270
 
9271
+ msgid "Load more topics"
9272
+ msgstr "Załaduj więcej tematów"
9273
+
9184
9274
  msgid "Load page {{ pageNo }}"
9185
9275
  msgstr "Wczytaj stronę nr {{ pageNo }}"
9186
9276
 
@@ -9220,12 +9310,18 @@ msgstr "Ładowanie pakietów…"
9220
9310
  msgid "Loading results…"
9221
9311
  msgstr "Trwa ładowanie wyników…"
9222
9312
 
9313
+ msgid "Loading subscribers..."
9314
+ msgstr "Wczytywanie subskrybentów..."
9315
+
9223
9316
  msgid "Loading tenants…"
9224
9317
  msgstr "Trwa ładowanie tenantów…"
9225
9318
 
9226
9319
  msgid "Loading the registration form definition…"
9227
9320
  msgstr "Ładowanie definicji formularza rejestracji…"
9228
9321
 
9322
+ msgid "Loading topics..."
9323
+ msgstr "Wczytaj tematy..."
9324
+
9229
9325
  msgid "Loading users…"
9230
9326
  msgstr "Trwa wczytywanie użytkowników…"
9231
9327
 
@@ -9385,6 +9481,9 @@ msgstr "MM"
9385
9481
  msgid "MNC"
9386
9482
  msgstr "MNC"
9387
9483
 
9484
+ msgid "MQTT Service"
9485
+ msgstr "Usługa MQTT"
9486
+
9388
9487
  msgid "MSISDN"
9389
9488
  msgstr "MSISDN"
9390
9489
 
@@ -9623,12 +9722,27 @@ msgstr "Identyfikator wiadomości"
9623
9722
  msgid "Message ID must be unique among all message and response templates."
9624
9723
  msgstr "Identyfikator wiadomości musi być unikalny wśród wszystkich szablonów wiadomości i odpowiedzi."
9625
9724
 
9725
+ msgid "Message backlog"
9726
+ msgstr "Zaległości w wiadomościach"
9727
+
9626
9728
  msgid "Message banner"
9627
9729
  msgstr "Baner wiadomości"
9628
9730
 
9629
9731
  msgid "Message content"
9630
9732
  msgstr "Treść wiadomości"
9631
9733
 
9734
+ msgid "Message rate in"
9735
+ msgstr "Szybkość przesyłania wiadomości w"
9736
+
9737
+ msgid "Message rate in (msg/s)"
9738
+ msgstr "Szybkość przesyłania wiadomości w (msg/s)"
9739
+
9740
+ msgid "Message rate out"
9741
+ msgstr "Szybkość wysyłania wiadomości"
9742
+
9743
+ msgid "Message rate out (msg/s)"
9744
+ msgstr "Szybkość wysyłania wiadomości (msg/s)"
9745
+
9632
9746
  msgid "Message sending"
9633
9747
  msgstr "Wysyłanie wiadomości"
9634
9748
 
@@ -9668,6 +9782,12 @@ msgstr "Aplikacja obsługi wiadomości nie jest subskrybowana."
9668
9782
  msgid "Messaging provider must be configured to send WAN settings to device via SMS."
9669
9783
  msgstr "Dostawca przesyłania wiadomości musi być skonfigurowany pod kątem możliwości wysyłania ustawień sieci WAN do urządzenia za pomocą wiadomości SMS."
9670
9784
 
9785
+ msgid "Messaging service"
9786
+ msgstr "Usługa przesyłania wiadomości"
9787
+
9788
+ msgid "Messaging service - monitoring & management"
9789
+ msgstr "Usługa przesyłania wiadomości - monitorowanie i zarządzanie"
9790
+
9671
9791
  msgid "Messaging`icons-category`"
9672
9792
  msgstr "Wiadomości"
9673
9793
 
@@ -9801,6 +9921,9 @@ msgstr "Konfiguracja modułu"
9801
9921
  msgid "Module version"
9802
9922
  msgstr "Wersja modułu"
9803
9923
 
9924
+ msgid "Monitoring"
9925
+ msgstr "Monitorowanie"
9926
+
9804
9927
  msgid "Month"
9805
9928
  msgstr "Miesiąc"
9806
9929
 
@@ -10611,6 +10734,12 @@ msgstr "Brak pasujących reguł inteligentnych."
10611
10734
  msgid "No matching software available."
10612
10735
  msgstr "Brak pasującego oprogramowania."
10613
10736
 
10737
+ msgid "No matching subscribers found."
10738
+ msgstr "Nie znaleziono pasujących subskrybentów."
10739
+
10740
+ msgid "No matching topics found."
10741
+ msgstr "Nie znaleziono pasujących tematów."
10742
+
10614
10743
  msgid "No measurement to display."
10615
10744
  msgstr "Brak pomiaru do wyświetlenia."
10616
10745
 
@@ -10812,6 +10941,9 @@ msgstr "Brak danych źródłowych umożliwiających pobranie przestrzeni adresow
10812
10941
  msgid "No subgroups"
10813
10942
  msgstr "Brak podgrup"
10814
10943
 
10944
+ msgid "No subscribers to display."
10945
+ msgstr "Brak subskrybentów do wyświetlenia."
10946
+
10815
10947
  msgid "No template"
10816
10948
  msgstr "Brak szablonu"
10817
10949
 
@@ -10824,6 +10956,9 @@ msgstr "Brak tenantów do wyświetlenia."
10824
10956
  msgid "No top level nodes set."
10825
10957
  msgstr "Nie ustawiono węzłów najwyższego poziomu."
10826
10958
 
10959
+ msgid "No topics to display."
10960
+ msgstr "Brak tematów do wyświetlenia."
10961
+
10827
10962
  msgid "No tracker model specified for this device. Select one from the list of supported models\n"
10828
10963
  " below."
10829
10964
  msgstr "Nie określono modelu urządzenia śledzącego dla tego urządzenia. Wybierz jeden z listy\n"
@@ -10946,6 +11081,9 @@ msgstr "Zaktualizowano ustawienia wysyłania powiadomień pocztą e-mail."
10946
11081
  msgid "Notification storing when disabled or offline"
10947
11082
  msgstr "Przechowywanie powiadomień w przypadku wyłączenia lub trybu offline"
10948
11083
 
11084
+ msgid "Notifications 2.0"
11085
+ msgstr "Powiadomienia 2.0"
11086
+
10949
11087
  msgid "Notified global role"
10950
11088
  msgstr "Powiadamiana rola globalna"
10951
11089
 
@@ -11774,6 +11912,9 @@ msgstr "Platforma"
11774
11912
  msgid "Please contact your platform administrator."
11775
11913
  msgstr "Skontaktuj się z administratorem platformy."
11776
11914
 
11915
+ msgid "Please select a data point first."
11916
+ msgstr "Najpierw wybierz punkt danych."
11917
+
11777
11918
  msgid "Plugin installation"
11778
11919
  msgstr "Instalacja wtyczki"
11779
11920
 
@@ -11810,6 +11951,9 @@ msgstr "Nie udało się utworzyć środowiska testowego zasobnika."
11810
11951
  msgid "Pod synchronization error."
11811
11952
  msgstr "Błąd synchronizacji zasobnika."
11812
11953
 
11954
+ msgid "Pointer"
11955
+ msgstr "Wskaźnik"
11956
+
11813
11957
  msgid "Points"
11814
11958
  msgstr "Punkty"
11815
11959
 
@@ -12008,6 +12152,12 @@ msgstr "Programowanie"
12008
12152
  msgid "Progress"
12009
12153
  msgstr "Postęp"
12010
12154
 
12155
+ msgid "Progress bar"
12156
+ msgstr "Pasek postępu"
12157
+
12158
+ msgid "Progress indicator"
12159
+ msgstr "Wskaźnik postępu"
12160
+
12011
12161
  msgid "Project data"
12012
12162
  msgstr "Dane projektu"
12013
12163
 
@@ -12098,6 +12248,9 @@ msgstr "Klucz publiczny w formacie PEM"
12098
12248
  msgid "Public/private keys"
12099
12249
  msgstr "Klucze publiczne/prywatne"
12100
12250
 
12251
+ msgid "Publishers"
12252
+ msgstr "Wydawcy"
12253
+
12101
12254
  msgid "Pulling image: \"{{imageName}}\"."
12102
12255
  msgstr "Ściąganie obrazu: „{{imageName}}”."
12103
12256
 
@@ -12236,7 +12389,7 @@ msgstr "Wartość RSSI"
12236
12389
  msgid "RUNNING"
12237
12390
  msgstr "URUCHOMIONE"
12238
12391
 
12239
- msgid "Radial Gauge"
12392
+ msgid "Radial gauge"
12240
12393
  msgstr "Miernik promieniowy"
12241
12394
 
12242
12395
  msgid "Radial gauge and multiple label and value pairs for data points"
@@ -13991,6 +14144,15 @@ msgstr "Czas serwera"
13991
14144
  msgid "Servers written during bootstrap"
13992
14145
  msgstr "Serwery zapisywane podczas rozruchu"
13993
14146
 
14147
+ msgid "Service"
14148
+ msgstr "Usługa"
14149
+
14150
+ msgid "Service message backlog limits"
14151
+ msgstr "Limity zaległych komunikatów serwisowych"
14152
+
14153
+ msgid "Service usage/limits"
14154
+ msgstr "Wykorzystanie usługi/limity"
14155
+
13994
14156
  msgid "Services"
13995
14157
  msgstr "Usługi"
13996
14158
 
@@ -14501,6 +14663,9 @@ msgstr "Pokaż"
14501
14663
  msgid "Show \"Software changes\""
14502
14664
  msgstr "Pokaż „Zmiany oprogramowania”"
14503
14665
 
14666
+ msgid "Show advanced options"
14667
+ msgstr "Pokaż opcje zaawansowane"
14668
+
14504
14669
  msgid "Show alarms"
14505
14670
  msgstr "Pokaż alarmy"
14506
14671
 
@@ -14652,6 +14817,9 @@ msgstr "Pokazuje inną wartość dla każdej skonfigurowanej wartości."
14652
14817
  msgid "Shows the active alarms for device"
14653
14818
  msgstr "Pokazuje aktywne alarmy dla urządzenia"
14654
14819
 
14820
+ msgid "Shows the device measurements in a radial gauge."
14821
+ msgstr "Pokazuje pomiary urządzenia w mierniku promieniowym."
14822
+
14655
14823
  msgid "Shows the position of a device or all devices in a group."
14656
14824
  msgstr "Pokazuje pozycję urządzenia lub wszystkich urządzeń w grupie."
14657
14825
 
@@ -15192,6 +15360,12 @@ msgstr "Nie można usunąć subskrybowanych lub bieżących aplikacji. Usuń apl
15192
15360
  msgid "Subscribed`application`"
15193
15361
  msgstr "Subskrybowana"
15194
15362
 
15363
+ msgid "Subscriber \"{{ subscriberName }}\" unsubscribed."
15364
+ msgstr "Subskrybuj \"{{ subscriberName }}\" zrezygnował z subskrypcji."
15365
+
15366
+ msgid "Subscribers"
15367
+ msgstr "Subskrybuj"
15368
+
15195
15369
  msgid "Subscribing…"
15196
15370
  msgstr "Subskrybowanie…"
15197
15371
 
@@ -15252,6 +15426,9 @@ msgstr "Pomyślnie zasubskrybowano aplikację."
15252
15426
  msgid "Successfully unsubscribed from application."
15253
15427
  msgstr "Pomyślnie anulowano subskrypcję aplikacji."
15254
15428
 
15429
+ msgid "Successfully unsubscribed {{ count }} subscribers.<br/>Failed to unsubscribe: {{ nonUnsubscribedSubscribers }}."
15430
+ msgstr "Powodzenie anulowania subskrypcji {{ count }} subskrybentów.<br/>Nieudana próba anulowania subskrypcji: {{ nonUnsubscribedSubscribers }}."
15431
+
15255
15432
  msgid "Sum of CPU daily usage in CPU millicores"
15256
15433
  msgstr "Suma dziennego wykorzystania procesora w milirdzeniach procesora"
15257
15434
 
@@ -16418,9 +16595,27 @@ msgstr "Górny pasek"
16418
16595
  msgid "Top level nodes"
16419
16596
  msgstr "Węzły najwyższego poziomu"
16420
16597
 
16598
+ msgid "Topic"
16599
+ msgstr "Temat"
16600
+
16601
+ msgid "Topic message backlog"
16602
+ msgstr "Temat wiadomości zaległych"
16603
+
16604
+ msgid "Topic usage"
16605
+ msgstr "Wykorzystanie tematu"
16606
+
16607
+ msgid "Topics"
16608
+ msgstr "Tematy"
16609
+
16421
16610
  msgid "Total inbound transfer"
16422
16611
  msgstr "Łączny transfer przychodzący"
16423
16612
 
16613
+ msgid "Total subscribers"
16614
+ msgstr "Subskrybenci ogółem"
16615
+
16616
+ msgid "Total unacknowledged messages"
16617
+ msgstr "Całkowita liczba niepotwierdzonych wiadomości"
16618
+
16424
16619
  msgid "Track hidden"
16425
16620
  msgstr "Ścieżka ukryta"
16426
16621
 
@@ -16685,6 +16880,9 @@ msgstr "Nie można przesłać pliku Markdown."
16685
16880
  msgid "Unable to upload image."
16686
16881
  msgstr "Nie można przesłać obrazu."
16687
16882
 
16883
+ msgid "Unacknowledged messages"
16884
+ msgstr "Niepotwierdzone wiadomości"
16885
+
16688
16886
  msgid "Unassign"
16689
16887
  msgstr "Anuluj przypisanie"
16690
16888
 
@@ -16766,6 +16964,12 @@ msgstr "Nieznana właściwość (spoza schematu)."
16766
16964
  msgid "Unknown`package-type`"
16767
16965
  msgstr "Nieznany"
16768
16966
 
16967
+ msgid "Unlimited` backlog quota`"
16968
+ msgstr "Nieograniczony` limit zaległości`"
16969
+
16970
+ msgid "Unlimited` time-to-live period`"
16971
+ msgstr "Nieograniczony` limit zaległości`"
16972
+
16769
16973
  msgid "Unlink data point template"
16770
16974
  msgstr "Odłącz szablon punktu danych"
16771
16975
 
@@ -16799,6 +17003,12 @@ msgstr "Bez znaku (8 bitów)"
16799
17003
  msgid "Unsubscribe"
16800
17004
  msgstr "Anuluj subskrypcję"
16801
17005
 
17006
+ msgid "Unsubscribe \"{{ subscriberName }}\"?"
17007
+ msgstr "Anuluj subskrypcję \"{{ subscriberName }}\"?"
17008
+
17009
+ msgid "Unsubscribe {{ numberOfSubscribers }} subscribers?"
17010
+ msgstr "Anuluj subskrypcję {{ numberOfSubscribers }} subskrybentów?"
17011
+
16802
17012
  msgid "Unsubscribing…"
16803
17013
  msgstr "Anulowanie subskrypcji…"
16804
17014
 
@@ -17120,6 +17330,9 @@ msgstr "Użyj swojej lokalizacji"
17120
17330
  msgid "Use your manage tool to change the setup."
17121
17331
  msgstr "Zmień konfigurację za pomocą narzędzia do zarządzania."
17122
17332
 
17333
+ msgid "Used backlog"
17334
+ msgstr "Użyte zaległości"
17335
+
17123
17336
  msgid "User"
17124
17337
  msgstr "Użytkownik"
17125
17338
 
@@ -18054,6 +18267,18 @@ msgstr "Zamierzasz anulować przypisanie „{{name}}”. Czy chcesz kontynuować
18054
18267
  msgid "You are about to unassign device \"{{name}}\". Do you want to proceed?"
18055
18268
  msgstr "Zamierzasz anulować przypisanie urządzenia „{{name}}”. Czy chcesz kontynuować?"
18056
18269
 
18270
+ msgid "You are about to unsubscribe \"{{ subscriberName }}\" which has active clients. Do you want to proceed?"
18271
+ msgstr "Zamierzasz anulować subskrypcję \"{{ subscriberName }}\", która ma Aktywnych klientów. Czy chcesz kontynuować?"
18272
+
18273
+ msgid "You are about to unsubscribe \"{{ subscriberName }}\". Do you want to proceed?"
18274
+ msgstr "Zamierzasz anulować subskrypcję \"{{ subscriberName }}\". Czy chcesz kontynuować?"
18275
+
18276
+ msgid "You are about to unsubscribe {{ numberOfSubscribers }} subscribers. Do you want to proceed?"
18277
+ msgstr "Zamierzasz anulować subskrypcję {{ numberOfSubscribers }} . Czy chcesz kontynuować?"
18278
+
18279
+ msgid "You are about to unsubscribe {{ numberOfSubscribers }} subscribers. Some of them have active clients. Do you want to proceed?"
18280
+ msgstr "Zamierzasz anulować subskrypcję {{ numberOfSubscribers }} subskrybentów. Niektórzy z nich mają aktywnych klientów. Czy chcesz kontynuować?"
18281
+
18057
18282
  msgid "You are about to update the CRL. Do you want to proceed?"
18058
18283
  msgstr "Zamierzasz zaktualizować listę CRL. Czy chcesz kontynuować?"
18059
18284
 
@@ -18364,6 +18589,9 @@ msgstr "budynek"
18364
18589
  msgid "by`user`"
18365
18590
  msgstr "przez:"
18366
18591
 
18592
+ msgid "bytes"
18593
+ msgstr "bajty"
18594
+
18367
18595
  msgid "calculating number of API requests"
18368
18596
  msgstr "obliczanie liczby żądań interfejsu API"
18369
18597
 
@@ -19342,6 +19570,9 @@ msgstr "{{ label }} - właściwości"
19342
19570
  msgid "{{ lastUpdated }} by {{ user }}"
19343
19571
  msgstr "{{ lastUpdated }} przez {{ user }}"
19344
19572
 
19573
+ msgid "{{ messagesPerSecond }} msg/s"
19574
+ msgstr "{{ messagesPerSecond }} msg/s"
19575
+
19345
19576
  msgid "{{ name }} (v. {{ version }}) is already installed on this device"
19346
19577
  msgstr "{{ name }} (wer. {{ version }}) – już zainstalowano na tym urządzeniu."
19347
19578
 
@@ -19354,12 +19585,18 @@ msgstr "Aplikacje ({{ numberOfApps }}) wybrane do oznakowania marką"
19354
19585
  msgid "{{ numberOfReports }} reports selected for widget"
19355
19586
  msgstr "{{ numberOfReports }} Raporty wybrane dla Widżetu"
19356
19587
 
19588
+ msgid "{{ numberOfSubscribers }} subscribers unsubscribed."
19589
+ msgstr "{{ numberOfSubscribers }} subskrybentów zrezygnowało z subskrypcji."
19590
+
19357
19591
  msgid "{{ packageContentsTitle | translate: { selectedVersion } }}"
19358
19592
  msgstr "{{ packageContentsTitle | translate: { selectedVersion } }}"
19359
19593
 
19360
19594
  msgid "{{ pageFirstItemIdx }} - {{ pageLastItemIdx }} of {{ itemsTotal }}"
19361
19595
  msgstr "{{ pageFirstItemIdx }}–{{ pageLastItemIdx }} z {{ itemsTotal }}"
19362
19596
 
19597
+ msgid "{{ percentageOfQuota }} used"
19598
+ msgstr "{{ percentageOfQuota }} użyty"
19599
+
19363
19600
  msgid "{{ seconds }} s"
19364
19601
  msgstr "{{ seconds }} s"
19365
19602
 
@@ -19384,12 +19621,39 @@ msgstr "Liczba wersji: {{count}}"
19384
19621
  msgid "{{count}} versions"
19385
19622
  msgstr "Liczba wersji: {{count}}"
19386
19623
 
19624
+ msgid "{{days}} days"
19625
+ msgstr "{{days}} dni"
19626
+
19627
+ msgid "{{days}} days 1 hour"
19628
+ msgstr "{{days}} dni 1 godzina"
19629
+
19630
+ msgid "{{days}} days {{hours}} hours"
19631
+ msgstr "{{days}} dni {{hours}} godziny"
19632
+
19387
19633
  msgid "{{description | translate}} failed."
19388
19634
  msgstr "Operacja {{description | translate}} nie powiodła się."
19389
19635
 
19390
19636
  msgid "{{firstItem}} to {{lastItem}}"
19391
19637
  msgstr "od {{firstItem}} do {{lastItem}}"
19392
19638
 
19639
+ msgid "{{hours}} hours"
19640
+ msgstr "{{hours}} godziny"
19641
+
19642
+ msgid "{{hours}} hours 1 minute"
19643
+ msgstr "{{hours}} godziny 1 minuta"
19644
+
19645
+ msgid "{{hours}} hours {{minutes}} minutes"
19646
+ msgstr "{{hours}} godziny {{minutes}} minuty"
19647
+
19648
+ msgid "{{minutes}} minutes"
19649
+ msgstr "{{minutes}} minuty"
19650
+
19651
+ msgid "{{minutes}} minutes 1 second"
19652
+ msgstr "{{minutes}} minuty 1 sekunda"
19653
+
19654
+ msgid "{{minutes}} minutes {{seconds}} seconds"
19655
+ msgstr "{{minutes}} minuty {{seconds}} sekundy"
19656
+
19393
19657
  msgid "{{protocolName | translate}} devices can send messages of different types with different encodings per type.\n"
19394
19658
  " Depending on the device, the type can be determined by looking either\n"
19395
19659
  " at the FPort parameter of a message (<b>Source</b>: <i>FPort</i>)\n"
@@ -19426,6 +19690,9 @@ msgstr "Liczba znaczników: {{qty}}"
19426
19690
  msgid "{{qty}} new devices"
19427
19691
  msgstr "Liczba nowych urządzeń: {{qty}}"
19428
19692
 
19693
+ msgid "{{seconds}} seconds"
19694
+ msgstr "{{seconds}} s"
19695
+
19429
19696
  msgid "{{speed}}/s - {{bufferedBytes}} of {{totalBytes}} buffered ({{percentage}}%)"
19430
19697
  msgstr "{{speed}}/s – zbuforowano {{bufferedBytes}} z {{totalBytes}} ({{percentage}}%)"
19431
19698