diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-27 20:33:35 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-07-27 20:33:35 +0800 |
commit | 10a8a031071742de4c4aadb5d4f81e89f03e5b85 (patch) | |
tree | 7074fe0750dd61430436dd38e76244657593719d | |
parent | 028ae0c1848aae10faab7783164abbd2ddc8a8d7 (diff) | |
download | pttbbs-10a8a031071742de4c4aadb5d4f81e89f03e5b85.tar pttbbs-10a8a031071742de4c4aadb5d4f81e89f03e5b85.tar.gz pttbbs-10a8a031071742de4c4aadb5d4f81e89f03e5b85.tar.bz2 pttbbs-10a8a031071742de4c4aadb5d4f81e89f03e5b85.tar.lz pttbbs-10a8a031071742de4c4aadb5d4f81e89f03e5b85.tar.xz pttbbs-10a8a031071742de4c4aadb5d4f81e89f03e5b85.tar.zst pttbbs-10a8a031071742de4c4aadb5d4f81e89f03e5b85.zip |
make msg verbose
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2966 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | mbbsd/announce.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mbbsd/announce.c b/mbbsd/announce.c index 83a55ac0..73616dd5 100644 --- a/mbbsd/announce.c +++ b/mbbsd/announce.c @@ -152,8 +152,7 @@ a_copyitem(const char *fpath, const char *title, const char *owner, int mode) prints("目前已標記 %d 個檔案。[注意] 拷貝後才能刪除原文!", copyqueue_querysize()); #else - vmsg("目前已複製 %d 個項目 [注意]貼上(p)或附加(a)後才能刪除原文!", - copyqueue_querysize()); + vmsg("[注意] 提醒您複製/標記後要貼上(p)或附加(a)後才能刪除原文!"); flFirstAlert = 0; #endif } @@ -226,9 +225,9 @@ a_showmenu(const menu_t * pm) if(copyqueue_querysize() > 0) { // something in queue prints( - ANSI_COLOR(37;44) "【已標記 %d 個項目】" + ANSI_COLOR(37;44) "【已標記(複製) %d 個項目】" ANSI_COLOR(31;47) " (h)" ANSI_COLOR(30) "說明 " - ANSI_COLOR(31) "(c)" ANSI_COLOR(30) "標記 " + ANSI_COLOR(31) "(c)" ANSI_COLOR(30) "標記/複製 " ANSI_COLOR(31) "(p)" ANSI_COLOR(30) "貼上/取消/重設標記 " ANSI_COLOR(31) "(a)" ANSI_COLOR(30) "附加至文章後 " // ANSI_COLOR(31) "[注意]" ANSI_COLOR(30) "拷貝後才能刪除原文!" |