[SCM] kdeconnect packaging branch, master, updated. debian/0.9g-1-1183-g9d69498

Maximiliano Curia maxy at moszumanska.debian.org
Fri Oct 14 14:28:56 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/kdeconnect.git;a=commitdiff;h=6a7edf5

The following commit has been merged in the master branch:
commit 6a7edf5f4495b1458563513623edeb13c6868e08
Author: David Edmundson <kde at davidedmundson.co.uk>
Date:   Mon Sep 7 18:12:24 2015 +0200

    Fix literal %1 in i18n
---
 plugins/share/share_config.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/plugins/share/share_config.cpp b/plugins/share/share_config.cpp
index 84a9b17..86cde37 100644
--- a/plugins/share/share_config.cpp
+++ b/plugins/share/share_config.cpp
@@ -34,7 +34,8 @@ ShareConfig::ShareConfig(QWidget *parent, const QVariantList& args)
 {
     m_ui->setupUi(this);
     // xgettext:no-c-format
-    m_ui->commentLabel->setText(i18n("%1 in the path will be replaced with the specific device name."));
+    m_ui->commentLabel->setTextFormat(Qt::RichText);
+    m_ui->commentLabel->setText(i18n("%1 in the path will be replaced with the specific device name."));
 
     connect(m_ui->kurlrequester, SIGNAL(textChanged(QString)), this, SLOT(changed()));
 }

-- 
kdeconnect packaging



More information about the pkg-kde-commits mailing list