From: Guillaume MM Date: Sun, 11 Jun 2017 04:01:04 +0000 (+0200) Subject: Make a string translatable X-Git-Tag: 2.3.0beta1~276 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=48a73a9e058971625fc76a03f70c52544f954cb5;p=features.git Make a string translatable --- 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); }