diff --git a/core/resources/l10n/messages.properties b/core/resources/l10n/messages.properties
index 6f96ed80d..8467d4d03 100644
--- a/core/resources/l10n/messages.properties
+++ b/core/resources/l10n/messages.properties
@@ -1612,6 +1612,8 @@ PlotDialog.lbl.Chart = left click drag to zoom area. mouse wheel to zoom. ctrl-m
PlotDialog.lbl.timeSeriesWarning = The data is plotted in time order even though the X axis type is not time.
PlotDialog.btn.exportImage = Export Image
+PlotDialog.StageDropDown.allStages = All Stages
+
ComponentTree.ttip.massoverride = mass overriden
ComponentTree.ttip.cgoverride = CG overriden
ComponentTree.ttip.cdoverride = CD overriden
diff --git a/swing/src/net/sf/openrocket/gui/plot/SimulationPlotDialog.java b/swing/src/net/sf/openrocket/gui/plot/SimulationPlotDialog.java
index 9914c3901..128eac8ad 100644
--- a/swing/src/net/sf/openrocket/gui/plot/SimulationPlotDialog.java
+++ b/swing/src/net/sf/openrocket/gui/plot/SimulationPlotDialog.java
@@ -114,7 +114,7 @@ public class SimulationPlotDialog extends JDialog {
//// Add series selection box
ArrayList stages = new ArrayList();
- stages.add("All");
+ stages.add(trans.get("PlotDialog.StageDropDown.allStages"));
stages.addAll(Util.generateSeriesLabels(simulation));
final JComboBox stageSelection = new JComboBox<>(stages.toArray(new String[0]));