fix protected transalation

This commit is contained in:
thez3ro 2017-10-24 14:08:22 +02:00
parent 71ae2a3458
commit 8416d69f1e
No known key found for this signature in database
GPG key ID: F628F9E41DD7C073
2 changed files with 5 additions and 5 deletions

View file

@ -632,7 +632,7 @@ void EditEntryWidget::displayAttribute(QModelIndex index, bool showProtected)
if (index.isValid()) {
QString key = m_attributesModel->keyByIndex(index);
if (showProtected) {
m_advancedUi->attributesEdit->setPlainText(tr("[PROTECTED] Press reveal to view or edit"));
m_advancedUi->attributesEdit->setPlainText(tr("[PROTECTED]") + " " + tr("Press reveal to view or edit"));
m_advancedUi->attributesEdit->setEnabled(false);
m_advancedUi->revealAttributeButton->setEnabled(true);
m_advancedUi->protectAttributeButton->setChecked(true);