summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2005-02-17 10:00:37 (UTC)
committer zautrix <zautrix>2005-02-17 10:00:37 (UTC)
commitec18172021a9adc0f6fa1fe80aec71e9a905a351 (patch) (side-by-side diff)
tree9ec02d294b1422b6a92e9451c29dc9f668d381c7
parentd9565b4258279d70fa651e7e6ebe072c0f3755d6 (diff)
downloadkdepimpi-ec18172021a9adc0f6fa1fe80aec71e9a905a351.zip
kdepimpi-ec18172021a9adc0f6fa1fe80aec71e9a905a351.tar.gz
kdepimpi-ec18172021a9adc0f6fa1fe80aec71e9a905a351.tar.bz2
trans fix
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--bin/kdepim/korganizer/germantranslation.txt3
-rw-r--r--korganizer/searchdialog.cpp2
2 files changed, 2 insertions, 3 deletions
diff --git a/bin/kdepim/korganizer/germantranslation.txt b/bin/kdepim/korganizer/germantranslation.txt
index 05044ab..6b93606 100644
--- a/bin/kdepim/korganizer/germantranslation.txt
+++ b/bin/kdepim/korganizer/germantranslation.txt
@@ -1272,13 +1272,12 @@
{ "This is a %1 recurring todo.","Das ist eine %1 wiederholende Aufgabe." },
{ "<p><b>Start on:</b> %1</p>","<p><b>Start am:</b> %1</p>" },
{ "List week view","Listenwochenansicht" },
{ "List week","Listenwochenansicht" },
{ "Next Week","Nächste Woche" },
{ "Previous Week","Vorherige Woche" },
-{ "","" },
-{ "","" },
+{ "No items were found matching\nyour search expression.\nUse the wildcard characters\n'*' and '?' where needed.","Keine Einträge gefunden die\ndem Suchausdruck entsprechen.\nBenutze Platzhalter Zeichen\n'*' und '?' wo benötigt." },
{ "","" },
{ "","" },
{ "","" },
{ "","" },
{ "","" }, \ No newline at end of file
diff --git a/korganizer/searchdialog.cpp b/korganizer/searchdialog.cpp
index 39966b5..3a95978 100644
--- a/korganizer/searchdialog.cpp
+++ b/korganizer/searchdialog.cpp
@@ -183,13 +183,13 @@ void SearchDialog::doSearch()
listView->showEvents(mMatchedEvents);
listView->addTodos(mMatchedTodos);
listView->addJournals(mMatchedJournals);
if (mMatchedEvents.count() + mMatchedJournals.count() + mMatchedTodos.count() == 0) {
KMessageBox::information(this,
- i18n("No event/todo were found matching\nyour search expression.\nUse the wildcard characters\n ' * ' and ' ? ' where needed."));
+ i18n("No items were found matching\nyour search expression.\nUse the wildcard characters\n'*' and '?' where needed."));
#ifndef DESKTOP_VERSION
setCaption(i18n("Click OK to search ->"));
#else
setCaption(i18n("KO/Pi Find "));
#endif
} else {