Change name to format settings panel

This commit is contained in:
SiboVG 2022-06-11 03:59:12 +02:00
parent e6622c7326
commit ecb831175e
2 changed files with 3 additions and 3 deletions

View File

@ -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 = <html>The string used to separate the fields in the exported file.<br>
SimExpPan.lbl.longA2 = Use ',' for a Comma Separated Values (CSV) file.

View File

@ -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"));