blob: 11d4469bc3bbf17652612c87225e4d2c6094987b [file] [log] [blame]
The Android Open Source Projectb301ed22009-03-03 19:32:17 -08001<?xml version="1.0" encoding="utf-8"?>
Alan Viverette8bea4942014-03-03 14:25:51 -08002<!--
Justin Klaassen4b3af052014-05-27 17:53:10 -07003 Copyright (C) 2014 The Android Open Source Project
Kenny Rootcc9f2542010-03-17 22:08:19 -07004
Justin Klaassen4b3af052014-05-27 17:53:10 -07005 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
Kenny Rootcc9f2542010-03-17 22:08:19 -07008
Justin Klaassen4b3af052014-05-27 17:53:10 -07009 http://www.apache.org/licenses/LICENSE-2.0
Kenny Rootcc9f2542010-03-17 22:08:19 -070010
Justin Klaassen4b3af052014-05-27 17:53:10 -070011 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 -->
Kenny Rootcc9f2542010-03-17 22:08:19 -070017
The Android Open Source Projectb301ed22009-03-03 19:32:17 -080018<resources>
Alan Viverette8bea4942014-03-03 14:25:51 -080019
Justin Klaassen4b3af052014-05-27 17:53:10 -070020 <!-- Name of the application. [CHAR_LIMIT=NONE] -->
Alan Viverette7387add2014-03-05 17:57:05 -080021 <string name="app_name">Calculator</string>
Mindy Pereirac0c011f2011-12-05 14:30:51 -080022
Justin Klaassen4b3af052014-05-27 17:53:10 -070023 <!-- Error displayed when expression evaluates to NaN. [CHAR_LIMIT=14] -->
24 <string name="error_nan">Not a number</string>
25 <!-- Error displayed when expression contains a syntax error. [CHAR_LIMIT=14] -->
26 <string name="error_syntax">Error</string>
Mindy Pereira88a84db2011-12-06 13:28:15 -080027
Justin Klaassen4b3af052014-05-27 17:53:10 -070028 <!-- Abbrev. name of cosine function (e.g. "cos(π)". [CHAR_LIMIT=3] -->
29 <string name="fun_cos">cos</string>
30 <!-- Natural logarithm function (e.g. "ln(2)"). [CHAR_LIMIT=3] -->
31 <string name="fun_ln">ln</string>
32 <!-- Logarithm function (e.g. "log(10)"). [CHAR_LIMIT=3] -->
33 <string name="fun_log">log</string>
34 <!-- Abbrev. name of sine function (e.g. "sin(π)". [CHAR_LIMIT=3] -->
35 <string name="fun_sin">sin</string>
36 <!-- Abbrev. name of tangent function (e.g. "tan(π)". [CHAR_LIMIT=3] -->
37 <string name="fun_tan">tan</string>
38
39 <!-- Clear operation to clear the currently entered expression. [CHAR_LIMIT=3] -->
40 <string name="clr">clr</string>
41 <!-- Delete operation to remove last entered token. [CHAR_LIMIT=3] -->
42 <string name="del">del</string>
43
44 <!-- Content Descriptions -->
45 <eat-comment />
46
47 <!-- Content description for 'e' button. [CHAR_LIMIT=NONE] -->
48 <string name="desc_const_e">Euler\'s number</string>
49 <!-- Content description for 'π' button. [CHAR_LIMIT=NONE] -->
50 <string name="desc_const_pi">pi</string>
51
52 <!-- Content description for '.' button. [CHAR_LIMIT=NONE] -->
53 <string name="desc_dec_point">point</string>
54
55 <!-- Content description for '(' button. [CHAR_LIMIT=NONE] -->
56 <string name="desc_lparen">left parenthesis</string>
57 <!-- Content description for ')' button. [CHAR_LIMIT=NONE] -->
58 <string name="desc_rparen">right parenthesis</string>
59
60 <!-- Content description for 'cos' button. [CHAR_LIMIT=NONE] -->
61 <string name="desc_fun_cos">cosine</string>
62 <!-- Content description for 'ln' button. [CHAR_LIMIT=NONE] -->
63 <string name="desc_fun_ln">natural logarithm</string>
64 <!-- Content description for 'log' button. [CHAR_LIMIT=NONE] -->
65 <string name="desc_fun_log">logarithm</string>
66 <!-- Content description for 'sin' button. [CHAR_LIMIT=NONE] -->
67 <string name="desc_fun_sin">sine</string>
68 <!-- Content description for 'tan' button. [CHAR_LIMIT=NONE] -->
69 <string name="desc_fun_tan">tangent</string>
70
71 <!-- Content description for '+' button. [CHAR_LIMIT=NONE] -->
72 <string name="desc_op_add">plus</string>
73 <!-- Content description for '÷' button. [CHAR_LIMIT=NONE] -->
74 <string name="desc_op_div">divide</string>
75 <!-- Content description for '!' button. [CHAR_LIMIT=NONE] -->
76 <string name="desc_op_fact">factorial</string>
77 <!-- Content description for '×' button. [CHAR_LIMIT=NONE] -->
78 <string name="desc_op_mul">times</string>
79 <!-- Content description for '^' button. [CHAR_LIMIT=NONE] -->
80 <string name="desc_op_pow">power</string>
81 <!-- Content description for '√' button. [CHAR_LIMIT=NONE] -->
82 <string name="desc_op_sqrt">square root</string>
83 <!-- Content description for '-' button. [CHAR_LIMIT=NONE] -->
84 <string name="desc_op_sub">minus</string>
85
86 <!-- Content description for "clr" button. [CHAR_LIMIT=NONE] -->
87 <string name="desc_clr">clear</string>
88 <!-- Content description for "del" button. [CHAR_LIMIT=NONE] -->
89 <string name="desc_del">delete</string>
90 <!-- Content description for '=' button. [CHAR_LIMIT=NONE] -->
91 <string name="desc_eq">equals</string>
Alan Viverette8bea4942014-03-03 14:25:51 -080092
The Android Open Source Projectb301ed22009-03-03 19:32:17 -080093</resources>