@frangoteam/fuxa-min 1.2.10 → 1.3.0
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.
- package/api/auth/index.js +141 -3
- package/api/command/index.js +10 -4
- package/api/diagnose/index.js +12 -4
- package/api/index.js +41 -8
- package/api/jwt-helper.js +15 -2
- package/api/path-helper.js +41 -0
- package/api/projects/index.js +27 -14
- package/api/reports/reports.service.ts +12 -2
- package/api/resources/index.js +30 -9
- package/api/scheduler/index.js +21 -1
- package/dist/3rdpartylicenses.txt +139 -7
- package/dist/assets/i18n/de.json +10 -0
- package/dist/assets/i18n/en.json +17 -3
- package/dist/assets/i18n/es.json +12 -0
- package/dist/assets/i18n/fr.json +10 -0
- package/dist/assets/i18n/ja.json +15 -6
- package/dist/assets/i18n/ko.json +12 -0
- package/dist/assets/i18n/pt.json +9 -2
- package/dist/assets/i18n/ru.json +11 -0
- package/dist/assets/i18n/sv.json +10 -1
- package/dist/assets/i18n/tr.json +8 -1
- package/dist/assets/i18n/ua.json +9 -2
- package/dist/assets/i18n/zh-cn.json +10 -0
- package/dist/assets/i18n/zh-tw.json +11 -1
- package/dist/index.html +2 -2
- package/dist/main.bafae830903d548e.js +329 -0
- package/dist/polyfills.d7de05f9af2fb559.js +1 -0
- package/dist/reports.service.js +11 -1
- package/dist/{runtime.8ef63094e52a66ba.js → runtime.9136a61a9b98f987.js} +1 -1
- package/dist/{scripts.40b60f02658462e4.js → scripts.d9e6ee984bf6f3b7.js} +1 -1
- package/dist/styles.545e37beb3e671ba.css +1 -0
- package/integrations/node-red/index.js +91 -24
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-get-daq.html +56 -5
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-get-daq.js +8 -2
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-get-tag-change.html +56 -5
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-get-tag-change.js +12 -12
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-get-tag-daq-settings.html +56 -5
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-get-tag-daq-settings.js +14 -10
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-get-tag.html +56 -5
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-get-tag.js +8 -2
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-set-tag-daq-settings.html +56 -5
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-set-tag-daq-settings.js +24 -20
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-set-tag.html +56 -5
- package/integrations/node-red/node-red-contrib-fuxa/nodes/fuxa-set-tag.js +8 -2
- package/main.js +41 -17
- package/package.json +10 -5
- package/runtime/devices/adsclient/index.js +1 -1
- package/runtime/devices/bacnet/index.js +66 -32
- package/runtime/devices/ethernetip/index.js +1 -1
- package/runtime/devices/gpio/index.js +1 -1
- package/runtime/devices/odbc/index.js +5 -5
- package/runtime/devices/template/index.js +14 -14
- package/runtime/storage/daqstorage.js +28 -2
- package/runtime/storage/influxdb/index.js +1 -1
- package/runtime/storage/questdb/index.js +224 -0
- package/runtime/utils.js +5 -0
- package/settings.default.js +13 -3
- package/dist/main.020ca34630a3363a.js +0 -329
- package/dist/polyfills.c8e7db9850a3ad8b.js +0 -1
- package/dist/styles.03cc550382689976.css +0 -1
|
@@ -1,11 +1,33 @@
|
|
|
1
1
|
@angular/animations
|
|
2
2
|
MIT
|
|
3
|
+
The MIT License
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
|
|
6
|
+
|
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
9
|
+
in the Software without restriction, including without limitation the rights
|
|
10
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
12
|
+
furnished to do so, subject to the following conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be included in
|
|
15
|
+
all copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
19
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
20
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
21
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
22
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
23
|
+
THE SOFTWARE.
|
|
24
|
+
|
|
3
25
|
|
|
4
26
|
@angular/cdk
|
|
5
27
|
MIT
|
|
6
28
|
The MIT License
|
|
7
29
|
|
|
8
|
-
Copyright (c)
|
|
30
|
+
Copyright (c) 2024 Google LLC.
|
|
9
31
|
|
|
10
32
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
33
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -28,18 +50,84 @@ THE SOFTWARE.
|
|
|
28
50
|
|
|
29
51
|
@angular/common
|
|
30
52
|
MIT
|
|
53
|
+
The MIT License
|
|
54
|
+
|
|
55
|
+
Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
|
|
56
|
+
|
|
57
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
58
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
59
|
+
in the Software without restriction, including without limitation the rights
|
|
60
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
61
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
62
|
+
furnished to do so, subject to the following conditions:
|
|
63
|
+
|
|
64
|
+
The above copyright notice and this permission notice shall be included in
|
|
65
|
+
all copies or substantial portions of the Software.
|
|
66
|
+
|
|
67
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
68
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
69
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
70
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
71
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
72
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
73
|
+
THE SOFTWARE.
|
|
74
|
+
|
|
31
75
|
|
|
32
76
|
@angular/core
|
|
33
77
|
MIT
|
|
78
|
+
The MIT License
|
|
79
|
+
|
|
80
|
+
Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
|
|
81
|
+
|
|
82
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
83
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
84
|
+
in the Software without restriction, including without limitation the rights
|
|
85
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
86
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
87
|
+
furnished to do so, subject to the following conditions:
|
|
88
|
+
|
|
89
|
+
The above copyright notice and this permission notice shall be included in
|
|
90
|
+
all copies or substantial portions of the Software.
|
|
91
|
+
|
|
92
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
93
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
94
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
95
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
96
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
97
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
98
|
+
THE SOFTWARE.
|
|
99
|
+
|
|
34
100
|
|
|
35
101
|
@angular/forms
|
|
36
102
|
MIT
|
|
103
|
+
The MIT License
|
|
104
|
+
|
|
105
|
+
Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
|
|
106
|
+
|
|
107
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
108
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
109
|
+
in the Software without restriction, including without limitation the rights
|
|
110
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
111
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
112
|
+
furnished to do so, subject to the following conditions:
|
|
113
|
+
|
|
114
|
+
The above copyright notice and this permission notice shall be included in
|
|
115
|
+
all copies or substantial portions of the Software.
|
|
116
|
+
|
|
117
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
118
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
119
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
120
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
121
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
122
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
123
|
+
THE SOFTWARE.
|
|
124
|
+
|
|
37
125
|
|
|
38
126
|
@angular/material
|
|
39
127
|
MIT
|
|
40
128
|
The MIT License
|
|
41
129
|
|
|
42
|
-
Copyright (c)
|
|
130
|
+
Copyright (c) 2024 Google LLC.
|
|
43
131
|
|
|
44
132
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
45
133
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -64,7 +152,7 @@ THE SOFTWARE.
|
|
|
64
152
|
MIT
|
|
65
153
|
The MIT License
|
|
66
154
|
|
|
67
|
-
Copyright (c)
|
|
155
|
+
Copyright (c) 2024 Google LLC.
|
|
68
156
|
|
|
69
157
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
70
158
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -87,9 +175,53 @@ THE SOFTWARE.
|
|
|
87
175
|
|
|
88
176
|
@angular/platform-browser
|
|
89
177
|
MIT
|
|
178
|
+
The MIT License
|
|
179
|
+
|
|
180
|
+
Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
|
|
181
|
+
|
|
182
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
183
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
184
|
+
in the Software without restriction, including without limitation the rights
|
|
185
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
186
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
187
|
+
furnished to do so, subject to the following conditions:
|
|
188
|
+
|
|
189
|
+
The above copyright notice and this permission notice shall be included in
|
|
190
|
+
all copies or substantial portions of the Software.
|
|
191
|
+
|
|
192
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
193
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
194
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
195
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
196
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
197
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
198
|
+
THE SOFTWARE.
|
|
199
|
+
|
|
90
200
|
|
|
91
201
|
@angular/router
|
|
92
202
|
MIT
|
|
203
|
+
The MIT License
|
|
204
|
+
|
|
205
|
+
Copyright (c) 2010-2024 Google LLC. https://angular.dev/license
|
|
206
|
+
|
|
207
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
208
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
209
|
+
in the Software without restriction, including without limitation the rights
|
|
210
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
211
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
212
|
+
furnished to do so, subject to the following conditions:
|
|
213
|
+
|
|
214
|
+
The above copyright notice and this permission notice shall be included in
|
|
215
|
+
all copies or substantial portions of the Software.
|
|
216
|
+
|
|
217
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
218
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
219
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
220
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
221
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
222
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
223
|
+
THE SOFTWARE.
|
|
224
|
+
|
|
93
225
|
|
|
94
226
|
@babel/runtime
|
|
95
227
|
MIT
|
|
@@ -179,7 +311,7 @@ angular-gridster2
|
|
|
179
311
|
MIT
|
|
180
312
|
MIT License
|
|
181
313
|
|
|
182
|
-
Copyright (c)
|
|
314
|
+
Copyright (c) 2024 Tiberiu Zuld
|
|
183
315
|
|
|
184
316
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
185
317
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -990,7 +1122,7 @@ MIT
|
|
|
990
1122
|
The MIT License (MIT)
|
|
991
1123
|
|
|
992
1124
|
Copyright (c) 2014-2015 bpampuch
|
|
993
|
-
2016-
|
|
1125
|
+
2016-2026 liborm85
|
|
994
1126
|
|
|
995
1127
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
996
1128
|
this software and associated documentation files (the "Software"), to deal in
|
|
@@ -1222,7 +1354,7 @@ socket.io-parser
|
|
|
1222
1354
|
MIT
|
|
1223
1355
|
(The MIT License)
|
|
1224
1356
|
|
|
1225
|
-
Copyright (c) 2014 Guillermo Rauch
|
|
1357
|
+
Copyright (c) 2014-present Guillermo Rauch and Socket.IO contributors
|
|
1226
1358
|
|
|
1227
1359
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
1228
1360
|
this software and associated documentation files (the 'Software'), to deal in
|
|
@@ -1316,7 +1448,7 @@ zone.js
|
|
|
1316
1448
|
MIT
|
|
1317
1449
|
The MIT License
|
|
1318
1450
|
|
|
1319
|
-
Copyright (c) 2010-
|
|
1451
|
+
Copyright (c) 2010-2024 Google LLC. https://angular.io/license
|
|
1320
1452
|
|
|
1321
1453
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1322
1454
|
of this software and associated documentation files (the "Software"), to deal
|
package/dist/assets/i18n/de.json
CHANGED
|
@@ -834,6 +834,8 @@
|
|
|
834
834
|
"device.tag-daq-changed": "Wert speichern, wenn geändert",
|
|
835
835
|
"device.tag-daq-interval": "Intervall für Speichern (Sek.)",
|
|
836
836
|
"device.tag-format": "Ziffern formatieren (2 = #.##)",
|
|
837
|
+
|
|
838
|
+
"device.tag-uns-path": "UNS Path",
|
|
837
839
|
"device.tag-scale": "Skalierungsmodus",
|
|
838
840
|
"device.tag-scale-mode-undefined": "Keine Skalierung",
|
|
839
841
|
"device.tag-scale-mode-undefined-tooltip": "Tag-Wert",
|
|
@@ -1240,6 +1242,11 @@
|
|
|
1240
1242
|
"dlg.app-settings-daqstore": "DAQ-Speicher",
|
|
1241
1243
|
"dlg.app-settings-daqstore-type": "Datenbanktyp",
|
|
1242
1244
|
"dlg.app-settings-daqstore-url": "URL",
|
|
1245
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
1246
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
1247
|
+
|
|
1248
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
1249
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
1243
1250
|
"dlg.app-settings-daqstore-token": "Token",
|
|
1244
1251
|
"dlg.app-settings-daqstore-bucket": "Bucket",
|
|
1245
1252
|
"dlg.app-settings-daqstore-organization": "Organisation",
|
|
@@ -1306,3 +1313,6 @@
|
|
|
1306
1313
|
"msg.report-build-error": "Senden zum Erstellen des Berichts fehlgeschlagen!",
|
|
1307
1314
|
"msg.device-tags-request-result": "Lade {{value}} von {{current}}"
|
|
1308
1315
|
}
|
|
1316
|
+
|
|
1317
|
+
|
|
1318
|
+
|
package/dist/assets/i18n/en.json
CHANGED
|
@@ -992,6 +992,7 @@
|
|
|
992
992
|
"device.property-name": "Name",
|
|
993
993
|
"device.property-type": "Type",
|
|
994
994
|
"device.property-polling": "Polling",
|
|
995
|
+
"device.property-polling-warning": "Warning: Low polling intervals may cause high CPU and network load. Use with care.",
|
|
995
996
|
"device.property-enable": "Enable",
|
|
996
997
|
"device.property-subscribe": "Subscribe",
|
|
997
998
|
"device.property-address": "Address (IP or opc.tcp://[server]:[port])",
|
|
@@ -1153,6 +1154,8 @@
|
|
|
1153
1154
|
|
|
1154
1155
|
"device.tag-format": "Format digits (2 = #.##)",
|
|
1155
1156
|
"device.tag-deadband": "Deadband",
|
|
1157
|
+
|
|
1158
|
+
"device.tag-uns-path": "UNS Path",
|
|
1156
1159
|
"device.tag-scale": "Scale Mode / Convertion",
|
|
1157
1160
|
"device.tag-scale-mode-undefined": "No Scaling",
|
|
1158
1161
|
"device.tag-scale-mode-undefined-tooltip": "Tag Value",
|
|
@@ -1789,6 +1792,9 @@
|
|
|
1789
1792
|
"dlg.app-settings-server-log-full": "Log full mode",
|
|
1790
1793
|
"dlg.app-settings-node-red": "Node-RED",
|
|
1791
1794
|
"dlg.app-settings-node-red-info": "Changes will be applied after server restart.",
|
|
1795
|
+
"dlg.app-settings-node-red-auth": "Node-RED access mode",
|
|
1796
|
+
"dlg.app-settings-node-red-auth-secure": "Secure (Authentication required)",
|
|
1797
|
+
"dlg.app-settings-node-red-auth-legacy": "Legacy (open)",
|
|
1792
1798
|
"dlg.app-settings-swagger": "Swagger",
|
|
1793
1799
|
"dlg.app-settings-swagger-info": "Changes will be applied after server restart.",
|
|
1794
1800
|
"dlg.app-settings-alarms": "Alarms",
|
|
@@ -1808,6 +1814,11 @@
|
|
|
1808
1814
|
"dlg.app-settings-daqstore": "DAQ storage",
|
|
1809
1815
|
"dlg.app-settings-daqstore-type": "Database type",
|
|
1810
1816
|
"dlg.app-settings-daqstore-url": "URL",
|
|
1817
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
1818
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
1819
|
+
|
|
1820
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
1821
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
1811
1822
|
"dlg.app-settings-daqstore-token": "Token",
|
|
1812
1823
|
"dlg.app-settings-daqstore-bucket": "Bucket",
|
|
1813
1824
|
"dlg.app-settings-daqstore-organization": "Organization",
|
|
@@ -1865,7 +1876,7 @@
|
|
|
1865
1876
|
"msg.alarmproperty-missing-value": "Some values are missing!",
|
|
1866
1877
|
"msg.textproperty-error-exist": "Text-ID exists!",
|
|
1867
1878
|
"msg.textproperty-missing-value": "Some values are missing!",
|
|
1868
|
-
"msg.device-remove": "Would you like to remove Device?",
|
|
1879
|
+
"msg.device-remove": "Would you like to remove Device '{{value}}'?",
|
|
1869
1880
|
"msg.device-tag-remove": "Would you like to remove Tag?",
|
|
1870
1881
|
"msg.device-tag-exist": "Tag name exists!",
|
|
1871
1882
|
"msg.device-tag-invalid-char": "The '@' character is not allowed in tag names!",
|
|
@@ -1881,7 +1892,7 @@
|
|
|
1881
1892
|
"msg.project-load-error": "Unable to read '{{value}}'",
|
|
1882
1893
|
"msg.project": "Would you like to save the Project changes?",
|
|
1883
1894
|
"msg.tags-remove-all": "Would you like to remove all Tags?",
|
|
1884
|
-
"msg.view-remove": "Would you like to remove View '{{value}}'?",
|
|
1895
|
+
"msg.view-remove": "Would you like to remove View '{{value}}' ?",
|
|
1885
1896
|
"msg.chart-remove": "Would you like to remove Chart '{{value}}'?",
|
|
1886
1897
|
"msg.role-remove": "Would you like to remove Role '{{value}}'?",
|
|
1887
1898
|
"msg.graph-remove": "Would you like to remove Bar chart '{{value}}'?",
|
|
@@ -1892,7 +1903,7 @@
|
|
|
1892
1903
|
"msg.sendmail-success": "Mail send successful!",
|
|
1893
1904
|
"msg.sendmail-error": "Mail send failed!",
|
|
1894
1905
|
"msg.users-save-error": "User save failed!",
|
|
1895
|
-
"msg.user-remove": "Would you like to remove User ",
|
|
1906
|
+
"msg.user-remove": "Would you like to remove User '{{value}}'?",
|
|
1896
1907
|
"msg.project-save-success": "Project save successful!",
|
|
1897
1908
|
"msg.project-save-error": "Project save failed!",
|
|
1898
1909
|
"msg.project-format-error": "Project wrong format!",
|
|
@@ -1927,3 +1938,6 @@
|
|
|
1927
1938
|
"msg.operation-unauthorized": "Operation Unauthorized!",
|
|
1928
1939
|
"msg.secret-code-required": "Secret code required to sign authentication tokens"
|
|
1929
1940
|
}
|
|
1941
|
+
|
|
1942
|
+
|
|
1943
|
+
|
package/dist/assets/i18n/es.json
CHANGED
|
@@ -544,6 +544,9 @@
|
|
|
544
544
|
"device-tag-dialog-title": "Etiqueta seleccionada",
|
|
545
545
|
|
|
546
546
|
"device.tag-options-title": "Opciones de etiquetas",
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
"device.tag-uns-path": "UNS Path",
|
|
547
550
|
"device.tag-daq-enabled": "Registration Enabled",
|
|
548
551
|
"device.tag-daq-changed": "Guardar valor si cambia",
|
|
549
552
|
"device.tag-daq-interval": "Intervalo para guardar valor (segundos)",
|
|
@@ -736,6 +739,12 @@
|
|
|
736
739
|
"dlg.app-settings-server-port": "Servidor esta escuchando el puerto",
|
|
737
740
|
"dlg.app-settings-alarms-clear": "Borrar todas las alarmas y el historias",
|
|
738
741
|
"dlg.app-settings-auth-token": "Autenticación con token",
|
|
742
|
+
"dlg.app-settings-daqstore-url": "URL",
|
|
743
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
744
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
745
|
+
|
|
746
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
747
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
739
748
|
"dlg.app-auth-disabled": "Deshabilitado",
|
|
740
749
|
"dlg.app-auth-expiration-15m": "Habilitado con token expira en 15 min.",
|
|
741
750
|
"dlg.app-auth-expiration-1h": "Habilitado con token expira en 1 hora.",
|
|
@@ -774,3 +783,6 @@
|
|
|
774
783
|
"msg.editor-mode-locked": "El editor ya esta abierto!",
|
|
775
784
|
"msg.alarms-clear-success": "Todas las alarmas han sido canceladas!"
|
|
776
785
|
}
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
|
package/dist/assets/i18n/fr.json
CHANGED
|
@@ -1009,6 +1009,8 @@
|
|
|
1009
1009
|
|
|
1010
1010
|
"device.tag-format": "Format du nombre (2 = #.##)",
|
|
1011
1011
|
"device.tag-deadband": "Zone morte",
|
|
1012
|
+
|
|
1013
|
+
"device.tag-uns-path": "UNS Path",
|
|
1012
1014
|
"device.tag-scale": "Mode mise à l'échelle / Conversion",
|
|
1013
1015
|
"device.tag-scale-mode-undefined": "Pas de mise à l'échelle",
|
|
1014
1016
|
"device.tag-scale-mode-undefined-tooltip": "Valeur du tag",
|
|
@@ -1618,6 +1620,11 @@
|
|
|
1618
1620
|
"dlg.app-settings-daqstore": "Stockage DAQ",
|
|
1619
1621
|
"dlg.app-settings-daqstore-type": "Type de base de données",
|
|
1620
1622
|
"dlg.app-settings-daqstore-url": "URL",
|
|
1623
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
1624
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
1625
|
+
|
|
1626
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
1627
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
1621
1628
|
"dlg.app-settings-daqstore-token": "Jeton",
|
|
1622
1629
|
"dlg.app-settings-daqstore-bucket": "Seau",
|
|
1623
1630
|
"dlg.app-settings-daqstore-organization": "Organisation",
|
|
@@ -1715,3 +1722,6 @@
|
|
|
1715
1722
|
"msg.texts-text-remove": "Souhaitez-vous supprimer le texte '{{value}}' ?",
|
|
1716
1723
|
"msg.operation-unauthorized": "Opération non autorisée !"
|
|
1717
1724
|
}
|
|
1725
|
+
|
|
1726
|
+
|
|
1727
|
+
|
package/dist/assets/i18n/ja.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"header.edit-users": "ユーザー設定",
|
|
21
21
|
"header.edit-alarms": "アラーム設定",
|
|
22
22
|
"header.edit-texts": "テキスト設定",
|
|
23
|
-
"header.help": "
|
|
23
|
+
"header.help": "ヘルプ",
|
|
24
24
|
"header.help-tutorial": "チュートリアル",
|
|
25
25
|
"header.help-info": "About",
|
|
26
26
|
"header.change-thema": "テーマ切り替え (beta)",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
|
|
30
30
|
"project.name": "プロジェクト名",
|
|
31
31
|
|
|
32
|
-
"sidenav.title": "
|
|
32
|
+
"sidenav.title": "FUXA",
|
|
33
33
|
|
|
34
|
-
"tutorial.title": "
|
|
34
|
+
"tutorial.title": "チュートリアル",
|
|
35
35
|
|
|
36
|
-
"dlg.info-title": "
|
|
36
|
+
"dlg.info-title": "FUXA",
|
|
37
37
|
|
|
38
38
|
"dlg.layout-title": "レイアウト設定",
|
|
39
39
|
"dlg.layout-general": "一般",
|
|
@@ -893,7 +893,7 @@
|
|
|
893
893
|
"device.tags-template-name-title": "タグテンプレート名",
|
|
894
894
|
" devices.import-template": "テンプレートで接続をインポート",
|
|
895
895
|
"device.property-client": "接続プロパティ",
|
|
896
|
-
"device.property-server": "
|
|
896
|
+
"device.property-server": "サーバープロパティ",
|
|
897
897
|
"device.property-name": "名前",
|
|
898
898
|
"device.property-type": "タイプ",
|
|
899
899
|
"device.property-polling": "ポーリング",
|
|
@@ -1031,6 +1031,8 @@
|
|
|
1031
1031
|
|
|
1032
1032
|
"device.tag-format": "桁数フォーマット (2 = #.##)",
|
|
1033
1033
|
"device.tag-deadband": "デッドバンド",
|
|
1034
|
+
|
|
1035
|
+
"device.tag-uns-path": "UNS Path",
|
|
1034
1036
|
"device.tag-scale": "スケーリングモード / 変換",
|
|
1035
1037
|
"device. tag-scale-mode-undefined": "スケーリングなし",
|
|
1036
1038
|
"device.tag-scale-mode-undefined-tooltip": "タグ値",
|
|
@@ -1652,6 +1654,11 @@
|
|
|
1652
1654
|
"dlg.app-settings-daqstore": "DAQストレージ",
|
|
1653
1655
|
"dlg.app-settings-daqstore-type": "データベースタイプ",
|
|
1654
1656
|
"dlg.app-settings-daqstore-url": "URL",
|
|
1657
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
1658
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
1659
|
+
|
|
1660
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
1661
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
1655
1662
|
"dlg.app-settings-daqstore-token": "トークン",
|
|
1656
1663
|
"dlg.app-settings-daqstore-bucket": "バケット",
|
|
1657
1664
|
"dlg.app-settings-daqstore-organization": "組織",
|
|
@@ -1748,4 +1755,6 @@
|
|
|
1748
1755
|
"msg.text-name-exist": "テキスト名が既に存在します!",
|
|
1749
1756
|
"msg.texts-text-remove": "テキスト '{{value}}' を削除しますか?",
|
|
1750
1757
|
"msg.operation-unauthorized": "操作が許可されていません!"
|
|
1751
|
-
}
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
|
package/dist/assets/i18n/ko.json
CHANGED
|
@@ -544,6 +544,9 @@
|
|
|
544
544
|
"device-tag-dialog-title": "태그 선택",
|
|
545
545
|
|
|
546
546
|
"device.tag-options-title": "태그 옵션",
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
"device.tag-uns-path": "UNS Path",
|
|
547
550
|
"device.tag-daq-enabled": "등록 활성화",
|
|
548
551
|
"device.tag-daq-changed": "값 변경 가능시 저장",
|
|
549
552
|
"device.tag-daq-interval": "값 차이 저장 (sec.)",
|
|
@@ -734,6 +737,12 @@
|
|
|
734
737
|
"dlg.app-settings-server-port": "서버가 포팅 수신 대기중",
|
|
735
738
|
"dlg.app-settings-alarms-clear": "모든 알림과 기록 삭제",
|
|
736
739
|
"dlg.app-settings-auth-token": "토큰 권한",
|
|
740
|
+
"dlg.app-settings-daqstore-url": "URL",
|
|
741
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
742
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
743
|
+
|
|
744
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
745
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
737
746
|
"dlg.app-auth-disabled": "비활성화",
|
|
738
747
|
"dlg.app-auth-expiration-15m": "15분 후 토큰 만료로 활성화.",
|
|
739
748
|
"dlg.app-auth-expiration-1h": "1시간 후 토큰 만료로 활성화.",
|
|
@@ -772,3 +781,6 @@
|
|
|
772
781
|
"msg.editor-mode-locked": "편집자가 이미 열려있습니다!",
|
|
773
782
|
"msg.alarms-clear-success": "모든 알림이 취소되었습니다!"
|
|
774
783
|
}
|
|
784
|
+
|
|
785
|
+
|
|
786
|
+
|
package/dist/assets/i18n/pt.json
CHANGED
|
@@ -625,6 +625,12 @@
|
|
|
625
625
|
"dlg.app-language-zh-cn": "Chinês",
|
|
626
626
|
"dlg.app-settings-server-port": "Servidor está à escuta no porto",
|
|
627
627
|
"dlg.app-settings-auth-token": "Autentificar com Token",
|
|
628
|
+
"dlg.app-settings-daqstore-url": "URL",
|
|
629
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
630
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
631
|
+
|
|
632
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
633
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
628
634
|
"dlg.app-auth-disabled": "Desativado",
|
|
629
635
|
"dlg.app-auth-expiration-15m": "Ativar token com expiração em 15 minutos.",
|
|
630
636
|
"dlg.app-auth-expiration-1h": "Ativar token com expiração em 1 horas.",
|
|
@@ -656,5 +662,6 @@
|
|
|
656
662
|
"msg.project-save-ask": "De certeza que quer sair do Projeto?",
|
|
657
663
|
"msg.login-username-required": "Entra o Utilizador",
|
|
658
664
|
"msg.login-password-required": "Entra uma palavra-passe",
|
|
659
|
-
"msg.signin-failed": "Não autorizado"
|
|
660
|
-
|
|
665
|
+
"msg.signin-failed": "Não autorizado",
|
|
666
|
+
"device.tag-uns-path": "UNS Path"
|
|
667
|
+
}
|
package/dist/assets/i18n/ru.json
CHANGED
|
@@ -782,6 +782,9 @@
|
|
|
782
782
|
"device-tag-dialog-title": "Выбор тега",
|
|
783
783
|
|
|
784
784
|
"device.tag-options-title": "Свойства тегов",
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
"device.tag-uns-path": "UNS Path",
|
|
785
788
|
"device.tag-daq-enabled": "Регистрация включена",
|
|
786
789
|
"device.tag-daq-changed": "Сохранять значения по изменению",
|
|
787
790
|
"device.tag-daq-interval": "Интервал сохранения значений (сек.)",
|
|
@@ -1170,6 +1173,11 @@
|
|
|
1170
1173
|
"dlg.app-settings-daqstore": "Хранилище данных",
|
|
1171
1174
|
"dlg.app-settings-daqstore-type": "СУБД",
|
|
1172
1175
|
"dlg.app-settings-daqstore-url": "URL",
|
|
1176
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
1177
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
1178
|
+
|
|
1179
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
1180
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
1173
1181
|
"dlg.app-settings-daqstore-token": "Token",
|
|
1174
1182
|
"dlg.app-settings-daqstore-bucket": "Bucket",
|
|
1175
1183
|
"dlg.app-settings-daqstore-organization": "Организация",
|
|
@@ -1226,3 +1234,6 @@
|
|
|
1226
1234
|
"msg.report-build-error": "Send to build Report failed!",
|
|
1227
1235
|
"msg.device-tags-request-result": "Загружено {{value}} из {{current}}"
|
|
1228
1236
|
}
|
|
1237
|
+
|
|
1238
|
+
|
|
1239
|
+
|
package/dist/assets/i18n/sv.json
CHANGED
|
@@ -1003,6 +1003,8 @@
|
|
|
1003
1003
|
|
|
1004
1004
|
"device.tag-format": "Format decimaler (2 = #.##)",
|
|
1005
1005
|
"device.tag-deadband": "Deadband",
|
|
1006
|
+
|
|
1007
|
+
"device.tag-uns-path": "UNS Path",
|
|
1006
1008
|
"device.tag-scale": "Skalningsläge / Konvertering",
|
|
1007
1009
|
"device.tag-scale-mode-undefined": "Ingen skalning",
|
|
1008
1010
|
"device.tag-scale-mode-undefined-tooltip": "Taggvärde",
|
|
@@ -1599,6 +1601,11 @@
|
|
|
1599
1601
|
"dlg.app-settings-daqstore": "DAQ-lagring",
|
|
1600
1602
|
"dlg.app-settings-daqstore-type": "Databastyp",
|
|
1601
1603
|
"dlg.app-settings-daqstore-url": "URL",
|
|
1604
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
1605
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
1606
|
+
|
|
1607
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
1608
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
1602
1609
|
"dlg.app-settings-daqstore-token": "Token",
|
|
1603
1610
|
"dlg.app-settings-daqstore-bucket": "Bucket",
|
|
1604
1611
|
"dlg.app-settings-daqstore-organization": "Organisation",
|
|
@@ -1693,4 +1700,6 @@
|
|
|
1693
1700
|
"msg.text-name-exist": "Textnamnet finns redan!",
|
|
1694
1701
|
"msg.texts-text-remove": "Vill du ta bort texten '{{value}}'?",
|
|
1695
1702
|
"msg.operation-unauthorized": "Operation obehörig!"
|
|
1696
|
-
}
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
|
package/dist/assets/i18n/tr.json
CHANGED
|
@@ -638,6 +638,12 @@
|
|
|
638
638
|
"dlg.app-language-tr": "Turkish",
|
|
639
639
|
"dlg.app-settings-server-port": "Sunucuya erişmek için port",
|
|
640
640
|
"dlg.app-settings-auth-token": "Anahtar şifre işe yetkilendir",
|
|
641
|
+
"dlg.app-settings-daqstore-url": "URL",
|
|
642
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
643
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
644
|
+
|
|
645
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
646
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
641
647
|
|
|
642
648
|
"dlg.app-auth-disabled": "Etkisiz",
|
|
643
649
|
"dlg.app-auth-expiration-15m": "Anahtar şifre 15dk içinde geçerliliğini yitirecek.",
|
|
@@ -669,5 +675,6 @@
|
|
|
669
675
|
"msg.project-save-ask": "Projeden çıkmak istiyor musunuz?",
|
|
670
676
|
"msg.login-username-required": "Kullanıcı adı girin",
|
|
671
677
|
"msg.login-password-required": "Şifre girin",
|
|
672
|
-
"msg.signin-failed": "Yetkisiz giriş."
|
|
678
|
+
"msg.signin-failed": "Yetkisiz giriş.",
|
|
679
|
+
"device.tag-uns-path": "UNS Path"
|
|
673
680
|
}
|
package/dist/assets/i18n/ua.json
CHANGED
|
@@ -578,6 +578,12 @@
|
|
|
578
578
|
"dlg.app-language-ua": "Ukrainian",
|
|
579
579
|
"dlg.app-settings-server-port": "Порт сервера",
|
|
580
580
|
"dlg.app-settings-auth-token": "Авторизація з токеном",
|
|
581
|
+
"dlg.app-settings-daqstore-url": "URL",
|
|
582
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
583
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
584
|
+
|
|
585
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
586
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
581
587
|
"dlg.app-auth-disabled": "Вимкнено",
|
|
582
588
|
"dlg.app-auth-expiration-15m": "Увімкнено. Автоматичний вихід через 15хв.",
|
|
583
589
|
"dlg.app-auth-expiration-1h": "Увімкнено. Автоматичний вихід через 1год.",
|
|
@@ -610,5 +616,6 @@
|
|
|
610
616
|
"msg.project-save-ask": "При закритті вікна всі не збережені зміни пропадуть!",
|
|
611
617
|
"msg.login-username-required": "Користувач",
|
|
612
618
|
"msg.login-password-required": "Пароль",
|
|
613
|
-
"msg.signin-failed": "Не авторизований"
|
|
614
|
-
|
|
619
|
+
"msg.signin-failed": "Не авторизований",
|
|
620
|
+
"device.tag-uns-path": "UNS Path"
|
|
621
|
+
}
|
|
@@ -1010,6 +1010,8 @@
|
|
|
1010
1010
|
|
|
1011
1011
|
"device.tag-format": "格式化数字(2 = #.##)",
|
|
1012
1012
|
"device.tag-deadband": "死区",
|
|
1013
|
+
|
|
1014
|
+
"device.tag-uns-path": "UNS Path",
|
|
1013
1015
|
"device.tag-scale": "刻度模式",
|
|
1014
1016
|
"device.tag-scale-mode-undefined": "无缩放",
|
|
1015
1017
|
"device.tag-scale-mode-undefined-tooltip": "标签值",
|
|
@@ -1621,6 +1623,11 @@
|
|
|
1621
1623
|
"dlg.app-settings-daqstore": "DAQ存储",
|
|
1622
1624
|
"dlg.app-settings-daqstore-type": "数据库类型",
|
|
1623
1625
|
"dlg.app-settings-daqstore-url": "URL",
|
|
1626
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
1627
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
1628
|
+
|
|
1629
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
1630
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
1624
1631
|
"dlg.app-settings-daqstore-token":"令牌",
|
|
1625
1632
|
"dlg.app-settings-daqstore-bucket": "Bucket",
|
|
1626
1633
|
"dlg.app-settings-daqstore-organization": "组织",
|
|
@@ -1718,3 +1725,6 @@
|
|
|
1718
1725
|
"msg.texts-text-remove": "您是否想删除文本'{{value}}'?",
|
|
1719
1726
|
"msg.operation-unauthorized": "操作未经授权!"
|
|
1720
1727
|
}
|
|
1728
|
+
|
|
1729
|
+
|
|
1730
|
+
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
{
|
|
2
2
|
"with param": "示例 {{value}}",
|
|
3
3
|
|
|
4
4
|
"app.home": "首頁",
|
|
@@ -1009,6 +1009,8 @@
|
|
|
1009
1009
|
|
|
1010
1010
|
"device.tag-format": "數字格式化(2 = #.##)",
|
|
1011
1011
|
"device.tag-deadband": "死區",
|
|
1012
|
+
|
|
1013
|
+
"device.tag-uns-path": "UNS Path",
|
|
1012
1014
|
"device.tag-scale": "縮放模式",
|
|
1013
1015
|
"device.tag-scale-mode-undefined": "無縮放",
|
|
1014
1016
|
"device.tag-scale-mode-undefined-tooltip": "標籤值",
|
|
@@ -1619,6 +1621,11 @@
|
|
|
1619
1621
|
"dlg.app-settings-daqstore": "DAQ 儲存",
|
|
1620
1622
|
"dlg.app-settings-daqstore-type": "資料庫類型",
|
|
1621
1623
|
"dlg.app-settings-daqstore-url": "URL",
|
|
1624
|
+
"dlg.app-settings-daqstore-configurl": "Config URL",
|
|
1625
|
+
"dlg.app-settings-daqstore-queryconn": "Query connection (PGWire)",
|
|
1626
|
+
|
|
1627
|
+
"dlg.app-settings-daqstore-questdb-host": "QuestDB Host",
|
|
1628
|
+
"dlg.app-settings-daqstore-ingestconn": "Ingestion connection (ILP)",
|
|
1622
1629
|
"dlg.app-settings-daqstore-token":"權杖",
|
|
1623
1630
|
"dlg.app-settings-daqstore-bucket": "Bucket",
|
|
1624
1631
|
"dlg.app-settings-daqstore-organization": "組織",
|
|
@@ -1716,3 +1723,6 @@
|
|
|
1716
1723
|
"msg.texts-text-remove": "您是否要刪除文字 '{{value}}'?",
|
|
1717
1724
|
"msg.operation-unauthorized": "操作未授權!"
|
|
1718
1725
|
}
|
|
1726
|
+
|
|
1727
|
+
|
|
1728
|
+
|