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     <!--
    131       Item on Formula context menu used to paste from the Memory into the edit field. [CHAR_LIMIT=2]
    132       -->
    133     <string name="memory_recall" translatable="false">MR</string>
    134     <!-- Item on Result context menu used to store the result in memory. [CHAR_LIMIT=2]
    135       -->
    136     <string name="memory_store" translatable="false">MS</string>
    137     <!-- Item on Result context menu, which subtracts the current result from the number in memory.
    138       [CHAR_LIMIT=2]
    139       -->
    140     <string name="memory_subtract" translatable="false">M\u2212</string>
    141     <!-- Item on Result context menu, which adds the current result to the number in memory.
    142       [CHAR_LIMIT=2]
    143       -->
    144     <string name="memory_add" translatable="false">M+</string>
    145 
    146     <!-- Content description for 'e' button. [CHAR_LIMIT=NONE] -->
    147     <string name="desc_const_e">Euler\'s number</string>
    148     <!-- Content description for '' button. [CHAR_LIMIT=NONE] -->
    149     <string name="desc_const_pi">pi</string>
    150 
    151     <!-- Content description for '.' button. [CHAR_LIMIT=NONE] -->
    152     <string name="desc_dec_point">point</string>
    153 
    154     <!-- Content description for '(' button. [CHAR_LIMIT=NONE] -->
    155     <string name="desc_lparen">left parenthesis</string>
    156     <!-- Content description for ')' button. [CHAR_LIMIT=NONE] -->
    157     <string name="desc_rparen">right parenthesis</string>
    158 
    159     <!-- Content description for 'cos' button. [CHAR_LIMIT=NONE] -->
    160     <string name="desc_fun_cos">cosine</string>
    161     <!-- Content description for 'ln' button. [CHAR_LIMIT=NONE] -->
    162     <string name="desc_fun_ln">natural logarithm</string>
    163     <!-- Content description for 'log' button. [CHAR_LIMIT=NONE] -->
    164     <string name="desc_fun_log">logarithm</string>
    165     <!-- Content description for 'sin' button. [CHAR_LIMIT=NONE] -->
    166     <string name="desc_fun_sin">sine</string>
    167     <!-- Content description for 'tan' button. [CHAR_LIMIT=NONE] -->
    168     <string name="desc_fun_tan">tangent</string>
    169     <!-- Content description for 'arccos' button. [CHAR_LIMIT=NONE] -->
    170     <string name="desc_fun_arccos">inverse cosine</string>
    171     <!-- Content description for 'arcsin' button. [CHAR_LIMIT=NONE] -->
    172     <string name="desc_fun_arcsin">inverse sine</string>
    173     <!-- Content description for 'arctan' button. [CHAR_LIMIT=NONE] -->
    174     <string name="desc_fun_arctan">inverse tangent</string>
    175 
    176     <!--
    177       Content description for 10^ button. This button is used to raise 10 to the subsequently
    178       entered power. E.g. <10^>3 would yield 1000.
    179       [CHAR_LIMIT=NONE]
    180       -->
    181     <string name="desc_fun_10pow">ten to the power of</string>
    182     <!-- Content description for e^ (exponential function) button. [CHAR_LIMIT=NONE] -->
    183     <string name="desc_fun_exp">exponential function</string>
    184     <!--
    185       Content description for ^2 button. This button is used to square the previously entered
    186       number. E.g. 3<^2> would yield 9.
    187       [CHAR_LIMIT=NONE]
    188       -->
    189     <string name="desc_op_sqr">squared</string>
    190 
    191     <!-- Content description for '+' button. [CHAR_LIMIT=NONE] -->
    192     <string name="desc_op_add">plus</string>
    193     <!-- Content description for '' button. [CHAR_LIMIT=NONE] -->
    194     <string name="desc_op_div">divide</string>
    195     <!-- Content description for '!' button. [CHAR_LIMIT=NONE] -->
    196     <string name="desc_op_fact">factorial</string>
    197     <!-- Content description for '' button. [CHAR_LIMIT=NONE] -->
    198     <string name="desc_op_mul">multiply</string>
    199     <!-- Content description for '%' button. [CHAR_LIMIT=NONE] -->
    200     <string name="desc_op_pct">percent</string>
    201     <!-- Content description for '^' button. [CHAR_LIMIT=NONE] -->
    202     <string name="desc_op_pow">power</string>
    203     <!-- Content description for '' button. [CHAR_LIMIT=NONE] -->
    204     <string name="desc_op_sqrt">square root</string>
    205     <!-- Content description for '-' button. [CHAR_LIMIT=NONE] -->
    206     <string name="desc_op_sub">minus</string>
    207 
    208     <!-- Content description for degree mode. [CHAR_LIMIT=NONE] -->
    209     <string name="desc_mode_deg">degree mode</string>
    210     <!-- Content description for radian mode. [CHAR_LIMIT=NONE] -->
    211     <string name="desc_mode_rad">radian mode</string>
    212 
    213     <!-- Content description for switch to degree button. [CHAR_LIMIT=NONE] -->
    214     <string name="desc_switch_deg">switch to degrees</string>
    215     <!-- Content description for switch to radian button. [CHAR_LIMIT=NONE] -->
    216     <string name="desc_switch_rad">switch to radians</string>
    217 
    218     <!-- Content description for '=' button. [CHAR_LIMIT=NONE] -->
    219     <string name="desc_eq">equals</string>
    220     <!-- Content description for "clr" button. Deletes entire formula. [CHAR_LIMIT=NONE] -->
    221     <string name="desc_clr">clear</string>
    222     <!--
    223       Content description for "del" button. Deletes single character. Should differ
    224       from desc_clr. [CHAR_LIMIT=NONE]
    225       -->
    226     <string name="desc_del">delete</string>
    227     <!-- Content description for "inv" button to show inverse functions. [CHAR_LIMIT=NONE] -->
    228     <string name="desc_inv_off">show inverse functions</string>
    229     <!-- Content description for "inv" button to hide inverse functions. [CHAR_LIMIT=NONE] -->
    230     <string name="desc_inv_on">hide inverse functions</string>
    231 
    232     <!-- Content description for formula field when it is empty. [CHAR_LIMIT=NONE] -->
    233     <string name="desc_formula">No formula</string>
    234     <!-- Content description for result field when it is empty. [CHAR_LIMIT=NONE] -->
    235     <string name="desc_result">No result</string>
    236 
    237     <!-- Content description for the numeric/operation pad when slide-able. [CHAR_LIMIT=NONE] -->
    238     <string name="desc_num_pad">Numbers and basic operations</string>
    239     <!-- Content description for the advanced pad when slide-able. [CHAR_LIMIT=NONE] -->
    240     <string name="desc_adv_pad">Advanced operations</string>
    241     <!-- Content description for the pad pages when slide-able. -->
    242     <string-array name="desc_pad_pages" translatable="false">
    243         <item>@string/desc_num_pad</item>
    244         <item>@string/desc_adv_pad</item>
    245     </string-array>
    246 
    247     <!-- Error displayed when expression evaluates to an undefined result. [CHAR_LIMIT=20] -->
    248     <string name="error_nan">Not a number</string>
    249     <!-- Error displayed when expression contains a syntax error. [CHAR_LIMIT=20] -->
    250     <string name="error_syntax">Bad expression</string>
    251     <!-- Error displayed when evaluation is manually aborted. [CHAR_LIMIT=20] -->
    252     <string name="error_aborted">Aborted</string>
    253     <!-- Error displayed when excessive precision is required. [CHAR_LIMIT=20] -->
    254     <string name="error_overflow">Infinite?</string>
    255     <!--
    256       Error displayed when division by zero is detected.
    257 
    258       If the translation does not fit within the given limit, then a shortened version must
    259       be used, e.g. "Division by 0". Exceeding the limit will result in a truncated string.
    260 
    261       [CHAR_LIMIT=20]
    262       -->
    263     <string name="error_zero_divide">Can\'t divide by 0</string>
    264 
    265     <!-- Toast shown when text is copied to the clipboard. [CHAR_LIMIT=40] -->
    266     <string name="text_copied_toast">Text copied</string>
    267 
    268     <!-- Dialog message when a computation is cancelled by the user. [CHAR_LIMIT=NONE] -->
    269     <string name="cancelled">Computation cancelled.</string>
    270     <!-- Dialog message when a computation times out. [CHAR_LIMIT=NONE] -->
    271     <string name="timeout">Value may be infinite or undefined.</string>
    272     <!--
    273       Button label to allow future computations with a longer timeout.
    274 
    275       When evaluating a result takes too long, we show a "timed out" dialog. This button allows
    276       the user to increase the maximum amount of time we attempt to evaluate the expression before
    277       "timing out".
    278 
    279       [CHAR_LIMIT=40]
    280       -->
    281     <string name="ok_remove_timeout">Use longer timeouts</string>
    282     <!-- Button label to dismiss informative text message. [CHAR_LIMIT=40] -->
    283     <string name="dismiss">Dismiss</string>
    284     <!-- Appended indicator (for "leading" display) that result is exact. [CHAR_LIMIT=NONE] -->
    285     <string name="exact">(exact)</string>
    286     <!-- Indicator (for "leading" display) that result is inexact. [CHAR_LIMIT=NONE] -->
    287     <string name="approximate">(1 in last digit)</string>
    288 
    289     <!-- Menu option to display result including leading digits. [CHAR_LIMIT=40] -->
    290     <string name="menu_leading">Answer with leading digits</string>
    291     <!-- Menu option to display result as fraction. [CHAR_LIMIT=40] -->
    292     <string name="menu_fraction">Answer as fraction</string>
    293     <!-- Menu option to view the app's open source licenses. [CHAR_LIMIT=40] -->
    294     <string name="menu_licenses">Open source licenses</string>
    295     <!-- Menu option to access calculation history. [CHAR_LIMIT=40] -->
    296     <string name="menu_history">History</string>
    297     <!-- Menu option to clear calculation history and memory. [CHAR_LIMIT=40] -->
    298     <string name="menu_clear_history">Clear</string>
    299 
    300     <!-- Action bar title in history page. [CHAR_LIMIT=40] -->
    301     <string name="title_history">History</string>
    302     <!-- Action bar navigate up description in history page. [CHAR_LIMIT=40] -->
    303     <string name="desc_navigate_up">Navigate up</string>
    304 
    305     <!-- Title for alert dialog when calculation takes too long (timeout). [CHAR_LIMIT=30] -->
    306     <string name="dialog_timeout">Timeout</string>
    307 
    308     <!--
    309       Message for alert dialog when user is about to clear history and memory. [CHAR_LIMIT=NONE]
    310     -->
    311     <string name="dialog_clear">Clear history and memory?</string>
    312 
    313     <!-- Title for "current expression" in history page. [CHAR_LIMIT=40] -->
    314     <string name="title_current_expression">Current Expression</string>
    315     <!-- Placeholder string when there is no history to be shown. [CHAR_LIMIT=40] -->
    316     <string name="no_history">No History</string>
    317 
    318 </resources>
    319