forked from sheepzh/time-tracker-4-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-manage.ts
More file actions
42 lines (38 loc) · 1019 Bytes
/
data-manage.ts
File metadata and controls
42 lines (38 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* Copyright (c) 2021-present Hengyang Zhang
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
import resource from './data-manage-resource.json'
export type DataManageMessage = {
totalMemoryAlert: string
totalMemoryAlert1: string
usedMemoryAlert: string
operationAlert: string
filterItems: string
filterFocus: string
filterTime: string
filterDate: string
paramError: string
deleteConfirm: string
migrationAlert: string
importError: string
importOther: {
step1: string
step2: string
dataSource: string
file: string
conflictType: string
conflictTip: string
selectFileBtn: string
imported: string
local: string
fileNotSelected: string
conflictNotSelected: string
} & {
[resolution in timer.imported.ConflictResolution]: string
}
}
const _default: Messages<DataManageMessage> = resource
export default _default