Rename application to KeePassXC and change icon (#70)

This commit is contained in:
Jonathan White
2016-11-03 00:05:30 -04:00
committed by GitHub
parent 13983d0e51
commit ccec84aef2
78 changed files with 133 additions and 62 deletions

View File

@@ -150,7 +150,7 @@ QString Service::storeKey(const QString &key)
tr("You have received an association "
"request for the above key.\n"
"If you would like to allow it access "
"to your KeePassX database\n"
"to your KeePassXC database\n"
"give it a unique name to identify and accept it."),
QLineEdit::Normal, QString(), &ok);
if (!ok || id.isEmpty())
@@ -158,7 +158,7 @@ QString Service::storeKey(const QString &key)
//Warn if association key already exists
} while(config->attributes()->contains(QLatin1String(ASSOCIATE_KEY_PREFIX) + id) &&
QMessageBox::warning(0, tr("KeyPassX/Http: Overwrite existing key?"),
QMessageBox::warning(0, tr("KeyPassXC/Http: Overwrite existing key?"),
tr("A shared encryption-key with the name \"%1\" already exists.\nDo you want to overwrite it?").arg(id),
QMessageBox::Yes | QMessageBox::No) == QMessageBox::No);