summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2005-03-03 15:08:34 (UTC)
committer zautrix <zautrix>2005-03-03 15:08:34 (UTC)
commit9a36b5727a918b73b96fa285c3cff393ec5f43ed (patch) (unidiff)
treee8740230f22c8a469070c086902c8dc62de1f4c7
parenta4ea625087ea7213419828e8decdff48ae231968 (diff)
downloadkdepimpi-9a36b5727a918b73b96fa285c3cff393ec5f43ed.zip
kdepimpi-9a36b5727a918b73b96fa285c3cff393ec5f43ed.tar.gz
kdepimpi-9a36b5727a918b73b96fa285c3cff393ec5f43ed.tar.bz2
nochn fix
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--bin/kdepim/pwmanager/germantranslation.txt4
-rw-r--r--pwmanager/pwmanager/pwmdoc.cpp2
2 files changed, 5 insertions, 1 deletions
diff --git a/bin/kdepim/pwmanager/germantranslation.txt b/bin/kdepim/pwmanager/germantranslation.txt
index ccc9d83..2650e28 100644
--- a/bin/kdepim/pwmanager/germantranslation.txt
+++ b/bin/kdepim/pwmanager/germantranslation.txt
@@ -350,6 +350,10 @@
350{ "Add new password","Passwort hinzufügen" }, 350{ "Add new password","Passwort hinzufügen" },
351{ "Successfully saved data.","Datei gespeichert." }, 351{ "Successfully saved data.","Datei gespeichert." },
352{ "Category:","Kategorie:" }, 352{ "Category:","Kategorie:" },
353{ "LOCKED","GESPERRT" },
354{ "","" },
355{ "","" },
356{ "","" },
353{ "","" }, 357{ "","" },
354{ "","" }, 358{ "","" },
355{ "","" }, 359{ "","" },
diff --git a/pwmanager/pwmanager/pwmdoc.cpp b/pwmanager/pwmanager/pwmdoc.cpp
index 6fbe110..61f2616 100644
--- a/pwmanager/pwmanager/pwmdoc.cpp
+++ b/pwmanager/pwmanager/pwmdoc.cpp
@@ -1290,7 +1290,7 @@ PwMerror PwMDoc::getCommentByLvp_long(const QString &category, int listViewPos,
1290 tempval = QString (dti.dta[cat].d[i].pw.c_str()); 1290 tempval = QString (dti.dta[cat].d[i].pw.c_str());
1291 if ( !tempval.isEmpty() ) { 1291 if ( !tempval.isEmpty() ) {
1292 if ( dti.dta[cat].d[i].lockStat ) 1292 if ( dti.dta[cat].d[i].lockStat )
1293 retval += "<b>" +QString ( catItem->pw_text.c_str() )+ ":</b> " + i18n("<LOCKED>") +"<br>" ; 1293 retval += "<b>" +QString ( catItem->pw_text.c_str() )+ ": " + i18n("LOCKED") +"</b><br>" ;
1294 else 1294 else
1295 retval += "<b>" +QString ( catItem->pw_text.c_str() )+ ":</b> " + tempval+"<br>" ; 1295 retval += "<b>" +QString ( catItem->pw_text.c_str() )+ ":</b> " + tempval+"<br>" ;
1296 } 1296 }