From 48a73a9e058971625fc76a03f70c52544f954cb5 Mon Sep 17 00:00:00 2001 From: Guillaume MM Date: Sun, 11 Jun 2017 06:01:04 +0200 Subject: [PATCH] Make a string translatable --- src/frontends/qt4/GuiWorkArea.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiWorkArea.cpp b/src/frontends/qt4/GuiWorkArea.cpp index f50308f6d6..95d1081844 100644 --- a/src/frontends/qt4/GuiWorkArea.cpp +++ b/src/frontends/qt4/GuiWorkArea.cpp @@ -2229,7 +2229,7 @@ void GuiWorkAreaContainer::updateDisplay() { Buffer const & buf = wa_->bufferView().buffer(); notificationFrame->setHidden(!buf.notifiesExternalModification()); - QString const label = QString("The file \"%1\" changed on disk.") + QString const label = qt_("The file %1 changed on disk.") .arg(toqstr(buf.fileName().displayName())); externalModificationLabel->setText(label); }