From 0849761dea7c43fc901a01c4308576c91a8a16e0 Mon Sep 17 00:00:00 2001 From: Daniel Radeau Date: Fri, 6 Feb 2026 17:58:30 +0100 Subject: [PATCH] story #15307 fix: ignore symbolic links checkbox label resolve #14 --- .../vitam/tools/resip/frame/preferences/PreferencesDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resip/src/main/java/fr/gouv/vitam/tools/resip/frame/preferences/PreferencesDialog.java b/resip/src/main/java/fr/gouv/vitam/tools/resip/frame/preferences/PreferencesDialog.java index 72d7b474..3e2a4688 100644 --- a/resip/src/main/java/fr/gouv/vitam/tools/resip/frame/preferences/PreferencesDialog.java +++ b/resip/src/main/java/fr/gouv/vitam/tools/resip/frame/preferences/PreferencesDialog.java @@ -1025,7 +1025,7 @@ public PreferencesDialog(JFrame owner) { gbc.weighty = 1.0; importParametersPanel.add(ignorePatternsLabel, gbc); - ignoreLinksChexBox = new JCheckBox("ignorer les liens symboliques et rassourcis"); + ignoreLinksChexBox = new JCheckBox("Ignorer les liens symboliques et raccourcis"); ignoreLinksChexBox.setSelected(dic.isNoLinkFlag()); gbc = new GridBagConstraints(); gbc.gridwidth = 2;