Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3   Copyright (C) 2015 The Android Open Source Project
      4 
      5   Licensed under the Apache License, Version 2.0 (the "License");
      6   you may not use this file except in compliance with the License.
      7   You may obtain a copy of the License at
      8 
      9     http://www.apache.org/licenses/LICENSE-2.0
     10 
     11   Unless required by applicable law or agreed to in writing, software
     12   distributed under the License is distributed on an "AS IS" BASIS,
     13   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14   See the License for the specific language governing permissions and
     15   limitations under the License.
     16   -->
     17 
     18 <resources>
     19 
     20     <!-- Name of the application. [CHAR_LIMIT=NONE] -->
     21     <string name="app_name">Calculator</string>
     22 
     23     <!-- Constant for Euler's number (i.e. "2.7182"). [CHAR_LIMIT=1] -->
     24     <string name="const_e" translatable="false">e</string>
     25     <!-- Constant for pi (i.e. "3.1415"). [CHAR_LIMIT=1] -->
     26     <string name="const_pi" translatable="false"></string>
     27 
     28     <!-- Left parenthesis (e.g. "log(", "2  (3 - 1)". [CHAR_LIMIT=1] -->
     29     <string name="lparen" translatable="false">(</string>
     30     <!-- Right parenthesis (e.g. "log(2)", "(3 - 1)  2". [CHAR_LIMIT=1] -->
     31     <string name="rparen" translatable="false">)</string>
     32 
     33     <!--
     34       Decimal separator (e.g. "1.23" or "1,23").
     35 
     36       This should be whatever character is appropriate for use as a decimal sign for a given locale
     37       when used with Arabic numerals (i.e. 0, 1, 2, 3, ...)
     38 
     39       [CHAR_LIMIT=1]
     40       -->
     41     <string name="dec_point">.</string>
     42 
     43     <!-- Decimal representation of zero (e.g. "0", "10", "1.0", "1e0"). [CHAR_LIMIT=1] -->
     44     <string name="digit_0" translatable="false">0</string>
     45     <!-- Decimal representation of one (e.g. "1", "11", "1.1", "1e1"). [CHAR_LIMIT=1] -->
     46     <string name="digit_1" translatable="false">1</string>
     47     <!-- Decimal representation of two (e.g. "2", "22", "2.2", "2e2"). [CHAR_LIMIT=1] -->
     48     <string name="digit_2" translatable="false">2</string>
     49     <!-- Decimal representation of three (e.g. "3", "33", "3.3", "3e3"). [CHAR_LIMIT=1] -->
     50     <string name="digit_3" translatable="false">3</string>
     51     <!-- Decimal representation of four (e.g. "4", "44", "4.4", "4e4"). [CHAR_LIMIT=1] -->
     52     <string name="digit_4" translatable="false">4</string>
     53     <!-- Decimal representation of five (e.g. "5", "55", "5.5", "5e5"). [CHAR_LIMIT=1] -->
     54     <string name="digit_5" translatable="false">5</string>
     55     <!-- Decimal representation of six (e.g. "6", "66", "6.6", "6e6"). [CHAR_LIMIT=1] -->
     56     <string name="digit_6" translatable="false">6</string>
     57     <!-- Decimal representation of seven (e.g. "7", "77", "7.7", "7e7"). [CHAR_LIMIT=1] -->
     58     <string name="digit_7" translatable="false">7</string>
     59     <!-- Decimal representation of eight (e.g. "8", "88", "8.8", "8e8"). [CHAR_LIMIT=1] -->
     60     <string name="digit_8" translatable="false">8</string>
     61     <!-- Decimal representation of eight (e.g. "9", "99", "9.9", "9e9"). [CHAR_LIMIT=1] -->
     62     <string name="digit_9" translatable="false">9</string>
     63 
     64     <!-- Addition operator (e.g. "1 + 2"). [CHAR_LIMIT=1] -->
     65     <string name="op_add" translatable="false">+</string>
     66     <!-- Divide operator (e.g. "1  2"). [CHAR_LIMIT=1] -->
     67     <string name="op_div" translatable="false"></string>
     68     <!-- Factorial operator (e.g. "2!"). [CHAR_LIMIT=1] -->
     69     <string name="op_fact" translatable="false">!</string>
     70     <!-- Multiply operator (e.g. "1  2"). [CHAR_LIMIT=1] -->
     71     <string name="op_mul" translatable="false"></string>
     72     <!-- Percent operator (e.g. "25%"). [CHAR_LIMIT=1] -->
     73     <string name="op_pct" translatable="false">%</string>
     74     <!-- Power operator (e.g. "1 ^ 2"). [CHAR_LIMIT=1] -->
     75     <string name="op_pow" translatable="false">^</string>
     76     <!-- Square root operator (e.g. "1"). [CHAR_LIMIT=1] -->
     77     <string name="op_sqrt" translatable="false"></string>
     78     <!-- Subtraction operator (e.g. "1 - 2"). [CHAR_LIMIT=1] -->
     79     <string name="op_sub" translatable="false"></string>
     80 
     81     <!-- Abbrev. name of cosine function (e.g. "cos()"). [CHAR_LIMIT=4] -->
     82     <string name="fun_cos" translatable="false">cos</string>
     83     <!-- Natural logarithm function (e.g. "ln(2)"). [CHAR_LIMIT=4] -->
     84     <string name="fun_ln" translatable="false">ln</string>
     85     <!-- Logarithm function (e.g. "log(10)"). [CHAR_LIMIT=4] -->
     86     <string name="fun_log" translatable="false">log</string>
     87     <!-- Abbrev. name of sine function (e.g. "sin()"). [CHAR_LIMIT=4] -->
     88     <string name="fun_sin" translatable="false">sin</string>
     89     <!-- Abbrev. name of tangent function (e.g. "tan()"). [CHAR_LIMIT=4] -->
     90     <string name="fun_tan" translatable="false">tan</string>
     91     <!-- Abbrev. name of cosine function (e.g. "arccos()"). [CHAR_LIMIT=5] -->
     92     <string name="fun_arccos" translatable="false">cos\u207B\u00B9</string>
     93     <!-- Abbrev. name of sine function (e.g. "arcsin()"). [CHAR_LIMIT=5] -->
     94     <string name="fun_arcsin" translatable="false">sin\u207B\u00B9</string>
     95     <!-- Abbrev. name of tangent function (e.g. "arctan()"). [CHAR_LIMIT=5] -->
     96     <string name="fun_arctan" translatable="false">tan\u207B\u00B9</string>
     97 
     98     <!-- Abbrev. name of base 10 exponential function (e.g. "10^6"). [CHAR_LIMIT=5] -->
     99     <string name="fun_10pow" translatable="false">10\u02E3</string>
    100     <!-- Abbrev. name of exponential function (e.g. "e^6"). [CHAR_LIMIT=5] -->
    101     <string name="fun_exp" translatable="false">e\u02E3</string>
    102     <!-- Abbrev. name of suffix square function on key (e.g. "17^2"). [CHAR_LIMIT=5] -->
    103     <string name="op_sqr" translatable="false">x\u00B2</string>
    104     <!--
    105       Abbrev. name of suffix square function in formula.
    106       "^2" does not work, since it blends into a later constant.
    107       -->
    108     <string name="squared" translatable="false"></string>
    109     <!-- Abbrev. name of exponential function in formula.  -->
    110     <string name="exponential" translatable = "false">exp</string>
    111 
    112     <!-- Abbrev. name of degree mode [CHAR_LIMIT=4] -->
    113     <string name="mode_deg">deg</string>
    114     <!-- Abbrev. name of radian mode. [CHAR_LIMIT=4] -->
    115     <string name="mode_rad">rad</string>
    116 
    117     <!-- Equals button (e.g. "1 + 2 = ?"). [CHAR_LIMIT=1] -->
    118     <string name="eq" translatable="false">=</string>
    119     <!-- Clear button to clear the currently entered expression. [CHAR_LIMIT=4] -->
    120     <string name="clr">clr</string>
    121     <!--
    122       Announced when all characters are removed from Formula, e.g. after clear. [CHAR_LIMIT=NONE]
    123       -->
    124     <string name="cleared">cleared</string>
    125     <!-- Delete button to remove last entered token. [CHAR_LIMIT=4] -->
    126     <string name="del">del</string>
    127     <!-- Toggle button to show/hide inverse functions. [CHAR_LIMIT=4] -->
    128     <string name="inv" translatable="false">inv</string>
    129 
    130     <!-- Content description for 'e' button. [CHAR_LIMIT=NONE] -->
    131     <string name="desc_const_e">Euler\'s number</string>
    132     <!-- Content description for '' button. [CHAR_LIMIT=NONE] -->
    133     <string name="desc_const_pi">pi</string>
    134 
    135     <!-- Content description for '.' button. [CHAR_LIMIT=NONE] -->
    136     <string name="desc_dec_point">point</string>
    137 
    138     <!-- Content description for '(' button. [CHAR_LIMIT=NONE] -->
    139     <string name="desc_lparen">left parenthesis</string>
    140     <!-- Content description for ')' button. [CHAR_LIMIT=NONE] -->
    141     <string name="desc_rparen">right parenthesis</string>
    142 
    143     <!-- Content description for 'cos' button. [CHAR_LIMIT=NONE] -->
    144     <string name="desc_fun_cos">cosine</string>
    145     <!-- Content description for 'ln' button. [CHAR_LIMIT=NONE] -->
    146     <string name="desc_fun_ln">natural logarithm</string>
    147     <!-- Content description for 'log' button. [CHAR_LIMIT=NONE] -->
    148     <string name="desc_fun_log">logarithm</string>
    149     <!-- Content description for 'sin' button. [CHAR_LIMIT=NONE] -->
    150     <string name="desc_fun_sin">sine</string>
    151     <!-- Content description for 'tan' button. [CHAR_LIMIT=NONE] -->
    152     <string name="desc_fun_tan">tangent</string>
    153     <!-- Content description for 'arccos' button. [CHAR_LIMIT=NONE] -->
    154     <string name="desc_fun_arccos">inverse cosine</string>
    155     <!-- Content description for 'arcsin' button. [CHAR_LIMIT=NONE] -->
    156     <string name="desc_fun_arcsin">inverse sine</string>
    157     <!-- Content description for 'arctan' button. [CHAR_LIMIT=NONE] -->
    158     <string name="desc_fun_arctan">inverse tangent</string>
    159 
    160     <!--
    161       Content description for 10^ button. This button is used to raise 10 to the subsequently
    162       entered power. E.g. <10^>3 would yield 1000.
    163       [CHAR_LIMIT=NONE]
    164       -->
    165     <string name="desc_fun_10pow">ten to the power of</string>
    166     <!-- Content description for e^ (exponential function) button. [CHAR_LIMIT=NONE] -->
    167     <string name="desc_fun_exp">exponential function</string>
    168     <!--
    169       Content description for ^2 button. This button is used to square the previously entered
    170       number. E.g. 3<^2> would yield 9.
    171       [CHAR_LIMIT=NONE]
    172       -->
    173     <string name="desc_op_sqr">squared</string>
    174 
    175     <!-- Content description for '+' button. [CHAR_LIMIT=NONE] -->
    176     <string name="desc_op_add">plus</string>
    177     <!-- Content description for '' button. [CHAR_LIMIT=NONE] -->
    178     <string name="desc_op_div">divide</string>
    179     <!-- Content description for '!' button. [CHAR_LIMIT=NONE] -->
    180     <string name="desc_op_fact">factorial</string>
    181     <!-- Content description for '' button. [CHAR_LIMIT=NONE] -->
    182     <string name="desc_op_mul">multiply</string>
    183     <!-- Content description for '%' button. [CHAR_LIMIT=NONE] -->
    184     <string name="desc_op_pct">percent</string>
    185     <!-- Content description for '^' button. [CHAR_LIMIT=NONE] -->
    186     <string name="desc_op_pow">power</string>
    187     <!-- Content description for '' button. [CHAR_LIMIT=NONE] -->
    188     <string name="desc_op_sqrt">square root</string>
    189     <!-- Content description for '-' button. [CHAR_LIMIT=NONE] -->
    190     <string name="desc_op_sub">minus</string>
    191 
    192     <!-- Content description for degree mode. [CHAR_LIMIT=NONE] -->
    193     <string name="desc_mode_deg">degree mode</string>
    194     <!-- Content description for radian mode. [CHAR_LIMIT=NONE] -->
    195     <string name="desc_mode_rad">radian mode</string>
    196 
    197     <!-- Content description for switch to degree button. [CHAR_LIMIT=NONE] -->
    198     <string name="desc_switch_deg">switch to degrees</string>
    199     <!-- Content description for switch to radian button. [CHAR_LIMIT=NONE] -->
    200     <string name="desc_switch_rad">switch to radians</string>
    201 
    202     <!-- Content description for '=' button. [CHAR_LIMIT=NONE] -->
    203     <string name="desc_eq">equals</string>
    204     <!-- Content description for "clr" button. Deletes entire formula. [CHAR_LIMIT=NONE] -->
    205     <string name="desc_clr">clear</string>
    206     <!--
    207       Content description for "del" button. Deletes single character. Should differ
    208       from desc_clr. [CHAR_LIMIT=NONE]
    209       -->
    210     <string name="desc_del">delete</string>
    211     <!-- Content description for "inv" button to show inverse functions. [CHAR_LIMIT=NONE] -->
    212     <string name="desc_inv_off">show inverse functions</string>
    213     <!-- Content description for "inv" button to hide inverse functions. [CHAR_LIMIT=NONE] -->
    214     <string name="desc_inv_on">hide inverse functions</string>
    215 
    216     <!-- Error displayed when expression evaluates to an undefined result. [CHAR_LIMIT=20] -->
    217     <string name="error_nan">Not a number</string>
    218     <!-- Error displayed when expression contains a syntax error. [CHAR_LIMIT=20] -->
    219     <string name="error_syntax">Bad expression</string>
    220     <!-- Error displayed when evaluation is manually aborted. [CHAR_LIMIT=20] -->
    221     <string name="error_aborted">Aborted</string>
    222     <!-- Error displayed when excessive precision is required. [CHAR_LIMIT=20] -->
    223     <string name="error_overflow">Infinite?</string>
    224     <!--
    225       Error displayed when division by zero is detected.
    226 
    227       If the translation does not fit within the given limit, then a shortened version must
    228       be used, e.g. "Division by 0". Exceeding the limit will result in a truncated string.
    229 
    230       [CHAR_LIMIT=20]
    231       -->
    232     <string name="error_zero_divide">Can\'t divide by 0</string>
    233 
    234     <!-- Toast shown when text is copied to the clipboard. [CHAR_LIMIT=40] -->
    235     <string name="text_copied_toast">Text copied</string>
    236 
    237     <!-- Dialog message when a computation is cancelled by the user. [CHAR_LIMIT=NONE] -->
    238     <string name="cancelled">Computation cancelled</string>
    239     <!-- Dialog message when a computation times out. [CHAR_LIMIT=NONE] -->
    240     <string name="timeout">Timed out. Value may be infinite or undefined.</string>
    241     <!--
    242       Button label to allow future computations with a longer timeout.
    243 
    244       When evaluating a result takes too long, we show a "timed out" dialog. This button allows
    245       the user to increase the maximum amount of time we attempt to evaluate the expression before
    246       "timing out".
    247 
    248       [CHAR_LIMIT=40]
    249       -->
    250     <string name="ok_remove_timeout">Use longer timeouts</string>
    251     <!-- Button label to dismiss informative text message. [CHAR_LIMIT=40] -->
    252     <string name="dismiss">Dismiss</string>
    253     <!-- Appended indicator (for "leading" display) that result is exact. [CHAR_LIMIT=NONE] -->
    254     <string name="exact">(exact)</string>
    255     <!-- Indicator (for "leading" display) that result is inexact. [CHAR_LIMIT=NONE] -->
    256     <string name="approximate">(1 in last digit)</string>
    257 
    258     <!-- Menu option to display result including leading digits. [CHAR_LIMIT=40] -->
    259     <string name="menu_leading">Answer with leading digits</string>
    260     <!-- Menu option to display result as fraction. [CHAR_LIMIT=40] -->
    261     <string name="menu_fraction">Answer as fraction</string>
    262     <!-- Menu option to view the app's open source licenses. [CHAR_LIMIT=40] -->
    263     <string name="menu_licenses">Open source licenses</string>
    264 
    265 </resources>
    266