Skip to content

Commit d7ca422

Browse files
committed
更新维护信息显示方式
1 parent f1eaffa commit d7ca422

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/chsrc-main.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ cli_print_target_maintain_info (Target_t *target, const char *input_target_name)
340340
}
341341

342342
{
343-
char *msg = ENGLISH ? "Current Chef: " : "当前主厨: ";
343+
char *msg = ENGLISH ? "Current Chef: " : "品控: ";
344344
if (target->chef)
345345
{
346346
printf ("%s%s <%s>\n", bdblue(msg),
@@ -349,14 +349,14 @@ cli_print_target_maintain_info (Target_t *target, const char *input_target_name)
349349
}
350350
else
351351
{
352-
char *msg1 = CHINESE ? "暂空缺, 欢迎担任!" : "Vacant, Welcome to hold the position";
352+
char *msg1 = CHINESE ? "该 recipe 的负责人暂空缺, 欢迎担任" : "Vacant, Welcome to hold the position";
353353
printf ("%s%s\n", bdblue(msg), bdgreen(msg1));
354354
}
355355
}
356356

357357

358358
{
359-
char *msg = ENGLISH ? "Cooks: " : "掌勺厨师: ";
359+
char *msg = ENGLISH ? "Cooks: " : "掌勺: ";
360360
if (target->cooks && target->cooks_n > 0)
361361
{
362362
printf ("%s", bdblue(msg));
@@ -371,13 +371,13 @@ cli_print_target_maintain_info (Target_t *target, const char *input_target_name)
371371
}
372372
else
373373
{
374-
char *msg1 = CHINESE ? "暂空缺, 欢迎担任!" : "Vacant, Welcome to hold the position!";
374+
char *msg1 = CHINESE ? "暂空缺, 欢迎担任" : "Vacant, Welcome to hold the position";
375375
printf ("%s%s\n", bdblue(msg), bdgreen(msg1));
376376
}
377377
}
378378

379379
{
380-
char *msg = ENGLISH ? "Contributors: " : "贡献者: ";
380+
char *msg = ENGLISH ? "Contributors: " : "调味: ";
381381
if (target->contributors && target->contributors_n > 0)
382382
{
383383
printf ("%s", bdblue(msg));

0 commit comments

Comments
 (0)