From kde-commits Wed Dec 28 09:45:28 2016 From: Jean-Baptiste Mardelle Date: Wed, 28 Dec 2016 09:45:28 +0000 To: kde-commits Subject: [kdenlive/Applications/16.12] src/dialogs: Fix translation of wizard warning Message-Id: X-MARC-Message: https://marc.info/?l=kde-commits&m=148291833819290 Git commit ca6d64ba4dfa3a9a0797cc6b8fea6f76f8b7d36e by Jean-Baptiste Mardel= le. Committed on 28/12/2016 at 08:37. Pushed by mardelle into branch 'Applications/16.12'. Fix translation of wizard warning M +2 -2 src/dialogs/wizard.cpp https://commits.kde.org/kdenlive/ca6d64ba4dfa3a9a0797cc6b8fea6f76f8b7d36e diff --git a/src/dialogs/wizard.cpp b/src/dialogs/wizard.cpp index cf86695f2..ef82c9a9a 100644 --- a/src/dialogs/wizard.cpp +++ b/src/dialogs/wizard.cpp @@ -357,7 +357,7 @@ void Wizard::checkMltComponents() delete filters; if (!hasFrei0r) { // Frei0r effects not found - m_warnings.append(QString("
  • Missing package: Frei0r = effects (frei0r-plugins)
    provides many effects and transitions. Install= recommanded
  • ")); + m_warnings.append(i18n("
  • Missing package: Frei0r eff= ects (frei0r-plugins)
    provides many effects and transitions. Install re= commanded
  • ")); } = // Check that we have the breeze icon theme installed @@ -372,7 +372,7 @@ void Wizard::checkMltComponents() } if (!hasBreeze) { // Breeze icons not found - m_warnings.append(QString("
  • Missing package: Breeze = icons (breeze-icon-theme)
    provides many icons used in Kdenlive. Install= recommanded
  • ")); + m_warnings.append(i18n("
  • Missing package: Breeze ico= ns (breeze-icon-theme)
    provides many icons used in Kdenlive. Install re= commanded
  • ")); } = Mlt::Properties *consumers =3D repository->consumers();