summaryrefslogtreecommitdiffstats
path: root/mbbsd/cal.c
diff options
context:
space:
mode:
authorjack <jack@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-05-12 12:32:30 +0800
committerjack <jack@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-05-12 12:32:30 +0800
commit3535d2d6ca3468683b29f6477aae8b91759affe3 (patch)
tree7adc66ebab6e850ce58840d1a89d21c208346967 /mbbsd/cal.c
parente7e72e99df864c3738bc7ce8349ea35ccdd6397f (diff)
downloadpttbbs-3535d2d6ca3468683b29f6477aae8b91759affe3.tar
pttbbs-3535d2d6ca3468683b29f6477aae8b91759affe3.tar.gz
pttbbs-3535d2d6ca3468683b29f6477aae8b91759affe3.tar.bz2
pttbbs-3535d2d6ca3468683b29f6477aae8b91759affe3.tar.lz
pttbbs-3535d2d6ca3468683b29f6477aae8b91759affe3.tar.xz
pttbbs-3535d2d6ca3468683b29f6477aae8b91759affe3.tar.zst
pttbbs-3535d2d6ca3468683b29f6477aae8b91759affe3.zip
Replaced var.c to i18n version, also slightly modified user.c cal.c menu.c mbbsd.c admin.c talk.c
git-svn-id: http://opensvn.csie.org/pttbbs/branches/Jaky.i18n@1950 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/cal.c')
-rw-r--r--mbbsd/cal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mbbsd/cal.c b/mbbsd/cal.c
index efaf30da..69aa4f24 100644
--- a/mbbsd/cal.c
+++ b/mbbsd/cal.c
@@ -32,11 +32,11 @@ lockutmpmode(int unmode, int state)
move(10, 20);
if (errorno == 1)
prints(SHM->i18nstr[cuser.language][532],
- ModeTypeTable[currutmp->lockmode],
- ModeTypeTable[unmode]);
+ SHM->i18nstr[cuser.language][ModeTypeTable[currutmp->lockmode]],
+ SHM->i18nstr[cuser.language][ModeTypeTable[unmode]]);
else
prints(SHM->i18nstr[cuser.language][533],
- ModeTypeTable[unmode]);
+ SHM->i18nstr[cuser.language][ModeTypeTable[unmode]]);
pressanykey();
return errorno;
}