Skip to content

Commit 9c986af

Browse files
authored
Merge pull request #294 from ChoccoJang/feature/add-language-korean-error-fix
Feature/add language korean error fix
2 parents cc8a0cf + 8d93c8b commit 9c986af

144 files changed

Lines changed: 3693 additions & 8 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

worklenz-backend/database/sql/1_tables.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ CREATE TYPE DEPENDENCY_TYPE AS ENUM ('blocked_by');
1212

1313
CREATE TYPE SCHEDULE_TYPE AS ENUM ('daily', 'weekly', 'yearly', 'monthly', 'every_x_days', 'every_x_weeks', 'every_x_months');
1414

15-
CREATE TYPE LANGUAGE_TYPE AS ENUM ('en', 'es', 'pt', 'alb', 'de', 'zh_cn');
15+
CREATE TYPE LANGUAGE_TYPE AS ENUM ('en', 'es', 'pt', 'alb', 'de', 'zh_cn', 'ko');
1616

1717
-- START: Users
1818
CREATE SEQUENCE IF NOT EXISTS users_user_no_seq START 1;
@@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS project_access_levels (
3434
ALTER TABLE project_access_levels
3535
ADD CONSTRAINT project_access_levels_pk
3636
PRIMARY KEY (id);
37-
37+
3838
CREATE TABLE IF NOT EXISTS countries (
3939
id UUID DEFAULT uuid_generate_v4() NOT NULL,
4040
code CHAR(2) NOT NULL,

worklenz-backend/src/controllers/task-comments-controller.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import WorklenzControllerBase from "./worklenz-controller-base";
77
import HandleExceptions from "../decorators/handle-exceptions";
88
import { NotificationsService } from "../services/notifications/notifications.service";
99
import { humanFileSize, log_error, megabytesToBytes } from "../shared/utils";
10-
import { HTML_TAG_REGEXP, S3_URL } from "../shared/constants";
10+
import { HTML_TAG_REGEXP, S3_URL, getStorageUrl } from "../shared/constants";
1111
import { getBaseUrl } from "../cron_jobs/helpers";
1212
import { ICommentEmailNotification } from "../interfaces/comment-email-notification";
1313
import { sendTaskComment } from "../shared/email-notifications";
@@ -382,7 +382,7 @@ export default class TaskCommentsController extends WorklenzControllerBase {
382382
}
383383

384384
private static async getTaskComments(taskId: string) {
385-
const url = `${S3_URL}/${getRootDir()}`;
385+
const url = `${getStorageUrl()}/${getRootDir()}`;
386386

387387
const q = `SELECT task_comments.id,
388388
tc.text_content AS content,
@@ -567,7 +567,7 @@ export default class TaskCommentsController extends WorklenzControllerBase {
567567

568568
const commentId = data.id;
569569

570-
const url = `${S3_URL}/${getRootDir()}`;
570+
const url = `${getStorageUrl()}/${getRootDir()}`;
571571

572572
for (const attachment of attachments) {
573573
if (req.user?.subscription_status === "free" && req.user?.owner_id) {
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"doesNotExistText": "죄송합니다. 방문한 페이지는 존재하지 않습니다.",
3+
"backHomeButton": "집으로 돌아와"
4+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"continue": "계속하다",
3+
"setupYourAccount": "Worklenz 계정을 설정하십시오.",
4+
"organizationStepTitle": "조직의 이름을 지정하십시오",
5+
"organizationStepLabel": "WorkLenz 계정의 이름을 선택하십시오.",
6+
"projectStepTitle": "첫 번째 프로젝트를 만듭니다",
7+
"projectStepLabel": "지금 어떤 프로젝트를 진행하고 있습니까?",
8+
"projectStepPlaceholder": "예를 들어 마케팅 계획",
9+
"tasksStepTitle": "첫 번째 작업을 만듭니다",
10+
"tasksStepLabel": "당신이 할 몇 가지 작업을 입력하십시오.",
11+
"tasksStepAddAnother": "다른 추가",
12+
"emailPlaceholder": "이메일 주소",
13+
"invalidEmail": "유효한 이메일 주소를 입력하십시오",
14+
"or": "또는",
15+
"templateButton": "템플릿에서 가져옵니다",
16+
"goBack": "돌아 가라",
17+
"cancel": "취소",
18+
"create": "만들다",
19+
"templateDrawerTitle": "템플릿에서 선택하십시오",
20+
"step3InputLabel": "이메일로 초대하십시오",
21+
"addAnother": "다른 추가",
22+
"skipForNow": "지금은 건너 뜁니다",
23+
"formTitle": "첫 번째 작업을 만듭니다.",
24+
"step3Title": "팀과 함께 일하도록 초대하십시오",
25+
"maxMembers": "(최대 5 명의 회원을 초대 할 수 있습니다)",
26+
"maxTasks": "(최대 5 개의 작업을 만들 수 있습니다)"
27+
}
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
{
2+
"title": "청구",
3+
"currentBill": "현재 청구서",
4+
"configuration": "구성",
5+
"currentPlanDetails": "현재 계획 세부 사항",
6+
"upgradePlan": "업그레이드 계획",
7+
"cardBodyText01": "무료 평가판",
8+
"cardBodyText02": "(시험 계획은 1 개월 19 일 안에 만료됩니다)",
9+
"redeemCode": "코드를 상환합니다",
10+
"accountStorage": "계정 저장",
11+
"used": "사용된:",
12+
"remaining": "나머지 :",
13+
"charges": "요금",
14+
"tooltip": "현재 청구주기에 대한 요금",
15+
"description": "설명",
16+
"billingPeriod": "청구 기간",
17+
"billStatus": "청구서 상태",
18+
"perUserValue": "사용자 값에 따라",
19+
"users": "사용자",
20+
"amount": "",
21+
"invoices": "송장",
22+
"transactionId": "거래 ID",
23+
"transactionDate": "거래 날짜",
24+
"paymentMethod": "지불 방법",
25+
"status": "상태",
26+
"ltdUsers": "{{ltd_users}} 사용자에 추가 할 수 있습니다.",
27+
"totalSeats": "총 좌석",
28+
"availableSeats": "사용 가능한 좌석",
29+
"addMoreSeats": "더 많은 좌석을 추가하십시오",
30+
"drawerTitle": "코드를 상환합니다",
31+
"label": "코드를 상환합니다",
32+
"drawerPlaceholder": "사용 코드를 입력하십시오",
33+
"redeemSubmit": "제출하다",
34+
"modalTitle": "팀에 가장 적합한 계획을 선택하십시오",
35+
"seatLabel": "좌석이 없습니다",
36+
"freePlan": "자유 계획",
37+
"startup": "스타트 업",
38+
"business": "사업",
39+
"tag": "가장 인기가 있습니다",
40+
"enterprise": "기업",
41+
"freeSubtitle": "영원히 무료",
42+
"freeUsers": "개인 용도에 가장 적합합니다",
43+
"freeText01": "100MB 스토리지",
44+
"freeText02": "3 프로젝트",
45+
"freeText03": "5 팀원",
46+
"startupSubtitle": "고정 요금 / 월",
47+
"startupUsers": "최대 15 명의 사용자",
48+
"startupText01": "25GB 스토리지",
49+
"startupText02": "무제한 활성 프로젝트",
50+
"startupText03": "일정",
51+
"startupText04": "보고",
52+
"startupText05": "프로젝트를 구독하십시오",
53+
"businessSubtitle": "사용자 / 월",
54+
"businessUsers": "16-200 명의 사용자",
55+
"enterpriseUsers": "200-500 명 이상의 사용자",
56+
"footerTitle": "연락하는 데 사용할 수있는 연락처를 제공하십시오.",
57+
"footerLabel": "연락처 번호",
58+
"footerButton": "저희에게 연락하십시오",
59+
"redeemCodePlaceHolder": "사용 코드를 입력하십시오",
60+
"submit": "제출하다",
61+
"trialPlan": "무료 평가판",
62+
"trialExpireDate": "{{vrient_expire_date}}까지 유효합니다.",
63+
"trialExpired": "무료 평가판 만료 {{vrient_expire_string}}",
64+
"trialInProgress": "무료 평가판은 {{vrient_expire_string}}가 만료됩니다.",
65+
"required": "이 필드가 필요합니다",
66+
"invalidCode": "잘못된 코드",
67+
"selectPlan": "팀에 가장 적합한 계획을 선택하십시오",
68+
"changeSubscriptionPlan": "구독 계획을 변경하십시오",
69+
"noOfSeats": "좌석 수",
70+
"annualPlan": "프로 - 연례",
71+
"monthlyPlan": "프로 - 월별",
72+
"freeForever": "영원히 무료",
73+
"bestForPersonalUse": "개인 용도에 가장 적합합니다",
74+
"storage": "저장",
75+
"projects": "프로젝트",
76+
"teamMembers": "팀원",
77+
"unlimitedTeamMembers": "무제한 팀원",
78+
"unlimitedActiveProjects": "무제한 활성 프로젝트",
79+
"schedule": "일정",
80+
"reporting": "보고",
81+
"subscribeToProjects": "프로젝트를 구독하십시오",
82+
"billedAnnually": "매년 청구됩니다",
83+
"billedMonthly": "매월 청구",
84+
"pausePlan": "일시 정지 계획",
85+
"resumePlan": "이력서 계획",
86+
"changePlan": "변경 계획",
87+
"cancelPlan": "계획을 취소하십시오",
88+
"perMonthPerUser": "사용자/월별",
89+
"viewInvoice": "송장을 봅니다",
90+
"switchToFreePlan": "무료 계획으로 전환하십시오",
91+
"expirestoday": "오늘",
92+
"expirestomorrow": "내일",
93+
"expiredDaysAgo": "{{days}} 며칠 전",
94+
"continueWith": "{{plan}} 계속 계속",
95+
"changeToPlan": "{{plan}}로 변경",
96+
"creditPlan": "신용 계획",
97+
"customPlan": "맞춤형 계획",
98+
"planValidTill": "귀하의 계획은 {{date}}까지 유효합니다.",
99+
"purchaseSeatsText": "계속하려면 추가 좌석을 구매해야합니다.",
100+
"currentSeatsText": "현재 {{seats}} 좌석이 있습니다.",
101+
"selectSeatsText": "구매할 추가 좌석 수를 선택하십시오.",
102+
"purchase": "구입",
103+
"contactSales": "연락 판매"
104+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"overview": "개요",
3+
"name": "조직 이름",
4+
"owner": "조직 소유자",
5+
"admins": "조직 관리자",
6+
"contactNumber": "연락처 번호를 추가하십시오",
7+
"edit": "편집하다"
8+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"membersCount": "회원 수",
3+
"createdAt": "만들어졌습니다",
4+
"projectName": "프로젝트 이름",
5+
"teamName": "팀 이름",
6+
"refreshProjects": "새로 고침 프로젝트",
7+
"searchPlaceholder": "프로젝트 이름으로 검색하십시오",
8+
"deleteProject": "이 프로젝트를 삭제 하시겠습니까?",
9+
"confirm": "확인하다",
10+
"cancel": "취소",
11+
"delete": "프로젝트 삭제"
12+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"overview": "개요",
3+
"users": "사용자",
4+
"teams": "",
5+
"billing": "청구",
6+
"projects": "프로젝트",
7+
"adminCenter": "관리 센터"
8+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"title": "",
3+
"subtitle": "",
4+
"tooltip": "새로 고침 팀",
5+
"placeholder": "이름으로 검색하십시오",
6+
"addTeam": "팀 추가",
7+
"team": "",
8+
"membersCount": "회원 수",
9+
"members": "회원",
10+
"drawerTitle": "새로운 팀을 만듭니다",
11+
"label": "팀 이름",
12+
"drawerPlaceholder": "이름",
13+
"create": "만들다",
14+
"delete": "삭제",
15+
"settings": "설정",
16+
"popTitle": "확실합니까?",
17+
"message": "이름을 입력하십시오",
18+
"teamSettings": "팀 설정",
19+
"teamName": "팀 이름",
20+
"teamDescription": "팀 설명",
21+
"teamMembers": "팀원",
22+
"teamMembersCount": "팀원 수",
23+
"teamMembersPlaceholder": "이름으로 검색하십시오",
24+
"addMember": "회원 추가",
25+
"add": "추가하다",
26+
"update": "업데이트",
27+
"teamNamePlaceholder": "팀의 이름",
28+
"user": "사용자",
29+
"role": "역할",
30+
"owner": "소유자",
31+
"admin": "관리자",
32+
"member": "회원",
33+
"cannotChangeOwnerRole": "소유자 역할은 변경 될 수 없습니다",
34+
"pendingInvitation": "보류중인 초대"
35+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"title": "사용자",
3+
"subTitle": "사용자",
4+
"placeholder": "이름으로 검색하십시오",
5+
"user": "사용자",
6+
"email": "이메일",
7+
"lastActivity": "마지막 활동",
8+
"refresh": "새로 고침"
9+
}

0 commit comments

Comments
 (0)