I18 changes
[debian/openrocket] / src / net / sf / openrocket / gui / plot / SimulationPlotPanel.java
index 1cc0c788be120479848142bdc54ad2652e73725b..eb646dc5150d3e43ef092bfb7c27681748a20d40 100644 (file)
@@ -41,11 +41,15 @@ public class SimulationPlotPanel extends JPanel {
        public static final int LEFT = 0;
        public static final int RIGHT = 1;
        
-       public static final String AUTO_NAME = "Auto";
-       public static final String LEFT_NAME = "Left";
-       public static final String RIGHT_NAME = "Right";
+       //// Auto
+       public static final String AUTO_NAME = trans.get("simplotpanel.AUTO_NAME");
+       //// Left
+       public static final String LEFT_NAME = trans.get("simplotpanel.LEFT_NAME");
+       //// Right
+       public static final String RIGHT_NAME = trans.get("simplotpanel.RIGHT_NAME");
        
-       private static final String CUSTOM = "Custom";
+       //// Custom
+       private static final String CUSTOM = trans.get("simplotpanel.CUSTOM");
        
        /** The "Custom" configuration - not to be used for anything other than the title. */
        private static final PlotConfiguration CUSTOM_CONFIGURATION;