From 59d028416046f8da7b3436a3bf8ff68f2639cc64 Mon Sep 17 00:00:00 2001 From: Et0h Date: Sat, 28 Jun 2014 11:09:58 +0100 Subject: [PATCH] Use getMessage for slowdown threshold suffix --- syncplay/ui/GuiConfiguration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syncplay/ui/GuiConfiguration.py b/syncplay/ui/GuiConfiguration.py index 42afc52..cf9eb93 100644 --- a/syncplay/ui/GuiConfiguration.py +++ b/syncplay/ui/GuiConfiguration.py @@ -372,7 +372,7 @@ class ConfigDialog(QtGui.QDialog): self.slowdownThresholdSpinbox.setMaximumWidth(80) self.slowdownThresholdSpinbox.setMinimum(constants.MINIMUM_SLOWDOWN_THRESHOLD) self.slowdownThresholdSpinbox.setSingleStep(0.1) - self.slowdownThresholdSpinbox.setSuffix(" secs") + self.slowdownThresholdSpinbox.setSuffix(getMessage("en", "seconds-suffix")) self.slowdownThresholdSpinbox.adjustSize() self.rewindThresholdLabel = QLabel(getMessage("en", "rewind-threshold-label"), self)