Skip to content

Commit

Permalink
Pushed to version 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHal committed Jul 22, 2021
1 parent d4dca2b commit 7fae302
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public class MainWindow extends JFrame implements ChangeListener, ItemListener {
public static final String
APP_NAME=Messages.getString("MainWindow.AppNAme"), //$NON-NLS-1$ // used eclipse's mechanism for this one
APP_VERSION=Messages.getString("MainWindow.APP_VERSION"), //$NON-NLS-1$
COPYRIGHT="(C) Christian R. Halaszovich", //$NON-NLS-1$
COPYRIGHT="(C) 2021 Christian R. Halaszovich", //$NON-NLS-1$
LICENSE=Messages.getString("License"), //$NON-NLS-1$
INFO_SLIDERSBE=ResourceBundle.getBundle("de.halaszovich.sbhteachingtool.messages").getString("MainWindow.INFO_SLIDERSBE"); //$NON-NLS-1$ //$NON-NLS-2$
static final String INFO_SLIDERCO2 = ResourceBundle.getBundle("de.halaszovich.sbhteachingtool.messages").getString("MainWindow.INFO_SLIDERCO2");; //$NON-NLS-1$ //$NON-NLS-2$
private JFrame frmSBDemo;
Expand Down Expand Up @@ -410,7 +411,7 @@ public void actionPerformed(ActionEvent e) {
JOptionPane.showMessageDialog(frmSBDemo,
String.format(Messages.getString("MainWindow.VersionFormatStr"), MainWindow.APP_NAME, //$NON-NLS-1$
MainWindow.APP_VERSION, System.getProperty("java.version"),
MainWindow.COPYRIGHT),
MainWindow.COPYRIGHT, MainWindow.LICENSE),
Messages.getString("MainWindow.TitleAbout"),JOptionPane.PLAIN_MESSAGE); //$NON-NLS-1$
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ MainWindow.mnDatei.text=File
MainWindow.LabelHCO3akt=[HCO3-] \= %.1f mmol/L
MainWindow.mnDateiItem=a
MainWindow.mntmQuit.text=Exit
MainWindow.APP_VERSION=3.0
MainWindow.APP_VERSION=3.1
MainWindow.mntmberSureBase.text=About...
MainWindow.TitleHelp1=Help
MainWindow.frmSBDemo.title=Acid Base Balance Demo
MainWindow.INFO_SLIDERCO2=<html>pCO<sub>2</sub>\:<br>Values >40 mmHg (hypoventilation) simulate a respiratory acidosis<br> or the compensation of a metabolic alcalosis, smaller values <br>(hyperventilation) an alcalosis or the compensation of a metabolic acidosis.</html>
MainWindow.VersionFormatStr=%s (version %s)\n(Java version\: %s)\n%s
MainWindow.VersionFormatStr=%s (version %s)\n(Java version\: %s)\n%s\n%s
GraphSurface.labelHCO3=[HCO3-]
MainWindow.TitleAbout=About
MainWindow.txtLabelSliderSBE.text=<html><FONT SIZE\="3" FACE\="arial"><span style\="font-weight\:bold">non-respiratory component\:</span><br>excess of strong base (mM)</FONT></html>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MainWindow.LabelHCO3akt=[HCO3-]akt. \= %.1f mmol/L
MainWindow.TitleAbout=About
MainWindow.TitleHelp1=Hilfe
MainWindow.TtileHelp2=Hilfe
MainWindow.VersionFormatStr=%s (Version %s)\n(Java Version\: %s)\n%s
#MainWindow.VersionFormatStr=%s (Version %s)\n(Java Version\: %s)\n%s
MainWindow.btnReset.text=zur\u00FCcksetzen
MainWindow.frmSBDemo.title=S\u00E4ure Base Demo
MainWindow.mnDatei=d
Expand All @@ -23,3 +23,4 @@ MainWindow.txtLabelSliderCO2=<html><FONT SIZE\="3" FACE\="arial"><span style="fo
MainWindow.txtLabelSliderSBE.text=<html><FONT SIZE\="3" FACE\="arial"><span style="font-weight:bold">nicht-respiratorische Komponente\:</span><br>\u00DCberschuss starker Basen (mmol/L)</FONT></html>
MainWindow.chckbxLogScale.text=log. Skalierung f\u00FCr pCO2
MainWindow.chckbxLogScaleHCO3.text=log. Skalierung f\u00FCr HCO3-
License=veröffentlicht unter MIT Lizenz
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ MainWindow.mntmberSureBase.text=About...
MainWindow.panel_1.borderTitle=acid base status
MainWindow.chckbxLogScale.text=log scaling for pCO2
MainWindow.chckbxLogScaleHCO3.text=log scaling for HCO3-
License=published under MIT license

0 comments on commit 7fae302

Please sign in to comment.