forked from kakao-tech-campus-2nd-step3/Team18_FE
-
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.
- Loading branch information
Showing
8 changed files
with
84 additions
and
0 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,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: '계약하기', | ||
}, | ||
}; |
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,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', | ||
}, | ||
}; |
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,7 @@ | ||
export const EmployerMyPage = { | ||
GREETING: '사장님, 안녕하세요!', | ||
REGISTER_SIGN: '사인 등록', | ||
MY_COMPANIES: '내 회사', | ||
TOTAL_COMPANIES: (count: number) => `총 ${count} 곳`, | ||
COMPANY_INFO: '회사 정보', | ||
}; |
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,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', | ||
}; |
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,13 @@ | ||
export const MyCompany = { | ||
MY_RECRUITMENTS: '내 공고글', | ||
TOTAL_RECRUITMENTS: (count: number) => `총 ${count}건`, | ||
TABLE_HEADERS: { | ||
LOCATION: '근무지', | ||
TITLE: '공고 제목', | ||
}, | ||
BUTTONS: { | ||
VIEW_APPLICANTS: '지원자 보러가기', | ||
CLOSE_RECRUITMENT: '마감하기', | ||
CLOSED_RECRUITMENT: '마감완료', | ||
}, | ||
}; |
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,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', | ||
}, | ||
}; |
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,8 @@ | ||
export const RegisterVisa = { | ||
TITLE: '외국인 번호 및 비자 발급 일자 등록', | ||
LABELS: { | ||
FOREIGNER_NUMBER: '외국인 번호', | ||
VISA_GENERATE_DATE: '비자 발급 일자', | ||
}, | ||
SUBMIT: '등록하기', | ||
}; |
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,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ý', | ||
}; |