diff options
-rw-r--r-- | include/common.h | 2 | ||||
-rw-r--r-- | mbbsd/bbs.c | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/common.h b/include/common.h index b2371f1d..0309d943 100644 --- a/include/common.h +++ b/include/common.h @@ -107,7 +107,7 @@ ANSI_COLOR(31) "(x)" ANSI_COLOR(30) "轉錄 "\ ANSI_COLOR(31) "(=[]<>)" ANSI_COLOR(30) "相關主題"\ ANSI_COLOR(31) "(/?a)" ANSI_COLOR(30) "搜尋標題/作者 "\ - ANSI_COLOR(31) "(i)" ANSI_COLOR(30) "看板設定"\ + ANSI_COLOR(31) "(b)" ANSI_COLOR(30) "進板畫面"\ "" #define MSG_MAILER_LEN (78) #define MSG_MAILER \ diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c index d4430fe5..cce0ff26 100644 --- a/mbbsd/bbs.c +++ b/mbbsd/bbs.c @@ -407,7 +407,7 @@ readtitle(void) brd_title = bp->title + 7; showtitle(currBM, brd_title); - outs("[←]離開 [→]閱\讀 [^P]發表文章 [b]備忘錄 [d]刪除 [z]精華區 [TAB]文摘 [h]說明\n"); + outs("[←]離開 [→]閱\讀 [^P]發表文章 [d]刪除 [z]精華區 [i]看板資訊/設定 [h]說明\n"); prints(ANSI_COLOR(7) " 編號 %s 作 者 文 章 標 題", IS_LISTING_MONEY ? listmode_desc[LISTMODE_MONEY] : listmode_desc[currlistmode]); @@ -3483,7 +3483,7 @@ tar_addqueue(void) #endif /* ----------------------------------------------------- */ -/* 看板備忘錄、文摘、精華區 */ +/* 看板進板畫面、文摘、精華區 */ /* ----------------------------------------------------- */ int b_note_edit_bname(int bid) @@ -3588,7 +3588,7 @@ b_notes(void) { clear(); move(4, 20); - outs("本看板尚無「備忘錄」。"); + outs("本看板尚無進板畫面。"); } if(mr != READ_NEXT) pressanykey(); |