@operato/dataset 1.13.13 → 1.13.15
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/CHANGELOG.md +18 -0
- package/dist/src/ox-data-ooc-badge.d.ts +9 -0
- package/dist/src/ox-data-ooc-badge.js +66 -0
- package/dist/src/ox-data-ooc-badge.js.map +1 -0
- package/dist/src/ox-data-ooc-brief-view.d.ts +2 -0
- package/dist/src/ox-data-ooc-brief-view.js +8 -109
- package/dist/src/ox-data-ooc-brief-view.js.map +1 -1
- package/dist/src/ox-data-ooc-correction-part.d.ts +9 -0
- package/dist/src/ox-data-ooc-correction-part.js +100 -0
- package/dist/src/ox-data-ooc-correction-part.js.map +1 -0
- package/dist/src/ox-data-ooc-history.d.ts +10 -0
- package/dist/src/ox-data-ooc-history.js +72 -0
- package/dist/src/ox-data-ooc-history.js.map +1 -0
- package/dist/src/ox-data-ooc-view.d.ts +1 -0
- package/dist/src/ox-data-ooc-view.js +6 -88
- package/dist/src/ox-data-ooc-view.js.map +1 -1
- package/dist/src/types.d.ts +45 -0
- package/dist/src/types.js.map +1 -1
- package/dist/stories/ox-data-ooc-view.stories.js +2 -0
- package/dist/stories/ox-data-ooc-view.stories.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +21 -6
- package/src/ox-data-ooc-badge.ts +64 -0
- package/src/ox-data-ooc-brief-view.ts +9 -119
- package/src/ox-data-ooc-correction-part.ts +108 -0
- package/src/ox-data-ooc-history.ts +74 -0
- package/src/ox-data-ooc-view.ts +6 -90
- package/src/types.ts +47 -0
- package/stories/ox-data-ooc-view.stories.ts +2 -0
- package/translations/en.json +1 -0
- package/translations/ko.json +1 -0
- package/translations/ms.json +142 -70
- package/translations/zh.json +146 -75
package/src/types.ts
CHANGED
|
@@ -1,10 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Represents a selectable option with a text label and a value.
|
|
3
|
+
*/
|
|
1
4
|
export type SelectOption = { text: string; value: string }
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* An array of selectable options.
|
|
8
|
+
*/
|
|
2
9
|
export type SelectOptions = SelectOption[]
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Defines the options and additional properties for a type.
|
|
13
|
+
*/
|
|
3
14
|
export type TypeOptions = {
|
|
4
15
|
options?: SelectOptions
|
|
5
16
|
[prop: string]: any
|
|
6
17
|
}
|
|
7
18
|
|
|
19
|
+
/**
|
|
20
|
+
* Describes the structure and properties of a data item.
|
|
21
|
+
*/
|
|
8
22
|
export type DataItem = {
|
|
9
23
|
name: string
|
|
10
24
|
description: string
|
|
@@ -25,6 +39,9 @@ export type DataItem = {
|
|
|
25
39
|
}
|
|
26
40
|
}
|
|
27
41
|
|
|
42
|
+
/**
|
|
43
|
+
* Defines the structure of a dataset, including its name, description, type, use case, and data items.
|
|
44
|
+
*/
|
|
28
45
|
export type DataSet = {
|
|
29
46
|
name: string
|
|
30
47
|
description: string
|
|
@@ -35,6 +52,9 @@ export type DataSet = {
|
|
|
35
52
|
spec: { [dataItem: string]: { [useCase: string]: any } }
|
|
36
53
|
}
|
|
37
54
|
|
|
55
|
+
/**
|
|
56
|
+
* Describes the definition of a data specification, including its type, label, name, and optional properties.
|
|
57
|
+
*/
|
|
38
58
|
export type DataSpecDefinition = {
|
|
39
59
|
type: string
|
|
40
60
|
label: string
|
|
@@ -42,6 +62,9 @@ export type DataSpecDefinition = {
|
|
|
42
62
|
property?: { [option: string]: any }
|
|
43
63
|
}
|
|
44
64
|
|
|
65
|
+
/**
|
|
66
|
+
* Describes a use case definition, including its name, description, help text, and specifications.
|
|
67
|
+
*/
|
|
45
68
|
export type UseCaseDefinition = {
|
|
46
69
|
name: string
|
|
47
70
|
description: string
|
|
@@ -49,18 +72,30 @@ export type UseCaseDefinition = {
|
|
|
49
72
|
specs: DataSpecDefinition[]
|
|
50
73
|
}
|
|
51
74
|
|
|
75
|
+
/**
|
|
76
|
+
* Represents the limits for a data specification.
|
|
77
|
+
*/
|
|
52
78
|
export type DataSpecLimit = {
|
|
53
79
|
[limit: string]: number | string | string[] | boolean
|
|
54
80
|
}
|
|
55
81
|
|
|
82
|
+
/**
|
|
83
|
+
* A set of data specification limits, keyed by use case.
|
|
84
|
+
*/
|
|
56
85
|
export type DataSpecLimitSet = {
|
|
57
86
|
[useCase: string]: DataSpecLimit
|
|
58
87
|
}
|
|
59
88
|
|
|
89
|
+
/**
|
|
90
|
+
* Represents a collection of data, keyed by a tag.
|
|
91
|
+
*/
|
|
60
92
|
export type DataCollection = {
|
|
61
93
|
[tag: string]: any
|
|
62
94
|
}
|
|
63
95
|
|
|
96
|
+
/**
|
|
97
|
+
* Represents a judgment on data, indicating if it is out of control or out of specification.
|
|
98
|
+
*/
|
|
64
99
|
export type Judgment = {
|
|
65
100
|
[tag: string]: {
|
|
66
101
|
ooc: boolean
|
|
@@ -68,6 +103,9 @@ export type Judgment = {
|
|
|
68
103
|
}
|
|
69
104
|
}
|
|
70
105
|
|
|
106
|
+
/**
|
|
107
|
+
* Describes a data sample, including its name, description, use case, and associated data and judgments.
|
|
108
|
+
*/
|
|
71
109
|
export type DataSample = {
|
|
72
110
|
name: string
|
|
73
111
|
description: string
|
|
@@ -83,6 +121,9 @@ export type DataSample = {
|
|
|
83
121
|
|
|
84
122
|
export type DataOocState = 'ISSUED' | 'REVIEWED' | 'CORRECTED'
|
|
85
123
|
|
|
124
|
+
/**
|
|
125
|
+
* Extends DataSample with additional fields specific to an out of control state, including state, corrective actions, and review history.
|
|
126
|
+
*/
|
|
86
127
|
export type DataOoc = DataSample & {
|
|
87
128
|
state: DataOocState
|
|
88
129
|
correctiveInstruction?: string
|
|
@@ -108,6 +149,9 @@ export type DataOoc = DataSample & {
|
|
|
108
149
|
}[]
|
|
109
150
|
}
|
|
110
151
|
|
|
152
|
+
/**
|
|
153
|
+
* Describes a summary of data, including its name, description, relevant data items, and key metrics.
|
|
154
|
+
*/
|
|
111
155
|
export type DataSummary = {
|
|
112
156
|
name: string
|
|
113
157
|
description: string
|
|
@@ -126,4 +170,7 @@ export type DataSummary = {
|
|
|
126
170
|
summary?: { [key: string]: any }
|
|
127
171
|
}
|
|
128
172
|
|
|
173
|
+
/**
|
|
174
|
+
* Represents the result of an evaluation, indicating if data is out of specification or out of control.
|
|
175
|
+
*/
|
|
129
176
|
export type EvaluationResult = { oos: boolean; ooc: boolean }
|
|
@@ -144,6 +144,7 @@ var dataOoc = {
|
|
|
144
144
|
name: 'Data Sample Name',
|
|
145
145
|
description: 'Data Sample이 어쩌구 저쩌구 그래서 중요합니다. 당연히 그래야죠.',
|
|
146
146
|
useCase: 'CCP',
|
|
147
|
+
state: 'REVIEWED',
|
|
147
148
|
judgment: {
|
|
148
149
|
temp: {
|
|
149
150
|
ooc: true,
|
|
@@ -247,6 +248,7 @@ var dataOoc = {
|
|
|
247
248
|
name: 'shnam'
|
|
248
249
|
},
|
|
249
250
|
state: 'CORRECTED',
|
|
251
|
+
comment: '전량 폐기하였습니다',
|
|
250
252
|
timestamp: Date.now()
|
|
251
253
|
}
|
|
252
254
|
]
|
package/translations/en.json
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"field.entry-role": "entry role",
|
|
18
18
|
"field.entry-type": "entry type",
|
|
19
19
|
"field.entry-view": "entry view",
|
|
20
|
+
"field.finalizing-function": "finalizing func.",
|
|
20
21
|
"field.hidden": "hidden",
|
|
21
22
|
"field.item": "item",
|
|
22
23
|
"field.latest-collected-at": "latest collected at",
|
package/translations/ko.json
CHANGED
package/translations/ms.json
CHANGED
|
@@ -1,77 +1,149 @@
|
|
|
1
1
|
{
|
|
2
|
-
"button.corrected": "
|
|
3
|
-
"button.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"field.
|
|
8
|
-
"field.
|
|
9
|
-
"field.
|
|
10
|
-
"field.
|
|
11
|
-
"field.
|
|
12
|
-
"field.
|
|
13
|
-
"field.
|
|
2
|
+
"button.corrected": "diperbetulkan",
|
|
3
|
+
"button.request-archive": "permintaan arkib",
|
|
4
|
+
"button.reviewed": "disemak",
|
|
5
|
+
"error.dataset not found": "Tidak dapat mencari dataSet dengan nama yang diberi({dataSetName})",
|
|
6
|
+
"error.summary not supported": "DataSet yang diberi({dataSetName}) tidak menyokong laporan untuk {period}",
|
|
7
|
+
"field.agg-function": "fungsi agregasi",
|
|
8
|
+
"field.appliance": "peralatan",
|
|
9
|
+
"field.assignees": "penugasan",
|
|
10
|
+
"field.collected-at": "dikumpulkan pada",
|
|
11
|
+
"field.corrected-at": "diperbetulkan pada",
|
|
12
|
+
"field.corrective-action": "tindakan pembetulan",
|
|
13
|
+
"field.corrector": "pembetul",
|
|
14
|
+
"field.count": "jumlah",
|
|
15
|
+
"field.count-ooc": "jumlah ooc",
|
|
16
|
+
"field.count-oos": "jumlah oos",
|
|
14
17
|
"field.data": "data",
|
|
15
|
-
"field.
|
|
16
|
-
"field.
|
|
17
|
-
"field.
|
|
18
|
-
"field.
|
|
19
|
-
"field.
|
|
18
|
+
"field.data-01": "data 1",
|
|
19
|
+
"field.data-02": "data 2",
|
|
20
|
+
"field.data-03": "data 3",
|
|
21
|
+
"field.data-04": "data 4",
|
|
22
|
+
"field.data-05": "data 5",
|
|
23
|
+
"field.data-key": "kunci data",
|
|
24
|
+
"field.data-key-set": "set kunci data",
|
|
25
|
+
"field.data-sample": "sampel data",
|
|
26
|
+
"field.data-set": "set data",
|
|
27
|
+
"field.date": "tarikh",
|
|
28
|
+
"field.device-id": "id peranti",
|
|
29
|
+
"field.download-url": "url muat turun",
|
|
30
|
+
"field.entry-role": "peranan masukan",
|
|
31
|
+
"field.entry-type": "jenis masukan",
|
|
32
|
+
"field.entry-view": "paparan masukan",
|
|
33
|
+
"field.finalizing-function": "fungsi penyempurnaan",
|
|
34
|
+
"field.hidden": "tersembunyi",
|
|
20
35
|
"field.item": "item",
|
|
21
|
-
"field.
|
|
22
|
-
"field.
|
|
23
|
-
"field.
|
|
24
|
-
"field.
|
|
25
|
-
"field.
|
|
26
|
-
"field.
|
|
27
|
-
"field.
|
|
28
|
-
"field.
|
|
29
|
-
"field.
|
|
30
|
-
"field.
|
|
31
|
-
"field.
|
|
32
|
-
"field.
|
|
33
|
-
"field.
|
|
34
|
-
"field.
|
|
35
|
-
"field.
|
|
36
|
-
"field.
|
|
37
|
-
"field.
|
|
38
|
-
"field.
|
|
39
|
-
"field.
|
|
40
|
-
"field.
|
|
36
|
+
"field.key": "kunci",
|
|
37
|
+
"field.key-01": "kunci 1",
|
|
38
|
+
"field.key-02": "kunci 2",
|
|
39
|
+
"field.key-03": "kunci 3",
|
|
40
|
+
"field.key-04": "kunci 4",
|
|
41
|
+
"field.key-05": "kunci 5",
|
|
42
|
+
"field.latest-collected-at": "terakhir dikumpulkan pada",
|
|
43
|
+
"field.monitor-type": "jenis pemantau",
|
|
44
|
+
"field.monitor-view": "paparan pemantau",
|
|
45
|
+
"field.month": "bulan",
|
|
46
|
+
"field.netmask": "topeng rangkaian",
|
|
47
|
+
"field.next-schedule": "jadual seterusnya",
|
|
48
|
+
"field.next-summary-schedule": "jadual ringkasan seterusnya",
|
|
49
|
+
"field.normal-scenario": "skenario data normal",
|
|
50
|
+
"field.ooc": "di luar had kawalan",
|
|
51
|
+
"field.oos": "di luar had kritikal",
|
|
52
|
+
"field.options": "pilihan",
|
|
53
|
+
"field.outlier-approval-line": "baris kelulusan luar biasa",
|
|
54
|
+
"field.outlier-scenario": "skenario data luar biasa",
|
|
55
|
+
"field.partition-keys": "kunci pembahagian",
|
|
56
|
+
"field.prev-schedule": "jadual sebelumnya",
|
|
57
|
+
"field.quota": "kuota sampel",
|
|
58
|
+
"field.raw-data": "data mentah",
|
|
59
|
+
"field.ref-by": "dirujuk oleh",
|
|
60
|
+
"field.report-template": "templat laporan",
|
|
61
|
+
"field.report-type": "jenis laporan",
|
|
62
|
+
"field.report-view": "paparan laporan",
|
|
63
|
+
"field.request-params": "parameter permintaan",
|
|
64
|
+
"field.requires-review": "memerlukan semakan",
|
|
65
|
+
"field.review-approval-line": "baris kelulusan",
|
|
66
|
+
"field.role": "peranan",
|
|
67
|
+
"field.serial-no": "no. siri",
|
|
68
|
+
"field.spec": "spesifikasi",
|
|
69
|
+
"field.status": "status",
|
|
70
|
+
"field.subgroup": "Nama subkumpulan",
|
|
71
|
+
"field.summary": "ringkasan",
|
|
72
|
+
"field.summary-period": "tempoh ringkasan",
|
|
73
|
+
"field.supervisory-role": "peranan pengawasan",
|
|
74
|
+
"field.t-key": "kunci terjemahan",
|
|
75
|
+
"field.tag": "nama tag",
|
|
76
|
+
"field.time-period": "tempoh masa",
|
|
41
77
|
"field.unit": "unit",
|
|
42
|
-
"field.use-case": "
|
|
43
|
-
"field.
|
|
44
|
-
"field.work-
|
|
45
|
-
"
|
|
46
|
-
"label.
|
|
47
|
-
"label.
|
|
48
|
-
"label.
|
|
49
|
-
"label.
|
|
50
|
-
"label.
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
78
|
+
"field.use-case": "kes penggunaan",
|
|
79
|
+
"field.view": "skrin",
|
|
80
|
+
"field.work-date": "tarikh kerja",
|
|
81
|
+
"field.work-shift": "shift kerja",
|
|
82
|
+
"label.acceptables": "boleh diterima",
|
|
83
|
+
"label.corrective action": "tindakan pembetulan",
|
|
84
|
+
"label.corrective instruction": "instruksi pembetulan",
|
|
85
|
+
"label.critical-limits": "had kritikal",
|
|
86
|
+
"label.data-set-type": "jenis",
|
|
87
|
+
"label.end-date": "tarikh tamat",
|
|
88
|
+
"label.group-by data-keys": "kumpulkan mengikut setiap data-keys",
|
|
89
|
+
"label.maximum value": "nilai maksimum",
|
|
90
|
+
"label.minimum value": "nilai minimum",
|
|
91
|
+
"label.pass-limits": "had lulus",
|
|
92
|
+
"label.period-12-months": "12 bulan",
|
|
93
|
+
"label.period-30-days": "30 hari",
|
|
94
|
+
"label.period-this-month": "bulan ini",
|
|
95
|
+
"label.period-this-year": "tahun ini",
|
|
96
|
+
"label.period-today": "hari ini",
|
|
97
|
+
"label.start-date": "tarikh mula",
|
|
98
|
+
"label.state-corrected": "diperbetulkan",
|
|
99
|
+
"label.state-issued": "dikeluarkan",
|
|
100
|
+
"label.state-reviewed": "disemak",
|
|
101
|
+
"label.target-limits": "had sasaran",
|
|
102
|
+
"text.automatically collected": "dikumpulkan secara automatik",
|
|
103
|
+
"text.corrective action placeholder": "Sila masukkan butiran pelaksanaan tindakan pembetulan dan pencegahan",
|
|
104
|
+
"text.corrective instruction placeholder": "Sila masukkan arahan tindakan pembetulan dan pencegahan",
|
|
105
|
+
"text.data ooc updated successfully": "data ooc dikemas kini dengan jayanya",
|
|
106
|
+
"text.data sample created successfully": "sampel data dicipta dengan jayanya",
|
|
107
|
+
"text.data-archive request failed": "permintaan arkib data gagal",
|
|
108
|
+
"text.data-archive waits": "Ia akan mengambil masa beberapa minit, Anda boleh mencari mesej push bila siap",
|
|
109
|
+
"text.manually collected": "dikumpulkan secara manual",
|
|
110
|
+
"text.presigned_url_created": "url arkib yang ditandatangani sebelumnya dicipta",
|
|
111
|
+
"title.data collecting editor": "editor pengumpulan data",
|
|
112
|
+
"title.data collecting schedule (un)register": "(tidak) mendaftar jadual pengumpulan data",
|
|
113
|
+
"title.data-archive downloads ready": "muat turun arkib data sedia",
|
|
114
|
+
"title.data-archive list": "senarai arkib data",
|
|
115
|
+
"title.data-archive request failed": "gagal permintaan arkib data",
|
|
116
|
+
"title.data-archive request popup": "permintaan arkib data",
|
|
117
|
+
"title.data-entry list": "senarai masukan data",
|
|
118
|
+
"title.data-entry-form": "borang masukan data",
|
|
119
|
+
"title.data-item list": "senarai item data",
|
|
120
|
+
"title.data-key-item list": "senarai item kunci data",
|
|
121
|
+
"title.data-key-set list": "senarai set kunci data",
|
|
122
|
+
"title.data-monitor-view": "paparan pemantau data",
|
|
123
|
+
"title.data-ooc list": "senarai data OOC",
|
|
124
|
+
"title.data-ooc view": "paparan data OOC",
|
|
125
|
+
"title.data-report list": "senarai laporan data",
|
|
126
|
+
"title.data-report samples": "contoh laporan data",
|
|
127
|
+
"title.data-report-view": "paparan laporan data",
|
|
128
|
+
"title.data-sample list": "senarai sampel data",
|
|
129
|
+
"title.data-sample search": "pencarian sampel data",
|
|
130
|
+
"title.data-sample view": "paparan sampel data",
|
|
131
|
+
"title.data-sensor list": "senarai sensor data",
|
|
132
|
+
"title.data-set list": "senarai set data",
|
|
133
|
+
"title.data-set model": "model set data",
|
|
134
|
+
"title.data-summary list": "senarai ringkasan data",
|
|
135
|
+
"title.data-summary period": "tempoh ringkasan data",
|
|
136
|
+
"title.data-summary search": "pencarian ringkasan data",
|
|
137
|
+
"title.data-summary view": "paparan ringkasan data",
|
|
138
|
+
"title.edit code": "edit kod",
|
|
139
|
+
"title.edit data-key items": "edit item kunci data",
|
|
140
|
+
"title.edit duration": "edit tempoh",
|
|
74
141
|
"title.edit hashtag": "edit hashtag",
|
|
75
142
|
"title.edit json": "edit json",
|
|
76
|
-
"title.
|
|
143
|
+
"title.open data sample report page": "buka laman laporan sampel data",
|
|
144
|
+
"title.open data sample search page": "buka laman pencarian sampel data",
|
|
145
|
+
"title.open data sample view": "buka paparan sampel data",
|
|
146
|
+
"title.open data summary view": "buka paparan ringkasan data",
|
|
147
|
+
"title.ready": "sedia",
|
|
148
|
+
"title.view detail ooc data": "lihat butiran data ooc"
|
|
77
149
|
}
|
package/translations/zh.json
CHANGED
|
@@ -1,77 +1,148 @@
|
|
|
1
1
|
{
|
|
2
|
-
"button.corrected": "
|
|
3
|
-
"button.
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"field.
|
|
8
|
-
"field.
|
|
9
|
-
"field.
|
|
10
|
-
"field.
|
|
11
|
-
"field.
|
|
12
|
-
"field.
|
|
13
|
-
"field.
|
|
14
|
-
"field.
|
|
15
|
-
"field.
|
|
16
|
-
"field.
|
|
17
|
-
"field.
|
|
18
|
-
"field.
|
|
19
|
-
"field.
|
|
20
|
-
"field.
|
|
21
|
-
"field.
|
|
22
|
-
"field.
|
|
23
|
-
"field.
|
|
24
|
-
"field.
|
|
25
|
-
"field.
|
|
26
|
-
"field.
|
|
27
|
-
"field.
|
|
28
|
-
"field.
|
|
29
|
-
"field.
|
|
30
|
-
"field.
|
|
31
|
-
"field.
|
|
32
|
-
"field.
|
|
33
|
-
"field.
|
|
34
|
-
"field.
|
|
35
|
-
"field.
|
|
36
|
-
"field.
|
|
37
|
-
"field.
|
|
38
|
-
"field.
|
|
39
|
-
"field.
|
|
40
|
-
"field.
|
|
41
|
-
"field.
|
|
42
|
-
"field.
|
|
43
|
-
"field.
|
|
44
|
-
"field.
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
2
|
+
"button.corrected": "已处理",
|
|
3
|
+
"button.request-archive": "新资料存档请求",
|
|
4
|
+
"button.reviewed": "审核完成",
|
|
5
|
+
"error.dataset not found": "无法找到给定名称的({dataSetName})数据集",
|
|
6
|
+
"error.summary not supported": "给定的数据集({dataSetName})不支持{period}的报告",
|
|
7
|
+
"field.agg-function": "聚合函数",
|
|
8
|
+
"field.appliance": "应用设备",
|
|
9
|
+
"field.assignees": "分配者列表",
|
|
10
|
+
"field.collected-at": "收集时间",
|
|
11
|
+
"field.corrected-at": "处理时间",
|
|
12
|
+
"field.corrective-action": "纠正活动",
|
|
13
|
+
"field.corrector": "处理人",
|
|
14
|
+
"field.count": "数量",
|
|
15
|
+
"field.count-ooc": "管理限制偏离数量",
|
|
16
|
+
"field.count-oos": "允许限制偏离数量",
|
|
17
|
+
"field.data": "数据",
|
|
18
|
+
"field.data-01": "数据 1",
|
|
19
|
+
"field.data-02": "数据 2",
|
|
20
|
+
"field.data-03": "数据 3",
|
|
21
|
+
"field.data-04": "数据 4",
|
|
22
|
+
"field.data-05": "数据 5",
|
|
23
|
+
"field.data-key": "数据键",
|
|
24
|
+
"field.data-key-set": "数据键集",
|
|
25
|
+
"field.data-sample": "数据样本",
|
|
26
|
+
"field.data-set": "数据集",
|
|
27
|
+
"field.date": "日期",
|
|
28
|
+
"field.device-id": "设备ID",
|
|
29
|
+
"field.download-url": "下载地址",
|
|
30
|
+
"field.entry-role": "输入负责角色",
|
|
31
|
+
"field.entry-type": "输入界面类型",
|
|
32
|
+
"field.entry-view": "输入界面",
|
|
33
|
+
"field.finalizing-function": "完成函数",
|
|
34
|
+
"field.hidden": "隐藏",
|
|
35
|
+
"field.item": "项目",
|
|
36
|
+
"field.key": "键",
|
|
37
|
+
"field.key-01": "键 1",
|
|
38
|
+
"field.key-02": "键 2",
|
|
39
|
+
"field.key-03": "键 3",
|
|
40
|
+
"field.key-04": "键 4",
|
|
41
|
+
"field.key-05": "键 5",
|
|
42
|
+
"field.latest-collected-at": "最近收集时间",
|
|
43
|
+
"field.monitor-type": "监视界面类型",
|
|
44
|
+
"field.monitor-view": "监视界面",
|
|
45
|
+
"field.month": "月",
|
|
46
|
+
"field.netmask": "网络掩码",
|
|
47
|
+
"field.next-schedule": "下次收集计划",
|
|
48
|
+
"field.next-summary-schedule": "下次摘要计划",
|
|
49
|
+
"field.normal-scenario": "正常数据场景",
|
|
50
|
+
"field.ooc": "管理限制偏离情况",
|
|
51
|
+
"field.oos": "允许限制偏离情况",
|
|
52
|
+
"field.options": "选择选项",
|
|
53
|
+
"field.outlier-approval-line": "异常批准线",
|
|
54
|
+
"field.outlier-scenario": "异常数据场景",
|
|
55
|
+
"field.partition-keys": "分区键",
|
|
56
|
+
"field.prev-schedule": "上次收集计划",
|
|
57
|
+
"field.quota": "样本数",
|
|
58
|
+
"field.raw-data": "原始数据",
|
|
59
|
+
"field.ref-by": "参考项",
|
|
60
|
+
"field.report-template": "报告模板",
|
|
61
|
+
"field.report-type": "报告界面类型",
|
|
62
|
+
"field.report-view": "报告界面",
|
|
63
|
+
"field.request-params": "请求参数",
|
|
64
|
+
"field.requires-review": "需要审查",
|
|
65
|
+
"field.review-approval-line": "审批线",
|
|
66
|
+
"field.role": "角色",
|
|
67
|
+
"field.serial-no": "序列号",
|
|
68
|
+
"field.spec": "规格",
|
|
69
|
+
"field.status": "状态",
|
|
70
|
+
"field.subgroup": "子组名称",
|
|
71
|
+
"field.summary": "摘要",
|
|
72
|
+
"field.summary-period": "摘要周期",
|
|
73
|
+
"field.supervisory-role": "监管角色",
|
|
74
|
+
"field.t-key": "翻译键",
|
|
75
|
+
"field.tag": "标签名",
|
|
76
|
+
"field.time-period": "时间单位",
|
|
77
|
+
"field.unit": "单位",
|
|
78
|
+
"field.use-case": "使用案例",
|
|
79
|
+
"field.view": "屏幕",
|
|
80
|
+
"field.work-date": "工作基准日",
|
|
81
|
+
"field.work-shift": "轮班",
|
|
82
|
+
"label.acceptables": "允许值",
|
|
83
|
+
"label.corrective action": "纠正措施",
|
|
84
|
+
"label.corrective instruction": "纠正指示",
|
|
85
|
+
"label.critical-limits": "临界限制",
|
|
86
|
+
"label.data-set-type": "类型",
|
|
87
|
+
"label.end-date": "结束日期",
|
|
88
|
+
"label.group-by data-keys": "按每个数据键分组",
|
|
89
|
+
"label.maximum value": "最大值",
|
|
90
|
+
"label.minimum value": "最小值",
|
|
91
|
+
"label.pass-limits": "通过限制",
|
|
92
|
+
"label.period-12-months": "最近12个月",
|
|
93
|
+
"label.period-30-days": "最近30天",
|
|
94
|
+
"label.period-this-month": "本月",
|
|
95
|
+
"label.period-this-year": "今年",
|
|
96
|
+
"label.period-today": "今天",
|
|
97
|
+
"label.start-date": "开始日期",
|
|
98
|
+
"label.state-corrected": "已处理",
|
|
99
|
+
"label.state-issued": "发生",
|
|
100
|
+
"label.state-reviewed": "审核完成",
|
|
101
|
+
"label.target-limits": "管理目标范围",
|
|
102
|
+
"text.automatically collected": "自动收集",
|
|
103
|
+
"text.corrective action placeholder": "请输入实施纠正和预防措施的事项",
|
|
104
|
+
"text.corrective instruction placeholder": "请输入纠正和预防措施的指示事项",
|
|
105
|
+
"text.data ooc updated successfully": "偏离数据已成功修改",
|
|
106
|
+
"text.data sample created successfully": "数据样本已成功创建",
|
|
107
|
+
"text.data-archive request failed": "归档下载请求失败",
|
|
108
|
+
"text.data-archive waits": "可能需要几分钟时间。我们会在可能的时候通过推送消息通知您。",
|
|
109
|
+
"text.manually collected": "手动收集",
|
|
110
|
+
"title.data collecting editor": "数据收集界面",
|
|
111
|
+
"title.data collecting schedule (un)register": "数据收集计划注册/删除",
|
|
112
|
+
"title.data-archive downloads ready": "归档下载已就绪",
|
|
113
|
+
"title.data-archive list": "数据归档查询",
|
|
114
|
+
"title.data-archive request failed": "归档请求失败",
|
|
115
|
+
"title.data-archive request popup": "归档请求",
|
|
116
|
+
"title.data-entry list": "数据输入界面",
|
|
117
|
+
"title.data-entry-form": "数据输入",
|
|
118
|
+
"title.data-item list": "数据项目查询",
|
|
119
|
+
"title.data-key-item list": "数据键详细",
|
|
120
|
+
"title.data-key-set list": "数据键集管理",
|
|
121
|
+
"title.data-monitor-view": "数据监视",
|
|
122
|
+
"title.data-ooc list": "数据偏离点查询",
|
|
123
|
+
"title.data-ooc view": "数据偏离点详细",
|
|
124
|
+
"title.data-report list": "数据报告查询",
|
|
125
|
+
"title.data-report samples": "样本数据报告",
|
|
126
|
+
"title.data-report-view": "数据报告",
|
|
127
|
+
"title.data-sample list": "数据样本查询",
|
|
128
|
+
"title.data-sample search": "数据样本搜索",
|
|
129
|
+
"title.data-sample view": "数据样本详细",
|
|
130
|
+
"title.data-sensor list": "数据传感器管理",
|
|
131
|
+
"title.data-set list": "数据集管理",
|
|
132
|
+
"title.data-set model": "数据集模型",
|
|
133
|
+
"title.data-summary list": "数据收集总结查询",
|
|
134
|
+
"title.data-summary period": "数据收集总结按期查询",
|
|
135
|
+
"title.data-summary search": "数据收集总结搜索",
|
|
136
|
+
"title.data-summary view": "数据收集总结详细",
|
|
137
|
+
"title.edit code": "代码编辑",
|
|
138
|
+
"title.edit data-key items": "数据键模型编辑",
|
|
139
|
+
"title.edit duration": "周期编辑",
|
|
140
|
+
"title.edit hashtag": "哈希标签编辑",
|
|
141
|
+
"title.edit json": "JSON编辑",
|
|
142
|
+
"title.open data sample report page": "打开数据样本报告页面",
|
|
143
|
+
"title.open data sample search page": "打开数据样本搜索页面",
|
|
144
|
+
"title.open data sample view": "打开数据样本视图页面",
|
|
145
|
+
"title.open data summary view": "打开数据收集总结视图页面",
|
|
146
|
+
"title.ready": "准备中",
|
|
147
|
+
"title.view detail ooc data": "OOC数据详细查看"
|
|
77
148
|
}
|