commit 64b9a4b7c0f63f16c5a87f74d62037bcf0fc12a6 Author: Andrew Coles Date: Tue Feb 9 17:13:14 2010 +0000 Proof-reading: - can not -> cannot (for consistency with rest of KDE) - url -> URL (it needs to be capitalised) diff --git a/uploaddialog.cpp b/uploaddialog.cpp index 69b7fda..0600a7d 100644 --- a/uploaddialog.cpp +++ b/uploaddialog.cpp @@ -117,7 +117,7 @@ void UploadDialog::startUpload() { if (m_ui->profileCombobox->currentIndex() == -1) { - KMessageBox::sorry(this, i18n("Can not upload, no profile selected.")); + KMessageBox::sorry(this, i18n("Cannot upload, no profile selected.")); return; } UploadJob* job = new UploadJob(m_project, m_uploadProjectModel, this); diff --git a/uploadprofiledlg.cpp b/uploadprofiledlg.cpp index 3bb4604..930f1c1 100644 --- a/uploadprofiledlg.cpp +++ b/uploadprofiledlg.cpp @@ -103,7 +103,7 @@ void UploadProfileDlg::browse() void UploadProfileDlg::slotButtonClicked(int button) { if (button == KDialog::Ok) { if (!KIO::NetAccess::exists(currentUrl(), KIO::NetAccess::DestinationSide, this)) { - KMessageBox::sorry(this, i18n("The specified url does not exist.")); + KMessageBox::sorry(this, i18n("The specified URL does not exist.")); return; } }