-rw-r--r-- | bin/kdepim/korganizer/germantranslation.txt | 16 | ||||
-rw-r--r-- | korganizer/kotodoview.cpp | 7 |
2 files changed, 13 insertions, 10 deletions
diff --git a/bin/kdepim/korganizer/germantranslation.txt b/bin/kdepim/korganizer/germantranslation.txt index ca73f9b..4d44e32 100644 --- a/bin/kdepim/korganizer/germantranslation.txt +++ b/bin/kdepim/korganizer/germantranslation.txt @@ -126,5 +126,5 @@ { "Default","Standard" }, { "Def. duration of new app.:","Standard Termin Länge:" }, -{ "Delete all completed To-Dos?","Alle bereits erledigten Todos löschen?" }, +{ "Delete all completed ToDos?","Alle bereits erledigten Todos löschen?" }, { "Delete All","Lösche alles" }, { "Delete all selected","Lösche alle Selektierten" }, @@ -311,5 +311,5 @@ { "Public","Öffentlich" }, { "Purge","Entferne" }, -{ "Purge Completed","Entferne erledigte ToDos" }, +{ "Purge Completed","Entferne erledigte Todos" }, { "Purge To-Dos","Todos bereinigen" }, { "read-only","schreibgeschützt" }, @@ -880,5 +880,5 @@ { "Write back events in future only","Schreibe nur zukünftige Termine zurück" }, { "Max. weeks in future: ","Max. Wochen in der Zukunft: " }, -{ "NOTE: This will remove all old\ntodo/calendar data on phone!","ACHTUNG: Das löscht alle alten\nToDo/Kalender Daten auf dem Handy!" }, +{ "NOTE: This will remove all old\ntodo/calendar data on phone!","ACHTUNG: Das löscht alle alten\nTodo/Kalender Daten auf dem Handy!" }, { "Export to mobile phone!","Exportiere auf das Handy!" }, { "Export complete calendar","Exportiere kompletten Kalender" }, @@ -925,5 +925,5 @@ { "Configure KO","Konfiguriere KO" }, { "Event text","Termin Text" }, -{ "ToDo","ToDo" }, +{ "ToDo","Todo" }, { "Today","Heute" }, { "What's Next View","What's Next Ansicht" }, @@ -1344,9 +1344,15 @@ { "Start todo","Starte Todo" }, { "The todo\n%1\nis stopped.\nDo you want to set\nthe state to started?","Das Todo\n%1\nist gestoppt.\nWollen Sie es auf\ngestartet setzen?" }, -{ "The todo\n%1\nwill be cloned!\nIt has subtodos!\nDo you want to clone\nall subtodos as well?","Das Todo\n%1\nwird geklont!\nEs hat Untertodos!\nMöchten Sie\nalle Untertodos auch klonen?" }, +{ "The todo\n%1\nwill be cloned!\nIt has subtodos!\nDo you want to clone\nall subtodos as well?","Das Todo\n%1\nwird geklont!\nEs hat Untertodos!\nMöchten Sie alle\nUntertodos auch klonen?" }, { "Todo has subtodos","Todo hat Untertodos" }, { "Block popup until mouse button release","Sperre Popup bis Mausknopf losgelassen" }, { "Alternate background","Abwechselnder Hintergrund" }, { "Colors","Farben" }, +{ "Click on new parent item","Klicke auf neues Übertodo" }, +{ "Reparenting aborted!","Übertodo setzen abgebrochen" }, +{ "Cannot move Todo to itself\nor a child of itself","Kann nicht Todo auf\nsich selbst oder\nein Untertodo verschieben" }, +{ "Recursive reparenting not possible!","Rekursives Verschieben nicht möglich" }, +{ "","" }, +{ "","" }, { "","" }, { "","" }, diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 7817a75..dd2c081 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp @@ -162,6 +162,6 @@ void KOTodoListView::contentsDropEvent(QDropEvent *e) if (to->uid() == todo->uid()) { KMessageBox::sorry(this, - i18n("Cannot move To-Do to itself\nor a child of itself"), - i18n("Drop To-Do")); + i18n("Cannot move Todo to itself\nor a child of itself"), + i18n("Drop Todo")); delete todo; return; @@ -963,5 +963,4 @@ void KOTodoView::reparentTodo() { if (mActiveItem) { - qDebug("KOTodoView::reparentTodo() "); topLevelWidget()->setCaption(i18n("Click on new parent item")); pendingSubtodo = mActiveItem; @@ -1163,5 +1162,4 @@ void KOTodoView::itemClicked(QListViewItem *item) if ( !allowReparent ) { topLevelWidget()->setCaption(i18n("Recursive reparenting not possible!")); - qDebug("Recursive reparenting not possible "); pendingSubtodo = 0; } else { @@ -1196,5 +1194,4 @@ void KOTodoView::itemClicked(QListViewItem *item) void KOTodoView::setDocumentId( const QString &id ) { - kdDebug() << "KOTodoView::setDocumentId()" << endl; mDocPrefs->setDoc( id ); |