trannslations
This commit is contained in:
26
res/values/text_about.xml
Normal file
26
res/values/text_about.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<!--
|
||||
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
|
||||
~ For more information, please, contact se.solovyev@gmail.com
|
||||
~ or visit http://se.solovyev.org
|
||||
-->
|
||||
|
||||
<resources>
|
||||
|
||||
<string name="c_about">About</string>
|
||||
|
||||
<string name="c_about_content">Copyright (c) 2009-2011\n\n<b>Created by serso aka se.solovyev</b>\n\n
|
||||
This program is open source:\nall source code can be found on\n<a href="https://github.com/serso/android_calculator">http://github.com</a>\n\n
|
||||
For more information please\ncontact the author by email\n<a href="mailto:se.solovyev@gmail.com">se.solovyev@gmail.com</a>
|
||||
\nor visit\n<a href="http://se.solovyev.org">http://se.solovyev.org</a>\n\n
|
||||
If you want to support the project\nyou can donate money via\n<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=se%2esolovyev%40gmail%2ecom&lc=RU&item_name=Android%20Calculator&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">http://paypal.com</a>\n\n
|
||||
If you like the application\nrank it with 5 stars in\n<a href="https://market.android.com/details?id=org.solovyev.android.calculator">android.market</a>\n\n
|
||||
Thanks to people who translate Calculator++ in different languages:\n
|
||||
Italian - Gabriele Ravanetti\n
|
||||
Spanish - Jordi Luna\n\n
|
||||
This application uses next open source libraries:\n
|
||||
<a href="http://simple.sourceforge.net">Simple (XML serialization)</a>\n
|
||||
<a href="http://meditorworld.appspot.com/meditor.txt">JSCL</a>\n
|
||||
<a href="http://www.achartengine.org/">AChartEngine</a>
|
||||
</string>
|
||||
|
||||
</resources>
|
17
res/values/text_donate.xml
Normal file
17
res/values/text_donate.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<!--
|
||||
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
|
||||
~ For more information, please, contact se.solovyev@gmail.com
|
||||
~ or visit http://se.solovyev.org
|
||||
-->
|
||||
|
||||
<resources>
|
||||
|
||||
<string name="c_donate">Donate</string>
|
||||
|
||||
<string name="c_donate_text">You can thank the author of this program by email\n\n
|
||||
<a href="mailto:se.solovyev@gmail.com">se.solovyev@gmail.com</a>\n\n
|
||||
donating money via\n\n<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=se%2esolovyev%40gmail%2ecom&lc=RU&item_name=Android%20Calculator&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">http://paypal.com</a>\n\n
|
||||
or setting 5 stars in\n\n<a href="https://market.android.com/details?id=org.solovyev.android.calculator">android.market</a>
|
||||
</string>
|
||||
|
||||
</resources>
|
96
res/values/text_help.xml
Normal file
96
res/values/text_help.xml
Normal file
@@ -0,0 +1,96 @@
|
||||
<!--
|
||||
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
|
||||
~ For more information, please, contact se.solovyev@gmail.com
|
||||
~ or visit http://se.solovyev.org
|
||||
-->
|
||||
|
||||
<resources>
|
||||
|
||||
<string name="c_faq">FAQ</string>
|
||||
<string name="c_hints">Hints</string>
|
||||
<string name="c_screens">Screens</string>
|
||||
|
||||
<string name="c_faq_content" formatted="false">
|
||||
<b>How can I use functions written in the top right and bottom right corners of the button?</b>\n
|
||||
\n
|
||||
Push the button and slide lightly up or down. Depending on value showed on the button action will occur.\n
|
||||
\n
|
||||
<b>How can I toggle between radians and degrees?</b>\n
|
||||
\n
|
||||
To toggle between different angle units you can either change appropriate option in application settings\n or use the toggle switch located on the 6 button\n
|
||||
(current value is lighted with yellow color).\n
|
||||
Also you can use deg() and rad() functions and ° operator to convert degrees to radians and vice versa.\n
|
||||
\n
|
||||
<b>Examples:</b>\n
|
||||
268° = 4.67748\n
|
||||
30.21° = 0.52726\n
|
||||
rad(30, 21, 0) = 0.52971\n
|
||||
deg(4.67748) = 268\n
|
||||
\n
|
||||
<b>Does C++ support %?</b>\n
|
||||
\n
|
||||
Yes, % function can be found in the top right corner of / button.\n
|
||||
\n
|
||||
<b>Examples:</b>\n
|
||||
\n
|
||||
100 + 50% = 150\n
|
||||
100 * 50% = 50\n
|
||||
100 + 100 * 50% * 50% = 125\n
|
||||
100 + (100 * 50% * (25 + 25)% + 100%) = 150\n
|
||||
\n
|
||||
<b>Note:</b>\n
|
||||
\n
|
||||
100 + (20 + 20)% = 140, <b>but</b> 100+ (20% + 20%) = 124.0\n
|
||||
100 + 50% ^ 2 = 2600, <b>but</b> 100 + 50 ^ 2% = 101.08\n
|
||||
\n
|
||||
<b>Does C++ support fractional calculations?</b>\n
|
||||
\n
|
||||
Yes, you can type your fractional expression in the editor and use ≡ (in the top right corner of = button). Also you can use ≡ to simplify expression.\n
|
||||
\n
|
||||
<b>Examples:</b>\n
|
||||
\n
|
||||
2/3 + 5/9 ≡ 11/9\n
|
||||
2/9 + 3/123 ≡ 91/369\n
|
||||
(6 - t) ^ 3 ≡ 216 - 108t + 18t ^ 2 - t ^ 3\n
|
||||
\n
|
||||
<b>Does C++ support complex calculations?</b>\n
|
||||
\n
|
||||
Yes, just enter complex expression (using i or √(-1) as imaginary number).\n
|
||||
\n
|
||||
<b>Examples:</b>\n
|
||||
\n
|
||||
(2i + 1) ^ 2 = -3 + 4i\n
|
||||
e ^ i = 0.5403 + 0.84147i\n
|
||||
\n
|
||||
<b>Can C++ plot graph of the function?</b>\n
|
||||
\n
|
||||
Yes, type expression which contains 1 undefined variable (e.g. cos(t) and t has no value) and click on the result. In the context menu choose \'Plot graph\'.\n
|
||||
\n
|
||||
<b>Does C++ support matrix calculations?</b>\n
|
||||
\n
|
||||
No, it doesn\'t.\n
|
||||
\n
|
||||
<b>Why I\'ve got 1.76732452452345E-17 instead of 0?</b>\n
|
||||
\n
|
||||
Check the \'Round result\' preference in application settings - it should be turned on.\n
|
||||
</string>
|
||||
|
||||
<string name="c_hints_content">
|
||||
1. You can omit unnecessary multiplication signs (instead of 3*t or t*sin(π*t) just type 3t or tsin(πt))\n\n
|
||||
2. Use ≡ (in the top right corner of = button) to simplify expression\n\n
|
||||
3. Just click on the result to copy it to the clipboard\n\n
|
||||
4. Use = button seldom - result is calculating on the fly\n\n
|
||||
5. Add constants for often used values (you can even save expressions)\n\n
|
||||
6. Use variables located on 4 and 5 buttons\n\n
|
||||
</string>
|
||||
|
||||
<string name="c_screens_content">
|
||||
1. <b>Main screen:</b> is shown on application start, can be reached from another screen by pressing Back button.\n\n
|
||||
2. <b>Variables and Constants screen:</b> contains list of available constants. User may add some constants and variables here by clicking Add button. Short click on variable/constant inserts it into the editor, long click - opens variable editor window. Can be reached from the main screen by pressing π,… button.\n\n
|
||||
3. <b>Functions screen:</b> contains list of all available functions. Short click on function inserts it into the editor. Can be reached from the main screen by pressing f(x) button.\n\n
|
||||
4. <b>Operators screen:</b> contains list of all available operators. Short click on operator inserts it into the editor. Can be reached from the main screen by pressing ∂,… button.\n\n
|
||||
5. <b>History screen:</b> contains list of all actions done by user. Short click on history item sets it into the editor. Can be reached from the main screen by pressing M button.\n\n
|
||||
6. <b>Settings screen:</b> contains application preferences. Can be reached from the main screen by pressing Settings in menu.
|
||||
</string>
|
||||
|
||||
</resources>
|
@@ -1,4 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!--
|
||||
~ Copyright (c) 2009-2011. Created by serso aka se.solovyev.
|
||||
~ For more information, please, contact se.solovyev@gmail.com
|
||||
~ or visit http://se.solovyev.org
|
||||
-->
|
||||
|
||||
<resources>
|
||||
<string name="c_app_name">Calculator++</string>
|
||||
<string name="c_app_icon_name">Calc++</string>
|
||||
@@ -7,7 +14,6 @@
|
||||
<string name="c_result_copied">Result copied to clipboard!</string>
|
||||
<string name="c_settings">Settings</string>
|
||||
<string name="c_help">Help</string>
|
||||
<string name="c_about">About</string>
|
||||
<string name="c_vars_and_constants">Variables And Constants</string>
|
||||
<!--PREFERENCE ACTIVITY-->
|
||||
<string name="c_prefs_main_category">Main settings</string>
|
||||
@@ -16,28 +22,10 @@
|
||||
<string name="c_prefs_drag_button_category">Drag buttons settings</string>
|
||||
|
||||
|
||||
<string name="c_prefs_drag_button_calibration">Drag button calibration</string>
|
||||
<string name="c_prefs_drag_button_calibration_summary">Allows to calibrate drag button behaviour</string>
|
||||
<string name="c_down">Down</string>
|
||||
<string name="c_up">Up</string>
|
||||
<string name="c_restart">Restart</string>
|
||||
|
||||
<!--ABOUT ACTIVITY-->
|
||||
<string name="c_about_content">Copyright (c) 2009-2011\n\n<b>Created by serso aka se.solovyev</b>\n\n
|
||||
This program is open source:\nall source code can be found on\n<a href="https://github.com/serso/android_calculator">http://github.com</a>\n\n
|
||||
For more information please\ncontact the author by email\n<a href="mailto:se.solovyev@gmail.com">se.solovyev@gmail.com</a>
|
||||
\nor visit\n<a href="http://se.solovyev.org">http://se.solovyev.org</a>\n\n
|
||||
If you want to support the project\nyou can donate money via\n<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=se%2esolovyev%40gmail%2ecom&lc=RU&item_name=Android%20Calculator&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">http://paypal.com</a>\n\n
|
||||
If you like the application\nrank it with 5 stars in\n<a href="https://market.android.com/details?id=org.solovyev.android.calculator">android.market</a>\n\n
|
||||
Thanks to people who translate Calculator++ in different languages:\n
|
||||
Italian - Gabriele Ravanetti\n
|
||||
Spanish - Jordi Luna\n\n
|
||||
This application uses next open source libraries:\n
|
||||
<a href="http://simple.sourceforge.net">Simple (XML serialization)</a>\n
|
||||
<a href="http://meditorworld.appspot.com/meditor.txt">JSCL</a>\n
|
||||
<a href="http://www.achartengine.org/">AChartEngine</a>
|
||||
</string>
|
||||
|
||||
<string name="c_undo">undo</string>
|
||||
<string name="c_redo">redo</string>
|
||||
<string name="c_clear">C</string>
|
||||
@@ -77,12 +65,6 @@
|
||||
<string name="c_calc_editor_hint">Enter new expression</string>
|
||||
<string name="c_press_to_copy">Press to copy</string>
|
||||
<string name="c_continue">Continue</string>
|
||||
<string name="c_donate">Donate</string>
|
||||
<string name="c_donate_text">You can thank the author of this program by email\n\n
|
||||
<a href="mailto:se.solovyev@gmail.com">se.solovyev@gmail.com</a>\n\n
|
||||
donating money via\n\n<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=se%2esolovyev%40gmail%2ecom&lc=RU&item_name=Android%20Calculator&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">http://paypal.com</a>\n\n
|
||||
or setting 5 stars in\n\n<a href="https://market.android.com/details?id=org.solovyev.android.calculator">android.market</a>
|
||||
</string>
|
||||
<string name="c_history">History</string>
|
||||
<string name="c_history_button">M</string>
|
||||
<string name="c_history_is_empty">History is empty!</string>
|
||||
@@ -139,93 +121,6 @@
|
||||
<string name="c_empty_var_error">Unable to create empty constant!</string>
|
||||
<string name="c_not_valid_result">Current result is not valid!</string>
|
||||
|
||||
<string name="c_faq">FAQ</string>
|
||||
<string name="c_hints">Hints</string>
|
||||
<string name="c_screens">Screens</string>
|
||||
|
||||
<string name="c_faq_content" formatted="false">
|
||||
<b>How can I use functions written in the top right and bottom right corners of the button?</b>\n
|
||||
\n
|
||||
Push the button and slide lightly up or down. Depending on value showed on the button action will occur.\n
|
||||
\n
|
||||
<b>How can I toggle between radians and degrees?</b>\n
|
||||
\n
|
||||
To toggle between different angle units you can either change appropriate option in application settings\n
|
||||
or use the toggle switch located on the 6 button\n
|
||||
(current value is lighted with yellow color).\n
|
||||
Also you can use deg() and rad() functions and ° operator to convert degrees to radians and vice versa.\n
|
||||
\n
|
||||
<b>Examples:</b>\n
|
||||
268° = 4.67748\n
|
||||
30.21° = 0.52726\n
|
||||
rad(30, 21, 0) = 0.52971\n
|
||||
deg(4.67748) = 268\n
|
||||
\n
|
||||
<b>Does C++ support %?</b>\n
|
||||
\n
|
||||
Yes, % function can be found in the top right corner of / button.\n
|
||||
\n
|
||||
<b>Examples:</b>\n
|
||||
\n
|
||||
100 + 50% = 150\n
|
||||
100 * 50% = 50\n
|
||||
100 + 100 * 50% * 50% = 125\n
|
||||
100 + (100 * 50% * (25 + 25)% + 100%) = 150\n
|
||||
\n
|
||||
<b>Note:</b>\n
|
||||
\n
|
||||
100 + (20 + 20)% = 140, <b>but</b> 100+ (20% + 20%) = 124.0\n
|
||||
100 + 50% ^ 2 = 2600, <b>but</b> 100 + 50 ^ 2% = 101.08\n
|
||||
\n
|
||||
<b>Does C++ support fractional calculations?</b>\n
|
||||
\n
|
||||
Yes, you can type your fractional expression in the editor and use ≡ (in the top right corner of = button). Also you can use ≡ to simplify expression.\n
|
||||
\n
|
||||
<b>Examples:</b>\n
|
||||
\n
|
||||
2/3 + 5/9 ≡ 11/9\n
|
||||
2/9 + 3/123 ≡ 91/369\n
|
||||
(6 - t) ^ 3 ≡ 216 - 108t + 18t ^ 2 - t ^ 3\n
|
||||
\n
|
||||
<b>Does C++ support complex calculations?</b>\n
|
||||
\n
|
||||
Yes, just enter complex expression (using i or √(-1) as imaginary number).\n
|
||||
\n
|
||||
<b>Examples:</b>\n
|
||||
\n
|
||||
(2i + 1) ^ 2 = -3 + 4i\n
|
||||
e ^ i = 0.5403 + 0.84147i\n
|
||||
\n
|
||||
<b>Can C++ plot graph of the function?</b>\n
|
||||
\n
|
||||
Yes, type expression which contains 1 undefined variable (e.g. cos(t) and t has no value) and click on the result. In the context menu choose \'Plot graph\'.\n
|
||||
\n
|
||||
<b>Does C++ support matrix calculations?</b>\n
|
||||
\n
|
||||
No, it doesn\'t.\n
|
||||
\n
|
||||
<b>Why I\'ve got 1.76732452452345E-17 instead of 0?</b>\n
|
||||
\n
|
||||
Check the \'Round result\' preference in application settings - it should be turned on.\n</string>
|
||||
|
||||
<string name="c_hints_content">
|
||||
1. You can omit unnecessary multiplication signs (instead of 3*t or t*sin(π*t) just type 3t or tsin(πt))\n\n
|
||||
2. Use ≡ (in the top right corner of = button) to simplify expression\n\n
|
||||
3. Just click on the result to copy it to the clipboard\n\n
|
||||
4. Use = button seldom - result is calculating on the fly\n\n
|
||||
5. Add constants for often used values (you can even save expressions)\n\n
|
||||
6. Use variables located on 4 and 5 buttons\n\n
|
||||
</string>
|
||||
|
||||
<string name="c_screens_content">
|
||||
1. <b>Main screen:</b> is shown on application start, can be reached from another screen by pressing Back button.\n\n
|
||||
2. <b>Variables and Constants screen:</b> contains list of available constants. User may add some constants and variables here by clicking Add button. Short click on variable/constant inserts it into the editor, long click - opens variable editor window. Can be reached from the main screen by pressing π,… button.\n\n
|
||||
3. <b>Functions screen:</b> contains list of all available functions. Short click on function inserts it into the editor. Can be reached from the main screen by pressing f(x) button.\n\n
|
||||
4. <b>Operators screen:</b> contains list of all available operators. Short click on operator inserts it into the editor. Can be reached from the main screen by pressing ∂,… button.\n\n
|
||||
5. <b>History screen:</b> contains list of all actions done by user. Short click on history item sets it into the editor. Can be reached from the main screen by pressing M button.\n\n
|
||||
6. <b>Settings screen:</b> contains application preferences. Can be reached from the main screen by pressing Settings in menu.
|
||||
</string>
|
||||
|
||||
<string name="c_plot_graph">Graph</string>
|
||||
<string name="c_min_x_value">From</string>
|
||||
<string name="c_max_x_value">To</string>
|
||||
@@ -255,4 +150,4 @@ Check the \'Round result\' preference in application settings - it should be tur
|
||||
<string name="c_history_was_removed">History was successfully removed!</string>
|
||||
<string name="c_history_saved">History was successfully saved!</string>
|
||||
|
||||
</resources>
|
||||
</resources>
|
Reference in New Issue
Block a user