summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-09-10 19:13:19 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-09-10 19:13:19 +0800
commitcac984cc6f95ebb91627eb9e3699ade727977311 (patch)
tree8f6de51ca76cf588d8e1177d1a14038e29b8e3e7
parentcc49af12e56c2a6b64c9bf5592399becf257ad26 (diff)
downloadpttbbs-cac984cc6f95ebb91627eb9e3699ade727977311.tar
pttbbs-cac984cc6f95ebb91627eb9e3699ade727977311.tar.gz
pttbbs-cac984cc6f95ebb91627eb9e3699ade727977311.tar.bz2
pttbbs-cac984cc6f95ebb91627eb9e3699ade727977311.tar.lz
pttbbs-cac984cc6f95ebb91627eb9e3699ade727977311.tar.xz
pttbbs-cac984cc6f95ebb91627eb9e3699ade727977311.tar.zst
pttbbs-cac984cc6f95ebb91627eb9e3699ade727977311.zip
* some users do not understand the numpost is for all boards, so let's hint them.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk@4828 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r--pttbbs/mbbsd/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c
index 6bc7f6da..082b0903 100644
--- a/pttbbs/mbbsd/board.c
+++ b/pttbbs/mbbsd/board.c
@@ -449,7 +449,7 @@ b_config(void)
i = (int)lpost * 10;
attr = (cuser.numposts < i) ? 1 : 0;
if (attr) outs(ANSI_COLOR(1;31));
- prints("文章篇數 %d 篇以上", i);
+ prints("各看板有效文章共 %d 篇以上", i);
if (attr) outs(ANSI_RESET);
hasres = 1;
}