Corrected some strings

git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@160 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
sniperbeamer
2008-02-28 13:59:08 +00:00
parent 7b15707c6d
commit 863bd3316d
4 changed files with 7 additions and 8 deletions

View File

@@ -153,9 +153,9 @@ void KeepassEntryView::OnDeleteEntry(){
if(config->askBeforeDelete()){
QString text;
if(entries.size()==1)
text=tr("Are you sure you want delete this entry?");
text=tr("Are you sure you want to delete this entry?");
else
text=tr("Are you sure you want delete these %1 entries?").arg(entries.size());
text=tr("Are you sure you want to delete these %1 entries?").arg(entries.size());
if(QMessageBox::question(this,tr("Delete?"),text,QMessageBox::Yes | QMessageBox::No,QMessageBox::No)==QMessageBox::No)
return;
}