Skip to content

Commit

Permalink
fix: in progress wording (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
chiol authored Dec 11, 2023
1 parent 6b9e880 commit 459ba11
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
7 changes: 4 additions & 3 deletions apps/web/public/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@
"total-channel": "Total Channel",
"total-feedback": "Total Feedback",
"create-project": "Create Project",
"no-project": "There are no registered projects.",
"in-progress": "In Progress"
"no-project": "There are no registered projects."
},
"profile": {
"title": "Profile",
Expand Down Expand Up @@ -314,7 +313,9 @@
"guide": "Guide",
"more": "more",
"shrink": "shrink",
"feedback-detail": "Feedback Detail"
"feedback-detail": "Feedback Detail",
"create-channel-in-progress": "There is a Channel being created.",
"create-project-in-progress": "There is a Project being created."
},
"toast": {
"sign-in": "Login Successful",
Expand Down
7 changes: 4 additions & 3 deletions apps/web/public/locales/ja/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@
"total-channel": "全チャンネル数",
"total-feedback": "全体フィードバック数",
"create-project": "Project生成",
"no-project": "登録されたプロジェクトがありません。",
"in-progress": "進行中"
"no-project": "登録されたプロジェクトがありません。"
},
"profile": {
"title": "プロフィール",
Expand Down Expand Up @@ -314,7 +313,9 @@
"guide": "案内",
"more": "もっと",
"shrink": "縮む",
"feedback-detail": "フィードバック詳細"
"feedback-detail": "フィードバック詳細",
"create-channel-in-progress": "作成中のChannelがあります。",
"create-project-in-progress": "作成中のProjectがあります。"
},
"toast": {
"sign-in": "ログイン成功",
Expand Down
7 changes: 4 additions & 3 deletions apps/web/public/locales/ko/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@
"total-channel": "전체 Channel 수",
"total-feedback": "전체 피드백 수",
"create-project": "Project 생성",
"no-project": "등록된 프로젝트가 없습니다.",
"in-progress": "진행중"
"no-project": "등록된 프로젝트가 없습니다."
},
"profile": {
"title": "프로필",
Expand Down Expand Up @@ -314,7 +313,9 @@
"guide": "안내",
"more": "더보기",
"shrink": "줄이기",
"feedback-detail": "피드백 상세"
"feedback-detail": "피드백 상세",
"create-channel-in-progress": "생성중인 Channel이 있습니다.",
"create-project-in-progress": "생성중인 Project가 있습니다."
},
"toast": {
"sign-in": "로그인 성공",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const CreateChannelButton: React.FC<IProps> = (props) => {
</button>
</TooltipTrigger>
<TooltipContent color="red">
{t('main.index.in-progress')}{' '}
{t('text.create-channel-in-progress')}{' '}
<b>
({step + 1}/{CHANNEL_STEPS.length})
</b>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const CreateProjectButton: React.FC<IProps> = ({ hasProject }) => {
{!hasProject && t('main.index.no-project')}
{hasProject && step > 0 && (
<>
{t('main.index.in-progress')}{' '}
{t('text.create-project-in-progress')}{' '}
<b>
({step + 1}/{PROJECT_STEPS.length})
</b>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/etc/NoChannel/NoChannel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const NoChannel: React.FC<IProps> = ({ projectId }) => {
</button>
</TooltipTrigger>
<TooltipContent color="blue">
{t('main.index.in-progress')}{' '}
{t('text.create-channel-in-progress')}{' '}
<b>
({step + 1}/{CHANNEL_STEPS.length})
</b>
Expand Down

0 comments on commit 459ba11

Please sign in to comment.