android-calculatorpp/android-app-core/res/values-zh-rtw/text_functions.xml
2013-06-26 12:22:26 +04:00

60 lines
3.4 KiB
XML

<!--
~ Copyright 2013 serso aka se.solovyev
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~ Contact details
~
~ Email: se.solovyev@gmail.com
~ Site: http://se.solovyev.org
-->
<resources>
<string name="c_functions">函數</string>
<string name="c_fun_description_sin">三角正弦函數.</string>
<string name="c_fun_description_cos">三角餘弦函數.</string>
<string name="c_fun_description_tan">三角正切函數.</string>
<string name="c_fun_description_cot">三角餘切函數.</string>
<string name="c_fun_description_asin">Arcsine - sin 的反函數.</string>
<string name="c_fun_description_acos">Arccosine - cos 的反函數.</string>
<string name="c_fun_description_atan">Arctangent - tan 的反函數.</string>
<string name="c_fun_description_acot">Arccotangent - cot 的反函數.</string>
<string name="c_fun_description_ln">自然對數 - 以e為底的指數.</string>
<string name="c_fun_description_lg">以10為底的對數.</string>
<string name="c_fun_description_log">以指定的數為底數的對數.</string>
<string name="c_fun_description_exp">指數函數.</string>
<string name="c_fun_description_sqrt">平方根.</string>
<string name="c_fun_description_cubic">立方根.</string>
<string name="c_fun_description_abs">取絕對值.</string>
<string name="c_fun_description_sgn">取正負號: 傳回 -1 若參數小於0, 0 若參數等於 0, 1 若參數大於 0.</string>
<string name="c_fun_description_eq">相等 - 傳回 1 若兩參數相等, 否則傳回 0.</string>
<string name="c_fun_description_le">小於或等於 - 傳回 1 若兩參數相等或第一個參數小於第二個參數, 否則傳回 0.</string>
<string name="c_fun_description_ge">大於或等於 - 傳回 1 若兩參數相等或第一個參數大於第二個參數, 否則傳回 0.</string>
<string name="c_fun_description_ne">不等於 - 傳回 1 若兩參數不相等, 否則傳回 0.</string>
<string name="c_fun_description_lt">小於 - 傳回 1 若第一個參數小於第二個參數, 否則傳回 0.</string>
<string name="c_fun_description_gt">大於 - 傳回 1 若第一個參數大於第二個參數, 否則傳回 0.</string>
<string name="c_fun_description_rad">將角度轉為弳度: d - 角, m - 分 (預設為 0), s - 秒角 (預設為 0).</string>
<string name="c_fun_description_dms">將 DMS 表示法轉換為十進位表示法: d - 角, m - 分 (預設為 0), s - seconds (預設為 0).</string>
<string name="c_fun_description_deg">將弳度轉為角度.</string>
<string name="c_fun_category_trig">三角函數</string>
<string name="c_fun_category_hyper_trig">雙曲函數</string>
<string name="c_fun_category_comparison">比較函數</string>
<string name="c_fun_category_common">常用函數</string>
<string name="c_fun_category_my">自訂函數</string>
</resources>