-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocale.ts
63 lines (63 loc) · 2.21 KB
/
locale.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
export default {
header: "A Singapore Government Agency Website",
title: "Verifiable Credential Sample App",
subtitle:
"Select request or verify to test out Corporate Verifiable user flow.",
button: {
request: "Request",
verify: "Verify",
resetVerify: "Reset",
ok: "Ok",
copy: "Copy to clipboard",
loading: "Loading...",
},
request: {
tabButton: "Request for a Corporate VC",
title: "Corporate Verifiable Credential Configuration",
subtitle: "Below configurations can be found in file directory `/config`",
notice: "You will be directed to Corppass to retrieve your Corporate data.",
step1: "Generating unique Tokens",
step2: "Getting your Code Challenge with your Ethereum Address",
step3: "Signing Code Challenge with your Ethereum Private Keys",
step4: "Retrieving Verifiable Credential",
response: {
title: "Your Corporate Verifiable Credential",
successBanner:
"Request for a Corporate Verifiable Credential is successful.",
reset: "You can {{ link }} now.",
link: "verify your Corporate Verifiable Credential",
failed: {
getSignedCodeChallenge: "Failed to get signed Code Challenge",
codeChallenge: "Failed to get Code Challenge",
verifyCodeChallenge: "Failed to verify Code Challenge",
verifyEthereumAddress: "Failed to verify Ethereum Address",
getMyInfoData: "Failed to get MyInfo data",
getVc: "Failed to get Corporate Verifiable Credential",
},
},
},
verify: {
tabButton: "Verify a Corporate VC",
title: "Corporate Verifiable Credential",
subtitle: "Paste your Corporate VC to verify",
step1: "Resolve DID Documents",
step2: "Verifying your VC",
step3: "Getting your revocation list",
step4: "Verifying your VC revocation status",
response: {
successBanner:
"Corporate Verifiable Credential verification is successful.",
failedBanner: "Invalid Corporate Verifiable Credential",
},
},
dialog: {
title: {
request: "Requesting...",
verify: "Verifying...",
success: "Successful",
failed: "Unsuccessful",
},
defaultErrMsg: "Please try again later.",
},
copySuccess: "Text copied",
};