Skip to content

Commit

Permalink
feat: 번역 데이터 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
KimJi-An committed Nov 4, 2024
1 parent 4918010 commit 054d717
Show file tree
Hide file tree
Showing 8 changed files with 84 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/assets/translator/Applicants/ko.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export const Applicants = {
APPLICANT_LIST: '지원자 목록',
TOTAL_APPLICANTS: (count: number) => `총 ${count}명`,
VIEW_DETAILS: '자세히 보러가기',
TABLE_HEADERS: {
NAME: '이름',
NATION: '국적',
KOREAN_LANGUAGE_LEVEL: '한국어 실력',
},
BUTTONS: {
VIEW_RESUME: '지원서',
CREATE_CONTRACT: '계약하기',
},
};
14 changes: 14 additions & 0 deletions src/assets/translator/Applicants/ve.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export const Applicants = {
APPLICANT_LIST: 'Danh sách ứng viên',
TOTAL_APPLICANTS: (count: number) => `Tổng cộng ${count} người`,
VIEW_DETAILS: 'Xem chi tiết',
TABLE_HEADERS: {
NAME: 'Tên',
NATION: 'Quốc tịch',
KOREAN_LANGUAGE_LEVEL: 'Trình độ tiếng Hàn',
},
BUTTONS: {
VIEW_RESUME: 'Hồ sơ ứng tuyển',
CREATE_CONTRACT: 'Ký hợp đồng',
},
};
7 changes: 7 additions & 0 deletions src/assets/translator/EmployerMyPage/ko.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export const EmployerMyPage = {
GREETING: '사장님, 안녕하세요!',
REGISTER_SIGN: '사인 등록',
MY_COMPANIES: '내 회사',
TOTAL_COMPANIES: (count: number) => `총 ${count} 곳`,
COMPANY_INFO: '회사 정보',
};
7 changes: 7 additions & 0 deletions src/assets/translator/EmployerMyPage/ve.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export const EmployerMyPage = {
GREETING: 'Chủ doanh nghiệp, xin chào!',
REGISTER_SIGN: 'Đăng ký chữ ký',
MY_COMPANIES: 'Công ty của tôi',
TOTAL_COMPANIES: (count: number) => `Tổng cộng ${count} công ty`,
COMPANY_INFO: 'Thông tin công ty',
};
13 changes: 13 additions & 0 deletions src/assets/translator/MyCompany/ko.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export const MyCompany = {
MY_RECRUITMENTS: '내 공고글',
TOTAL_RECRUITMENTS: (count: number) => `총 ${count}건`,
TABLE_HEADERS: {
LOCATION: '근무지',
TITLE: '공고 제목',
},
BUTTONS: {
VIEW_APPLICANTS: '지원자 보러가기',
CLOSE_RECRUITMENT: '마감하기',
CLOSED_RECRUITMENT: '마감완료',
},
};
13 changes: 13 additions & 0 deletions src/assets/translator/MyCompany/ve.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export const MyCompany = {
MY_RECRUITMENTS: 'Thông báo tuyển dụng của tôi',
TOTAL_RECRUITMENTS: (count: number) => `Tổng cộng ${count} bài`,
TABLE_HEADERS: {
LOCATION: 'Nơi làm việc',
TITLE: 'Tiêu đề thông báo',
},
BUTTONS: {
VIEW_APPLICANTS: 'Xem người ứng tuyển',
CLOSE_RECRUITMENT: 'Đóng tuyển dụng',
CLOSED_RECRUITMENT: 'Đã đóng tuyển dụng',
},
};
8 changes: 8 additions & 0 deletions src/assets/translator/RegisterVisa/ko.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export const RegisterVisa = {
TITLE: '외국인 번호 및 비자 발급 일자 등록',
LABELS: {
FOREIGNER_NUMBER: '외국인 번호',
VISA_GENERATE_DATE: '비자 발급 일자',
},
SUBMIT: '등록하기',
};
8 changes: 8 additions & 0 deletions src/assets/translator/RegisterVisa/ve.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export const RegisterVisa = {
TITLE: 'Đăng ký số người nước ngoài và ngày cấp thị thực',
LABELS: {
FOREIGNER_NUMBER: 'Số người nước ngoài',
VISA_GENERATE_DATE: 'Ngày cấp thị thực',
},
SUBMIT: 'Đăng ký',
};

0 comments on commit 054d717

Please sign in to comment.