added: Danish language to the setup
changed: version of the program: 0.8.4 git-svn-id: svn://ttmath.org/publicrep/ttcalc/trunk@140 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
Version 0.8.4 prerelease (2009.04.30):
|
Version 0.8.4 (2009.05.08):
|
||||||
* added: new language: Danish
|
* added: new language: Danish
|
||||||
translation made by: Rune Bisgaard Vammen <runebisgaard at gmail dot com>
|
translation made by: Rune Bisgaard Vammen <runebisgaard at gmail dot com>
|
||||||
|
|
||||||
|
13
README
13
README
@@ -1,10 +1,10 @@
|
|||||||
TTCalc
|
TTCalc
|
||||||
|
|
||||||
TTCalc is an open source mathematical calculator. It features arithmetical
|
TTCalc is an open source bignum mathematical calculator. It features
|
||||||
functions, trigonometric functions, inverse trigonometric functions,
|
arithmetical functions, trigonometric functions, inverse trigonometric
|
||||||
hyperbolic functions, inverse hyperbolic functions, logical operators,
|
functions, hyperbolic functions, inverse hyperbolic functions, logical
|
||||||
logarithms, functions for converting between degrees and radians and
|
operators, logarithms, functions for converting between degrees and radians
|
||||||
so on. Additionally the program allows a user to define his own
|
and so on. Additionally the program allows a user to define his own
|
||||||
variables and functions.
|
variables and functions.
|
||||||
|
|
||||||
The program possesses an easy to use interface. Calculations are performed
|
The program possesses an easy to use interface. Calculations are performed
|
||||||
@@ -15,8 +15,9 @@ with 258 valid decimal digits. TTCalc independently allows to insert and
|
|||||||
display values with the base (radix) from two to sixteen.
|
display values with the base (radix) from two to sixteen.
|
||||||
|
|
||||||
Author: Tomasz Sowa
|
Author: Tomasz Sowa
|
||||||
Contact: t.sowa@slimaczek.pl
|
Contact: t.sowa@ttmath.org
|
||||||
Licence: BSD (open source)
|
Licence: BSD (open source)
|
||||||
Interface: English, Polish, Spanish, Danish
|
Interface: English, Polish, Spanish, Danish
|
||||||
Project page: http://ttcalc.sourceforge.net/
|
Project page: http://ttcalc.sourceforge.net/
|
||||||
|
Bignum library: TTMath http://ttmath.org/
|
||||||
Operating systems: Microsoft Windows 9x/Me/NT/2000/XP/Vista
|
Operating systems: Microsoft Windows 9x/Me/NT/2000/XP/Vista
|
||||||
|
@@ -102,7 +102,7 @@
|
|||||||
<li><a href="other_functions.html">factorial(x)</a></li>
|
<li><a href="other_functions.html">factorial(x)</a></li>
|
||||||
<li><a href="other_functions.html">abs(x)</a></li>
|
<li><a href="other_functions.html">abs(x)</a></li>
|
||||||
<li><a href="other_functions.html">sgn(x)</a></li>
|
<li><a href="other_functions.html">sgn(x)</a></li>
|
||||||
<li><a href="other_functions.html">mod(x,y)</a></li>
|
<li><a href="other_functions.html">mod(x; y)</a></li>
|
||||||
<li><a href="other_functions.html">max(x1; x2; ...)</a></li>
|
<li><a href="other_functions.html">max(x1; x2; ...)</a></li>
|
||||||
<li><a href="other_functions.html">min(x1; x2; ...)</a></li>
|
<li><a href="other_functions.html">min(x1; x2; ...)</a></li>
|
||||||
<li><a href="other_functions.html">sum(x1; x2; ...)</a></li>
|
<li><a href="other_functions.html">sum(x1; x2; ...)</a></li>
|
||||||
|
@@ -28,17 +28,17 @@ We don't define the BitNot() function too.
|
|||||||
|
|
||||||
<dl>
|
<dl>
|
||||||
|
|
||||||
<dt>BitAnd(x ; y) or band(x ; y)</dt>
|
<dt>bitand(x ; y) or band(x ; y)</dt>
|
||||||
<dd>Bitwise AND. For example:<br>
|
<dd>Bitwise AND. For example:<br>
|
||||||
bitand(6; 2) = bitand(&110 ; &10) = &10 = 2<br>
|
bitand(6; 2) = bitand(&110 ; &10) = &10 = 2<br>
|
||||||
bitand(6.5; 2.5) = bitand(&110.1 ; &10.1) = &10.1 = 2.5</dd>
|
bitand(6.5; 2.5) = bitand(&110.1 ; &10.1) = &10.1 = 2.5</dd>
|
||||||
|
|
||||||
<dt>BitOr(x ; y) or bor(x ; y)</dt>
|
<dt>bitor(x ; y) or bor(x ; y)</dt>
|
||||||
<dd>Bitwise OR. For example:<br>
|
<dd>Bitwise OR. For example:<br>
|
||||||
bitor(6; 1) = bitor(&110 ; &1) = &111 = 7<br>
|
bitor(6; 1) = bitor(&110 ; &1) = &111 = 7<br>
|
||||||
bitor(6.5; 1.5) = bitor(&110.1 ; &1.1) = &111.1 = 7.5</dd>
|
bitor(6.5; 1.5) = bitor(&110.1 ; &1.1) = &111.1 = 7.5</dd>
|
||||||
|
|
||||||
<dt>BitXor(x ; y) or bxor(x ; y)</dt>
|
<dt>bitxor(x ; y) or bxor(x ; y)</dt>
|
||||||
<dd>Bitwise XOR. For example:<br>
|
<dd>Bitwise XOR. For example:<br>
|
||||||
bitxor(6; 3) = bitxor(&110 ; &11) = &101 = 5<br>
|
bitxor(6; 3) = bitxor(&110 ; &11) = &101 = 5<br>
|
||||||
bitxor(6.5; 3.5) = bitxor(&110.1 ; &11.1) = &101.0 = 5</dd>
|
bitxor(6.5; 3.5) = bitxor(&110.1 ; &11.1) = &101.0 = 5</dd>
|
||||||
|
@@ -21,11 +21,11 @@
|
|||||||
<h1>TTCalc</h1>
|
<h1>TTCalc</h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
TTCalc is an open source mathematical calculator. It features arithmetical
|
TTCalc is an open source bignum mathematical calculator. It features
|
||||||
functions, trigonometric functions, inverse trigonometric functions,
|
arithmetical functions, trigonometric functions, inverse trigonometric
|
||||||
hyperbolic functions, inverse hyperbolic functions, logical operators,
|
functions, hyperbolic functions, inverse hyperbolic functions, logical
|
||||||
logarithms, functions for converting between degrees and radians and
|
operators, logarithms, functions for converting between degrees and radians
|
||||||
so on. Additionally the program allows a user to define his own
|
and so on. Additionally the program allows a user to define his own
|
||||||
variables and functions.
|
variables and functions.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@@ -41,13 +41,13 @@ display values with the base (radix) from two to sixteen.
|
|||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr><td>Author:</td><td>Tomasz Sowa</td></tr>
|
<tr><td>Author:</td><td>Tomasz Sowa</td></tr>
|
||||||
<tr><td>Contact:</td><td>t.sowa@slimaczek.pl</td></tr>
|
<tr><td>Contact:</td><td>t.sowa@ttmath.org</td></tr>
|
||||||
<tr><td>Licence:</td><td>BSD (open source)</td></tr>
|
<tr><td>Licence:</td><td>BSD (open source)</td></tr>
|
||||||
<tr><td>Interface:</td><td>English, Polish, Spanish, Danish</td></tr>
|
<tr><td>Interface:</td><td>English, Polish, Spanish, Danish</td></tr>
|
||||||
<tr><td>Project page:</td><td><a href="http://ttcalc.sourceforge.net/">http://ttcalc.sourceforge.net/</a></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>Operating systems:</td><td>Microsoft Windows 9x/Me/NT/2000/XP/Vista</td></tr>
|
<tr><td>Operating systems:</td><td>Microsoft Windows 9x/Me/NT/2000/XP/Vista</td></tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
@@ -53,7 +53,7 @@ sgn(-10)=-1<br>
|
|||||||
sgn(0)=0<br>
|
sgn(0)=0<br>
|
||||||
sgn(5)=1</dd>
|
sgn(5)=1</dd>
|
||||||
|
|
||||||
<dt>mod(x,y)</dt>
|
<dt>mod(x ; y)</dt>
|
||||||
<dd>Mod returns the remainder from the division x by y<br>mod(10; 2.2)=1.2 because 10=2.2*4 + 1.2</dd>
|
<dd>Mod returns the remainder from the division x by y<br>mod(10; 2.2)=1.2 because 10=2.2*4 + 1.2</dd>
|
||||||
|
|
||||||
|
|
||||||
|
@@ -61,7 +61,7 @@ Unary minus, e.g.: -2</dd>
|
|||||||
|
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
<p>Of course you can use the parentheses ( and ). Look at the <a href="operators_priority.html">operators priority</a> as well.</p>
|
<p>Of course you can use parentheses ( and ). Look at <a href="operators_priority.html">operators priority</a> as well.</p>
|
||||||
|
|
||||||
<h1>Built-in variables</h1>
|
<h1>Built-in variables</h1>
|
||||||
|
|
||||||
|
@@ -3,8 +3,8 @@
|
|||||||
|
|
||||||
[Setup]
|
[Setup]
|
||||||
AppName=TTCalc
|
AppName=TTCalc
|
||||||
AppVerName=TTCalc 0.8.3
|
AppVerName=TTCalc 0.8.4
|
||||||
AppVersion=0.8.3
|
AppVersion=0.8.4
|
||||||
AppPublisher=Tomasz Sowa
|
AppPublisher=Tomasz Sowa
|
||||||
AppPublisherURL=http://ttcalc.sourceforge.net
|
AppPublisherURL=http://ttcalc.sourceforge.net
|
||||||
AppSupportURL=http://ttcalc.sourceforge.net
|
AppSupportURL=http://ttcalc.sourceforge.net
|
||||||
@@ -25,6 +25,7 @@ PrivilegesRequired=none
|
|||||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||||
Name: "polish"; MessagesFile: "compiler:Languages\Polish.isl"
|
Name: "polish"; MessagesFile: "compiler:Languages\Polish.isl"
|
||||||
Name: "spanish"; MessagesFile: "compiler:Languages\Spanish.isl"
|
Name: "spanish"; MessagesFile: "compiler:Languages\Spanish.isl"
|
||||||
|
Name: "danish"; MessagesFile: "compiler:Languages\Danish.isl"
|
||||||
|
|
||||||
[InstallDelete]
|
[InstallDelete]
|
||||||
; prior to 0.8.3 we were using mingwm10.dll (now it is not needed and will be deleted if exists)
|
; prior to 0.8.3 we were using mingwm10.dll (now it is not needed and will be deleted if exists)
|
||||||
|
@@ -56,7 +56,7 @@
|
|||||||
#define TTCALC_MAJOR_VER 0
|
#define TTCALC_MAJOR_VER 0
|
||||||
#define TTCALC_MINOR_VER 8
|
#define TTCALC_MINOR_VER 8
|
||||||
#define TTCALC_REVISION_VER 4
|
#define TTCALC_REVISION_VER 4
|
||||||
#define TTCALC_PRERELEASE_VER 1
|
#define TTCALC_PRERELEASE_VER 0
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -328,7 +328,7 @@ void Languages::InitGuiMessagesTab()
|
|||||||
InsertGuiPair(display_not_always_scientific,"When the exponent is greater than:");
|
InsertGuiPair(display_not_always_scientific,"When the exponent is greater than:");
|
||||||
InsertGuiPair(display_group_scientific, "Print the result as the scientific value");
|
InsertGuiPair(display_group_scientific, "Print the result as the scientific value");
|
||||||
InsertGuiPair(display_decimal_point, "Decimal point");
|
InsertGuiPair(display_decimal_point, "Decimal point");
|
||||||
InsertGuiPair(display_deg_red_grad, "sin/cos asin/acos");
|
InsertGuiPair(display_deg_rad_grad, "sin/cos asin/acos");
|
||||||
InsertGuiPair(convert_type, "Type");
|
InsertGuiPair(convert_type, "Type");
|
||||||
InsertGuiPair(convert_input, "Input");
|
InsertGuiPair(convert_input, "Input");
|
||||||
InsertGuiPair(convert_output, "Output");
|
InsertGuiPair(convert_output, "Output");
|
||||||
@@ -361,7 +361,7 @@ void Languages::InitGuiMessagesTab()
|
|||||||
InsertGuiPair(about_text,
|
InsertGuiPair(about_text,
|
||||||
"Mathematical calculator TTCalc %d.%d.%d%s%s\r\n"
|
"Mathematical calculator TTCalc %d.%d.%d%s%s\r\n"
|
||||||
"Author: Tomasz Sowa\r\n"
|
"Author: Tomasz Sowa\r\n"
|
||||||
"Contact: t.sowa@slimaczek.pl\r\n"
|
"Contact: t.sowa@ttmath.org\r\n"
|
||||||
"Licence: BSD (open source)\r\n"
|
"Licence: BSD (open source)\r\n"
|
||||||
"Project page: http://ttcalc.sourceforge.net\r\n"
|
"Project page: http://ttcalc.sourceforge.net\r\n"
|
||||||
"Bignum library: TTMath %d.%d.%d%s\r\n"
|
"Bignum library: TTMath %d.%d.%d%s\r\n"
|
||||||
@@ -459,7 +459,7 @@ void Languages::InitGuiMessagesTab()
|
|||||||
InsertGuiPair(display_not_always_scientific,"Je<EFBFBD>li eksponent jest wi<77>kszy ni<6E>:");
|
InsertGuiPair(display_not_always_scientific,"Je<EFBFBD>li eksponent jest wi<77>kszy ni<6E>:");
|
||||||
InsertGuiPair(display_group_scientific, "Wy<EFBFBD>wietl wynik w postaci naukowej");
|
InsertGuiPair(display_group_scientific, "Wy<EFBFBD>wietl wynik w postaci naukowej");
|
||||||
InsertGuiPair(display_decimal_point, "Przecinek dziesi<73>tny");
|
InsertGuiPair(display_decimal_point, "Przecinek dziesi<73>tny");
|
||||||
InsertGuiPair(display_deg_red_grad, "sin/cos asin/acos");
|
InsertGuiPair(display_deg_rad_grad, "sin/cos asin/acos");
|
||||||
InsertGuiPair(convert_type, "Typ");
|
InsertGuiPair(convert_type, "Typ");
|
||||||
InsertGuiPair(convert_input, "Wej<EFBFBD>cie");
|
InsertGuiPair(convert_input, "Wej<EFBFBD>cie");
|
||||||
InsertGuiPair(convert_output, "Wyj<EFBFBD>cie");
|
InsertGuiPair(convert_output, "Wyj<EFBFBD>cie");
|
||||||
@@ -492,7 +492,7 @@ void Languages::InitGuiMessagesTab()
|
|||||||
InsertGuiPair(about_text,
|
InsertGuiPair(about_text,
|
||||||
"Kalkulator matematyczny TTCalc %d.%d.%d%s%s\r\n"
|
"Kalkulator matematyczny TTCalc %d.%d.%d%s%s\r\n"
|
||||||
"Autor: Tomasz Sowa\r\n"
|
"Autor: Tomasz Sowa\r\n"
|
||||||
"Kontakt: t.sowa@slimaczek.pl\r\n"
|
"Kontakt: t.sowa@ttmath.org\r\n"
|
||||||
"Licencja: BSD (open source)\r\n"
|
"Licencja: BSD (open source)\r\n"
|
||||||
"Strona projektu: http://ttcalc.sourceforge.net\r\n"
|
"Strona projektu: http://ttcalc.sourceforge.net\r\n"
|
||||||
"Biblioteka du<64>ych liczb: TTMath %d.%d.%d%s\r\n"
|
"Biblioteka du<64>ych liczb: TTMath %d.%d.%d%s\r\n"
|
||||||
@@ -594,7 +594,7 @@ void Languages::InitGuiMessagesTab()
|
|||||||
InsertGuiPair(display_not_always_scientific,"Cuando el exponente es mas grande que:");
|
InsertGuiPair(display_not_always_scientific,"Cuando el exponente es mas grande que:");
|
||||||
InsertGuiPair(display_group_scientific, "Imprimir el resultado como valor cientifico");
|
InsertGuiPair(display_group_scientific, "Imprimir el resultado como valor cientifico");
|
||||||
InsertGuiPair(display_decimal_point, "Decimal point");
|
InsertGuiPair(display_decimal_point, "Decimal point");
|
||||||
InsertGuiPair(display_deg_red_grad, "sin/cos asin/acos");
|
InsertGuiPair(display_deg_rad_grad, "sin/cos asin/acos");
|
||||||
InsertGuiPair(convert_type, "Tipo");
|
InsertGuiPair(convert_type, "Tipo");
|
||||||
InsertGuiPair(convert_input, "Entrada");
|
InsertGuiPair(convert_input, "Entrada");
|
||||||
InsertGuiPair(convert_output, "Salida");
|
InsertGuiPair(convert_output, "Salida");
|
||||||
@@ -627,7 +627,7 @@ void Languages::InitGuiMessagesTab()
|
|||||||
InsertGuiPair(about_text,
|
InsertGuiPair(about_text,
|
||||||
"Calculadora matematica TTCalc %d.%d.%d%s%s\r\n"
|
"Calculadora matematica TTCalc %d.%d.%d%s%s\r\n"
|
||||||
"Autor: Tomasz Sowa\r\n"
|
"Autor: Tomasz Sowa\r\n"
|
||||||
"Contacto: t.sowa@slimaczek.pl\r\n"
|
"Contacto: t.sowa@ttmath.org\r\n"
|
||||||
"Licencia: BSD (open source)\r\n"
|
"Licencia: BSD (open source)\r\n"
|
||||||
"Pagina del proyecto: http://ttcalc.sourceforge.net\r\n"
|
"Pagina del proyecto: http://ttcalc.sourceforge.net\r\n"
|
||||||
"Biblioteca Bignum: TTMath %d.%d.%d%s\r\n"
|
"Biblioteca Bignum: TTMath %d.%d.%d%s\r\n"
|
||||||
@@ -715,7 +715,8 @@ void Languages::InitGuiMessagesTab()
|
|||||||
InsertGuiPair(combo_rounding_integer,"til heltal");
|
InsertGuiPair(combo_rounding_integer,"til heltal");
|
||||||
InsertGuiPair(combo_rounding_to_number,"til");
|
InsertGuiPair(combo_rounding_to_number,"til");
|
||||||
InsertGuiPair(combo_rounding_after_comma,"ciffer(cifre)");
|
InsertGuiPair(combo_rounding_after_comma,"ciffer(cifre)");
|
||||||
InsertGuiPair(check_remove_zeroes,"Fjern sidste trailing nuller");
|
InsertGuiPair(check_remove_zeroes,"Fjern sidste overfl<EFBFBD>dige nuller");
|
||||||
|
|
||||||
|
|
||||||
InsertGuiPair(display_input, "Input");
|
InsertGuiPair(display_input, "Input");
|
||||||
InsertGuiPair(display_output, "Output");
|
InsertGuiPair(display_output, "Output");
|
||||||
@@ -724,7 +725,7 @@ void Languages::InitGuiMessagesTab()
|
|||||||
InsertGuiPair(display_not_always_scientific,"N<EFBFBD>r exponenten er st<73>rre end:");
|
InsertGuiPair(display_not_always_scientific,"N<EFBFBD>r exponenten er st<73>rre end:");
|
||||||
InsertGuiPair(display_group_scientific, "Print resultatet som den videnskablige v<>rdi");
|
InsertGuiPair(display_group_scientific, "Print resultatet som den videnskablige v<>rdi");
|
||||||
InsertGuiPair(display_decimal_point, "Decimal punkt");
|
InsertGuiPair(display_decimal_point, "Decimal punkt");
|
||||||
InsertGuiPair(display_deg_red_grad, "sin/cos asin/acos");
|
InsertGuiPair(display_deg_rad_grad, "sin/cos asin/acos");
|
||||||
InsertGuiPair(convert_type, "Type");
|
InsertGuiPair(convert_type, "Type");
|
||||||
InsertGuiPair(convert_input, "Input");
|
InsertGuiPair(convert_input, "Input");
|
||||||
InsertGuiPair(convert_output, "Udput");
|
InsertGuiPair(convert_output, "Udput");
|
||||||
@@ -757,7 +758,7 @@ void Languages::InitGuiMessagesTab()
|
|||||||
InsertGuiPair(about_text,
|
InsertGuiPair(about_text,
|
||||||
"Matematisk lommeregner TTCalc %d.%d.%d%s%s\r\n"
|
"Matematisk lommeregner TTCalc %d.%d.%d%s%s\r\n"
|
||||||
"Forfatter: Tomasz Sowa\r\n"
|
"Forfatter: Tomasz Sowa\r\n"
|
||||||
"Kontakt: t.sowa@slimaczek.pl\r\n"
|
"Kontakt: t.sowa@ttmath.org\r\n"
|
||||||
"Licens: BSD (open source)\r\n"
|
"Licens: BSD (open source)\r\n"
|
||||||
"Projekt side: http://ttcalc.sourceforge.net\r\n"
|
"Projekt side: http://ttcalc.sourceforge.net\r\n"
|
||||||
"Bignum biblotek: TTMath %d.%d.%d%s\r\n"
|
"Bignum biblotek: TTMath %d.%d.%d%s\r\n"
|
||||||
|
@@ -102,7 +102,7 @@ public:
|
|||||||
display_always_scientific,
|
display_always_scientific,
|
||||||
display_not_always_scientific,
|
display_not_always_scientific,
|
||||||
display_decimal_point,
|
display_decimal_point,
|
||||||
display_deg_red_grad,
|
display_deg_rad_grad,
|
||||||
convert_type,
|
convert_type,
|
||||||
convert_input,
|
convert_input,
|
||||||
convert_output,
|
convert_output,
|
||||||
|
@@ -447,7 +447,7 @@ int i;
|
|||||||
|
|
||||||
SetDlgItemText(hWnd, IDC_CHECK_REMOVE_ZEROES, GetPrgRes()->GetLanguages()->GuiMessage(Languages::check_remove_zeroes));
|
SetDlgItemText(hWnd, IDC_CHECK_REMOVE_ZEROES, GetPrgRes()->GetLanguages()->GuiMessage(Languages::check_remove_zeroes));
|
||||||
|
|
||||||
SetDlgItemText(hWnd, IDC_LABEL_DISPLAY_DEG_RAD_GRAD, GetPrgRes()->GetLanguages()->GuiMessage(Languages::display_deg_red_grad));
|
SetDlgItemText(hWnd, IDC_LABEL_DISPLAY_DEG_RAD_GRAD, GetPrgRes()->GetLanguages()->GuiMessage(Languages::display_deg_rad_grad));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user