forked from sheepzh/time-tracker-4-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.ts
More file actions
34 lines (30 loc) · 679 Bytes
/
button.ts
File metadata and controls
34 lines (30 loc) · 679 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
/**
* Copyright (c) 2023-present Hengyang Zhang
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
import resource from './button-resource.json'
export type ButtonMessage = {
create: string
add: string
delete: string
batchDelete: string
modify: string
save: string
test: string
confirm: string
cancel: string
previous: string
next: string
okey: string
dont: string
operation: string
configuration: string
clear: string
enable: string
batchEnable: string
batchDisable: string
}
const _default: Messages<ButtonMessage> = resource
export default _default