Changed Src Language to English
git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@52 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
@@ -192,25 +192,25 @@ void KeepassEntryView::updateColumns(){
|
||||
setColumnCount(0);
|
||||
QStringList cols;
|
||||
if(config.Columns[0]){
|
||||
cols << trUtf8("Titel");}
|
||||
cols << tr("Title");}
|
||||
if(config.Columns[1]){
|
||||
cols << trUtf8("Benutzername");}
|
||||
cols << tr("Username");}
|
||||
if(config.Columns[2]){
|
||||
cols << trUtf8("URL");}
|
||||
cols << tr("URL");}
|
||||
if(config.Columns[3]){
|
||||
cols << trUtf8("Passwort");}
|
||||
cols << tr("Password");}
|
||||
if(config.Columns[4]){
|
||||
cols << trUtf8("Kommentare");}
|
||||
cols << tr("Comments");}
|
||||
if(config.Columns[5]){
|
||||
cols << trUtf8("Gültig bis");}
|
||||
cols << tr("Expires");}
|
||||
if(config.Columns[6]){
|
||||
cols << trUtf8("Erstellung");}
|
||||
cols << tr("Creation");}
|
||||
if(config.Columns[7]){
|
||||
cols << trUtf8("letzte Ãnderung");}
|
||||
cols << tr("Last Change");}
|
||||
if(config.Columns[8]){
|
||||
cols << trUtf8("letzter Zugriff");}
|
||||
cols << tr("Last Access");}
|
||||
if(config.Columns[9]){
|
||||
cols << trUtf8("Anhang");}
|
||||
cols << tr("Attachment");}
|
||||
setHeaderLabels(cols);
|
||||
resizeColumns();
|
||||
}
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
* Free Software Foundation, Inc., *
|
||||
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef _ENTRY_VIEW_H_
|
||||
#define _ENTRY_VIEW_H_
|
||||
|
||||
|
||||
@@ -211,7 +211,7 @@ for(int i=0;i<Items.size();i++){
|
||||
}
|
||||
if(ShowSearchGroup){
|
||||
Items.push_back(new GroupViewItem(this));
|
||||
Items.back()->setText(0,trUtf8("Suchergebnisse"));
|
||||
Items.back()->setText(0,tr("Search Results"));
|
||||
Items.back()->pGroup=NULL;
|
||||
QFont f=Items.back()->font(0);
|
||||
f.setItalic(true);
|
||||
|
||||
@@ -32,7 +32,6 @@ else{
|
||||
dev_random = fopen("/dev/urandom","r");}
|
||||
|
||||
if (dev_random==NULL){
|
||||
qWarning(QObject::tr("/dev/random konnte nicht geöffnet werden - nutze Standardbibliothek (stdlib)")+"\n");
|
||||
srand(QTime(0,0,0).secsTo(QTime::currentTime()));
|
||||
for(int i=0;i<NumBlocks*BlockSize;i++){
|
||||
Q_UINT8 rnd=rand()%256;
|
||||
|
||||
Reference in New Issue
Block a user