author | zautrix <zautrix> | 2005-06-16 06:30:09 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-16 06:30:09 (UTC) |
commit | 9f60da2b6768e94d2aeb2f94a4479b6678f2aa76 (patch) (unidiff) | |
tree | eea4e7ee02afc86a543c142efa7b5c8c83e0f1f8 | |
parent | b8b1547f1f4ae54ace16e5faf55aad1274ec2e57 (diff) | |
download | kdepimpi-9f60da2b6768e94d2aeb2f94a4479b6678f2aa76.zip kdepimpi-9f60da2b6768e94d2aeb2f94a4479b6678f2aa76.tar.gz kdepimpi-9f60da2b6768e94d2aeb2f94a4479b6678f2aa76.tar.bz2 |
fixxx
-rw-r--r-- | korganizer/kofilterview.cpp | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/korganizer/kofilterview.cpp b/korganizer/kofilterview.cpp index 36ee2eb..e4dc751 100644 --- a/korganizer/kofilterview.cpp +++ b/korganizer/kofilterview.cpp | |||
@@ -198,3 +198,3 @@ void KOCalEditView::deleteCal( int id ) | |||
198 | QString file = kkf->mFileName; | 198 | QString file = kkf->mFileName; |
199 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar<tr><b>%1</b><tr>is displaying file<tr><b>%2</b><tr>Do you want to remove<tr>this calendar from KO/Pi?<tr>(The file is not removed!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; | 199 | if ( KMessageBox::warningContinueCancel( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>. Do you want to remove this calendar from KO/Pi? (The file is not removed!)").arg(name).arg(file) ) != KMessageBox::Continue ) return; |
200 | if ( kkf->isStandard ) | 200 | if ( kkf->isStandard ) |
@@ -211,3 +211,3 @@ void KOCalEditView::infoCal( int id ) | |||
211 | if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { | 211 | if ( KOPrefs::instance()->getCalendar( id )->mErrorOnLoad ) { |
212 | if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar <tr><b>%1</b><tr> is not loaded! Loading of file <tr><b>%2</b><tr>failed!<tr><b>Try again to load the calendar?</b>").arg(name).arg(file) ) ) { | 212 | if ( KMessageBox::Yes == KMessageBox::questionYesNo( this, i18n("The calendar <b>%1</b> is not loaded! Loading of file <b>%2</b> failed! <b>Try again to load the calendar?</b>").arg(name).arg(file) ) ) { |
213 | emit calendarAdded( id ); | 213 | emit calendarAdded( id ); |
@@ -218,3 +218,3 @@ void KOCalEditView::infoCal( int id ) | |||
218 | else | 218 | else |
219 | KMessageBox::information( this, i18n("The calendar <tr><b>%1</b><tr>is displaying file<tr><b>%2</b>").arg(name).arg(file) ); | 219 | KMessageBox::information( this, i18n("The calendar <b>%1</b> is displaying file <b>%2</b>").arg(name).arg(file) ); |
220 | } | 220 | } |
@@ -346,4 +346,4 @@ void KOCalEditView::addCal() | |||
346 | KONewCalPrefs prefs ( this ); | 346 | KONewCalPrefs prefs ( this ); |
347 | if ( !name.isEmpty() ) prefs.nameE->setText( name ); | 347 | prefs.nameE->setText( name ); |
348 | if ( !file.isEmpty() ) prefs.url->setURL( file ); | 348 | prefs.url->setURL( file ); |
349 | if ( ! prefs.exec() ) | 349 | if ( ! prefs.exec() ) |
@@ -356,11 +356,12 @@ void KOCalEditView::addCal() | |||
356 | if ( kkf->mName == name ) { | 356 | if ( kkf->mName == name ) { |
357 | KMessageBox::information( this, i18n("Sorry, the calendar name already exists!\nPlease choose another name!") ); | 357 | KMessageBox::information( this, i18n("Sorry, the calendar name \n%1\nalready exists!\nPlease choose another name!").arg( name ) ); |
358 | name = ""; | 358 | name = ""; |
359 | tryagain = true; | ||
359 | break; | 360 | break; |
360 | tryagain = true; | ||
361 | } | 361 | } |
362 | if ( kkf->mFileName == file ) { | 362 | if ( kkf->mFileName == file ) { |
363 | 363 | KMessageBox::information( this, i18n("Sorry, the file \n%1\nis already loaded!\nPlease choose another file!").arg( file) ); | |
364 | break; | ||
365 | tryagain = true; | 364 | tryagain = true; |
365 | file = ""; | ||
366 | break; | ||
366 | } | 367 | } |
@@ -371,3 +372,3 @@ void KOCalEditView::addCal() | |||
371 | if (!fi.exists() ) { | 372 | if (!fi.exists() ) { |
372 | if ( KMessageBox::questionYesNo(this, i18n("The file does not exist!\nShall I create it for you?")) == KMessageBox::No ) | 373 | if ( KMessageBox::questionYesNo(this, i18n("The file\n%1\ndoes not exist!\nShall I create it for you?").arg( file ) )== KMessageBox::No ) |
373 | return; | 374 | return; |
@@ -375,3 +376,3 @@ void KOCalEditView::addCal() | |||
375 | if (!fileIn.open( IO_WriteOnly ) ) { | 376 | if (!fileIn.open( IO_WriteOnly ) ) { |
376 | KMessageBox::sorry( this, i18n("Sorry, cannot create the file!\nNo calendar added!") ); | 377 | KMessageBox::sorry( this, i18n("Sorry, cannot create the file\n%1!\nNo calendar added!").arg( file ) ); |
377 | return; | 378 | return; |