mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-18 09:24:42 -04:00
fixed a minor issue in the language files
This commit is contained in:
parent
06b276b6d9
commit
509b613ad8
@ -57,7 +57,7 @@ public class ExpressionDialog extends JDialog {
|
||||
new ShowStringDialog(
|
||||
ExpressionDialog.this,
|
||||
Lang.get("msg_expressionHelpTitle"),
|
||||
Lang.get("msg_expressionHelp"))
|
||||
Lang.get("msg_expressionHelp"), true)
|
||||
.setVisible(true);
|
||||
}
|
||||
}.createJButton());
|
||||
|
@ -152,7 +152,7 @@ public class Resources {
|
||||
while (reader.hasMoreChildren()) {
|
||||
reader.moveDown();
|
||||
String key = reader.getAttribute("name");
|
||||
String value = reader.getValue();
|
||||
String value = reader.getValue().trim();
|
||||
map.put(key, value);
|
||||
reader.moveUp();
|
||||
}
|
||||
|
@ -1856,19 +1856,17 @@ Sind evtl. die Namen der Variablen nicht eindeutig?</string>
|
||||
|
||||
<string name="msg_errorOpeningDocumentation">Fehler beim Öffnen einer PDF-Datei!</string>
|
||||
|
||||
<string name="message"><h1>Digital</h1>Ein einfacher Simulator für digitale Schaltkreise.
|
||||
Geschrieben von H. Neemann 2016-2020
|
||||
|
||||
Die Icons stammen aus dem <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.
|
||||
|
||||
Besuche das Projekt auf <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>Ein einfacher Simulator für digitale Schaltkreise.</p>
|
||||
<p>Geschrieben von H. Neemann 2016-2020</p>
|
||||
<p>Die Icons stammen aus dem <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.</p>
|
||||
<p>Besuche das Projekt auf <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
Die jeweils neueste Version steht dort ebenfalls zum
|
||||
<a href="https://github.com/hneemann/[[name]]/releases/latest">Download</a> bereit.
|
||||
|
||||
Per GitHub kann auch ein <a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">Fehler</a>
|
||||
<a href="https://github.com/hneemann/[[name]]/releases/latest">Download</a> bereit.</p>
|
||||
<p>Per GitHub kann auch ein <a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">Fehler</a>
|
||||
gemeldet oder
|
||||
eine <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">Verbesserung</a>
|
||||
vorgeschlagen werden.
|
||||
eine <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">Verbesserung</a>
|
||||
vorgeschlagen werden.</p>]]>
|
||||
</string>
|
||||
<string name="msg_N_nodes">{0} aktive Elemente</string>
|
||||
<string name="msg_analyseErr">Fehler bei der Analyse der Schaltung.</string>
|
||||
@ -2067,18 +2065,20 @@ Stellen Sie sicher, dass der Flash-Vorgang abgeschlossen ist, bevor Sie diesen D
|
||||
]]></string>
|
||||
|
||||
<string name="msg_expressionHelpTitle">Ausdrücke</string>
|
||||
<string name="msg_expressionHelp">Zur Definition eines Ausdruckes können alle üblichen
|
||||
Notationen verwendet werden:
|
||||
|
||||
Und: "&", "&&", "*", "∧"
|
||||
Oder: "|", "||", "+", "∨", "#"
|
||||
Exkl. Oder: "^", "⊻"
|
||||
Nicht: "!", "~", "¬"
|
||||
|
||||
UND hat Vorrang vor ODER bzw. Exkl. ODER.
|
||||
Mehrere Ausdrücke können durch "," oder ";" getrennt werden.
|
||||
Sollen die Ausdrücke benannt werden, kann die let-Anweisung verwendet
|
||||
werden: "let U=A+B, let V=A*B"</string>
|
||||
<string name="msg_expressionHelp"><![CDATA[<html>
|
||||
<p>Zur Definition eines Ausdruckes können alle üblichen
|
||||
Notationen verwendet werden:</p>
|
||||
<p>
|
||||
Und: "&", "&&", "*", "∧"<br/>
|
||||
Oder: "|", "||", "+", "∨", "#"<br/>
|
||||
Exkl. Oder: "^", "⊻"<br/>
|
||||
Nicht: "!", "~", "¬"<br/>
|
||||
</p>
|
||||
<p>UND hat Vorrang vor ODER bzw. Exkl. ODER.
|
||||
Mehrere Ausdrücke können durch "," oder ";" getrennt werden.
|
||||
Sollen die Ausdrücke benannt werden, kann die let-Anweisung verwendet
|
||||
werden: "let U=A+B, let V=A*B"</p></html>]]>
|
||||
</string>
|
||||
<string name="msg_testVectorHelpTitle">Testvektoren</string>
|
||||
<string name="msg_testVectorHelp"><![CDATA[<html>
|
||||
<head><style>pre { background-color: #E0E0E0;}</style></head>
|
||||
|
@ -1870,18 +1870,16 @@
|
||||
</string>
|
||||
<string name="attr_createConcreteCircuitErr">Error while creating the concrete circuit!</string>
|
||||
|
||||
<string name="message"><h1>Digital</h1>A simple simulator for digital circuits.
|
||||
Written by H. Neemann in 2016-2020.
|
||||
|
||||
The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.
|
||||
|
||||
Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the latest release.
|
||||
|
||||
There you also can file an <a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>A simple simulator for digital circuits.</p>
|
||||
<p>Written by H. Neemann in 2016-2020.</p>
|
||||
<p>The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.</p>
|
||||
<p>Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the latest release.</p>
|
||||
<p>There you also can file an <a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
or suggest
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.</p>]]>
|
||||
</string>
|
||||
<string name="msg_N_nodes">{0} nodes</string>
|
||||
<string name="msg_analyseErr">Error analysing the circuit</string>
|
||||
@ -2072,18 +2070,18 @@
|
||||
]]></string>
|
||||
|
||||
<string name="msg_expressionHelpTitle">Expressions</string>
|
||||
<string name="msg_expressionHelp">To define an expression you can use all most common notations:
|
||||
|
||||
And: "&", "&&", "*", "∧"
|
||||
Or: "|", "||", "+", "∨", "#"
|
||||
XOr: "^", "⊻"
|
||||
Not: "!", "~", "¬"
|
||||
|
||||
As usual AND precedes OR and XOr.
|
||||
|
||||
Multiple expressions can be separated by "," or ";".
|
||||
<string name="msg_expressionHelp"><![CDATA[
|
||||
<p>To define an expression you can use all most common notations:</p>
|
||||
<p>
|
||||
And: "&", "&&", "*", "∧"<br/>
|
||||
Or: "|", "||", "+", "∨", "#"<br/>
|
||||
XOr: "^", "⊻"<br/>
|
||||
Not: "!", "~", "¬"
|
||||
</p>
|
||||
<p>As usual AND precedes OR and XOr.</p>
|
||||
<p>Multiple expressions can be separated by "," or ";".
|
||||
If you want to name the expressions you can use the
|
||||
let command: "let U=A+B, let V=A*B".
|
||||
let command: "let U=A+B, let V=A*B".</p>]]>
|
||||
</string>
|
||||
<string name="msg_testVectorHelpTitle">Test vectors</string>
|
||||
<string name="msg_testVectorHelp"><![CDATA[<html>
|
||||
|
@ -1406,25 +1406,23 @@
|
||||
<string name="menu_showDataGraph_tt">Muestra un gráfico con los valores medidos en una ventana aparte.</string>
|
||||
<string name="menu_exportZIP">Exporta a un archivo ZIP</string>
|
||||
<string name="menu_exportZIP_tt">Exporta el circuito como un archivo ZIP.
|
||||
El ZIP contendrá todos los archivos que sean necesarios para el funcionamiento del circuito.</string>
|
||||
El ZIP contendrá todos los archivos que sean necesarios para el funcionamiento del circuito.
|
||||
</string>
|
||||
<string name="menu_labelPins">Etiquetar entradas y salidas</string>
|
||||
<string name="menu_labelPins_tt">Fija una etiqueta a todas las entradas y salidas que no la tienen.</string>
|
||||
<string name="msg_errorOpeningDocumentation">¡Error al abrir un archivo PDF!</string>
|
||||
<string name="message"><h1>Digital</h1>Un sencillo simulador para circuitos digitales.
|
||||
Escrito por H. Neemann entre 2016-2020.
|
||||
|
||||
Los iconos se han tomado de <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.
|
||||
|
||||
Visita el proyecto en la dirección <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
También disponible en GitHub <a href="https://github.com/hneemann/[[name]]/releases/latest">descarga</a>
|
||||
la última versión.
|
||||
|
||||
Allí también puedes aportar un <a
|
||||
href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">problema</a>
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>Un sencillo simulador para circuitos digitales.</p>
|
||||
<p>Escrito por H. Neemann entre 2016-2020.</p>
|
||||
<p>Los iconos se han tomado de <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.</p>
|
||||
<p>Visita el proyecto en la dirección <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
También disponible en GitHub <a href="https://github.com/hneemann/[[name]]/releases/latest">descarga</a>
|
||||
la última versión.</p>
|
||||
<p>Allí también puedes aportar un <a
|
||||
href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">problema</a>
|
||||
o sugerencia
|
||||
o <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">mejoras</a>.
|
||||
|
||||
Traducido al castellano por Ángel Millán León</string>
|
||||
o <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">mejoras</a>.</p>
|
||||
<p>Traducido al castellano por Ángel Millán León</p>]]></string>
|
||||
<string name="msg_N_nodes">{0} nodos</string>
|
||||
<string name="msg_analyseErr">Error al analizar el circuito</string>
|
||||
<string name="msg_color">Color</string>
|
||||
@ -1567,32 +1565,36 @@
|
||||
Para hacer esto, use el asterisco ('*') en la etiqueta de la ROM.
|
||||
El asterisco se reemplazará por la ruta completa construida con los nombres de los circuitos incrustados.
|
||||
Si un circuito contiene sólo un componente de ROM, es suficiente usar sólo el asterisco como una etiqueta para él.
|
||||
Todos los circuitos incrustados deben ser nombrados para que un único nombre pueda ser formado para cada componente de ROM.
|
||||
</html></string>
|
||||
Todos los circuitos incrustados deben ser nombrados para que un único nombre pueda ser formado para cada componente
|
||||
de ROM.
|
||||
</html>
|
||||
</string>
|
||||
<string name="msg_newRelease_N"><html>
|
||||
<h1>Nueva versión {0} disponible</h1>
|
||||
<p>Hay una nueva versión del simulador disponible.</p>
|
||||
<p>En la ruta <a href="https://github.com/hneemann/[[name]]/releases/latest">, notas de la versión</a>
|
||||
puede econtrar los cambios y mejoras..</p>
|
||||
<p>Aquí puede <a href="https://github.com/hneemann/[[name]]/releases/latest">descargar</a> la nueva versión.</p>
|
||||
</html></string>
|
||||
<h1>Nueva versión {0} disponible</h1>
|
||||
<p>Hay una nueva versión del simulador disponible.</p>
|
||||
<p>En la ruta <a href="https://github.com/hneemann/[[name]]/releases/latest">, notas de la versión</a>
|
||||
puede econtrar los cambios y mejoras..</p>
|
||||
<p>Aquí puede <a href="https://github.com/hneemann/[[name]]/releases/latest">descargar</a> la
|
||||
nueva versión.</p>
|
||||
</html>
|
||||
</string>
|
||||
<string name="msg_expressionHelpTitle">Expresiones</string>
|
||||
<string name="msg_expressionHelp">Para definir una expresión puede usar las notaciones más conocidas:
|
||||
|
||||
AND: "&", "&&", "*", "∧"
|
||||
OR: "|", "||", "+", "∨", "#"
|
||||
XOR: "^", "⊻"
|
||||
<string name="msg_expressionHelp"><![CDATA[
|
||||
<p>Para definir una expresión puede usar las notaciones más conocidas:</p>
|
||||
<p>
|
||||
AND: "&", "&&", "*", "∧"<br/>
|
||||
OR: "|", "||", "+", "∨", "#"<br/>
|
||||
XOR: "^", "⊻"<br/>
|
||||
NOT: "!", "~", "¬"
|
||||
|
||||
Como es habitual, AND prevalece sobre OR y XOR.
|
||||
|
||||
Expresiones múltiples pueden separarse con "," or ";".
|
||||
</p>
|
||||
<p>Como es habitual, AND prevalece sobre OR y XOR.</p>
|
||||
<p>Expresiones múltiples pueden separarse con "," or ";".
|
||||
Si quiere nombrar las expresiones, puede usar el
|
||||
comando let: "let U=A+B, let V=A*B"</string>
|
||||
comando let: "let U=A+B, let V=A*B"</p>]]></string>
|
||||
<string name="msg_testVectorHelpTitle">Vectores de prueba</string>
|
||||
<string name="msg_testVectorHelp"><html>
|
||||
<head><style>pre { background-color: #E0E0E0;}</style></head>
|
||||
<body>
|
||||
<head><style>pre { background-color: #E0E0E0;}</style></head>
|
||||
<body>
|
||||
<p> La primera línea tiene que contener los nombres de las entradas y las salidas.
|
||||
Las siguientes líneas contienen los valores esperados.
|
||||
Una 'X' indica un "indiferente", y una 'Z' indica un valor de alta impedancia.
|
||||
|
@ -1489,37 +1489,35 @@
|
||||
<string name="menu_karnaughMap_tt">Shows a K-map representation of the table!</string>
|
||||
<string name="menu_pdfDocumentation">Documentation</string>
|
||||
<string name="menu_openPdfDocumentation">Open {0}</string>
|
||||
<string name="menu_showDataTable">Show measurement value table</string>
|
||||
<string name="menu_showDataTable_tt">Show table with the measured values in a separate window.</string>
|
||||
<string name="menu_showDataGraph">Show measurement graph</string>
|
||||
<string name="menu_showDataGraph_tt">Shows a graph with the measured values in a separate window.</string>
|
||||
<string name="menu_exportZIP">Export to ZIP file</string>
|
||||
<string name="menu_exportZIP_tt">Exports the circuit as a ZIP file.
|
||||
The ZIP file thus contains all the files that are necessary for the operation of the circuit.</string>
|
||||
<string name="menu_labelPins">Label Inputs and Outputs</string>
|
||||
<string name="menu_labelPins_tt">Set a label to all inputs and outputs without a label.</string>
|
||||
<string name="msg_errorOpeningDocumentation">Error opening a PDF file!</string>
|
||||
<string name="message"><h1>Digital</h1>A simple simulator for digital circuits.
|
||||
Written by H. Neemann in 2016-2020.
|
||||
|
||||
The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.
|
||||
|
||||
Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the latest release.
|
||||
|
||||
There you also can file an <a
|
||||
href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
or suggest
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.
|
||||
<string name="menu_showDataTable">Show measurement value table</string>
|
||||
<string name="menu_showDataTable_tt">Show table with the measured values in a separate window.</string>
|
||||
<string name="menu_showDataGraph">Show measurement graph</string>
|
||||
<string name="menu_showDataGraph_tt">Shows a graph with the measured values in a separate window.</string>
|
||||
<string name="menu_exportZIP">Export to ZIP file</string>
|
||||
<string name="menu_exportZIP_tt">Exports the circuit as a ZIP file.
|
||||
The ZIP file thus contains all the files that are necessary for the operation of the circuit.
|
||||
</string>
|
||||
<string name="msg_N_nodes">{0} nodes</string>
|
||||
<string name="msg_analyseErr">Error analysing the circuit</string>
|
||||
<string name="msg_color">Color</string>
|
||||
<string name="msg_errorCalculatingStep">Error calculating a step</string>
|
||||
<string name="msg_errorCreatingModel">Error creating the circuit</string>
|
||||
<string name="msg_errorDuringCalculation">Error during simplification</string>
|
||||
<string name="msg_errorDuringHardwareExport">Error during creation of hardware configuration.</string>
|
||||
<string name="menu_labelPins">Label Inputs and Outputs</string>
|
||||
<string name="menu_labelPins_tt">Set a label to all inputs and outputs without a label.</string>
|
||||
<string name="msg_errorOpeningDocumentation">Error opening a PDF file!</string>
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>A simple simulator for digital circuits.</p>
|
||||
<p>Written by H. Neemann in 2016-2020.</p>
|
||||
<p>The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.</p>
|
||||
<p>Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the latest release.</p>
|
||||
<p>There you also can file an <a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
or suggest
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.</p>]]>
|
||||
</string>
|
||||
<string name="msg_N_nodes">{0} nodes</string>
|
||||
<string name="msg_analyseErr">Error analysing the circuit</string>
|
||||
<string name="msg_color">Color</string>
|
||||
<string name="msg_errorCalculatingStep">Error calculating a step</string>
|
||||
<string name="msg_errorCreatingModel">Error creating the circuit</string>
|
||||
<string name="msg_errorDuringCalculation">Error during simplification</string>
|
||||
<string name="msg_errorDuringHardwareExport">Error during creation of hardware configuration.</string>
|
||||
<string name="msg_errorEditingValue">Error editing a attribute value</string>
|
||||
<string name="msg_errorImportingModel_N0">Error importing the circuit {0}!</string>
|
||||
<string name="msg_errorUpdatingLibrary">Error updating the component library!!</string>
|
||||
@ -1662,38 +1660,41 @@
|
||||
path constructed from the names of the embedded circuits.
|
||||
If a circuit contains only one ROM component, it is sufficient to use only the asterisk as a label for it.
|
||||
All embedded circuits must be named so that a unique name can be formed for each ROM component.
|
||||
</html></string>
|
||||
<string name="msg_newRelease_N"><html>
|
||||
</html>
|
||||
</string>
|
||||
<string name="msg_newRelease_N"><html>
|
||||
<h1>New Version {0} Available</h1>
|
||||
<p>There is a new release of the simulator available.</p>
|
||||
<p>In the <a href="https://github.com/hneemann/[[name]]/releases/latest">release notes</a>
|
||||
you can find the changes and improvements.</p>
|
||||
<p>Here you can <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a> the new release.</p>
|
||||
</html></string>
|
||||
<string name="msg_expressionHelpTitle">Expressions</string>
|
||||
<string name="msg_expressionHelp">To define an expression you can use all most common notations:
|
||||
|
||||
And: "&", "&&", "*", "∧"
|
||||
Or: "|", "||", "+", "∨", "#"
|
||||
XOr: "^", "⊻"
|
||||
Not: "!", "~", "¬"
|
||||
|
||||
As usual AND precedes OR and XOr.
|
||||
|
||||
Multiple expressions can be separated by "," or ";".
|
||||
If you want to name the expressions you can use the
|
||||
let command: "let U=A+B, let V=A*B".
|
||||
</string>
|
||||
<string name="msg_testVectorHelpTitle">Test vectors</string>
|
||||
<string name="msg_testVectorHelp"><html>
|
||||
<head><style>pre { background-color: #E0E0E0;}</style></head>
|
||||
<body>
|
||||
<p>The first line has to contain the names of inputs and outputs.
|
||||
The following lines contain the expected values.
|
||||
A 'X' represents a don't care, and a 'Z' represents a high Z value.
|
||||
If a 'C' is used, at first all other values are set, after that a clock cycle is performed and then the
|
||||
values are compared. So it's easier to test sequential logic.
|
||||
A line which starts with a number sign ('#') is a comment.</p>
|
||||
<p>Here you can <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the new release.</p>
|
||||
</html>
|
||||
</string>
|
||||
<string name="msg_expressionHelpTitle">Expressions</string>
|
||||
<string name="msg_expressionHelp"><![CDATA[
|
||||
<p>To define an expression you can use all most common notations:</p>
|
||||
<p>
|
||||
And: "&", "&&", "*", "∧"<br/>
|
||||
Or: "|", "||", "+", "∨", "#"<br/>
|
||||
XOr: "^", "⊻"<br/>
|
||||
Not: "!", "~", "¬"
|
||||
</p>
|
||||
<p>As usual AND precedes OR and XOr.</p>
|
||||
<p>Multiple expressions can be separated by "," or ";".
|
||||
If you want to name the expressions you can use the
|
||||
let command: "let U=A+B, let V=A*B".</p>]]>
|
||||
</string>
|
||||
<string name="msg_testVectorHelpTitle">Test vectors</string>
|
||||
<string name="msg_testVectorHelp"><html>
|
||||
<head><style>pre { background-color: #E0E0E0;}</style></head>
|
||||
<body>
|
||||
<p>The first line has to contain the names of inputs and outputs.
|
||||
The following lines contain the expected values.
|
||||
A 'X' represents a don't care, and a 'Z' represents a high Z value.
|
||||
If a 'C' is used, at first all other values are set, after that a clock cycle is performed and then the
|
||||
values are compared. So it's easier to test sequential logic.
|
||||
A line which starts with a number sign ('#') is a comment.</p>
|
||||
|
||||
<p>So a test for a 2-bit counter could look like this:</p>
|
||||
|
||||
|
@ -2028,19 +2028,17 @@
|
||||
<string name="stat_bits">Bits</string>
|
||||
<string name="stat_addrBits">Bits d'addr.</string>
|
||||
<string name="msg_errorOpeningDocumentation">Erreur lors de l'ouverture du fichier PDF!</string>
|
||||
<string name="message"><h1>Digital</h1>Un simulateur simple pour les circuits numériques.
|
||||
Écrit par H. Neemann de 2016-2020.
|
||||
|
||||
Les icônes ont été prises du <a href="http://tango.freedesktop.org">projet Tango Desktop</a>.
|
||||
|
||||
Visiter le projet sur <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
Sur GitHub vous pouvez aussi <a href="https://github.com/hneemann/[[name]]/releases/latest">télécharger</a>
|
||||
la dernière version.
|
||||
|
||||
Vous pouvez aussi y poser <a
|
||||
href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">une
|
||||
question au sujet d'un problème</a>
|
||||
ou suggérer une <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">amélioration</a>.
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>Un simulateur simple pour les circuits numériques.</p>
|
||||
<p>Écrit par H. Neemann de 2016-2020.</p>
|
||||
<p>Les icônes ont été prises du <a href="http://tango.freedesktop.org">projet Tango Desktop</a>.</p>
|
||||
<p>Visiter le projet sur <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
Sur GitHub vous pouvez aussi <a href="https://github.com/hneemann/[[name]]/releases/latest">télécharger</a>
|
||||
la dernière version.</p>
|
||||
<p>Vous pouvez aussi y poser <a
|
||||
href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">une
|
||||
question au sujet d'un problème</a>
|
||||
ou suggérer une <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">amélioration</a>.</p>]]>
|
||||
</string>
|
||||
<string name="msg_N_nodes">{0} noeuds</string>
|
||||
<string name="msg_analyseErr">Erreur lors de l'analyse du circuit</string>
|
||||
@ -2233,19 +2231,19 @@
|
||||
</html>
|
||||
</string>
|
||||
<string name="msg_expressionHelpTitle">Expressions</string>
|
||||
<string name="msg_expressionHelp">Pour définir une expression, vous pouvez utiliser la plupart des notations
|
||||
courantes:
|
||||
|
||||
ET: "&", "&&", "*", "∧"
|
||||
OU: "|", "||", "+", "∨", "#"
|
||||
XOR: "^", "⊻"
|
||||
<string name="msg_expressionHelp"><![CDATA[
|
||||
<p>Pour définir une expression, vous pouvez utiliser la plupart des notations
|
||||
courantes:</p>
|
||||
<p>
|
||||
ET: "&", "&&", "*", "∧"<br/>
|
||||
OU: "|", "||", "+", "∨", "#"<br/>
|
||||
XOR: "^", "⊻"<br/>
|
||||
NON: "!", "~", "¬"
|
||||
|
||||
Comme d'habitude, le ET à la priorité sur le OU et le XOR.
|
||||
|
||||
Plusieurs expressions peuvent être séparées par "," ou ";".
|
||||
</p>
|
||||
<p>Comme d'habitude, le ET à la priorité sur le OU et le XOR.</p>
|
||||
<p>Plusieurs expressions peuvent être séparées par "," ou ";".
|
||||
Si vous voulez nommer les expressions, vous pouvez utiliser la
|
||||
commande let: "let U=A+B, let V=A*B".
|
||||
commande let: "let U=A+B, let V=A*B".</p>]]>
|
||||
</string>
|
||||
<string name="msg_testVectorHelpTitle">Vecteurs de test</string>
|
||||
<string name="msg_testVectorHelp"><html>
|
||||
|
@ -1884,19 +1884,16 @@
|
||||
<string name="stat_bits">Bits</string>
|
||||
<string name="stat_addrBits">Addr. Bits</string>
|
||||
<string name="msg_errorOpeningDocumentation">Error opening a PDF file!</string>
|
||||
<string name="message"><h1>Digital</h1>A simple simulator for digital circuits.
|
||||
Written by H. Neemann in 2016-2020.
|
||||
|
||||
The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.
|
||||
|
||||
Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the latest release.
|
||||
|
||||
There you also can file an <a
|
||||
href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>A simple simulator for digital circuits.</p>
|
||||
<p>Written by H. Neemann in 2016-2020.</p>
|
||||
<p>The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.</p>
|
||||
<p>Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the latest release.</p>
|
||||
<p>There you also can file an <a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
or suggest
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.</p>]]>
|
||||
</string>
|
||||
<string name="msg_N_nodes">{0} nodes</string>
|
||||
<string name="msg_analyseErr">Error analysing the circuit</string>
|
||||
@ -2080,18 +2077,18 @@
|
||||
</html>
|
||||
</string>
|
||||
<string name="msg_expressionHelpTitle">Expressions</string>
|
||||
<string name="msg_expressionHelp">To define an expression you can use all most common notations:
|
||||
|
||||
And: "&", "&&", "*", "∧"
|
||||
Or: "|", "||", "+", "∨", "#"
|
||||
XOr: "^", "⊻"
|
||||
<string name="msg_expressionHelp"><![CDATA[
|
||||
<p>To define an expression you can use all most common notations:</p>
|
||||
<p>
|
||||
And: "&", "&&", "*", "∧"<br/>
|
||||
Or: "|", "||", "+", "∨", "#"<br/>
|
||||
XOr: "^", "⊻"<br/>
|
||||
Not: "!", "~", "¬"
|
||||
|
||||
As usual AND precedes OR and XOr.
|
||||
|
||||
Multiple expressions can be separated by "," or ";".
|
||||
</p>
|
||||
<p>As usual AND precedes OR and XOr.</p>
|
||||
<p>Multiple expressions can be separated by "," or ";".
|
||||
If you want to name the expressions you can use the
|
||||
let command: "let U=A+B, let V=A*B".
|
||||
let command: "let U=A+B, let V=A*B".</p>]]>
|
||||
</string>
|
||||
<string name="msg_testVectorHelpTitle">Test vectors</string>
|
||||
<string name="msg_testVectorHelp"><html>
|
||||
|
@ -1464,36 +1464,35 @@
|
||||
<string name="menu_exportVerilog_tt">Exportar o circuito para Verilog</string>
|
||||
<string name="menu_pdfDocumentation">Documentação</string>
|
||||
<string name="menu_openPdfDocumentation">Abrir {0}</string>
|
||||
<string name="msg_errorOpeningDocumentation">Erro ao abrir arquivo PDF!</string>
|
||||
<string name="menu_showDataGraph">Mostrar o gráfico de medições</string>
|
||||
<string name="menu_showDataGraph_tt">Mostrar o gráfico com os valores medidos em janela separada.</string>
|
||||
<string name="menu_showDataTable">Mostrar tabela com valores medidos</string>
|
||||
<string name="menu_showDataTable_tt">Mostrar tabela com valores medidos em janela separada.</string>
|
||||
<string name="menu_exportZIP">Exportar para arquivo ZIP</string>
|
||||
<string name="menu_exportZIP_tt">Exportar o circuito para um arquivo ZIP.
|
||||
O arquivo ZIP conterá todos os arquivos que forem necessários para a operação do circuito.</string>
|
||||
<string name="menu_labelPins">Rotular entradas e saídas</string>
|
||||
<string name="menu_labelPins_tt">Definir rótulo para entradas e saídas que não tiverem algum.</string>
|
||||
<string name="message"><h1>Digital</h1>Um simulator simples para circuitos digitais.
|
||||
Elaborado por H. Neemann em 2016-2020.
|
||||
|
||||
Os ícones foram tomados de <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.
|
||||
|
||||
Para conhecer melhor o projeto, visitar <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
Última versão disponível em <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>.
|
||||
|
||||
Questões poderão ser endereçadas para <a
|
||||
href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
<string name="msg_errorOpeningDocumentation">Erro ao abrir arquivo PDF!</string>
|
||||
<string name="menu_showDataGraph">Mostrar o gráfico de medições</string>
|
||||
<string name="menu_showDataGraph_tt">Mostrar o gráfico com os valores medidos em janela separada.</string>
|
||||
<string name="menu_showDataTable">Mostrar tabela com valores medidos</string>
|
||||
<string name="menu_showDataTable_tt">Mostrar tabela com valores medidos em janela separada.</string>
|
||||
<string name="menu_exportZIP">Exportar para arquivo ZIP</string>
|
||||
<string name="menu_exportZIP_tt">Exportar o circuito para um arquivo ZIP.
|
||||
O arquivo ZIP conterá todos os arquivos que forem necessários para a operação do circuito.
|
||||
</string>
|
||||
<string name="menu_labelPins">Rotular entradas e saídas</string>
|
||||
<string name="menu_labelPins_tt">Definir rótulo para entradas e saídas que não tiverem algum.</string>
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>Um simulator simples para circuitos digitais.</p>
|
||||
<p>Elaborado por H. Neemann em 2016-2020.</p>
|
||||
<p>Os ícones foram tomados de <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.</p>
|
||||
<p>Para conhecer melhor o projeto, visitar <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
Última versão disponível em <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>.</p>
|
||||
<p>Questões poderão ser endereçadas para <a
|
||||
href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
ou sugestões
|
||||
para <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.</string>
|
||||
<string name="msg_N_nodes">{0} nodos</string>
|
||||
<string name="msg_analyseErr">Erro ao analisar o circuito</string>
|
||||
<string name="msg_color">Cor</string>
|
||||
<string name="msg_errorCalculatingStep">Erro ao calcular um passo</string>
|
||||
<string name="msg_errorCreatingModel">Erro ao criar o circuito</string>
|
||||
<string name="msg_errorDuringCalculation">Erro durante a simplificação</string>
|
||||
<string name="msg_errorDuringHardwareExport">Erro durante a criação da configuração de hardware.</string>
|
||||
<string name="msg_errorEditingValue">Erro ao editar um valor de atributo</string>
|
||||
para <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.</p>]]></string>
|
||||
<string name="msg_N_nodes">{0} nodos</string>
|
||||
<string name="msg_analyseErr">Erro ao analisar o circuito</string>
|
||||
<string name="msg_color">Cor</string>
|
||||
<string name="msg_errorCalculatingStep">Erro ao calcular um passo</string>
|
||||
<string name="msg_errorCreatingModel">Erro ao criar o circuito</string>
|
||||
<string name="msg_errorDuringCalculation">Erro durante a simplificação</string>
|
||||
<string name="msg_errorDuringHardwareExport">Erro durante a criação da configuração de hardware.</string>
|
||||
<string name="msg_errorEditingValue">Erro ao editar um valor de atributo</string>
|
||||
<string name="msg_errorImportingModel_N0">Erro ao importar o circuito {0}!</string>
|
||||
<string name="msg_errorUpdatingLibrary">Erro ao atualizar a biblioteca de componentes!!</string>
|
||||
<string name="msg_errorReadingFile">Erro ao ler arquivo</string>
|
||||
@ -1630,27 +1629,27 @@
|
||||
Se um circuito contiver apenas uma única ROM, isso será suficiente para se usar o asterisco como rótulo.
|
||||
Todos os circuitos integrados deverão term nomes únicos para cada ROM.
|
||||
</html>]]></string>
|
||||
<string name="msg_newRelease_N"><![CDATA[<html>
|
||||
<string name="msg_newRelease_N"><![CDATA[<html>
|
||||
<h1>Nova versão {0} disponível</h1>
|
||||
<p>Há uma nova versão do simulador disponível.</p>
|
||||
<p>Em <a href="https://github.com/hneemann/[[name]]/releases/latest">Release Notes</a>
|
||||
poderão ser encontradas as alterações e melhorias.</p>
|
||||
<p>Em <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a> se poderá encontrar a nova versão.</p>
|
||||
</html>]]></string>
|
||||
<string name="msg_expressionHelpTitle">Expressões</string>
|
||||
<string name="msg_expressionHelp">Para definir uma expressão poderão ser usadas todas as notações mais comuns:
|
||||
|
||||
And: "&", "&&", "*", "∧"
|
||||
Or: "|", "||", "+", "∨", "#"
|
||||
XOr: "^", "⊻"
|
||||
<string name="msg_expressionHelpTitle">Expressões</string>
|
||||
<string name="msg_expressionHelp"><![CDATA[
|
||||
<p>Para definir uma expressão poderão ser usadas todas as notações mais comuns:</p>
|
||||
<p>
|
||||
And: "&", "&&", "*", "∧"<br/>
|
||||
Or: "|", "||", "+", "∨", "#"<br/>
|
||||
XOr: "^", "⊻"<br/>
|
||||
Not: "!", "~", "¬"
|
||||
|
||||
Como usual AND tem precedência sobre OR e XOR.
|
||||
|
||||
Múltiplas expressões poderão ser separadas por "," ou ";".
|
||||
</p>
|
||||
<p>Como usual AND tem precedência sobre OR e XOR.</p>
|
||||
<p>Múltiplas expressões poderão ser separadas por "," ou ";".
|
||||
Se desejado dar nome às expressões se poderá usar o comando "let"
|
||||
"let U=A+B, let V=A*B"
|
||||
</string>
|
||||
"let U=A+B, let V=A*B"</p>]]>
|
||||
</string>
|
||||
<string name="msg_testVectorHelpTitle">Arranjos de teste</string>
|
||||
<string name="msg_testVectorHelp"><html>
|
||||
<head><style>pre { background-color: #E0E0E0;}</style></head>
|
||||
|
@ -1544,37 +1544,35 @@
|
||||
<string name="menu_exportVerilog_tt">Exports the circuit to Verilog</string>
|
||||
<string name="menu_pdfDocumentation">Documentation</string>
|
||||
<string name="menu_openPdfDocumentation">Open {0}</string>
|
||||
<string name="msg_errorOpeningDocumentation">Error opening a PDF file!</string>
|
||||
<string name="menu_showDataGraph">Show measurement graph</string>
|
||||
<string name="menu_showDataGraph_tt">Shows a graph with the measured values in a separate window.</string>
|
||||
<string name="menu_showDataTable">Show measurement value table</string>
|
||||
<string name="menu_showDataTable_tt">Show table with the measured values in a separate window.</string>
|
||||
<string name="menu_exportZIP">Export to ZIP file</string>
|
||||
<string name="menu_exportZIP_tt">Exports the circuit as a ZIP file.
|
||||
The ZIP file thus contains all the files that are necessary for the operation of the circuit.</string>
|
||||
<string name="menu_labelPins">Label Inputs and Outputs</string>
|
||||
<string name="menu_labelPins_tt">Set a label to all inputs and outputs without a label.</string>
|
||||
<string name="message"><h1>Digital</h1>A simple simulator for digital circuits.
|
||||
Written by H. Neemann in 2016-2020.
|
||||
|
||||
The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.
|
||||
|
||||
Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the latest release.
|
||||
|
||||
There you also can file an <a
|
||||
href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
or suggest
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.
|
||||
<string name="msg_errorOpeningDocumentation">Error opening a PDF file!</string>
|
||||
<string name="menu_showDataGraph">Show measurement graph</string>
|
||||
<string name="menu_showDataGraph_tt">Shows a graph with the measured values in a separate window.</string>
|
||||
<string name="menu_showDataTable">Show measurement value table</string>
|
||||
<string name="menu_showDataTable_tt">Show table with the measured values in a separate window.</string>
|
||||
<string name="menu_exportZIP">Export to ZIP file</string>
|
||||
<string name="menu_exportZIP_tt">Exports the circuit as a ZIP file.
|
||||
The ZIP file thus contains all the files that are necessary for the operation of the circuit.
|
||||
</string>
|
||||
<string name="msg_N_nodes">{0} nodes</string>
|
||||
<string name="msg_analyseErr">Error analysing the circuit</string>
|
||||
<string name="msg_color">Color</string>
|
||||
<string name="msg_errorCalculatingStep">Error calculating a step</string>
|
||||
<string name="msg_errorCreatingModel">Error creating the circuit</string>
|
||||
<string name="msg_errorDuringCalculation">Error during simplification</string>
|
||||
<string name="msg_errorDuringHardwareExport">Error during creation of hardware configuration.</string>
|
||||
<string name="menu_labelPins">Label Inputs and Outputs</string>
|
||||
<string name="menu_labelPins_tt">Set a label to all inputs and outputs without a label.</string>
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>A simple simulator for digital circuits.</p>
|
||||
<p>Written by H. Neemann in 2016-2020.</p>
|
||||
<p>The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.</p>
|
||||
<p>Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the latest release.</p>
|
||||
<p>There you also can file an <a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
or suggest
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.</p>]]>
|
||||
</string>
|
||||
<string name="msg_N_nodes">{0} nodes</string>
|
||||
<string name="msg_analyseErr">Error analysing the circuit</string>
|
||||
<string name="msg_color">Color</string>
|
||||
<string name="msg_errorCalculatingStep">Error calculating a step</string>
|
||||
<string name="msg_errorCreatingModel">Error creating the circuit</string>
|
||||
<string name="msg_errorDuringCalculation">Error during simplification</string>
|
||||
<string name="msg_errorDuringHardwareExport">Error during creation of hardware configuration.</string>
|
||||
<string name="msg_errorEditingValue">Error editing a attribute value</string>
|
||||
<string name="msg_errorImportingModel_N0">Error importing the circuit {0}!</string>
|
||||
<string name="msg_errorUpdatingLibrary">Error updating the component library!!</string>
|
||||
@ -1728,18 +1726,18 @@
|
||||
</html>
|
||||
</string>
|
||||
<string name="msg_expressionHelpTitle">Expressions</string>
|
||||
<string name="msg_expressionHelp">To define an expression you can use all most common notations:
|
||||
|
||||
And: "&", "&&", "*", "∧"
|
||||
Or: "|", "||", "+", "∨", "#"
|
||||
XOr: "^", "⊻"
|
||||
<string name="msg_expressionHelp"><![CDATA[
|
||||
<p>To define an expression you can use all most common notations:</p>
|
||||
<p>
|
||||
And: "&", "&&", "*", "∧"<br/>
|
||||
Or: "|", "||", "+", "∨", "#"<br/>
|
||||
XOr: "^", "⊻"<br/>
|
||||
Not: "!", "~", "¬"
|
||||
|
||||
As usual AND precedes OR and XOr.
|
||||
|
||||
Multiple expressions can be separated by "," or ";".
|
||||
</p>
|
||||
<p>As usual AND precedes OR and XOr.</p>
|
||||
<p>Multiple expressions can be separated by "," or ";".
|
||||
If you want to name the expressions you can use the
|
||||
let command: "let U=A+B, let V=A*B".
|
||||
let command: "let U=A+B, let V=A*B".</p>]]>
|
||||
</string>
|
||||
<string name="msg_testVectorHelpTitle">Test vectors</string>
|
||||
<string name="msg_testVectorHelp"><html>
|
||||
|
@ -836,14 +836,12 @@
|
||||
<string name="stat_bits">位</string>
|
||||
<string name="stat_addrBits">地址位</string>
|
||||
<string name="msg_errorOpeningDocumentation">打开 PDF 文件时遇到错误!</string>
|
||||
<string name="message"><h1>Digital</h1>一个简单的数字电路仿真器
|
||||
作者: H. Neemann 2016-2020
|
||||
|
||||
所用图标来自 <a href="http://tango.freedesktop.org">Tango Desktop Project</a>
|
||||
|
||||
在 <a href="https://github.com/hneemann/[[name]]">GitHub</a> 查看该项目,并<a href="https://github.com/hneemann/[[name]]/releases/latest">下载</a>最新的发行版
|
||||
|
||||
可以在这里提交<a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">问题</a>或<a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">建议</a></string>
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>一个简单的数字电路仿真器</p>
|
||||
<p>作者: H. Neemann 2016-2020</p>
|
||||
<p>所用图标来自 <a href="http://tango.freedesktop.org">Tango Desktop Project</a></p>
|
||||
<p>在 <a href="https://github.com/hneemann/[[name]]">GitHub</a> 查看该项目,并<a href="https://github.com/hneemann/[[name]]/releases/latest">下载</a>最新的发行版</p>
|
||||
<p>可以在这里提交<a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">问题</a>或<a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">建议</a></p>]]></string>
|
||||
<string name="msg_N_nodes">{0} 结点</string>
|
||||
<string name="msg_analyseErr">分析电路时遇到错误</string>
|
||||
<string name="msg_color">颜色</string>
|
||||
@ -1213,18 +1211,6 @@
|
||||
你可以查看有哪些功能变更。</p>
|
||||
<p>也可以直接 <a href="https://github.com/hneemann/[[name]]/releases/latest">下载</a> 最新版本</p>
|
||||
</html></string>
|
||||
<string name="msg_expressionHelp">To define an expression you can use all most common notations:
|
||||
|
||||
And: "&", "&&", "*", "∧"
|
||||
Or: "|", "||", "+", "∨", "#"
|
||||
XOr: "^", "⊻"
|
||||
Not: "!", "~", "¬"
|
||||
|
||||
As usual AND precedes OR and XOr.
|
||||
|
||||
Multiple expressions can be separated by "," or ";".
|
||||
If you want to name the expressions you can use the
|
||||
let-command: "let U=A+B, let V=A*B"</string>
|
||||
<string name="msg_testVectorHelp"><html>
|
||||
<head><style>pre { background-color: #E0E0E0;}</style></head>
|
||||
<body>
|
||||
|
@ -956,38 +956,37 @@
|
||||
The ZIP file thus contains all the files that are necessary for the operation of the circuit.</string>
|
||||
<string name="menu_labelPins">Label Inputs and Outputs</string>
|
||||
<string name="menu_labelPins_tt">Set a label to all inputs and outputs without a label.</string>
|
||||
<string name="menu_tutorial">Start Tutorial</string>
|
||||
<string name="menu_tutorial_tt">Starts the beginner tutorial.</string>
|
||||
<string name="menu_stats">Circuit Statistics</string>
|
||||
<string name="menu_stats_tt">Shows a list of used components.</string>
|
||||
<string name="stat_number">Number</string>
|
||||
<string name="stat_part">Component</string>
|
||||
<string name="stat_inputs">Inputs</string>
|
||||
<string name="stat_bits">Bits</string>
|
||||
<string name="stat_addrBits">Addr. Bits</string>
|
||||
<string name="msg_errorOpeningDocumentation">Error opening a PDF file!</string>
|
||||
<string name="message"><h1>Digital</h1>A simple simulator for digital circuits.
|
||||
Written by H. Neemann in 2016-2020.
|
||||
|
||||
The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.
|
||||
|
||||
Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a> the
|
||||
latest release.
|
||||
|
||||
There you also can file an <a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
or suggest
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.</string>
|
||||
<string name="msg_N_nodes">{0} nodes</string>
|
||||
<string name="msg_analyseErr">Error analysing the circuit</string>
|
||||
<string name="msg_color">Color</string>
|
||||
<string name="msg_errorCreatingModel">Error creating the circuit</string>
|
||||
<string name="msg_errorDuringCalculation">Error during simplification</string>
|
||||
<string name="msg_errorDuringHardwareExport">Error during creation of hardware configuration.</string>
|
||||
<string name="msg_errorEditingValue">Error editing a attribute value</string>
|
||||
<string name="msg_errorImportingModel_N0">Error importing the circuit {0}!</string>
|
||||
<string name="msg_errorUpdatingLibrary">Error updating the component library!!</string>
|
||||
<string name="msg_errorReadingFile">Error reading a file</string>
|
||||
<string name="menu_tutorial">Start Tutorial</string>
|
||||
<string name="menu_tutorial_tt">Starts the beginner tutorial.</string>
|
||||
<string name="menu_stats">Circuit Statistics</string>
|
||||
<string name="menu_stats_tt">Shows a list of used components.</string>
|
||||
<string name="stat_number">Number</string>
|
||||
<string name="stat_part">Component</string>
|
||||
<string name="stat_inputs">Inputs</string>
|
||||
<string name="stat_bits">Bits</string>
|
||||
<string name="stat_addrBits">Addr. Bits</string>
|
||||
<string name="msg_errorOpeningDocumentation">Error opening a PDF file!</string>
|
||||
<string name="message"><![CDATA[<h1>Digital</h1>
|
||||
<p>A simple simulator for digital circuits.</p>
|
||||
<p>Written by H. Neemann in 2016-2020.</p>
|
||||
<p>The icons are taken from the <a href="http://tango.freedesktop.org">Tango Desktop Project</a>.</p>
|
||||
<p>Visit the project at <a href="https://github.com/hneemann/[[name]]">GitHub</a>.
|
||||
At Github you can also <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a>
|
||||
the latest release.</p>
|
||||
<p>There you also can file an <a href="https://github.com/hneemann/[[name]]/issues/new?body=version:%20[[version]]&labels=bug">issue</a>
|
||||
or suggest
|
||||
an <a href="https://github.com/hneemann/[[name]]/issues/new?labels=enhancement">enhancement</a>.</p>]]>
|
||||
</string>
|
||||
<string name="msg_N_nodes">{0} nodes</string>
|
||||
<string name="msg_analyseErr">Error analysing the circuit</string>
|
||||
<string name="msg_color">Color</string>
|
||||
<string name="msg_errorCreatingModel">Error creating the circuit</string>
|
||||
<string name="msg_errorDuringCalculation">Error during simplification</string>
|
||||
<string name="msg_errorDuringHardwareExport">Error during creation of hardware configuration.</string>
|
||||
<string name="msg_errorEditingValue">Error editing a attribute value</string>
|
||||
<string name="msg_errorImportingModel_N0">Error importing the circuit {0}!</string>
|
||||
<string name="msg_errorUpdatingLibrary">Error updating the component library!!</string>
|
||||
<string name="msg_errorReadingFile">Error reading a file</string>
|
||||
<string name="msg_remoteUnknownCommand">Command {0} unknown!</string>
|
||||
<string name="msg_errorWritingFile">Error writing a file</string>
|
||||
<string name="msg_frequency_N">The maximum frequency is {0} kHz</string>
|
||||
@ -1425,19 +1424,6 @@
|
||||
you can find the changes and improvements.</p>
|
||||
<p>Here you can <a href="https://github.com/hneemann/[[name]]/releases/latest">download</a> the new release.</p>
|
||||
</html></string>
|
||||
<string name="msg_expressionHelp">To define an expression you can use all most common notations:
|
||||
|
||||
And: "&", "&&", "*", "∧"
|
||||
Or: "|", "||", "+", "∨", "#"
|
||||
XOr: "^", "⊻"
|
||||
Not: "!", "~", "¬"
|
||||
|
||||
As usual AND precedes OR and XOr.
|
||||
|
||||
Multiple expressions can be separated by "," or ";".
|
||||
If you want to name the expressions you can use the
|
||||
let command: "let U=A+B, let V=A*B".
|
||||
</string>
|
||||
<string name="msg_testVectorHelp"><html>
|
||||
<head><style>pre { background-color: #E0E0E0;}</style></head>
|
||||
<body>
|
||||
|
Loading…
x
Reference in New Issue
Block a user