fixed: I've forgotten to add: menu_view_lang_chinese item in the chinese language

changed: version of the program: 0.8.5 now



git-svn-id: svn://ttmath.org/publicrep/ttcalc/trunk@167 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2009-06-18 12:02:50 +00:00
parent 34500e3a5e
commit b3f25face3
5 changed files with 9 additions and 6 deletions

View File

@ -1,4 +1,4 @@
Version 0.8.5 prerelease (2009.06.14):
Version 0.8.5 (2009.06.18):
* added: new language: Chinese
translation made by: Juis <zsyfly at gmail dot com>
* changed: version of the TTMath library: 0.8.5 now
@ -6,6 +6,7 @@ Version 0.8.5 prerelease (2009.06.14):
Changes from TTMath 0.8.5 relating to TTCalc:
* fixed: Big::Mod(x) didn't correctly return a carry
and the result was sometimes very big (even greater than x)
* changed: factorial() function is much faster now
Version 0.8.4 (2009.05.08):

2
README
View File

@ -19,5 +19,5 @@ Contact: t.sowa@ttmath.org
Licence: BSD (open source)
Interface: English, Polish, Spanish, Danish, Chinese
Project page: http://ttcalc.sourceforge.net/
Bignum library: TTMath http://ttmath.org/
Bignum library: TTMath http://www.ttmath.org/
Operating systems: Microsoft Windows 9x/Me/NT/2000/XP/Vista

View File

@ -7,6 +7,7 @@
<link rel="stylesheet" href="styles.css" type="text/css">
<object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e">
<param name="Keyword" value="TTCalc">
<param name="Keyword" value="TTMath">
<param name="Keyword" value="author">
<param name="Keyword" value="contact">
<param name="Keyword" value="licence">
@ -45,7 +46,7 @@ display values with the base (radix) from two to sixteen.
<tr><td>Licence:</td><td>BSD (open source)</td></tr>
<tr><td>Interface:</td><td>English, Polish, Spanish, Danish, Chinese</td></tr>
<tr><td>Project page:</td><td><a href="http://ttcalc.sourceforge.net/">http://ttcalc.sourceforge.net/</a></td></tr>
<tr><td>Bignum library:</td><td>TTMath <a href="http://ttmath.org/">http://ttmath.org/</a></td></tr>
<tr><td>Bignum library:</td><td>TTMath <a href="http://ttmath.org/">http://www.ttmath.org/</a></td></tr>
<tr><td>Operating systems:</td><td>Microsoft Windows 9x/Me/NT/2000/XP/Vista</td></tr>
</table>

View File

@ -56,7 +56,7 @@
#define TTCALC_MAJOR_VER 0
#define TTCALC_MINOR_VER 8
#define TTCALC_REVISION_VER 5
#define TTCALC_PRERELEASE_VER 1
#define TTCALC_PRERELEASE_VER 0

View File

@ -907,6 +907,7 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair(menu_view_lang_polish, "&波兰语");
InsertGuiPair(menu_view_lang_spanish, "&西班牙语");
InsertGuiPair(menu_view_lang_danish, "&丹麦语");
InsertGuiPair(menu_view_lang_chinese, "&简体中文");
InsertGuiPair(menu_view_close_program, "&关闭");
InsertGuiPair(menu_edit_undo, "&取消");
InsertGuiPair(menu_edit_paste, "&粘贴");