mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Fix weird base strings and reduce concatenation
This commit is contained in:
parent
e718e9f5e5
commit
3def6a3bc4
13 changed files with 26 additions and 25 deletions
|
@ -916,7 +916,7 @@ void EditEntryWidget::insertAttribute()
|
|||
int i = 1;
|
||||
|
||||
while (m_entryAttributes->keys().contains(name)) {
|
||||
name = QString("%1 %2").arg(tr("New attribute")).arg(i);
|
||||
name = tr("New attribute %1").arg(i);
|
||||
i++;
|
||||
}
|
||||
|
||||
|
@ -979,7 +979,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]") + " " + tr("Press reveal to view or edit"));
|
||||
m_advancedUi->attributesEdit->setPlainText(tr("[PROTECTED] Press reveal to view or edit"));
|
||||
m_advancedUi->attributesEdit->setEnabled(false);
|
||||
m_advancedUi->revealAttributeButton->setEnabled(true);
|
||||
m_advancedUi->protectAttributeButton->setChecked(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue