From e10e9a6976d2e0a398e663116df42c5f069a1c1d Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Sat, 3 Sep 2011 10:15:03 -0400 Subject: [PATCH] Fixed a double tr() call. It caused a crash when in Chinese mode. --- qt/se/preferences_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/se/preferences_dialog.py b/qt/se/preferences_dialog.py index 8726759f..54280ef0 100644 --- a/qt/se/preferences_dialog.py +++ b/qt/se/preferences_dialog.py @@ -68,7 +68,7 @@ class PreferencesDialog(PreferencesDialogBase): self.verticalLayout_4.addLayout(self.horizontalLayout_2) self._setupAddCheckbox('ignoreHardlinkMatches', tr("Ignore duplicates hardlinking to the same file"), self.widget) self.verticalLayout_4.addWidget(self.ignoreHardlinkMatches) - self._setupAddCheckbox('debugModeBox', tr(tr("Debug mode (restart required)")), self.widget) + self._setupAddCheckbox('debugModeBox', tr("Debug mode (restart required)"), self.widget) self.verticalLayout_4.addWidget(self.debugModeBox) self.widgetsVLayout.addWidget(self.widget) self._setupBottomPart()