diff --git a/core/resources/l10n/messages.properties b/core/resources/l10n/messages.properties index 99a6ee242..857c6e02f 100644 --- a/core/resources/l10n/messages.properties +++ b/core/resources/l10n/messages.properties @@ -552,7 +552,7 @@ SimExpPan.border.Vartoexport = Variables to export SimExpPan.border.Stage = Stage to export SimExpPan.but.Selectall = Select all SimExpPan.but.Selectnone = Select none -SimExpPan.border.StorageSettings = Storage settings +SimExpPan.border.FormatSettings = Format settings SimExpPan.lbl.Fieldsepstr = Field separator string: SimExpPan.lbl.longA1 = The string used to separate the fields in the exported file.
SimExpPan.lbl.longA2 = Use ',' for a Comma Separated Values (CSV) file. diff --git a/swing/src/net/sf/openrocket/gui/components/CsvOptionPanel.java b/swing/src/net/sf/openrocket/gui/components/CsvOptionPanel.java index 17a108c53..cc535bdde 100644 --- a/swing/src/net/sf/openrocket/gui/components/CsvOptionPanel.java +++ b/swing/src/net/sf/openrocket/gui/components/CsvOptionPanel.java @@ -54,9 +54,9 @@ public class CsvOptionPanel extends JPanel { // TODO: HIGH: Rename the translation keys - // Storage settings panel + // Format settings panel panel = new JPanel(new MigLayout("fill")); - panel.setBorder(BorderFactory.createTitledBorder(trans.get("SimExpPan.border.StorageSettings"))); + panel.setBorder(BorderFactory.createTitledBorder(trans.get("SimExpPan.border.FormatSettings"))); //// Field separation label = new JLabel(trans.get("SimExpPan.lbl.Fieldsepstr"));