forked from sheepzh/time-tracker-4-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmerge-rule.ts
More file actions
32 lines (28 loc) · 727 Bytes
/
merge-rule.ts
File metadata and controls
32 lines (28 loc) · 727 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
/**
* Copyright (c) 2021-present Hengyang Zhang
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
import resource from './merge-rule-resource.json'
export type MergeRuleMessage = {
removeConfirmMsg: string
originPlaceholder: string
mergedPlaceholder: string
errorOrigin: string
duplicateMsg: string
addConfirmMsg: string
infoAlertTitle: string
infoAlert0: string
infoAlert1: string
infoAlert2: string
infoAlert3: string
infoAlert4: string
infoAlert5: string
tagResult: {
blank: string
level: string
}
}
const mergeRuleMessages: Messages<MergeRuleMessage> = resource
export default mergeRuleMessages