From ecb831175e29ea196de1c5183d875b8dfe6c850e Mon Sep 17 00:00:00 2001 From: SiboVG Date: Sat, 11 Jun 2022 03:59:12 +0200 Subject: [PATCH] Change name to format settings panel --- core/resources/l10n/messages.properties | 2 +- .../src/net/sf/openrocket/gui/components/CsvOptionPanel.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"));