-
Notifications
You must be signed in to change notification settings - Fork 354
Expand file tree
/
Copy pathen.tsx
More file actions
30 lines (29 loc) · 762 Bytes
/
en.tsx
File metadata and controls
30 lines (29 loc) · 762 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
import { PickersUiDictionaryModel } from "@/features/localization/models/ui/pickers-ui-dictionary.model";
export const enPickersUiDictionary: PickersUiDictionaryModel = {
algPicker: {
label: "Algorithm",
compactLabel: "Alg",
description: "Generate a JWT",
},
exampleAlgPicker: {
label: "Generate example",
compactLabel: "Alg",
defaultValue: "Select signing algorithm",
description: "Generate a JWT",
closeButton: {
label: "Close signing algorithm list",
},
},
encodingFormatPicker: {
label: "Encoding Format",
},
publicKeyFormatPicker: {
label: "Public Key Format",
},
privateKeyFormatPicker: {
label: "Private Key Format",
},
base64checkbox: {
label: "Base64URL Encoded",
},
};