-
Notifications
You must be signed in to change notification settings - Fork 3
/
en.ts
118 lines (96 loc) · 4.9 KB
/
en.ts
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
43
44
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
export default {
FaFormDialog: {
confirm: 'Confirm',
deny: 'Deny',
save: 'Save',
reset: 'Reset',
cancel: 'Cancel',
},
FaImageUpload: {
count: 'Count',
minCountExceeded: 'Minimum count is {minCount}',
maxCountExceeded: 'Maximum count is {maxCount}',
size: 'Size',
minSizeExceeded: 'Minimum size is {minSize}\nplease enhance image dimension or quality',
maxSizeExceeded: 'Maximum size is {maxSize}\nplease lower image dimension or quality',
sizeTip: 'Input size: {inputSize} ➜ output size: {outputSize}',
quality: 'Quality',
width: 'Width',
widthNotMatched: 'Expected width is {width}',
minWidthExceeded: 'Minimum width is {minWidth}',
maxWidthExceeded: 'Maximum width is {maxWidth}',
height: 'Height',
heightNotMatched: 'Expected height is {height}',
minHeightExceeded: 'Minimum height is {minHeight}',
maxHeightExceeded: 'Maximum height is {maxHeight}',
dimension: 'Dimension',
resolution: 'Resolution',
resolutionNotMatched: 'Expected resolution (width * height) is {resolution}',
minResolutionExceeded: 'Minimum resolution (width * height) is {minResolution}',
maxResolutionExceeded: 'Maximum resolution (width * height) is {maxResolution}',
aspectRatio: 'Aspect Ratio',
aspectRatioNotMatched: 'Expected aspect ratio (width / height) is {aspectRatio}',
minAspectRatioExceeded: 'Minimum aspect ratio (width / height) is {minAspectRatio}',
maxAspectRatioExceeded: 'Maximum aspect ratio (width / height) is {maxAspectRatio}',
fixedAspectRatio: 'Fixed Aspect Ratio',
accept: 'Accept',
typeNotAllowed: 'Expected image types are {accept}',
typeNotCompressible: 'Unable to compress {type}',
edit: 'Edit',
confirm: undefined,
reset: undefined,
cancel: undefined,
loadError: 'Load failed',
exportError: 'Export failed\nplease try lowering image dimension or quality',
},
FaSelect: {
selectAll: 'Select All',
},
FaUpload: {
labelAccept: 'Accept',
labelCount: 'Count',
labelMinFilesExceeded: 'Minimum file count: {minFiles}',
labelMaxFilesExceeded: 'Maximum file count: {maxFiles}',
labelSize: 'Size',
labelImageWidth: 'Image Width',
labelImageWidthNotMatched: 'Expected image width is {imageWidth}',
labelMinImageWidthExceeded: 'Minimum image width is {minImageWidth}',
labelMaxImageWidthExceeded: 'Maximum image width is {maxImageWidth}',
labelImageHeight: 'Image Height',
labelImageHeightNotMatched: 'Expected image height is {imageHeight}',
labelMinImageHeightExceeded: 'Minimum image height is {minImageHeight}',
labelMaxImageHeightExceeded: 'Maximum image height is {maxImageHeight}',
labelImageDimension: 'Image Dimension',
labelImageResolution: 'Image Resolution',
labelImageResolutionNotMatched: 'Expected image resolution is {imageResolution}',
labelImageAspectRatio: 'Image Aspect Ratio',
labelImageAspectRatioNotMatched: 'Expected image aspect ratio is {imageAspectRatio}',
labelMinImageAspectRatioExceeded: 'Minimum image aspect ratio is {minImageAspectRatio}',
labelMaxImageAspectRatioExceeded: 'Maximum image aspect ratio is {maxImageAspectRatio}',
labelVideoWidth: 'Video Width',
labelVideoWidthNotMatched: 'Expected video width is {videoWidth}',
labelMinVideoWidthExceeded: 'Minimum video width is {minVideoWidth}',
labelMaxVideoWidthExceeded: 'Maximum video width is {maxVideoWidth}',
labelVideoHeight: 'Video Height',
labelVideoHeightNotMatched: 'Expected video height is {videoHeight}',
labelMinVideoHeightExceeded: 'Minimum video height is {minVideoHeight}',
labelMaxVideoHeightExceeded: 'Maximum video height is {maxVideoHeight}',
labelVideoDimension: 'Video Dimension',
labelVideoResolution: 'Video Resolution',
labelVideoResolutionNotMatched: 'Expected video resolution is {videoResolution}',
labelMinVideoResolutionExceeded: 'Minimum video resolution is {minVideoResolution}',
labelMaxVideoResolutionExceeded: 'Maximum video resolution is {maxVideoResolution}',
labelVideoAspectRatio: 'Video Aspect Ratio',
labelVideoAspectRatioNotMatched: 'Expected video aspect ratio is {videoAspectRatio}',
labelMinVideoAspectRatioExceeded: 'Minimum video aspect ratio is {minVideoAspectRatio}',
labelMaxVideoAspectRatioExceeded: 'Maximum video aspect ratio is {maxVideoAspectRatio}',
labelVideoDuration: 'Video Duration',
labelVideoDurationNotMatched: 'Expected video duration is {videoDuration}',
labelMinVideoDurationExceeded: 'Minimum video duration is {minVideoDuration}',
labelMaxVideoDurationExceeded: 'Maximum video duration is {maxVideoDuration}',
labelAudioDuration: 'Audio Duration',
labelAudioDurationNotMatched: 'Expected audio duration is {audioDuration}',
labelMinAudioDurationExceeded: 'Minimum audio duration is {minAudioDuration}',
labelMaxAudioDurationExceeded: 'Maximum audio duration is {maxAudioDuration}',
},
}