From f10c6021dd23565df986c9631d12f42b64172a52 Mon Sep 17 00:00:00 2001 From: zautrix Date: Sun, 19 Jun 2005 08:51:41 +0000 Subject: fixx --- diff --git a/bin/kdepim/korganizer/germantranslation.txt b/bin/kdepim/korganizer/germantranslation.txt index 6ddfc5f..047df7c 100644 --- a/bin/kdepim/korganizer/germantranslation.txt +++ b/bin/kdepim/korganizer/germantranslation.txt @@ -1433,8 +1433,8 @@ { "Time mismatch!","Zeiten stimmen nicht!" }, { "The start time is\nafter the end time!","Die Startzeit ist\nhinter der Endzeit!" }, { "Yes, stop todo","Ja, stoppe Todo" }, -{ "","" }, -{ "","" }, +{ "Todo stopped - no data saved because runtime was < 15 sec!","Todo gestoppt - nichts gespeichert da Laufzeit < 15 sec!" }, +{ "Todo started! Double click again to stop!","Todo gestartet! Doppelklicke um es zu stoppen!" }, { "","" }, { "","" }, { "","" }, diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 8d957eb..7349d20 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp @@ -1192,6 +1192,7 @@ void KOTodoView::itemDoubleClicked(QListViewItem *item) if ( t->runTime() < 15) { t->stopRunning(); mActiveItem->construct(); + topLevelWidget()->setCaption(i18n("Todo stopped - no data saved because runtime was < 15 sec!")); return; } else @@ -1200,6 +1201,7 @@ void KOTodoView::itemDoubleClicked(QListViewItem *item) } else { t->setRunning( true ); mActiveItem->construct(); + topLevelWidget()->setCaption(i18n("Todo started! Double click again to stop!")); return; } } -- cgit v0.9.0.2