You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/src/main/res/values/strings.xml
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -28,8 +28,8 @@
28
28
<item>Add variable</item>
29
29
<item>Add function</item>
30
30
</string-array>
31
-
<stringname="contextItemDeletePrompt">Do you want to delete "%s" ?</string>
32
-
<stringname="contextItemDeleted">"%s" has been deleted.</string>
31
+
<stringname="contextItemDeletePrompt">Do you want to delete \"%s\" ?</string>
32
+
<stringname="contextItemDeleted">\"%s\" has been deleted.</string>
33
33
34
34
<!-- both EditFunctionDialogFragment and EditVariableDialogFragment -->
35
35
<stringname="name">Name</string>
@@ -62,30 +62,30 @@
62
62
<stringname="evalStep">%1$s evaluates to %2$s</string>
63
63
<stringname="exprEndReached">A sub-expression was expected, but the end of the expression was reached.</string>
64
64
<stringname="failedStoreResult">Warning: failed to store result. Reason: %s</string>
65
-
<stringname="incorrectDelete">Incorrect syntax. To delete a function, the number of arguments must be specified (e.g. "fun(2)=" to delete "fun(x, y)").</string>
65
+
<stringname="incorrectDelete">Incorrect syntax. To delete a function, the number of arguments must be specified (e.g. \"fun(2)=\" to delete \"fun(x, y)\").</string>
66
66
<stringname="interactiveHelp">
67
67
Accepted statements are expressions, assignments and commands.
68
68
An expression can be formed by integer or decimal numbers, the +,-,*,/,^ binary operators, variables, functions and parenthesis.
69
69
A variable is a string of one or more letters and/or underscores. Variables can\'t be named as commands, which are reserved words.
70
-
When an expression is successfully evaluated, it\'s result is displayed and automatically assigned to the "ans" variable, so it can be accessed from the next statement.
70
+
When an expression is successfully evaluated, it\'s result is displayed and automatically assigned to the \"ans\" variable, so it can be accessed from the next statement.
71
71
A variable assignment is formed by a variable name followed by the = symbol and an expression, which is evaluated and bound to that variable.
72
-
An empty assignment (in the form "someVariable=") deletes the variable.
73
-
A function assignment is formed by a function name and its parameters, followed by the = symbol and an expression, which is bound to that function, e.g."sum(x,y)=x+y".
74
-
A function can be deleted with an empty assignment; the number of arguments must be specified, e.g. "sum(2)=" to delete the function "sum" defined on two arguments.
75
-
An assignment (of variable or function) can be prepended with the "readonly" word to prevent it to be modified or deleted, e.g. "readonly x=1", "readonly square(a)=a^2".
72
+
An empty assignment (in the form \"someVariable=\") deletes the variable.
73
+
A function assignment is formed by a function name and its parameters, followed by the = symbol and an expression, which is bound to that function, e.g.\"sum(x,y)=x+y\".
74
+
A function can be deleted with an empty assignment; the number of arguments must be specified, e.g. \"sum(2)=\" to delete the function \"sum\" defined on two arguments.
75
+
An assignment (of variable or function) can be prepended with the \"readonly\" word to prevent it to be modified or deleted, e.g. \"readonly x=1\", \"readonly square(a)=a^2\".
76
76
The commands are: context (prints all the defined variables and functions), clear (deletes all the non-readonly variables and functions), help (shows this message) and exit (stops reading input).
0 commit comments