diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-02-15 23:10:18 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-02-15 23:10:18 +0800 |
commit | c10117c7559f93934919890d113d63b2379ce50d (patch) | |
tree | f970f3627b69b7757469da5e451a1eb7f94fe8af /mbbsd/admin.c | |
parent | ad8b18c36c5fa594faca4fc0d5f844f212aadd58 (diff) | |
download | pttbbs-c10117c7559f93934919890d113d63b2379ce50d.tar pttbbs-c10117c7559f93934919890d113d63b2379ce50d.tar.gz pttbbs-c10117c7559f93934919890d113d63b2379ce50d.tar.bz2 pttbbs-c10117c7559f93934919890d113d63b2379ce50d.tar.lz pttbbs-c10117c7559f93934919890d113d63b2379ce50d.tar.xz pttbbs-c10117c7559f93934919890d113d63b2379ce50d.tar.zst pttbbs-c10117c7559f93934919890d113d63b2379ce50d.zip |
- change BIG5 ':' to SBCS, more convenient for admins to copy/paste data. (suggested by daiYuTsung@ptt2)
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3923 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/admin.c')
-rw-r--r-- | mbbsd/admin.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mbbsd/admin.c b/mbbsd/admin.c index a49bed21..29c39e41 100644 --- a/mbbsd/admin.c +++ b/mbbsd/admin.c @@ -860,7 +860,7 @@ x_file(void) return FULLUPDATE; } aborted = vedit(fpath, NA, NULL); - vmsgf("\n\n系統檔案[%s]:%s", fpath, + vmsgf("\n\n系統檔案[%s]: %s", fpath, (aborted == -1) ? "未改變" : "更新完畢"); return FULLUPDATE; } @@ -1233,21 +1233,21 @@ scan_register_form(const char *regfile, int automode, int neednum) move(1, 0); clrtobot(); - prints("帳號位置 :%d\n", unum); + prints("帳號位置 : %d\n", unum); user_display(&muser, 1); move(14, 0); prints(ANSI_COLOR(1;32) "------------- " "請站長嚴格審核使用者資料,您還有 %d 份" "---------------" ANSI_RESET "\n", neednum); - prints(" %-12s:%s\n", finfo[0], fdata[0]); + prints(" %-12s: %s\n", finfo[0], fdata[0]); #ifdef FOREIGN_REG - prints("0.%-12s:%s%s\n", finfo[1], fdata[1], + prints("0.%-12s: %s%s\n", finfo[1], fdata[1], muser.uflag2 & FOREIGN ? " (外籍)" : ""); #else - prints("0.%-12s:%s\n", finfo[1], fdata[1]); + prints("0.%-12s: %s\n", finfo[1], fdata[1]); #endif for (n = 2; field[n]; n++) { - prints("%d.%-12s:%s\n", n - 1, finfo[n], fdata[n]); + prints("%d.%-12s: %s\n", n - 1, finfo[n], fdata[n]); } if (muser.userlevel & PERM_LOGINOK) { ans[0] = getkey("此帳號已經完成註冊, " @@ -1312,7 +1312,7 @@ scan_register_form(const char *regfile, int automode, int neednum) buf[0] = ans[0]; if (ans[0] != 'n' || - getdata(9 + n, 0, "退回原因:", buf, 60, DOECHO)) + getdata(9 + n, 0, "退回原因: ", buf, 60, DOECHO)) if ((buf[0] - '0') >= 0 && (buf[0] - '0') < n) { int i; fileheader_t mhdr; |