-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from gsainfoteam/7-translate-to-english
7 translate to english
- Loading branch information
Showing
1 changed file
with
112 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,114 @@ | ||
export const main = { | ||
title: "Hello, World!", | ||
email: { | ||
label: "Email", | ||
placeholder: "Email", | ||
example: "[email protected] / .gist.ac.kr", | ||
verify: { | ||
action: "Send Verification", | ||
tryLater: | ||
"Verification request is only available once per minute. Please try again later.", | ||
left: "Remaining time: {time}", | ||
wrongEmail: "Please check your email again.", | ||
timeout: "Verification time has expired.", | ||
notVerified: "Unverified email.", | ||
success: "Verification email has been sent.", | ||
error: "Failed to request verification.", | ||
}, | ||
}, | ||
verificationCode: { | ||
label: "Verification Code", | ||
placeholder: "Verification Code", | ||
verify: { | ||
action: "Verify", | ||
complete: "Verification is complete.", | ||
error: "Failed to verify.", | ||
}, | ||
}, | ||
password: { | ||
label: "Password", | ||
placeholder: "Password", | ||
}, | ||
passwordConfirm: { | ||
label: "Password Confirm", | ||
placeholder: "Password Confirm", | ||
error: "Passwords do not match.", | ||
}, | ||
name: { | ||
label: "Name", | ||
placeholder: "Name", | ||
}, | ||
studentId: { | ||
label: "Student ID", | ||
placeholder: "Student ID", | ||
}, | ||
phoneNumber: { | ||
label: "Phone Number", | ||
placeholder: "Phone Number", | ||
}, | ||
login: { | ||
action: "Login", | ||
error: "Failed to login.", | ||
}, | ||
findPassword: { | ||
action: "Find Password", | ||
new: { | ||
label: "New Password", | ||
placeholder: "New Password", | ||
}, | ||
newConfirm: { | ||
label: "New Password Confirm", | ||
placeholder: "New Password Confirm", | ||
}, | ||
change: { | ||
action: "Change Password", | ||
error: "Failed to change password.", | ||
success: "Password has been changed.", | ||
}, | ||
}, | ||
register: { | ||
action: "Register", | ||
back: "Back to login page", | ||
duplicate: "Email already exists.", | ||
error: "Failed to register.", | ||
success: "Registration is complete.", | ||
}, | ||
profile: { | ||
userInfo: "User Information", | ||
edit: "Edit", | ||
services: { | ||
title: "Connected Services", | ||
ziggle: { | ||
title: "Ziggle", | ||
description: "Every notices in GIST at a glance", | ||
}, | ||
andromeda: { | ||
title: "andromeda", | ||
description: "새롭고 빛나는 수강평 서비스", | ||
}, | ||
}, | ||
connected: "Connected", | ||
connect: "Connect Now", | ||
withdraw: { | ||
action: "Delete Account", | ||
confirm: | ||
"Are you sure you want to delete your account? You cannot use the connected services after withdrawal.", | ||
progress: "Deleting account...", | ||
cancel: "Cancel", | ||
fail: "Failed to withdraw.", | ||
success: "Account has been deleted.", | ||
}, | ||
}, | ||
authorize: { | ||
title: "'{{application}}' wants to use GSA integrated account for login", | ||
description: "{{application}} is requesting access to the following items", | ||
action: "Agree", | ||
scopes: { | ||
openid: "OpenID", | ||
offline_access: "Offline Access", | ||
profile: "Profile", | ||
email: "Email", | ||
phone: "Phone Number", | ||
student_id: "Student ID", | ||
}, | ||
}, | ||
}; |