From 2ff4c5d98e7162748548e63f1b249a1de9a77591 Mon Sep 17 00:00:00 2001 From: coles Date: Wed, 1 Jun 2005 14:47:40 +0000 Subject: [PATCH] SVN_SILENT Corrected typos. git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/KDE/kdenetwork@420850 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kopete/protocols/winpopup/libwinpopup/libwinpopup.cpp | 12 ++++++------ kopete/protocols/winpopup/ui/wpeditaccountbase.ui | 2 +- kopete/protocols/winpopup/wpeditaccount.cpp | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/kopete/protocols/winpopup/libwinpopup/libwinpopup.cpp b/kopete/protocols/winpopup/libwinpopup/libwinpopup.cpp index 90488ed0a..7d5e3216f 100644 --- a/kopete/protocols/winpopup/libwinpopup/libwinpopup.cpp +++ b/kopete/protocols/winpopup/libwinpopup/libwinpopup.cpp @@ -98,10 +98,10 @@ bool WinPopupLib::checkMessageDir() { QDir dir(WP_POPUP_DIR); if (! dir.exists()) { - int tmpYesNo = KMessageBox::warningYesNo(Kopete::UI::Global::mainWidget(), i18n("Working directory /var/lib/winpopup/ does not exist!\n" - "If you havent't anything configured yet (samba) it may be better to call\n" + int tmpYesNo = KMessageBox::warningYesNo(Kopete::UI::Global::mainWidget(), i18n("Working directory /var/lib/winpopup/ does not exist.\n" + "If you have not configured anything yet (samba) it may be better to call\n" "Install Into Samba (Configure... -> Account -> Edit)\n" - "Shall I create it? (May need root password)")); + "Should the directory be created? (May need root password)")); if (tmpYesNo == KMessageBox::Yes) { QString kdesuArgs = "mkdir -p -m 0777 /var/lib/winpopup"; if (KApplication::kdeinitExecWait("kdesu", kdesuArgs) == 0) return true; @@ -269,15 +269,15 @@ void WinPopupLib::slotCheckForNewMessages() // QFile::remove() seems to be very persistent, it removes even files with 0444 owned by root // if the directory permissions are 0777 - so this is just for safety. GF kdDebug(14170) << "Message file not removed - how that?" << endl; - int tmpYesNo = KMessageBox::warningYesNo(Kopete::UI::Global::mainWidget(), i18n("A message file could not be removed!" - "Maybe the permissions are wrong.\n" + int tmpYesNo = KMessageBox::warningYesNo(Kopete::UI::Global::mainWidget(), i18n("A message file could not be removed; " + "maybe the permissions are wrong.\n" "Fix? (May need root password)")); if (tmpYesNo == KMessageBox::Yes) { QFileInfo messageFileInfo(messageFile); QString kdesuArgs = "chmod 0666 /var/lib/winpopup/" + messageFileInfo.fileName(); if (KApplication::kdeinitExecWait("kdesu", kdesuArgs) == 0) { if (!messageFile.remove()) - KMessageBox::error(Kopete::UI::Global::mainWidget(), i18n("Can still not remove it! Please fix manually.")); + KMessageBox::error(Kopete::UI::Global::mainWidget(), i18n("Still cannot remove it; please fix manually.")); } } } diff --git a/kopete/protocols/winpopup/ui/wpeditaccountbase.ui b/kopete/protocols/winpopup/ui/wpeditaccountbase.ui index 4e84750ca..a335a7d67 100644 --- a/kopete/protocols/winpopup/ui/wpeditaccountbase.ui +++ b/kopete/protocols/winpopup/ui/wpeditaccountbase.ui @@ -225,7 +225,7 @@ textLabel2_2 - <i>These options apply to all WinPopup accounts!</i> + <i>These options apply to all WinPopup accounts.</i> diff --git a/kopete/protocols/winpopup/wpeditaccount.cpp b/kopete/protocols/winpopup/wpeditaccount.cpp index 551b73ce9..40173c77b 100644 --- a/kopete/protocols/winpopup/wpeditaccount.cpp +++ b/kopete/protocols/winpopup/wpeditaccount.cpp @@ -103,7 +103,7 @@ bool WPEditAccount::validateData() } if (!mProtocol->checkMessageDir()) { - KMessageBox::sorry(this, i18n("There is a serious problem with your working directory!."), i18n("WinPopup")); + KMessageBox::sorry(this, i18n("There is a serious problem with your working directory."), i18n("WinPopup")); return false; } -- 2.11.4.GIT