diff --git a/core/resources/l10n/messages.properties b/core/resources/l10n/messages.properties index c770f3471..fecd1b5c6 100644 --- a/core/resources/l10n/messages.properties +++ b/core/resources/l10n/messages.properties @@ -637,6 +637,7 @@ MotorPlot.txt.Delays = Delays: MotorPlot.txt.Comment = Comment:\n ! Simulation plot panel +simplotpanel.title.Plotsim = Plot / export simulation simplotpanel.lbl.Presetplotconf = Preset plot configurations: simplotpanel.lbl.Xaxistype = X axis type: simplotpanel.lbl.Unit = Unit: diff --git a/swing/src/net/sf/openrocket/gui/simulation/SimulationEditDialog.java b/swing/src/net/sf/openrocket/gui/simulation/SimulationEditDialog.java index f7fcfa456..b308c5df9 100644 --- a/swing/src/net/sf/openrocket/gui/simulation/SimulationEditDialog.java +++ b/swing/src/net/sf/openrocket/gui/simulation/SimulationEditDialog.java @@ -81,6 +81,7 @@ public class SimulationEditDialog extends JDialog { if (!allowsPlotMode()) { return; } + setTitle(trans.get("simplotpanel.title.Plotsim")); CardLayout cl = (CardLayout) (cards.getLayout()); cl.show(cards, PLOTMODE); cards.validate();