# HG changeset patch # User Raimund Renkert # Date 1397639033 -7200 # Node ID bae8d4a20ef1e2755fa4fcf5dd41a9a019eb93c2 # Parent e11409381e1663b4df7e8352093e2089a3e011d5 Added strings for add and remove in table view combobox. diff -r e11409381e16 -r bae8d4a20ef1 ui/certificatetabledelegate.cpp --- a/ui/certificatetabledelegate.cpp Wed Apr 16 11:03:18 2014 +0200 +++ b/ui/certificatetabledelegate.cpp Wed Apr 16 11:03:53 2014 +0200 @@ -41,10 +41,10 @@ bool editable = index.data(Qt::UserRole).toBool(); // Create a combobox and add two items for install/remove. QComboBox *comboBox = new QComboBox(parent); - comboBox->addItem(QIcon(":/img/list-add.png"), QString(""), QVariant("true")); + comboBox->addItem(QIcon(":/img/list-add.png"), tr("add"), QVariant("true")); if (editable) { comboBox->addItem(QIcon(":/img/list-remove.png"), - QString(""), QVariant("false")); + tr("remove"), QVariant("false")); } return comboBox; }