From 37a54d25a9e9f8de22b9eb015e7e929411e9247e Mon Sep 17 00:00:00 2001 From: TruongQuangSB <131350493+TruongQuangSB@users.noreply.github.com> Date: Fri, 28 Aug 2026 09:45:19 +0200 Subject: [PATCH 1/2] Fix export file name --- .../OSGI-INF/l10n/bundle.properties | 4 ++-- .../src/org/eclipse/set/feature/validation/Messages.java | 2 +- .../set/feature/validation/table/ValidationTableView.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/java/bundles/org.eclipse.set.feature.validation/OSGI-INF/l10n/bundle.properties b/java/bundles/org.eclipse.set.feature.validation/OSGI-INF/l10n/bundle.properties index af832071fa..f673f689c8 100644 --- a/java/bundles/org.eclipse.set.feature.validation/OSGI-INF/l10n/bundle.properties +++ b/java/bundles/org.eclipse.set.feature.validation/OSGI-INF/l10n/bundle.properties @@ -46,7 +46,7 @@ ValidationReport_GeladeneDatei_DateiName=Dateiname ValidationReport_GeladeneDatei_TimeStamp=Zeitstempel ValidationReport_GeladeneDatei_MD5=MD5 ValidationReport_GeladeneDatei_GUID=GUID - +ValidationReport_ExportFileName=Validierungsmeldungen ValidationReport_ContainerContents =PlanPro-Container ModelLoaderImpl_loadMsg=PlanPro-Datei wird geladen @@ -77,4 +77,4 @@ IoSuccessMsg=Es sind keine Ein-/Ausgabefehler aufgetreten. SaveToolboxFile=Speichern PlanPro Daten ValidationInformation_PlanPro_Versions_Label=PlanPro -ValidationInformation_Signalbegriff_Ril301_Versions_Label=Signalbegriffe \ No newline at end of file +ValidationInformation_Signalbegriff_Ril301_Versions_Label=Signalbegriffe diff --git a/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/Messages.java b/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/Messages.java index 66f77fde25..57f0b97e03 100644 --- a/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/Messages.java +++ b/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/Messages.java @@ -49,7 +49,7 @@ public class Messages { /** * Validierungsmeldungen */ - public String ExportFileName; + public String ValidationReport_ExportFileName; /** * Export als CSV diff --git a/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/table/ValidationTableView.java b/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/table/ValidationTableView.java index 4a6f709d63..20a9a82b27 100644 --- a/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/table/ValidationTableView.java +++ b/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/table/ValidationTableView.java @@ -128,7 +128,7 @@ public void exportCsv() { .getModelPath(); final String exportFileName = part.getModelSession() .getToolboxPaths() - .getTableExportPath(messages.ExportFileName, location, + .getTableExportPath(messages.ValidationReport_ExportFileName, location, ExportType.PLANNING_RECORDS, ExportPathExtension.TABLE_CSV_EXPORT_EXTENSION) .getFileName() From d57936fca4219771745b33aeee30ec969357bcdd Mon Sep 17 00:00:00 2001 From: TruongQuangSB <131350493+TruongQuangSB@users.noreply.github.com> Date: Fri, 28 Aug 2026 10:01:56 +0200 Subject: [PATCH 2/2] formatting --- .../set/feature/validation/table/ValidationTableView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/table/ValidationTableView.java b/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/table/ValidationTableView.java index 20a9a82b27..17bb969d21 100644 --- a/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/table/ValidationTableView.java +++ b/java/bundles/org.eclipse.set.feature.validation/src/org/eclipse/set/feature/validation/table/ValidationTableView.java @@ -128,8 +128,8 @@ public void exportCsv() { .getModelPath(); final String exportFileName = part.getModelSession() .getToolboxPaths() - .getTableExportPath(messages.ValidationReport_ExportFileName, location, - ExportType.PLANNING_RECORDS, + .getTableExportPath(messages.ValidationReport_ExportFileName, + location, ExportType.PLANNING_RECORDS, ExportPathExtension.TABLE_CSV_EXPORT_EXTENSION) .getFileName() .toString();