-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Setting, Waiting page locale #39
- Loading branch information
1 parent
05009f3
commit 6dba3d3
Showing
7 changed files
with
42 additions
and
2 deletions.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"info": { | ||
"permission": "Please set microphone permission to Allow for voice calls!" | ||
}, | ||
"button": { | ||
"next": "Start Matching", | ||
"back": "Back" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"info": "Looking for someone else", | ||
"cancel": "Cancel Matching" | ||
} |
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,19 +1,31 @@ | ||
import MainKr from "./ko/Main.kr.json"; | ||
import LoginKr from "./ko/Login.kr.json"; | ||
import ProfileKr from "./ko/Profile.kr.json"; | ||
import SettingKr from "./ko/Setting.kr.json"; | ||
import WaitingKr from "./ko/Waiting.kr.json"; | ||
import CallKr from "./ko/Call.kr.json"; | ||
|
||
import MainEn from "./en/Main.en.json"; | ||
import LoginEn from "./en/Login.en.json"; | ||
import ProfileEN from "./en/Profile.en.json"; | ||
import ProfileEn from "./en/Profile.en.json"; | ||
import SettingEn from "./en/Setting.en.json"; | ||
import WaitingEn from "./en/Waiting.en.json"; | ||
import CallEn from "./en/Call.en.json"; | ||
|
||
export const translationKr = { | ||
login: LoginKr, | ||
main: MainKr, | ||
profile: ProfileKr, | ||
setting: SettingKr, | ||
waiting: WaitingKr, | ||
call: CallKr, | ||
}; | ||
|
||
export const translationEn = { | ||
login: LoginEn, | ||
main: MainEn, | ||
profile: ProfileEN, | ||
profile: ProfileEn, | ||
setting: SettingEn, | ||
waiting: WaitingEn, | ||
call: CallEn, | ||
}; |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"info": { | ||
"permission": "음성 통화를 위해 마이크 권한을 허용으로 설정해 주세요!" | ||
}, | ||
"button": { | ||
"next": "매칭 시작하기", | ||
"back": "뒤로 가기" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"info": "상대방을 찾는 중입니다", | ||
"cancel": "매칭 취소하기" | ||
} |