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
<stringname="actionEvalExpr">Valuta espressione</string> <!-- label for PROCESS_TEXT intent -->
6
+
7
+
<!-- ExprEval activity -->
8
+
<stringname="exprInputHint" >Digita espressione o comando</string>
9
+
<stringname="evalBtn">Valuta</string>
10
+
<stringname="clearContextPrompt">Eliminare tutte le funzioni e variabili non readonly?</string>
11
+
<stringname="contextCleared">Tutte le variabili e funzioni non-readonly sono state eliminate.</string>
12
+
<stringname="helpMessage">
13
+
Nella casella di input è possibile digitare expressioni, definizioni di variabili o funzioni (come \"a=5\" o \"log(x,b)=log(x)/log(b)\") e comandi.
14
+
I comandi disponibili sono \"help\", \"context\", \"clear\" e \"exit\". Digitare il comando \"help\" per informazioni più dettagliate. Nella casella di output, i risultati sono mostrati in <font color=\"green\">verde</font> e gli errori in <font color=\"red\">rosso</font>.
15
+
I passaggi sono mostrati nel colore di default di sistema, e l\'input è riscritto in <font color=\"yellow\">giallo</font> (entrambi possono essere disabilitati dal menu).
<stringname="contextItemDeleted">\"%s\" è stata eliminata.</string>
34
+
35
+
<!-- both EditFunctionDialogFragment and EditVariableDialogFragment -->
36
+
<stringname="name">Nome</string>
37
+
<stringname="readonlyCheckbox">Sola lettura/readonly (se selezionato, non si potrà modificare o eliminare questo elemento finchè l\'applicazione non viene riavviata)</string>
38
+
39
+
<!-- EditVariableDialogFragment -->
40
+
<stringname="value">Valore</string>
41
+
<stringname="varNewValue">%1$s vale ora %2$s.</string>
42
+
43
+
<!-- EditFunctionDialogFragment -->
44
+
<stringname="expression">Espressione</string>
45
+
<stringname="arguments">Argomenti (tap per rimuovere)</string>
46
+
<stringname="argumentHint">Digita nome argomento</string>
<!-- Various messages used by the java-expr-eval library (https://github.com/gianluca-nitti/java-expr-eval) -->
60
+
<stringname="emptyExpr">Un\'espressione vuota è stata trovata.</string>
61
+
<stringname="emptySymName">La stringa vuota non è un identificatore valido.</string>
62
+
<stringname="errorPrefix">Errore: %s</string>
63
+
<stringname="evalStep">%1$s vale %2$s</string>
64
+
<stringname="exprEndReached">Una sotto-espressione era attesa, ma è stata raggiunta la fine dell\'espressione.</string>
65
+
<stringname="failedStoreResult">Attenzione: impossibile memorizzare il risultato. Motivo: %s</string>
66
+
<stringname="incorrectDelete">Sintassi errata. Per eliminare una funzione, è necessario specificare il numero di argomenti (es. \"fun(2)=\" per eliminare \"fun(x, y)\").</string>
67
+
<stringname="interactiveHelp">
68
+
Le stringhe accettate sono espressioni, assegnamenti e comandi.
69
+
Un\'espressione può essere formata da numeri interi o decimali, gli operatori binari +,-,*,/,^, variabili, funzioni e parentesi tonde.
70
+
Un nome di variabile è una stringa di una o più lettere e/o underscore. I comandi sono parole riservate e non possono essere usati come nomi di variabili.
71
+
Quando un\'espressione viene valutata senza errori, il risultato viene mostrato e memorizzato nella variabile \"ans\".
72
+
Un assegnamento di variabile è formato da un nome di variabile seguito dal simbolo = e da un\'espressione il cui risultato verrà assegnato alla variabile.
73
+
Un assegnamento vuoto (nella forma \"someVariable=\") elimina la variabile.
74
+
Un assegnamento di funzione è formato da un nome di funzione con i relativi parametri, seguito da un = e da un\'espressione, es.\"sum(x,y)=x+y\".
75
+
Una funzione può essere eliminata con un assegnamento vuoto; il numero di argomenti deve essere specificato, es. \"sum(2)=\" per eliminare la funzione \"sum\" definita su due argomenti.
76
+
Un assegnamento (di variabile o di funzione) può essere preceduto dalla parola \"readonly\" per impedire che venga modificata o eliminata, es. \"readonly x=1\", \"readonly square(a)=a^2\".
77
+
I comandi sono: context (stampa tutte le variabili e le funzioni definite), clear (elimina tutte le variabili e le funzioni non-readonly), help (mostra questo messaggio) e exit (chiude l\'applicazione).
Copy file name to clipboardExpand all lines: app/src/main/res/values/strings.xml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@
9
9
<stringname="clearContextPrompt">Do you want to delete all non-readonly functions and variables?</string>
10
10
<stringname="contextCleared">All non-readonly variables and functions have been deleted.</string>
11
11
<stringname="helpMessage">
12
-
In the input box you can type expressions, variable or function assignments (like "a=5" or "log(x,b)=log(x)/log(b)") and commands.
13
-
The available commands are "help", "context", "clear" and "exit". Type "help" in the input box for more detailed instructions. In the output box, results are shown in <font color="green">green</font> and errors in <font color="red">red</font>.
14
-
Evaluation steps are shown in default color, and the input is echoed in <font color="yellow">yellow</font> (both can be disabled from the menu).
12
+
In the input box you can type expressions, variable or function assignments (like \"a=5\" or \"log(x,b)=log(x)/log(b)\") and commands.
13
+
The available commands are \"help\", \"context\", \"clear\" and \"exit\". Type \"help\" in the input box for more detailed instructions. In the output box, results are shown in <font color=\"green\">green</font> and errors in <font color=\"red\">red</font>.
14
+
Evaluation steps are shown in default color, and the input is echoed in <font color=\"yellow\">yellow</font> (both can be disabled from the menu).
15
15
</string>
16
16
17
17
<!-- Menu -->
@@ -33,7 +33,7 @@
33
33
34
34
<!-- both EditFunctionDialogFragment and EditVariableDialogFragment -->
35
35
<stringname="name">Name</string>
36
-
<stringname="readonlyCheckbox">Read-only (if checked, you won\'t be able to edit or delete this until the application is restarted.)</string>
36
+
<stringname="readonlyCheckbox">Read-only (if checked, you won\'t be able to edit or delete this until the application is restarted)</string>
37
37
38
38
<!-- EditVariableDialogFragment -->
39
39
<stringname="value">Value</string>
@@ -66,14 +66,14 @@
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
-
A variable is a string of one or more letters and/or underscores. Variables can\'t be named as commands, which are reserved words.
69
+
A variable name is a string of one or more letters and/or underscores. Variables can\'t be named as commands, which are reserved words.
70
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
72
An empty assignment (in the form \"someVariable=\") deletes the variable.
73
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
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
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
-
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).
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 (closes the application).
0 commit comments