diff options
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/name.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mbbsd/name.c b/mbbsd/name.c index 3cb2b698..30ae4473 100644 --- a/mbbsd/name.c +++ b/mbbsd/name.c @@ -264,6 +264,7 @@ namecomplete(char *prompt, char *data) prints("%*s", IDLEN + 1, ""); standend(); move(y, x); + refresh(); while ((ch = igetch()) != EOF) { if (ch == '\n' || ch == '\r') { @@ -293,7 +294,7 @@ namecomplete(char *prompt, char *data) len = MaxLen(morelist, p_lines); move(2, 0); clrtobot(); - printdash("相關資訊一覽表"); + printdash(SHM->i18nstr[cuser.language][1539]); while (len + col < 80) { int i; @@ -417,7 +418,7 @@ usercomplete(char *prompt, char *data) len = UserMaxLen((arrptr) cwlist, cwnum, morenum, p_lines); move(2, 0); clrtobot(); - printdash("使用者代號一覽表"); + printdash(SHM->i18nstr[cuser.language][1540]); while (len + col < 79) { int i; @@ -590,7 +591,7 @@ generalnamecomplete(char *prompt, char *data, int len, size_t nmemb, clearbot = YEA; move(2, 0); clrtobot(); - printdash("相關資訊一覽表"); + printdash(SHM->i18nstr[cuser.language][1541]); col = 0; while (len + col < 79) { |