Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add New Language: Korean (C / Python) #316

Open
wants to merge 1 commit into
base: korean-translation
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
134 changes: 67 additions & 67 deletions locale/language-keyword-template.yml → locale/ko.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,38 +148,38 @@ while: ""
# | LANGUAGE: C |
# ----------------------
# << Keywords >>
auto: ""
double: ""
int: ""
struct: ""
break: ""
else: ""
long: ""
switch: ""
case: ""
enum: ""
register: ""
typedef: ""
char: ""
extern: ""
return: ""
union: ""
const: ""
float: ""
short: ""
unsigned: ""
continue: ""
for: ""
signed: ""
void: ""
default: ""
goto: ""
sizeof: ""
volatile: ""
do: ""
if: ""
static: ""
while: ""
auto: "자동"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
auto: "자동"
auto: "자동"
# ✅ @jehwison - (feel free to add any comments here, if desired)

double: "이중정밀도"
int: "정수"
struct: "구조체"
break: "중단"
else: "아니면"
long: "긴정수"
switch: "전환"
case: "경우"
enum: "열거형"
register: "레지스터"
typedef: "형식 정의"
char: "문자"
extern: "외부"
return: "반환"
union: "공용체"
const: "상수"
float: "부동소수점"
short: "짧은정수"
unsigned: "부호없는"
continue: "계속"
for: "반복"
signed: "부호있는"
void: "공백"
default: "기본"
goto: "이동"
sizeof: "크기"
volatile: "불변"
do: "수행"
if: "만약"
static: "정적"
while: "동안"

# << Error Messages >>

Expand Down Expand Up @@ -1248,41 +1248,41 @@ __TRAIT__: ""
# | LANGUAGE: PYTHON |
# ----------------------
# << Keywords >>
False: ""
None: ""
True: ""
and: ""
as: ""
assert: ""
async: ""
await: ""
break: ""
class: ""
continue: ""
def: ""
del: ""
elif: ""
else: ""
except: ""
finally: ""
for: ""
from: ""
global: ""
if: ""
import: ""
in: ""
is: ""
lambda: ""
nonlocal: ""
not: ""
or: ""
pass: ""
raise: ""
return: ""
try: ""
while: ""
with: ""
yield: ""
False: "거짓"
None: "값이 없음"
True: "진실"
and: "이고"
as: "별칭"
assert: "확인"
async: "비동기"
await: "대기"
break: "탈출"
class: "분류"
continue: "계속"
def: "정의"
del: "삭제"
elif: "아니면 만약"
else: "아니면"
except: "예외"
finally: "마지막으로"
for: "반복"
from: "부터"
global: "전역"
if: "만약"
import: "가져오기"
in: "속해 있는"
is: "동일"
lambda: "익명함수"
nonlocal: "비지역"
not: "아니다"
or: "이거나"
pass: "작업 없음"
raise: "예외 발생"
return: "반환"
try: "시도"
while: "동안"
with: "사용하기"
yield: "내어주기"

# << Built-In Functions >>

Expand Down