summaryrefslogtreecommitdiffstats
path: root/mbbsd/bbs.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-07-16 09:59:22 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2009-07-16 09:59:22 +0800
commit4c374bf8707979e254ae9b68582288e6f52beb73 (patch)
tree33230d601d01cf63a05869e82b63e6598b088077 /mbbsd/bbs.c
parentd1daee578ef794049fa0fd22b2c0ab668abbf26f (diff)
downloadpttbbs-4c374bf8707979e254ae9b68582288e6f52beb73.tar
pttbbs-4c374bf8707979e254ae9b68582288e6f52beb73.tar.gz
pttbbs-4c374bf8707979e254ae9b68582288e6f52beb73.tar.bz2
pttbbs-4c374bf8707979e254ae9b68582288e6f52beb73.tar.lz
pttbbs-4c374bf8707979e254ae9b68582288e6f52beb73.tar.xz
pttbbs-4c374bf8707979e254ae9b68582288e6f52beb73.tar.zst
pttbbs-4c374bf8707979e254ae9b68582288e6f52beb73.zip
* synchronize money display unit to prevent confusion
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4742 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/bbs.c')
-rw-r--r--mbbsd/bbs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index a1950b59..97838214 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -1231,7 +1231,7 @@ do_general(int isbid)
{
demoney(money);
addPost = 1;
- prints("這是您的第 %d 篇有效文章,稿酬 %d 銀。",
+ prints("這是您的第 %d 篇有效文章,稿酬 %d 元",
++cuser.numposts, money);
} else {
// no money, no record.
@@ -3372,7 +3372,7 @@ del_post(int ent, fileheader_t * fhdr, char *direct)
sendalert(cuser.userid, ALERT_PWD_POSTS);
}
demoney(-fhdr->multi.money);
- vmsgf("您的文章減為 %d 篇,支付清潔費 %d 銀",
+ vmsgf("您的文章減為 %d 篇,支付清潔費 %d 元",
cuser.numposts, fhdr->multi.money);
}
@@ -3548,7 +3548,7 @@ view_postinfo(int ent, const fileheader_t * fhdr, const char *direct, int crs_ln
if(m < 0)
prints("│ 特殊文章,無價格記錄");
else
- prints("│ 這一篇文章值 %d 銀", m);
+ prints("│ 這一篇文章值 %d 元", m);
}
prints("\n");