From c2554f30f0866f6f23e2792cef0316e6dc3e25f5 Mon Sep 17 00:00:00 2001 From: tarek_saidi Date: Sun, 1 Jul 2007 12:03:45 +0000 Subject: [PATCH] auto-type delays git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@137 b624d157-de02-0410-bad0-e51aec6abb33 --- share/keepass/doc/css/style.css | 4 +- share/keepass/doc/index.html | 123 +- src/KpxConfig.h | 6 +- src/dialogs/PasswordGenDlg.cpp | 2 + src/dialogs/SettingsDlg.cpp | 7 +- src/forms/MainWindow.ui | 6 + src/forms/SettingsDlg.ui | 4 +- src/lib/AutoType_X11.cpp | 24 +- src/lib/FileDialogs.cpp | 16 +- src/lib/FileDialogs.h | 7 +- src/mainwindow.cpp | 32 +- src/mainwindow.h | 8 + src/src.pro | 6 +- src/translations/keepass-cs_CS.ts | 1824 +++++++++++++++++++++------ src/translations/keepass-de_DE.ts | 1870 ++++++++++++++++++++------- src/translations/keepass-es_ES.ts | 1949 +++++++++++++++++++++-------- src/translations/keepass-fr_FR.ts | 1826 +++++++++++++++++++++------ src/translations/keepass-ru_RU.ts | 1858 ++++++++++++++++++++------- src/translations/keepass-xx_XX.ts | 1889 +++++++++++++++++++--------- 19 files changed, 8635 insertions(+), 2826 deletions(-) diff --git a/share/keepass/doc/css/style.css b/share/keepass/doc/css/style.css index 15ea25e..bacd91d 100644 --- a/share/keepass/doc/css/style.css +++ b/share/keepass/doc/css/style.css @@ -2,7 +2,7 @@ min-height: 120px; height: auto !important; height: 120px; - background-image: url('../images/headerbackground.png'); + background-image: url('./images/headerbackground.png'); background-repeat: repeat-x; padding: 0 25px 15px 25px; padding: 0; @@ -12,7 +12,7 @@ min-height: 120px; height: auto !important; height: 120px; - background-image: url('../images/logo.png'); + background-image: url('./images/logo.png'); padding: 0 25px 15px 25px; background-repeat: no-repeat; padding: 0; diff --git a/share/keepass/doc/index.html b/share/keepass/doc/index.html index 8cb3b09..21436a8 100644 --- a/share/keepass/doc/index.html +++ b/share/keepass/doc/index.html @@ -1,13 +1,110 @@ - - - -KeePassX - - - -
- -

Introduction


-- to be written - - \ No newline at end of file + +KeePassX User Guide

KeePassX User Guide


Table of Contents
Introduction
1. First Steps
2.

  Next
  Introduction
\ No newline at end of file diff --git a/src/KpxConfig.h b/src/KpxConfig.h index d7e937e..665ca54 100644 --- a/src/KpxConfig.h +++ b/src/KpxConfig.h @@ -89,7 +89,9 @@ public: QString urlCmd(){return settings.value("Options/UrlCmd").toString();} QByteArray vSplitterPos(){return settings.value("UI/VSplitterPos").toByteArray();} bool askBeforeDelete(){return settings.value("Options/AskBeforeDelete",true).toBool();} - + int autoTypePreGap(){return settings.value("Options/AutoTypePreGap",500).toInt();} + int autoTypeKeyStrokeDelay(){return settings.value("Options/AutoTypeKeyStrokeDelay",0).toInt();} + void setAlternatingRowColors(bool value){settings.setValue("Options/AlternatingRowColors",value);} void setBannerColor1(const QColor& value){settings.setValue("Options/BannerColor1",colorToString(value));} void setBannerColor2(const QColor& value){settings.setValue("Options/BannerColor2",colorToString(value));} @@ -130,6 +132,8 @@ public: void setUrlCmd(const QString& value){settings.setValue("Options/UrlCmd",value);} void setVSplitterPos(const QByteArray& value){settings.setValue("UI/VSplitterPos",value);} void setAskBeforeDelete(bool value){settings.setValue("Options/AskBeforeDelete",value);} + void setAutoTypePreGap(int value){settings.setValue("Options/AutoTypePreGap",value);} + void setAutoTypeKeyStrokeDelay(int value){settings.setValue("Options/AutoTypeKeyStrokeDelay",value);} unsigned fileDlgHistorySize(); void clearFileDlgHistory(){settings.remove("FileDlgHistory");}; diff --git a/src/dialogs/PasswordGenDlg.cpp b/src/dialogs/PasswordGenDlg.cpp index 30a81b6..6c40e3c 100755 --- a/src/dialogs/PasswordGenDlg.cpp +++ b/src/dialogs/PasswordGenDlg.cpp @@ -81,6 +81,7 @@ CGenPwDialog::CGenPwDialog(QWidget* parent, bool StandAloneMode,Qt::WFlags fl) Check_CollectOncePerSession->setChecked(pwGenOptions.at(9)); OnRadio1StateChanged(pwGenOptions.at(0)); OnRadio2StateChanged(!pwGenOptions.at(0)); + Spin_Num->setValue(config->pwGenLength()); } CGenPwDialog::~CGenPwDialog(){ @@ -96,6 +97,7 @@ CGenPwDialog::~CGenPwDialog(){ pwGenOptions.setBit(8,Check_CollectEntropy->isChecked()); pwGenOptions.setBit(9,Check_CollectOncePerSession->isChecked()); config->setPwGenOptions(pwGenOptions); + config->setPwGenLength(Spin_Num->value()); } void CGenPwDialog::paintEvent(QPaintEvent *event){ diff --git a/src/dialogs/SettingsDlg.cpp b/src/dialogs/SettingsDlg.cpp index d752dcb..f6f437f 100755 --- a/src/dialogs/SettingsDlg.cpp +++ b/src/dialogs/SettingsDlg.cpp @@ -30,6 +30,7 @@ #include #include "SettingsDlg.h" #include "CustomizeDetailViewDlg.h" +#include "FileDialogs.h" bool CSettingsDlg::PluginsModified=false; @@ -41,6 +42,7 @@ CSettingsDlg::CSettingsDlg(QWidget* parent):QDialog(parent,Qt::Dialog) connect(DialogButtons, SIGNAL( rejected() ), this, SLOT( OnCancel() ) ); connect(DialogButtons, SIGNAL( clicked(QAbstractButton*)), this, SLOT(OnOtherButton(QAbstractButton*))); + connect(Button_ClearFileDlgHistory, SIGNAL(clicked()), &fileDlgHistory, SLOT(clear())); connect(ButtonColor1, SIGNAL( clicked() ), this, SLOT( OnColor1() ) ); connect(ButtonColor2, SIGNAL( clicked() ), this, SLOT( OnColor2() ) ); connect(ButtonTextColor, SIGNAL( clicked() ), this, SLOT( OnTextColor() ) ); @@ -138,7 +140,8 @@ CSettingsDlg::CSettingsDlg(QWidget* parent):QDialog(parent,Qt::Dialog) Edit_MountDir->setText(config->mountDir()); CheckBox_SaveRelativePaths->setChecked(config->saveRelativePaths()); - + SpinBox_AutoTypePreGap->setValue(config->autoTypePreGap()); + SpinBox_AutoTypeKeyStrokeDelay->setValue(config->autoTypeKeyStrokeDelay()); } CSettingsDlg::~CSettingsDlg() @@ -217,6 +220,8 @@ void CSettingsDlg::apply(){ if(CheckBox_BrowserDefault->isChecked())config->setUrlCmd(QString()); else config->setUrlCmd(Edit_BrowserCmd->text()); config->setSaveRelativePaths(CheckBox_SaveRelativePaths->isChecked()); + config->setAutoTypePreGap(SpinBox_AutoTypePreGap->value()); + config->setAutoTypeKeyStrokeDelay(SpinBox_AutoTypeKeyStrokeDelay->value()); } diff --git a/src/forms/MainWindow.ui b/src/forms/MainWindow.ui index a523038..5755039 100644 --- a/src/forms/MainWindow.ui +++ b/src/forms/MainWindow.ui @@ -157,6 +157,7 @@ + @@ -544,6 +545,11 @@ Recycle Bin... + + + Lock Workspace + + diff --git a/src/forms/SettingsDlg.ui b/src/forms/SettingsDlg.ui index 4efb167..b0dba08 100644 --- a/src/forms/SettingsDlg.ui +++ b/src/forms/SettingsDlg.ui @@ -1060,7 +1060,7 @@ 6 - + Time between the activation of an auto-type action by the user and the first simulated key stroke. @@ -1106,7 +1106,7 @@ - + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. diff --git a/src/lib/AutoType_X11.cpp b/src/lib/AutoType_X11.cpp index 475c8c3..19182b9 100644 --- a/src/lib/AutoType_X11.cpp +++ b/src/lib/AutoType_X11.cpp @@ -17,13 +17,15 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ - + +#include "KpxConfig.h" #include #include "AutoType.h" #include #include #include + QWidget* AutoType::MainWin=NULL; @@ -64,13 +66,21 @@ void AutoType::pressModifiers(Display* d,int mods,bool press){ } } - - void AutoType::perform(IEntryHandle* entry, QString& err){ +void sleepKeyStrokeDelay(){ + if(config->autoTypeKeyStrokeDelay()==0)return; struct timespec timeOut,remains; timeOut.tv_sec = 0; - timeOut.tv_nsec = 30000000; /* 300 milliseconds */ + timeOut.tv_nsec = config->autoTypeKeyStrokeDelay()*100000; + nanosleep(&timeOut, &remains); +} + + +void AutoType::perform(IEntryHandle* entry, QString& err){ + struct timespec timeOut,remains; + timeOut.tv_sec = 0; + timeOut.tv_nsec = config->autoTypePreGap()*100000; for(int i=0;i<10;i++)nanosleep(&timeOut, &remains); - + QString str; QString comment=entry->comment(); int c=comment.count("Auto-Type:"); @@ -119,9 +129,13 @@ void AutoType::pressModifiers(Display* d,int mods,bool press){ int keycode=XKeysymToKeycode(pDisplay,Keys[i]); int mods=getModifiers(pDisplay,Keys[i],keycode); pressModifiers(pDisplay,mods); + sleepKeyStrokeDelay(); XTestFakeKeyEvent(pDisplay,keycode,True,0); + sleepKeyStrokeDelay(); XTestFakeKeyEvent(pDisplay,keycode,False,1); + sleepKeyStrokeDelay(); releaseModifiers(pDisplay,mods); + sleepKeyStrokeDelay(); } XCloseDisplay(pDisplay); MainWin->show(); diff --git a/src/lib/FileDialogs.cpp b/src/lib/FileDialogs.cpp index 5755325..fc78f86 100644 --- a/src/lib/FileDialogs.cpp +++ b/src/lib/FileDialogs.cpp @@ -135,36 +135,32 @@ void FileDlgHistory::set(const QString& name,const QString& dir, int filter){ } void FileDlgHistory::save(){ if(config->saveFileDlgHistory()){ - //settings->beginGroup("FileDlgHistory"); for(unsigned i=0;i(History.size());i++){ QStringList entry; entry << History.keys().at(i) << History.values().at(i).Dir << QString::number(History.values().at(i).Filter); - //settings->setValue(QString("ENTRY%1").arg(i),QVariant(entry)); config->setFileDlgHistory(i,entry); } - //settings->endGroup(); } } void FileDlgHistory::load(){ if(config->saveFileDlgHistory()){ - //settings->beginGroup("FileDlgHistory"); - //QStringList keys=settings->childKeys(); unsigned count=config->fileDlgHistorySize(); for(unsigned i=0;ifileDlgHistory(i);//settings->value(QString("ENTRY%1").arg(i)).toStringList(); + QStringList value=config->fileDlgHistory(i); entry.Dir=value[1]; entry.Filter=value[2].toInt(); History[value[0]]=entry; } - //settings->endGroup(); } - else{ + else config->clearFileDlgHistory(); - //settings->remove("FileDlgHistory"); - } } +void FileDlgHistory::clear(){ + History=QHash(); + config->clearFileDlgHistory(); +} \ No newline at end of file diff --git a/src/lib/FileDialogs.h b/src/lib/FileDialogs.h index f7bcda8..e68afb6 100644 --- a/src/lib/FileDialogs.h +++ b/src/lib/FileDialogs.h @@ -27,13 +27,16 @@ #include "plugins/interfaces/IFileDialog.h" -class FileDlgHistory{ +class FileDlgHistory:public QObject{ + Q_OBJECT public: QString getDir(const QString& name); int getFilter(const QString& name); + public slots: void set(const QString& name,const QString& dir,int filter); void save(); - void load(); + void load(); + void clear(); private: class Entry{ public: diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 4ee346f..319a987 100755 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -38,6 +38,7 @@ #include #include + #include "KpxFirefox.h" #include "lib/random.h" #include "lib/AutoType.h" @@ -94,6 +95,13 @@ KeepassMainWindow::KeepassMainWindow(const QString& ArgFile,QWidget *parent, Qt: statusBar()->addWidget(StatusBarGeneral,15); statusBar()->addWidget(StatusBarSelection,85); statusBar()->setVisible(config->showStatusbar()); + + NormalCentralWidget=QMainWindow::centralWidget(); + LockedCentralWidget=new QWidget(this); + WorkspaceLockedWidget.setupUi(LockedCentralWidget); + LockedCentralWidget->setVisible(false); + IsLocked=false; + setupConnections(); FileOpen=false; @@ -106,6 +114,8 @@ KeepassMainWindow::KeepassMainWindow(const QString& ArgFile,QWidget *parent, Qt: else config->setLastFile(QString()); } + HelpBrowser = new QAssistantClient(QString(),this); + HelpBrowser->setArguments(QStringList()<< "-profile" << "/home/tarek/Documents/KeePassX/share/keepass/doc/keepassx.adp"); // DBus Server of Qt 4.2 does not work - 4.3 snapshot seems to work fine /* @@ -132,6 +142,7 @@ void KeepassMainWindow::setupConnections(){ connect(FileSettingsAction, SIGNAL(triggered()), this, SLOT(OnFileSettings())); connect(FileChangeKeyAction, SIGNAL(triggered()), this, SLOT(OnFileChangeKey())); connect(FileExitAction, SIGNAL(triggered()), this, SLOT(OnFileExit())); + connect(FileUnLockWorkspaceAction,SIGNAL(triggered()), this, SLOT(OnUnLockWorkspace())); connect(menuImport,SIGNAL(triggered(QAction*)),this,SLOT(OnImport(QAction*))); connect(menuExport,SIGNAL(triggered(QAction*)),this,SLOT(OnExport(QAction*))); @@ -183,6 +194,8 @@ void KeepassMainWindow::setupConnections(){ connect(SysTray,SIGNAL(activated(QSystemTrayIcon::ActivationReason)),this,SLOT(OnSysTrayActivated(QSystemTrayIcon::ActivationReason))); connect(DetailView,SIGNAL(anchorClicked(const QUrl&)),this,SLOT(OnDetailViewUrlClicked(const QUrl&))); + connect(WorkspaceLockedWidget.Button_Unlock,SIGNAL(clicked()),this,SLOT(OnUnLockWorkspace())); + connect(WorkspaceLockedWidget.Button_CloseDatabase,SIGNAL(clicked()),this,SLOT(OnFileClose())); } void KeepassMainWindow::setupToolbar(){ @@ -877,7 +890,9 @@ dlg.exec(); } void KeepassMainWindow::OnHelpHandbook(){ -openBrowser(AppDir+"/../share/doc/keepass/index.html"); + HelpBrowser->openAssistant(); + + } void KeepassMainWindow::OnViewShowToolbar(bool show){ @@ -984,3 +999,18 @@ void KeepassMainWindow::OnDetailViewUrlClicked(const QUrl& url){ openBrowser(url.toString()); } +void KeepassMainWindow::OnUnLockWorkspace(){ + if(IsLocked){ + LockedCentralWidget->setVisible(false); + LockedCentralWidget->setParent(NULL); + setCentralWidget(NormalCentralWidget); + NormalCentralWidget->setVisible(true); + IsLocked=false; + } else { + NormalCentralWidget->setVisible(false); + NormalCentralWidget->setParent(NULL); + setCentralWidget(LockedCentralWidget); + LockedCentralWidget->setVisible(true); + IsLocked=true; + } +} \ No newline at end of file diff --git a/src/mainwindow.h b/src/mainwindow.h index cfb25ae..4da7d5d 100755 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -38,6 +38,7 @@ #include #include #include +#include #include #include "Kdb3Database.h" @@ -47,6 +48,7 @@ #include "export/Export.h" #include "ui_MainWindow.h" +#include "ui_WorkspaceLockedWidget.h" class KeepassMainWindow : public QMainWindow, public Ui_MainWindow{ Q_OBJECT @@ -94,12 +96,14 @@ class KeepassMainWindow : public QMainWindow, public Ui_MainWindow{ void OnImport(QAction*); void OnExport(QAction*); void OnDetailViewUrlClicked(const QUrl& url); + void OnUnLockWorkspace(); private: void closeEvent(QCloseEvent* event); SelectionState GroupSelection, EntrySelection; bool FileOpen; bool ModFlag; + bool IsLocked; QList SearchResults; inline void setupToolbar(); inline void setupIcons(); @@ -124,6 +128,10 @@ class KeepassMainWindow : public QMainWindow, public Ui_MainWindow{ QSystemTrayIcon* SysTray; QAction* ViewShowToolbarAction; QMenu* SysTrayMenu; + QAssistantClient* HelpBrowser; + QWidget* NormalCentralWidget; + QWidget* LockedCentralWidget; + Ui_WorkspaceLockedWidget WorkspaceLockedWidget; bool ShutingDown; }; diff --git a/src/src.pro b/src/src.pro index 2ae6885..e46c073 100755 --- a/src/src.pro +++ b/src/src.pro @@ -52,7 +52,8 @@ FORMS += forms/EditGroupDlg.ui \ forms/CustomizeDetailViewDlg.ui \ forms/CalendarDlg.ui \ forms/TrashCanDlg.ui \ - forms/ExpiredEntriesDlg.ui + forms/ExpiredEntriesDlg.ui \ + forms/WorkspaceLockedWidget.ui TRANSLATIONS += translations/keepass-de_DE.ts \ translations/keepass-ru_RU.ts \ translations/keepass-es_ES.ts \ @@ -172,7 +173,8 @@ CONFIG += debug \ qt \ thread \ warn_off \ -dbus +dbus \ +assistant QT += dbus xml TEMPLATE = app INCLUDEPATH += . \ diff --git a/src/translations/keepass-cs_CS.ts b/src/translations/keepass-cs_CS.ts index f5ea2cd..7d0f254 100644 --- a/src/translations/keepass-cs_CS.ts +++ b/src/translations/keepass-cs_CS.ts @@ -1,5 +1,158 @@ + + AboutDialog + + + KeePassX %1 + KeePassX %1 + + + + <b>Current Translation: None</b><br><br> + Please replace 'None' with the language of your translation + <b>Aktuální překlad: český</b><br><br> + + + + <b>Author:</b> %1<br> + <b>Autor:</b> %1<br> + + + + $TRANSLATION_AUTHOR + Marek Straka + + + + $TRANSLATION_AUTHOR_EMAIL + Here you can enter your email or homepage if you want. + marek@straka.info (<a href="http://marek.straka.info">marek.straka.info</a>) + + + + Information on how to translate KeePassX can be found under: +http://keepassx.sourceforge.net/ + + + + + Team + Vývojová skupina + + + + Tarek Saidi + Tarek Saidi + + + + Developer, Project Admin + Vývojář, vedoucí projektu + + + + tariq@users.berlios.de + tariq@users.berlios.de + + + + Eugen Gorschenin + Eugen Gorschenin + + + + Web Designer + Webový designér + + + + geugen@users.berlios.de + geugen@users.berlios.de + + + + Thanks To + Poděkování + + + + Matthias Miller + Matthias Miller + + + + Patches for better MacOS X support + Patches pro lepší MacOS X podporu + + + + www.outofhanwell.com + www.outofhanwell.com + + + + James Nicholls + James Nicholls + + + + Main Application Icon + Hlavní ikonka aplikace + + + + Constantin Makshin + + + + + Various fixes and improvements + + + + + dinosaur-rus@users.sourceforge.net + + + + + Error + Chyba + + + + File '%1' could not be found. + Soubor '%1' nemohl být nalezen. + + + + Make sure that the program is installed correctly. + Ujistěte se, že program je správně nainstalován. + + + + OK + OK + + + + Could not open file '%1' + Nelze otevřít soubor '%1' + + + + The following error occured: +%1 + Vyskytl se následující problém: +%1 + + + + http://keepassx.sf.net + http://keepassx.sf.net + + AboutDlg @@ -8,12 +161,12 @@ O aplikaci - + License Licence - + Translation Překlad @@ -27,25 +180,32 @@ Copyright (C) 2005 - 2006 Tarek Saidi KeePassX is distributed under the terms of the General Public License (GPL) version 2. - Copyright (C) 2005 - 2006 Tarek Saidi + Copyright (C) 2005 - 2006 Tarek Saidi KeePassX je šířen pod podmínkami General Public License (GPL) verze 2. - + Credits Poděkování - + http://keepassx.sourceforge.net http://keepassx.sourceforge.net - + keepassx@gmail.com keepassx@gmail.com + + + Copyright (C) 2005 - 2006 Tarek Saidi +KeePassX is distributed under the terms of the +General Public License (GPL) version 2 or later. + + AutoType @@ -60,7 +220,7 @@ Je dovolena pouze jedna na každý záznam. Syntax Error in Auto-Type sequence near character %1 Found '{' without closing '}' - Chyba syntaxe v Auto-Type sekvenci poblíž znaku %1 + Chyba syntaxe v Auto-Type sekvenci poblíž znaku %1 Nalezeno '{' bez uzavření '}' @@ -68,144 +228,150 @@ Je dovolena pouze jedna na každý záznam. Error Chyba + + + Syntax Error in Auto-Type sequence near character %1 +Found '{' without closing '}' + + CAboutDialog KeePassX %1 - KeePassX %1 + KeePassX %1 Error - Chyba + Chyba File '%1' could not be found. - Soubor '%1' nemohl být nalezen. + Soubor '%1' nemohl být nalezen. Make sure that the program is installed correctly. - Ujistěte se, že program je správně nainstalován. + Ujistěte se, že program je správně nainstalován. OK - OK + OK Could not open file '%1' - Nelze otevřít soubor '%1' + Nelze otevřít soubor '%1' The following error occured: %1 - Vyskytl se následující problém: + Vyskytl se následující problém: %1 <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>Aktuální překlad: český</b><br><br> + <b>Aktuální překlad: český</b><br><br> <b>Author:</b> %1<br> - <b>Autor:</b> %1<br> + <b>Autor:</b> %1<br> $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. - marek@straka.info (<a href="http://marek.straka.info">marek.straka.info</a>) + marek@straka.info (<a href="http://marek.straka.info">marek.straka.info</a>) Matthias Miller - Matthias Miller + Matthias Miller Eugen Gorschenin - Eugen Gorschenin + Eugen Gorschenin $TRANSLATION_AUTHOR - Marek Straka + Marek Straka Team - Vývojová skupina + Vývojová skupina Tarek Saidi - Tarek Saidi + Tarek Saidi Developer, Project Admin - Vývojář, vedoucí projektu + Vývojář, vedoucí projektu tariq@users.berlios.de - tariq@users.berlios.de + tariq@users.berlios.de Web Designer - Webový designér + Webový designér geugen@users.berlios.de - geugen@users.berlios.de + geugen@users.berlios.de Thanks To - Poděkování + Poděkování Patches for better MacOS X support - Patches pro lepší MacOS X podporu + Patches pro lepší MacOS X podporu www.outofhanwell.com - www.outofhanwell.com + www.outofhanwell.com Information on how to translate KeePassX can be found under: http://keepassx.sourceforge.net/ - Informace o tom jak přeložit KeePassX lze nalézt zde: + Informace o tom jak přeložit KeePassX lze nalézt zde: http://keepassx.sourceforge.net/ James Nicholls - James Nicholls + James Nicholls Main Application Icon - Hlavní ikonka aplikace + Hlavní ikonka aplikace http://keepassx.sf.net - http://keepassx.sf.net + http://keepassx.sf.net @@ -259,24 +425,24 @@ http://keepassx.sourceforge.net/ CEditEntryDlg - + Warning Upozornění - + Password and password repetition are not equal. Please check your input. Heslo a opakované heslo nejsou stejné Prosím zkontrolujte zadané údaje. - + OK OK - + Save Attachment... Uložit přílohu... @@ -293,7 +459,7 @@ Do you want to replace it? Chcete ho přepsat? - + Yes Ano @@ -303,7 +469,7 @@ Chcete ho přepsat? Ne - + Error Chyba @@ -318,72 +484,117 @@ Chcete ho přepsat? Nelze vytvořit nový soubor. - + Error while writing the file. Chyba při zápisu souboru. - + Delete Attachment? Smazat přílohu? - + You are about to delete the attachment of this entry. Are you sure? Chystáte se smazat přílohu tohoto záznamu. Jste si tím jistí? - + No, Cancel Ne, zrušit Edit Entry - Upravit záznam + Upravit záznam - + Could not open file. Nelze otevřít soubor. - + %1 Bit %1 bitů - + Add Attachment... Připojit přílohu... - + Test 2 - + The chosen entry has no attachment or it is empty. + + + Today + + + + + 1 Week + + + + + 2 Weeks + + + + + 3 Weeks + + + + + 1 Month + + + + + 3 Months + + + + + 6 Months + + + + + 1 Year + + + + + Calendar... + + CGenPwDialog - + Notice Poznámka - + You need to enter at least one character Je nutné vložit minimálně jeden znak - + OK OK @@ -398,7 +609,7 @@ Jste si tím jistí? Nelze otevřít '/dev/random' nebo '/dev/urandom'. - + Password Generator Generátor hesla @@ -408,12 +619,12 @@ Jste si tím jistí? %1 bitů - + Accept - + %1 Bits @@ -421,27 +632,27 @@ Jste si tím jistí? CPasswordDialog - + OK OK - + Error Chyba - + Please enter a Password. Vložte prosím heslo. - + Please choose a key file. Vyberte prosím soubor s klíčem. - + Please enter a Password or select a key file. Vložte prosím heslo nebo vyberte soubor s klíčem. @@ -451,7 +662,7 @@ Jste si tím jistí? Klíč k databázi - + Select a Key File Vyberte soubor s klíčem @@ -466,55 +677,55 @@ Jste si tím jistí? Neočekávaná chyba: Soubor neexistuje. - + The selected key file or directory does not exist. Vybraný soubor s klíčem nebo adresář neexistuje. - + The given directory does not contain any key files. Daný adresář neobsahuje žádné soubory s klíči. - + The given directory contains more then one key file. Please specify the key file directly. Daný adresář obsahuje více než jeden klíč. Zadejte prosím klíč přímo. - + The key file found in the given directory is not readable. Please check your permissions. Nalezený soubor s klíčem v zadaném adresáři nelze přečíst. Zkontrolujte prosím parametry souboru. - + Key file could not be found. Soubor s klíčem nemohl být nalezen. - + Key file is not readable. Please check your permissions. Soubor s klíčem nelze přečíst. Zkontrolujte prosím parametry souboru. - + Warning Upozornění - + Password an password repetition are not equal. Please check your input. Heslo a opakované heslo nejsou stejné. Zkontrolujte zadané údaje. - + Please enter a password or select a key file. Prosím vložte heslo nebo vyberte soubor s klíčem. @@ -548,49 +759,49 @@ Do you want to replace it? Chcete ho zaměnit? - + The selected key file or directory is not readable. Please check your permissions. Vybraný soubor s klíčem nebo adresář nelze otevřít. Prosím zkontrolujte jeho parametry. - + All Files (*) - + Key Files (*.key) - + File exists. - + A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one? - + Use - + Overwrite - + Cancel Zrušit - + Key file could not be created. %1 @@ -616,7 +827,7 @@ Prosím zkontrolujte jeho parametry. Search - Vyhledat + Vyhledat @@ -669,41 +880,49 @@ Prosím zkontrolujte jeho parametry. CSettingsDlg - + Settings Nastavení - + Select a directory... Výběr adresáře... - + Error: %1 + + CalendarDialog + + + Calendar + + + CollectEntropyDlg - + Entropy Collection - + Random Number Generator - + Collecting entropy... Please move the mouse and/or press some keys until enought entropy for a reseed of the random number generator is collected. - + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Verdana'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> @@ -711,115 +930,436 @@ p, li { white-space: pre-wrap; } + + CustomizeDetailViewDialog + + + Group + + + + + Title + Název + + + + Username + + + + + Password + Heslo + + + + Url + + + + + Comment + Komentář + + + + Attachment Name + + + + + Creation Date + + + + + Last Access Date + + + + + Last Modification Date + + + + + Expiration Date + + + + + Time till Expiration + + + + + Dialog + + + + + Rich Text Editor + + + + + Bold + + + + + B + + + + + Italic + + + + + I + + + + + Underlined + + + + + U + + + + + Left-Aligned + + + + + L + + + + + Centered + + + + + C + + + + + Right-Aligned + + + + + R + + + + + Justified + + + + + Text Color + + + + + Font Size + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + + 22 + + + + + 24 + + + + + 26 + + + + + 28 + + + + + 36 + + + + + 42 + + + + + 78 + + + + + Templates + + + + + T + + + + + HTML + + + + + Restore Default + + + + + Save + + + + + Cancel + Zrušit + + + + DetailViewTemplate + + + Group + + + + + Title + Název + + + + Username + + + + + Password + Heslo + + + + URL + URL + + + + Creation + Vytvoření + + + + Last Access + Poslední přístup + + + + Last Modification + + + + + Expiration + + + + + Comment + Komentář + + EditEntryDialog - + Edit Entry Úprava záznamu - + Username: Uživatel: - + Password Repet.: Zopakování hesla: - + Title: Název: - + URL: URL: - + Password: Heslo: - + Quality: Úroveň zajištění: - + Comment: Komentář: - + Expires: Platnost vyprší: - + Group: Skupina: &Cancel - &zrušit + &zrušit Alt+C - Alt+C + Alt+C - + %1 %1 - + Icon: Ikonka: - + Ge&n. Ge&n. - + ... ... O&K - O&K + O&K Alt+K - Alt+K + Alt+K - + Never Nikdy - + Attachment: Příloha: - + > > - + %1 Bit %1 bitů @@ -867,6 +1407,57 @@ p, li { white-space: pre-wrap; } > + + ExpiredEntriesDialog + + + Expried Entries of the Database + + + + + Expired Entries + + + + + Double click on an entry to jump to it. + + + + + Group + + + + + Title + Název + + + + Username + + + + + Expired + + + + + Export_KeePassX_Xml + + + XML Files (*.xml) + + + + + All Files (*) + + + Export_Txt @@ -874,81 +1465,104 @@ p, li { white-space: pre-wrap; } Could not open file (FileError=%1) Nelze otevřít soubor (FileError=%1) + + + All Files (*) + + + + + Text Files (*.txt) + + + + + ExporterBase + + + Import File... + + + + + Export Failed + + FileErrors - + No error occurred. - + An error occurred while reading from the file. - + An error occurred while writing to the file. - + A fatal error occurred. - + An resource error occurred. - + The file could not be opened. - + The operation was aborted. - + A timeout occurred. - + An unspecified error occurred. - + The file could not be removed. - + The file could not be renamed. - + The position in the file could not be changed. - + The file could not be resized. - + The file could not be accessed. - + The file could not be copied. @@ -956,27 +1570,27 @@ p, li { white-space: pre-wrap; } GenPwDlg - + Alt+U Alt+U - + Alt+N Alt+N - + Alt+M Alt+M - + Alt+L Alt+L - + Password Generator Generátor hesla @@ -991,52 +1605,52 @@ p, li { white-space: pre-wrap; } &zrušit - + Generate Vygenerovat - + New Password: Nové heslo: - + Quality: Kvalita: - + Options Volby - + &Upper Letters &Velká písmena - + &Lower Letters &Malá písmena - + &Numbers Čís&la - + &Special Characters &Zvláštní znaky - + Minus Minus - + U&nderline Po&dtržítko @@ -1051,17 +1665,17 @@ p, li { white-space: pre-wrap; } Alt+H - + Use &only following characters: Používat &jen následující znaky: - + Alt+O Alt+O - + Length: Délka: @@ -1071,85 +1685,310 @@ p, li { white-space: pre-wrap; } Použít "/dev/rando&m" - + Use follo&wing character groups: Použít následující &skupiny znaků: - + Alt+W Alt+W - + White &Spaces Me&zery - + Alt+S Alt+S - + Enable entropy collection - + Collect only once per session + + Import_KWalletXml + + + XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + Invalid XML data (see stdout for details). + Neplatná XML data (viz stdout pro podrobnosti). + + + + Invalid XML file. + Neplatný XML soubor. + + + + Document does not contain data. + Dokument neobsahuje žádná data. + + + + Import_KeePassX_Xml + + + KeePass XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + XML parsing error on line %1 column %2: +%3 + + + + + Parsing error: File is no valid KeePassX XML file. + + + + + Import_PwManager + + + PwManager Files (*.pwm) + + + + + All Files (*) + + + + + Import Failed + + + + + File is empty. + Soubor je prázdný. + + + + File is no valid PwManager file. + Soubor není ve formátu PwManager. + + + + Unsupported file version. + Nepodporovaná verze souboru. + + + + Unsupported hash algorithm. + Nepodporovaný hash algoritmus. + + + + Unsupported encryption algorithm. + Nepodporovaný šifrovací algoritmus. + + + + Compressed files are not supported yet. + Zkompresované soubory nejsou ještě podporovány. + + + + Wrong password. + Chybné heslo. + + + + File is damaged (hash test failed). + Soubor je poškozen (hast test selhall). + + + + Invalid XML data (see stdout for details). + Neplatná XML data (viz stdout pro podrobnosti). + + + + ImporterBase + + + Import File... + + + + + Import Failed + + + + + Kdb3Database + + + Could not open file. + + + + + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Neočekávaná velikost souboru (DB_TOTAL_SIZE < DB_HEADER_SIZE) + + + + Wrong Signature + Chybný podpis + + + + Unsupported File Version. + Nepodporovaná verze souboru. + + + + Unknown Encryption Algorithm. + Neznámý algoritmus zašifrování. + + + + Decryption failed. +The key is wrong or the file is damaged. + Rozšifrování se nepodařilo. +Buď je nesprávný klíč nebo je soubor poškozen. + + + + Hash test failed. +The key is wrong or the file is damaged. + Hash test selhal. +Klíč je chybný nebo je soubor poškozen. + + + + Unexpected error: Offset is out of range. [G1] + Neočekávaná chyba: Offset je mimo rozsah. [G1] + + + + Unexpected error: Offset is out of range. [G2] + Neočekávaná chyba: Offset je mimo rozsah. [G2] + + + + Unexpected error: Offset is out of range. [E1] + Neočekávaná chyba: Offset je mimo rozsah. [E1] + + + + Unexpected error: Offset is out of range. [E2] + Neočekávaná chyba: Offset je mimo rozsah. [E2] + + + + Unexpected error: Offset is out of range. [E3] + Neočekávaná chyba: Offset je mimo rozsah. [E3] + + + + Invalid group tree. + + + + + Key file is empty. + + + + + The database must contain at least one group. + + + + + Could not open file for writing. + Nebylo možné otevřít soubor pro zápis. + + KeepassEntryView - + Title Název - + Username Uživatelské jméno - + URL URL - + Password Heslo - + Comments Komentáře - + Expires Vyprší - + Creation Vytvoření - + Last Change Poslední změna - + Last Access Poslední přístup - + Attachment Příloha @@ -1158,19 +1997,49 @@ p, li { white-space: pre-wrap; } %1 items %1 položky + + + Are you sure you want delete this entry? + + + + + Are you sure you want delete these %1 entries? + + + + + Delete? + + + + + Group + + KeepassGroupView - + Search Results Výsledky hledání - + Groups Skupiny + + + Delete? + + + + + Are you sure you want to delete this group, all it's child groups and all their entries? + + KeepassMainWindow @@ -1180,116 +2049,116 @@ p, li { white-space: pre-wrap; } Ctrl+N - + Ctrl+O Ctrl+O - + Ctrl+S Ctrl+S - + Ctrl+G Ctrl+G - + Ctrl+C Ctrl+C - + Ctrl+B Ctrl+B - + Ctrl+U Ctrl+U - + Ctrl+Y Ctrl+Y - + Ctrl+E Ctrl+E - + Ctrl+D Ctrl+D - + Ctrl+K Ctrl+K - + Ctrl+F Ctrl+F - + Ctrl+W Ctrl+W - + Shift+Ctrl+S Shift+Ctrl+S - + Shift+Ctrl+F Shift+Ctrl+F - + Error Chyba - + The following error occured while opening the database: %1 Při otevírání databáze se objevila následující chyba: %1 - + OK OK - + Save modified file? Uložit změněný soubor? - + The current file was modified. Do you want to save the changes? Aktuální soubor byl změněn. Mají být změny uloženy? - + Yes Ano - + No Ne - + Cancel Zrušit @@ -1304,27 +2173,27 @@ změny uloženy? <B>Skupina: </B>%1 <B>Název: </B>%2 <B>Uživ. jméno: </B>%3 <B>URL: </B><a href=%4>%4</a> <B>Heslo: </B>%5 <B>Vytvořeno: </B>%6 <B>Poslední změna: </B>%7 <B>Poslední přístup: </B>%8 <B>Vyprší: </B>%9 - + Clone Entry Naklonovat záznam - + Delete Entry Smazat záznam - + Clone Entries Naklonovat záznamy - + Delete Entries Smazat záznamy - + File could not be saved. %1 Soubor nemohl být uložen. @@ -1336,27 +2205,27 @@ změny uloženy? Uložit databázi jako ... - + Ready Připraveno - + [new] [nový] - + Open Database... Otevřít databázi ... - + Loading Database... Otevírání databáze ... - + Loading Failed Otevření selhalo @@ -1393,68 +2262,108 @@ změny uloženy? Neznámá chyba v PwDatabase::openDatabase() - + Ctrl+V Ctrl+V - + Show Toolbar Panel nástrojů - + KeePassX KeePassX - + %1 - KeePassX - + Unknown error while loading database. - + KeePass Databases (*.kdb) - + All Files (*) - - <B>Group: </B>%1 <B>Title: </B>%2 <B>Username: </B>%3 <B>URL: </B><a href=%4>%4</a> <B>Password: </B>%5 <B>Creation: </B>%6 <B>Last Change: </B>%7 <B>LastAccess: </B>%8 <B>Expires: </B>%9 - - - - + Save Database... - + KeePassX - [unsaved] - - Text Files (*.txt) + + New Database - - Export Database + + expired - - Export Failed + + 1 Month + + + + + %1 Months + + + + + , + + + + + 1 Year + + + + + %1 Years + + + + + 1 Day + + + + + %1 Days + + + + + less than 1 day + + + + + Set Master Key + + + + + * - KeePassX @@ -1466,82 +2375,82 @@ změny uloženy? KeePassX - + Columns Sloupečky PwManager File (*.pwm) - PwManager souboru (*.pwm) + PwManager souboru (*.pwm) KWallet XML-File (*.xml) - KWallet XML-souboru (*.xml) + KWallet XML-souboru (*.xml) - + Add New Group... Přidat novou skupinu... - + Edit Group... Upravit skupinu... - + Delete Group Smazat skupinu - + Copy Password to Clipboard Zkopírovat heslo do schránky - + Copy Username to Clipboard Zkopírovat uživatelské jméno do schránky - + Open URL Otevřít URL - + Save Attachment As... Uložit přílohu jako... - + Add New Entry... Přidat novou položku... - + View/Edit Entry... Zobrazit/upravit položku... - + Delete Entry Smazat položku - + Clone Entry Naklonovat položku - + Search In Database... Vyhledat v databázi... - + Search in this group... Vyhledat v této skupině... @@ -1551,87 +2460,87 @@ změny uloženy? Panel nástrojů - + Show Entry Details Detaily položky - + Hide Usernames Skrýt uživatelská jména - + Hide Passwords Skrýt hesla - + Title Název - + Username Uživatel - + URL URL - + Password Heslo - + Comment Komentář - + Expires Platnost - + Creation Vytvoření - + Last Change Poslední změna - + Last Access Poslední přístup - + Attachment Příloha - + Show Statusbar Stavový řádek Plain Text (*.txt) - Jednoduchého textu (*.txt) + Jednoduchého textu (*.txt) - + Hide Skrýt - + Perform AutoType Provádět autodoplňování @@ -1641,57 +2550,57 @@ změny uloženy? Psát zde - + Toolbar Icon Size Velikost ikonek na panelu nástrojů - + 16x16 16x16 - + 22x22 22x22 - + 28x28 28x28 - + &View &Zobrazit - + &File &Soubor - + &Import from... &Importovat z ... - + &Export to... &Exportovat do ... - + &Edit &Upravit - + E&xtras &Doplňky - + &Help &Nápověda @@ -1701,75 +2610,100 @@ změny uloženy? Nová &databáze... - + &Open Database... &Otevřít databázi... - + &Close Database Za&vřít databázi - + &Save Database Uloži&t databázi - + Save Database &As... Uložit databázi &jako... - + &Database Settings... Nastavení data&báze... - + Change &Master Key... Změnit &master klíč... - + E&xit Uk&ončit - + &Settings... N&astavení... - + &About... O a&plikaci... - + &KeePassX Handbook... &KeePassX příručka... - + Standard KeePass Single User Database (*.kdb) - + Advanced KeePassX Database (*.kxdb) - + New Database... - + Password Generator... + + + Group (search results only) + + + + + Show Expired Entries... + + + + + Show Expired Entries + + + + + Recycle Bin... + + + + + Lock Workspace + + PasswordDlg @@ -1936,22 +2870,22 @@ Buď je nesprávný klíč nebo je soubor poškozen. Warning - Upozornění + Upozornění Could not save configuration file. Make sure you have write access to '~/.keepass'. - Nebylo možné uložit konfigurační soubor, + Nebylo možné uložit konfigurační soubor, Ujistěte se, že je možný přístup do '~/.keepass'. - + OK OK - + File '%1' could not be found. Soubor '%1' nemohl být nalezen. @@ -2026,20 +2960,20 @@ Ujistěte se, že je možný přístup do '~/.keepass'. Dokument neobsahuje žádná data. - + Error Chyba Warning: - Upozornění: + Upozornění: Invalid RGB color value. - Neplatná RGB hodnota barvy. + Neplatná RGB hodnota barvy. @@ -2048,130 +2982,138 @@ Ujistěte se, že je možný přístup do '~/.keepass'. Nikdy - + Initialization failed. - + Could not locate library file. + + SearchDialog + + + Search + + + Search_Dlg - + Alt+T Alt+T - + Alt+U Alt+U - + A&nhang Přílo&ha - + Alt+N Alt+N - + Alt+W Alt+W - + Alt+C Alt+C - + Search... Hledat... - + Search For: Vyhledat: - + Regular E&xpression Regulární &výraz - + Alt+X Alt+X - + &Case Sensitive S &ohledem na velikost písmene - + Include: Vložit: - + &Titles &Názvy - + &Usernames Uživatelská &jména - + C&omments Ko&mentáře - + Alt+O Alt+O - + U&RLs U&RLs - + Alt+R Alt+R - + Pass&words He&sla - + Search Hledat - + Clo&se U&zavřít - + Alt+S Alt+S - + Include Subgroups (recursive) Vložit podskupiny (rekurzívně) @@ -2202,7 +3144,7 @@ Ujistěte se, že je možný přístup do '~/.keepass'. SettingsDialog - + Alt+Ö Alt+Ö @@ -2232,12 +3174,12 @@ Ujistěte se, že je možný přístup do '~/.keepass'. &Zrušit - + Clear clipboard after: Smazat schránku po: - + Seconds Sekundách @@ -2247,47 +3189,47 @@ Ujistěte se, že je možný přístup do '~/.keepass'. Zobrazovat &hesla vždy jako obyčejný text - + Alt+O Alt+O - + Appea&rance Zo&brazení - + Banner Color Barva banneru - + Text Color: Barva textu: - + Change... Změnit... - + Color 2: Barva 2: - + C&hange... Z&měnit... - + Alt+H Alt+H - + Color 1: Barva 1: @@ -2302,7 +3244,7 @@ Ujistěte se, že je možný přístup do '~/.keepass'. &Ostatní - + Browser Command: Příkaz pro prohlížeč: @@ -2312,148 +3254,223 @@ Ujistěte se, že je možný přístup do '~/.keepass'. &Bezpečnost - + Alternating Row Colors Střídavě barevné podklady řádků - + Browse... Projít... - + Remember last key type and location Zapamatovat naposledy napsaný klíč a umístění Mounting Root: - Mountovat jako Root: + Mountovat jako Root: - + Remember last opened file Zapamatovat naposledy otevřený soubor - + The integration plugins provide features like usage of the native file dialogs and message boxes of the particular desktop environments. - + General - + Show system tray icon - + Minimize to tray when clicking the main window's close button - + Save recent directories of file dialogs - - Clear - - - - - Enable bookmark menu - - - - + Group tree at start-up: - + Restore last state - + Expand all items - + Do not expand any item - + Security - + Show passwords in plain text in: - + Edit Entry Dialog - + Key Dialogs - + Desktop Integration - + Plug-Ins - + None - + Gnome Desktop Integration (Gtk 2.x) - + KDE 4 Desktop Integration - + You need to restart the program before the changes take effect. - + Configure... - + Advanced - - Verify database content and structure after saving + + Clear History Now + + + + + Always ask before deleting entries or groups + + + + + Unified Title and Toolbar + + + + + Customize Entry Detail View... + + + + + Features + + + + + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. + + + + + Bookmarks + + + + + Auto-Type Fine Tuning + + + + + Time between the activation of an auto-type action by the user and the first simulated key stroke. + + + + + ms + + + + + Pre-Gap: + + + + + Key Stroke Delay: + + + + + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. + + + + + The directory where storage devices like CDs and memory sticks are normally mounted. + + + + + Media Root: + + + + + System Default + + + + + Enable this if you want to use your bookmarks and the last opened file independet from their absolute paths. This is especially useful when using KeePassX portably and therefore with changing mount points in the file system. + + + + + Save relative paths (bookmarks and last file) @@ -2462,124 +3479,147 @@ Ujistěte se, že je možný přístup do '~/.keepass'. O&K - O&K + O&K Alt+K - Alt+K + Alt+K Alt+C - Alt+C + Alt+C - + ... ... - + Enter your Password Vložit heslo - + Password: Heslo: &Cancel - &Zrušit + &Zrušit StandardDatabase - - - Could not open file. - - Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) - Neočekávaná velikost souboru (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Neočekávaná velikost souboru (DB_TOTAL_SIZE < DB_HEADER_SIZE) Wrong Signature - Chybný podpis + Chybný podpis Unsupported File Version. - Nepodporovaná verze souboru. + Nepodporovaná verze souboru. Unknown Encryption Algorithm. - Neznámý algoritmus zašifrování. + Neznámý algoritmus zašifrování. Decryption failed. The key is wrong or the file is damaged. - Rozšifrování se nepodařilo. + Rozšifrování se nepodařilo. Buď je nesprávný klíč nebo je soubor poškozen. Hash test failed. The key is wrong or the file is damaged. - Hash test selhal. + Hash test selhal. Klíč je chybný nebo je soubor poškozen. Unexpected error: Offset is out of range. [G1] - Neočekávaná chyba: Offset je mimo rozsah. [G1] + Neočekávaná chyba: Offset je mimo rozsah. [G1] Unexpected error: Offset is out of range. [G2] - Neočekávaná chyba: Offset je mimo rozsah. [G2] + Neočekávaná chyba: Offset je mimo rozsah. [G2] Unexpected error: Offset is out of range. [E1] - Neočekávaná chyba: Offset je mimo rozsah. [E1] + Neočekávaná chyba: Offset je mimo rozsah. [E1] Unexpected error: Offset is out of range. [E2] - Neočekávaná chyba: Offset je mimo rozsah. [E2] + Neočekávaná chyba: Offset je mimo rozsah. [E2] Unexpected error: Offset is out of range. [E3] - Neočekávaná chyba: Offset je mimo rozsah. [E3] - - - - Invalid group tree. - - - - - Key file is empty. - - - - - The database must contain at least one group. - + Neočekávaná chyba: Offset je mimo rozsah. [E3] Could not open file for writing. - Nebylo možné otevřít soubor pro zápis. + Nebylo možné otevřít soubor pro zápis. + + + + TrashCanDialog + + + Recycle Bin + + + + + Double click on an entry to restore it. + + + + + Group + + + + + Title + Název + + + + Username + + + + + Expired + + + + + Empty Recycle Bin + + + + + Close + diff --git a/src/translations/keepass-de_DE.ts b/src/translations/keepass-de_DE.ts index f46c25e..464a3b3 100644 --- a/src/translations/keepass-de_DE.ts +++ b/src/translations/keepass-de_DE.ts @@ -8,6 +8,159 @@ Datei konnte nicht geöffnet werden. (FileError=%1) + + AboutDialog + + + KeePassX %1 + KeePassX %1 + + + + <b>Current Translation: None</b><br><br> + Please replace 'None' with the language of your translation + <b>Aktuelle Übersetzung: Deutsch</b><br><br> + + + + <b>Author:</b> %1<br> + <b>Autor:</b> %1<br> + + + + $TRANSLATION_AUTHOR + Tarek Saidi + + + + $TRANSLATION_AUTHOR_EMAIL + Here you can enter your email or homepage if you want. + tarek.saidi@arcor.de + + + + Information on how to translate KeePassX can be found under: +http://keepassx.sourceforge.net/ + + + + + Team + Team + + + + Tarek Saidi + + + + + Developer, Project Admin + Entwickler und Projektadministrator + + + + tariq@users.berlios.de + + + + + Eugen Gorschenin + + + + + Web Designer + + + + + geugen@users.berlios.de + + + + + Thanks To + Dank An + + + + Matthias Miller + Matthias Miller + + + + Patches for better MacOS X support + Patches für bessere MacOS X Unterstützung + + + + www.outofhanwell.com + + + + + James Nicholls + + + + + Main Application Icon + Anwendungssymbol + + + + Constantin Makshin + + + + + Various fixes and improvements + + + + + dinosaur-rus@users.sourceforge.net + + + + + Error + Fehler + + + + File '%1' could not be found. + Datei '%1' konnte nicht geöffnet werden. + + + + Make sure that the program is installed correctly. + Stellen Sie sicher, dass das Programm korrekt installiert wurde. + + + + OK + OK + + + + Could not open file '%1' + Datei '%1' konnte nicht geöffnet werden. + + + + The following error occured: +%1 + Folgender Fehler ist aufgetreten: +%1 + + + + http://keepassx.sf.net + + + AboutDlg @@ -21,12 +174,12 @@ Dank An - + License Lizenz - + Translation Übersetzung @@ -40,7 +193,7 @@ Copyright (C) 2005 - 2006 Tarek Saidi KeePassX is distributed under the terms of the General Public License (GPL) version 2. - Copyright (C) 2005 - 2006 Tarek Saidi + Copyright (C) 2005 - 2006 Tarek Saidi KeePassX steht unter der General Public License (GPL) Version 2. @@ -55,20 +208,27 @@ General Public License (GPL) Version 2. http://keepass.berlios.de/ - + Credits - + http://keepassx.sourceforge.net - + keepassx@gmail.com + + + Copyright (C) 2005 - 2006 Tarek Saidi +KeePassX is distributed under the terms of the +General Public License (GPL) version 2 or later. + + AutoType @@ -83,7 +243,7 @@ Erlaubt ist nur eine pro Eintrag. Syntax Error in Auto-Type sequence near character %1 Found '{' without closing '}' - Syntaxfehler in Auto-Type-Zeichenkette bei Zeichen %1 + Syntaxfehler in Auto-Type-Zeichenkette bei Zeichen %1 Öffnende Klammer '{' ohne Gegenstück gefunden. @@ -91,44 +251,50 @@ Erlaubt ist nur eine pro Eintrag. Error Fehler + + + Syntax Error in Auto-Type sequence near character %1 +Found '{' without closing '}' + + CAboutDialog KeePassX %1 - KeePassX %1 + KeePassX %1 Error - Fehler + Fehler File '%1' could not be found. - Datei '%1' konnte nicht geöffnet werden. + Datei '%1' konnte nicht geöffnet werden. Make sure that the program is installed correctly. - Stellen Sie sicher, dass das Programm korrekt installiert wurde. + Stellen Sie sicher, dass das Programm korrekt installiert wurde. OK - OK + OK Could not open file '%1' - Datei '%1' konnte nicht geöffnet werden. + Datei '%1' konnte nicht geöffnet werden. The following error occured: %1 - Folgender Fehler ist aufgetreten: + Folgender Fehler ist aufgetreten: %1 @@ -140,12 +306,12 @@ Erlaubt ist nur eine pro Eintrag. <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>Aktuelle Übersetzung: Deutsch</b><br><br> + <b>Aktuelle Übersetzung: Deutsch</b><br><br> <b>Author:</b> %1<br> - <b>Autor:</b> %1<br> + <b>Autor:</b> %1<br> @@ -156,7 +322,7 @@ Erlaubt ist nur eine pro Eintrag. $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. - tarek.saidi@arcor.de + tarek.saidi@arcor.de @@ -168,22 +334,17 @@ http://keepass.berlios.de/translation-howto.html Matthias Miller - Matthias Miller + Matthias Miller http://www.outofhanwell.com/<br>Mac OS X Support http://www.outofhanwell.com/<br>Mac OS X Unterstützung - - - Eugen Gorschenin - - $TRANSLATION_AUTHOR - Tarek Saidi + Tarek Saidi @@ -195,68 +356,27 @@ http://keepass.berlios.de Team - Team - - - - Tarek Saidi - + Team Developer, Project Admin - Entwickler und Projektadministrator - - - - tariq@users.berlios.de - - - - - Web Designer - - - - - geugen@users.berlios.de - + Entwickler und Projektadministrator Thanks To - Dank An + Dank An Patches for better MacOS X support - Patches für bessere MacOS X Unterstützung - - - - www.outofhanwell.com - - - - - Information on how to translate KeePassX can be found under: -http://keepassx.sourceforge.net/ - - - - - James Nicholls - + Patches für bessere MacOS X Unterstützung Main Application Icon - Anwendungssymbol - - - - http://keepassx.sf.net - + Anwendungssymbol @@ -310,24 +430,24 @@ http://keepassx.sourceforge.net/ CEditEntryDlg - + Warning Warnung - + Password and password repetition are not equal. Please check your input. Passwort und Passwortwiederholung stimmen nicht überein. Bitte prüfen Sie Ihre Eingabe. - + OK OK - + Save Attachment... Anhang Speichern... @@ -344,7 +464,7 @@ Do you want to replace it? Möchten Sie diese ersetzen. - + Yes Ja @@ -354,7 +474,7 @@ Möchten Sie diese ersetzen. Nein - + Error Fehler @@ -369,72 +489,117 @@ Möchten Sie diese ersetzen. Neue Datei konnte nicht angelegt werden. - + Error while writing the file. Beim Schreiben der Datei ist ein Fehler aufgetreten. - + Delete Attachment? Anhang löschen? - + You are about to delete the attachment of this entry. Are you sure? Sie sind dabei den Dateianhang dieses Eintrages zu löschen. Sind Sie sicher? - + No, Cancel Nein, Abbrechen Edit Entry - Eintrag bearbeiten + Eintrag bearbeiten - + Could not open file. Datei konnte nicht geöffnet werden. - + %1 Bit - + Add Attachment... Anhang hinzufügen... - + Test 2 - + The chosen entry has no attachment or it is empty. + + + Today + + + + + 1 Week + + + + + 2 Weeks + + + + + 3 Weeks + + + + + 1 Month + + + + + 3 Months + + + + + 6 Months + + + + + 1 Year + + + + + Calendar... + + CGenPwDialog - + Notice Hinweis - + You need to enter at least one character Sie müssen mindestens ein Zeichen angeben. - + OK OK @@ -449,17 +614,17 @@ Sind Sie sicher? '/dev/random' oder '/dev/urandom' konnte nicht geöffnet werden. - + Password Generator Passwortgenerator - + Accept - + %1 Bits @@ -467,27 +632,27 @@ Sind Sie sicher? CPasswordDialog - + OK OK - + Error Fehler - + Please enter a Password. Bitte geben Sie ein Passwort ein. - + Please choose a key file. Bitte wählen Sie eine Schlüsseldatei. - + Please enter a Password or select a key file. Bitte geben Sie ein Passwort ein oder wählen Sie eine Schlüsseldatei. @@ -498,7 +663,7 @@ Sie eine Schlüsseldatei. Datenbankschlüssel - + Select a Key File Schlüsseldatei wählen @@ -513,55 +678,55 @@ Sie eine Schlüsseldatei. Unerwarteter Fehler: Datei existiert nicht. - + The selected key file or directory does not exist. Die gewählte Schlüsseldatei bzw. das gewählte Verzeichnis existiert nicht. - + The given directory does not contain any key files. Das angegebene Verzeichnis enthält keine Schlüsseldatei. - + The given directory contains more then one key file. Please specify the key file directly. Das angegebene Verzeichnis enthält mehrere Schlüsseldateien. Bitte geben Sie die gewünschte Schlüsseldatei direkt an. - + The key file found in the given directory is not readable. Please check your permissions. Die im angegebenen Verzeichnis gefundene Schlüsseldatei ist nicht lesbar. Bitter prüfen Sie Ihre Zugriffsrechte. - + Key file could not be found. Schlüsseldatei konnte nicht gefunden werden. - + Key file is not readable. Please check your permissions. Die angegebene Schlüsseldatei ist nicht lesbar. Bitter prüfen Sie Ihre Zugriffsrechte. - + Warning Warnung - + Password an password repetition are not equal. Please check your input. Passwort und Passwortwiederholung stimmen nicht überein. Bitte prüfen Sie Ihre Eingabe. - + Please enter a password or select a key file. Bitte geben Sie ein Passwort ein oder wählen Sie eine Schlüsseldatei. @@ -596,49 +761,49 @@ Do you want to replace it? Möchten Sie diese ersetzen. - + The selected key file or directory is not readable. Please check your permissions. Das angegebene Verzeichnis oder die angegebene Schlüsseldatei ist nicht lesbar. Bitter prüfen Sie Ihre Zugriffsrechte. - + All Files (*) - + Key Files (*.key) - + File exists. - + A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one? - + Use - + Overwrite - + Cancel Abbrechen - + Key file could not be created. %1 @@ -664,7 +829,7 @@ Bitter prüfen Sie Ihre Zugriffsrechte. Search - Suchen + Suchen @@ -716,41 +881,49 @@ Bitter prüfen Sie Ihre Zugriffsrechte. CSettingsDlg - + Settings Einstellungen - + Select a directory... Verzeichnis wählen... - + Error: %1 + + CalendarDialog + + + Calendar + + + CollectEntropyDlg - + Entropy Collection - + Random Number Generator - + Collecting entropy... Please move the mouse and/or press some keys until enought entropy for a reseed of the random number generator is collected. - + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Verdana'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> @@ -758,75 +931,396 @@ p, li { white-space: pre-wrap; } + + CustomizeDetailViewDialog + + + Group + + + + + Title + Titel + + + + Username + Benutzername + + + + Password + Passwort + + + + Url + + + + + Comment + Kommentar + + + + Attachment Name + + + + + Creation Date + + + + + Last Access Date + + + + + Last Modification Date + + + + + Expiration Date + + + + + Time till Expiration + + + + + Dialog + + + + + Rich Text Editor + + + + + Bold + + + + + B + + + + + Italic + + + + + I + + + + + Underlined + + + + + U + + + + + Left-Aligned + + + + + L + + + + + Centered + + + + + C + + + + + Right-Aligned + + + + + R + + + + + Justified + + + + + Text Color + + + + + Font Size + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + + 22 + + + + + 24 + + + + + 26 + + + + + 28 + + + + + 36 + + + + + 42 + + + + + 78 + + + + + Templates + + + + + T + + + + + HTML + + + + + Restore Default + + + + + Save + + + + + Cancel + Abbrechen + + + + DetailViewTemplate + + + Group + + + + + Title + Titel + + + + Username + Benutzername + + + + Password + Passwort + + + + URL + URL + + + + Creation + Erstellung + + + + Last Access + Letzter Zugriff + + + + Last Modification + + + + + Expiration + + + + + Comment + Kommentar + + EditEntryDialog - + Edit Entry Eintrag bearbeiten - + Username: Benutzername: - + Password Repet.: Passwort Wdhlg.: - + Title: Titel: - + URL: URL: - + Password: Passwort: - + Quality: Qualität: - + Comment: Kommentar: - + Expires: Läuft ab: - + Group: Gruppe: &Cancel - &Abbrechen + &Abbrechen Alt+C - Alt+A + Alt+A - + %1 %1 - + Icon: Symbol: @@ -836,42 +1330,42 @@ p, li { white-space: pre-wrap; } % Bit - + Ge&n. Ge&n. - + ... ... O&K - O&K + O&K Alt+K - Alt+K + Alt+K - + Never Nie - + Attachment: Anhang: - + > - + %1 Bit @@ -919,6 +1413,57 @@ p, li { white-space: pre-wrap; } + + ExpiredEntriesDialog + + + Expried Entries of the Database + + + + + Expired Entries + + + + + Double click on an entry to jump to it. + + + + + Group + + + + + Title + Titel + + + + Username + Benutzername + + + + Expired + + + + + Export_KeePassX_Xml + + + XML Files (*.xml) + + + + + All Files (*) + + + Export_Txt @@ -926,81 +1471,104 @@ p, li { white-space: pre-wrap; } Could not open file (FileError=%1) Datei konnte nicht geöffnet werden. (FileError=%1) + + + All Files (*) + + + + + Text Files (*.txt) + + + + + ExporterBase + + + Import File... + + + + + Export Failed + + FileErrors - + No error occurred. - + An error occurred while reading from the file. - + An error occurred while writing to the file. - + A fatal error occurred. - + An resource error occurred. - + The file could not be opened. - + The operation was aborted. - + A timeout occurred. - + An unspecified error occurred. - + The file could not be removed. - + The file could not be renamed. - + The position in the file could not be changed. - + The file could not be resized. - + The file could not be accessed. - + The file could not be copied. @@ -1008,27 +1576,27 @@ p, li { white-space: pre-wrap; } GenPwDlg - + Alt+U - + Alt+N - + Alt+M - + Alt+L - + Password Generator Passwortgenerator @@ -1043,52 +1611,52 @@ p, li { white-space: pre-wrap; } Abbre&chen - + Generate Generieren - + New Password: Neues Passwort: - + Quality: Qualität: - + Options Optionen - + &Upper Letters Großbuchstaben: - + &Lower Letters Kleinbuchstaben: - + &Numbers Zahlen - + &Special Characters Sonderzeichen - + Minus Minus - + U&nderline Unterstrich @@ -1098,17 +1666,17 @@ p, li { white-space: pre-wrap; } höhere ANSI-Zeichen - + Use &only following characters: Nur folgende Zeichen benutzen: - + Alt+O - + Length: Länge: @@ -1118,85 +1686,310 @@ p, li { white-space: pre-wrap; } '/dev/random' benutzen - + Use follo&wing character groups: Folgende Zeichengruppen nutzen: - + Alt+W - + White &Spaces Leerzeichen - + Alt+S - + Enable entropy collection - + Collect only once per session + + Import_KWalletXml + + + XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + Invalid XML data (see stdout for details). + Ungültige XML-Daten (siehe stdout für Fehlerbeschreibung). + + + + Invalid XML file. + Ungültige XML-Datei. + + + + Document does not contain data. + Dokument enthält keine Daten. + + + + Import_KeePassX_Xml + + + KeePass XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + XML parsing error on line %1 column %2: +%3 + + + + + Parsing error: File is no valid KeePassX XML file. + + + + + Import_PwManager + + + PwManager Files (*.pwm) + + + + + All Files (*) + + + + + Import Failed + + + + + File is empty. + Datei ist leer. + + + + File is no valid PwManager file. + Datei ist keine gültige PwManager-Datei. + + + + Unsupported file version. + Nicht unterstützte Dateiversion. + + + + Unsupported hash algorithm. + Nicht unterstützter Hash-Algorithmus. + + + + Unsupported encryption algorithm. + Unbekannter bzw. nicht unterstüzter Verschlüsselungsalgorithmus. + + + + Compressed files are not supported yet. + Komprimierte Dateien werden noch nicht unterstützt. + + + + Wrong password. + Falsches Passwort. + + + + File is damaged (hash test failed). + Datei ist beschädigt (Hash-Test fehlgeschlagen). + + + + Invalid XML data (see stdout for details). + Ungültige XML-Daten (siehe stdout für Fehlerbeschreibung). + + + + ImporterBase + + + Import File... + + + + + Import Failed + + + + + Kdb3Database + + + Could not open file. + Datei konnte nicht geöffnet werden. + + + + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Unerwartete Dateigrößen (DB_TOTAL_SIZE < DB_HEADER_SIZE) + + + + Wrong Signature + Falsche Signatur + + + + Unsupported File Version. + Nicht unterstützte Dateiversion. + + + + Unknown Encryption Algorithm. + Unbekannter bzw. nicht unterstüzter Verschlüsselungsalgorithmus. + + + + Decryption failed. +The key is wrong or the file is damaged. + Entschlüsselung fehlgeschlagen. +Der Schlüssel ist falsch oder die Datei ist beschädigt. + + + + Hash test failed. +The key is wrong or the file is damaged. + Hash-Test fehlgeschlagen. +Der Schlüssel ist falsch oder die Datei ist beschädigt. + + + + Unexpected error: Offset is out of range. [G1] + + + + + Unexpected error: Offset is out of range. [G2] + + + + + Unexpected error: Offset is out of range. [E1] + + + + + Unexpected error: Offset is out of range. [E2] + + + + + Unexpected error: Offset is out of range. [E3] + + + + + Invalid group tree. + + + + + Key file is empty. + + + + + The database must contain at least one group. + + + + + Could not open file for writing. + Datei konnte nicht zum Schreiben geöffnent werden. + + KeepassEntryView - + Title Titel - + Username Benutzername - + URL URL - + Password Passwort - + Comments Kommentar - + Expires Läuft ab - + Creation Erstellung - + Last Change Letzte Änderung - + Last Access Letzter Zugriff - + Attachment Anhang @@ -1205,133 +1998,163 @@ p, li { white-space: pre-wrap; } %1 items %1 Elemente + + + Are you sure you want delete this entry? + + + + + Are you sure you want delete these %1 entries? + + + + + Delete? + + + + + Group + + KeepassGroupView - + Search Results Suchergebnisse - + Groups Gruppen + + + Delete? + + + + + Are you sure you want to delete this group, all it's child groups and all their entries? + + KeepassMainWindow - + Ctrl+O - + Ctrl+S - + Ctrl+G - + Ctrl+C - + Ctrl+B - + Ctrl+U - + Ctrl+Y - + Ctrl+E - + Ctrl+D - + Ctrl+K - + Ctrl+F - + Ctrl+W - + Shift+Ctrl+S - + Shift+Ctrl+F - + Error Fehler - + The following error occured while opening the database: %1 Beim Öffnen der Datenbank ist folgender Fehler aufgetreten: %1 - + OK OK - + Save modified file? Geändete Datei speichern? - + The current file was modified. Do you want to save the changes? Die aktuelle Datei wurde verändert. Möchten Sie die Änderungen speichern? - + Yes Ja - + No Nein - + Cancel Abbrechen @@ -1341,27 +2164,27 @@ die Änderungen speichern? <B>Gruppe: </B>%1 <B>Titel: </B>%2 <B>Benutzername: </B>%3 <B>URL: </B><a href=%4>%4</a> <B>Passwort: </B>%5 <B>Erstellung: </B>%6 <B>Letzte Änderung: </B>%7 <B>Letzter Zugriff: </B>%8 <B>Läuft ab: </B>%9 - + Clone Entry Eintrag duplizieren - + Delete Entry Eintrag löschen - + Clone Entries Einträge duplizieren - + Delete Entries Einträge löschen - + File could not be saved. %1 Datei konnte nicht gespeichert werden. @@ -1373,27 +2196,27 @@ die Änderungen speichern? Datenbank speichern unter... - + Ready Bereit - + [new] [neu] - + Open Database... Datenbank öffnen... - + Loading Database... Lade Datenbank... - + Loading Failed Laden fehlgeschlagen @@ -1430,68 +2253,108 @@ die Änderungen speichern? Unbekannter Fehler in PwDatabase::openDatabase() - + Ctrl+V - + Show Toolbar Werkzeugleiste anzeigen - + KeePassX KeePassX - + %1 - KeePassX - + Unknown error while loading database. - + KeePass Databases (*.kdb) - + All Files (*) - - <B>Group: </B>%1 <B>Title: </B>%2 <B>Username: </B>%3 <B>URL: </B><a href=%4>%4</a> <B>Password: </B>%5 <B>Creation: </B>%6 <B>Last Change: </B>%7 <B>LastAccess: </B>%8 <B>Expires: </B>%9 - - - - + Save Database... - + KeePassX - [unsaved] - - Text Files (*.txt) + + New Database - - Export Database + + expired - - Export Failed + + 1 Month + + + + + %1 Months + + + + + , + + + + + 1 Year + + + + + %1 Years + + + + + 1 Day + + + + + %1 Days + + + + + less than 1 day + + + + + Set Master Key + + + + + * - KeePassX @@ -1518,7 +2381,7 @@ die Änderungen speichern? Ansicht - + Columns Spalten @@ -1533,7 +2396,7 @@ die Änderungen speichern? Hilfe - + New Database... Neue Datenbank... @@ -1575,75 +2438,75 @@ die Änderungen speichern? PwManager File (*.pwm) - PwManager-Datei (*.pwm) + PwManager-Datei (*.pwm) KWallet XML-File (*.xml) - KWallet XML-Datei (*.xml) + KWallet XML-Datei (*.xml) - + Add New Group... Neu Gruppe hinzufügen... - + Edit Group... Gruppe bearbeiten... - + Delete Group Gruppe löschen - + Copy Password to Clipboard Passwort in Zwischenablage kopieren - + Copy Username to Clipboard Benutzername in Zwischenablage kopieren - + Open URL URL öffnen - + Save Attachment As... Anhang speichern unter... - + Add New Entry... Neuen Eintrag hinzufügen... - + View/Edit Entry... Eintrag anzeigen/bearbeiten... - + Delete Entry Eintrag löschen - + Clone Entry Eintrag duplizieren - + Search In Database... In Datenbank suchen... - + Search in this group... In dieser Gruppe suchen... @@ -1653,67 +2516,67 @@ die Änderungen speichern? Werkzeugleiste anzeigen - + Show Entry Details Eintragsdetails anzeigen - + Hide Usernames Benutzernamen verbergen - + Hide Passwords Passwörter verbergen - + Title Titel - + Username Benutzername - + URL URL - + Password Passwort - + Comment Kommentar - + Expires Läuft ab - + Creation Erstellung - + Last Change Letzte Änderung - + Last Access Letzter Zugriff - + Attachment Anhang @@ -1733,7 +2596,7 @@ die Änderungen speichern? Bearbeiten - + Show Statusbar Statusleiste anzeigen @@ -1750,15 +2613,15 @@ die Änderungen speichern? Plain Text (*.txt) - Klartext (*.txt) + Klartext (*.txt) - + Hide Verbergen - + Perform AutoType AutoType ausführen @@ -1768,57 +2631,57 @@ die Änderungen speichern? Type Here - + Toolbar Icon Size Symbolleistengröße - + 16x16 - + 22x22 - + 28x28 - + &View Ansicht - + &File &Datei - + &Import from... &Importieren aus... - + &Export to... &Exportieren nach... - + &Edit &Bearbeiten - + E&xtras E&xtras - + &Help &Hilfe @@ -1828,70 +2691,95 @@ die Änderungen speichern? &Neue Datenbank... - + &Open Database... Datenbank &öffnen... - + &Close Database Datenbank s&chließen - + &Save Database Datenbank &speichern - + Save Database &As... D&atenbank speichern unter... - + &Database Settings... &Datenbankeinstellungen... - + Change &Master Key... Hauptschlüssel &ändern... - + E&xit Beend&en - + &Settings... Ein&stellungen... - + &About... &Über... - + &KeePassX Handbook... &KeePassX Handbuch... - + Standard KeePass Single User Database (*.kdb) - + Advanced KeePassX Database (*.kxdb) - + Password Generator... + + + Group (search results only) + + + + + Show Expired Entries... + + + + + Show Expired Entries + + + + + Recycle Bin... + + + + + Lock Workspace + + PasswordDlg @@ -2033,22 +2921,22 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt. Warning - Warnung + Warnung Could not save configuration file. Make sure you have write access to '~/.keepass'. - Konfigurationsdatei konnte nicht gespeichert werden. + Konfigurationsdatei konnte nicht gespeichert werden. Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben. - + OK OK - + File '%1' could not be found. Datei '%1' konnte nicht geöffnet werden. @@ -2123,20 +3011,20 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Dokument enthält keine Daten. - + Error Fehler Warning: - Warnung: + Warnung: Invalid RGB color value. - Ungültiger RGB-Farbwert. + Ungültiger RGB-Farbwert. @@ -2144,130 +3032,138 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Nie - + Initialization failed. - + Could not locate library file. + + SearchDialog + + + Search + Suchen + + Search_Dlg - + Alt+T - + Alt+U - + A&nhang - + Alt+N - + Alt+W - + Alt+C - + Search... Suche... - + Search For: Suche nach: - + Regular E&xpression regulärer Ausdruck - + Alt+X - + &Case Sensitive Groß- und Kleinschreibung beachten - + Include: Einbeziehen: - + &Titles Titel - + &Usernames Benutzernamen - + C&omments Kommentare - + Alt+O - + U&RLs URLs - + Alt+R - + Pass&words Passwörter - + Search Suchen - + Clo&se Schließen - + Alt+S - + Include Subgroups (recursive) Untergruppen einbeziehen (rekursiv) @@ -2298,7 +3194,7 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben. SettingsDialog - + Alt+Ö @@ -2318,12 +3214,12 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Abbrechen - + Clear clipboard after: Zwischenablage löschen nach: - + Seconds Sekunden @@ -2333,47 +3229,47 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Passwort standardmäßig im Klartext anzeigen - + Alt+O - + Appea&rance Erscheinungsbild - + Banner Color Bannerfarbe - + Text Color: Textfarbe - + Change... Ändern... - + Color 2: Farbe 2: - + C&hange... Ändern... - + Alt+H - + Color 1: Farbe 1: @@ -2393,7 +3289,7 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Zuletzt geöffnete Datei beim Starten öffnen - + Browser Command: Browser Befehl: @@ -2403,148 +3299,223 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Sicherheit - + Alternating Row Colors Abwechselnde Zeilenfarben - + Browse... Durchsuchen... - + Remember last key type and location Art und Ort des Schlüssels der letzten Datenbank merken Mounting Root: - Datenträgerwurzelverzeichnis: + Datenträgerwurzelverzeichnis: - + Remember last opened file Zuletzt geöffnete Datei merken - + The integration plugins provide features like usage of the native file dialogs and message boxes of the particular desktop environments. - + General - + Show system tray icon - + Minimize to tray when clicking the main window's close button - + Save recent directories of file dialogs - - Clear - - - - - Enable bookmark menu - - - - + Group tree at start-up: - + Restore last state - + Expand all items - + Do not expand any item - + Security - + Show passwords in plain text in: - + Edit Entry Dialog - + Key Dialogs - + Desktop Integration - + Plug-Ins - + None - + Gnome Desktop Integration (Gtk 2.x) - + KDE 4 Desktop Integration - + You need to restart the program before the changes take effect. - + Configure... - + Advanced - - Verify database content and structure after saving + + Clear History Now + + + + + Always ask before deleting entries or groups + + + + + Unified Title and Toolbar + + + + + Customize Entry Detail View... + + + + + Features + + + + + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. + + + + + Bookmarks + + + + + Auto-Type Fine Tuning + + + + + Time between the activation of an auto-type action by the user and the first simulated key stroke. + + + + + ms + + + + + Pre-Gap: + + + + + Key Stroke Delay: + + + + + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. + + + + + The directory where storage devices like CDs and memory sticks are normally mounted. + + + + + Media Root: + + + + + System Default + + + + + Enable this if you want to use your bookmarks and the last opened file independet from their absolute paths. This is especially useful when using KeePassX portably and therefore with changing mount points in the file system. + + + + + Save relative paths (bookmarks and last file) @@ -2553,37 +3524,27 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben. O&K - O&K + O&K - - Alt+K - - - - - Alt+C - - - - + ... ... - + Enter your Password - + Password: Passwort: &Cancel - Abbrechen + Abbrechen @@ -2591,86 +3552,89 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben. Could not open file. - Datei konnte nicht geöffnet werden. + Datei konnte nicht geöffnet werden. Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) - Unerwartete Dateigrößen (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Unerwartete Dateigrößen (DB_TOTAL_SIZE < DB_HEADER_SIZE) Wrong Signature - Falsche Signatur + Falsche Signatur Unsupported File Version. - Nicht unterstützte Dateiversion. + Nicht unterstützte Dateiversion. Unknown Encryption Algorithm. - Unbekannter bzw. nicht unterstüzter Verschlüsselungsalgorithmus. + Unbekannter bzw. nicht unterstüzter Verschlüsselungsalgorithmus. Decryption failed. The key is wrong or the file is damaged. - Entschlüsselung fehlgeschlagen. + Entschlüsselung fehlgeschlagen. Der Schlüssel ist falsch oder die Datei ist beschädigt. Hash test failed. The key is wrong or the file is damaged. - Hash-Test fehlgeschlagen. + Hash-Test fehlgeschlagen. Der Schlüssel ist falsch oder die Datei ist beschädigt. - - - Unexpected error: Offset is out of range. [G1] - - - - - Unexpected error: Offset is out of range. [G2] - - - - - Unexpected error: Offset is out of range. [E1] - - - - - Unexpected error: Offset is out of range. [E2] - - - - - Unexpected error: Offset is out of range. [E3] - - - - - Invalid group tree. - - - - - Key file is empty. - - - - - The database must contain at least one group. - - Could not open file for writing. - Datei konnte nicht zum Schreiben geöffnent werden. + Datei konnte nicht zum Schreiben geöffnent werden. + + + + TrashCanDialog + + + Recycle Bin + + + + + Double click on an entry to restore it. + + + + + Group + + + + + Title + Titel + + + + Username + Benutzername + + + + Expired + + + + + Empty Recycle Bin + + + + + Close + diff --git a/src/translations/keepass-es_ES.ts b/src/translations/keepass-es_ES.ts index fe79fd6..28c403d 100644 --- a/src/translations/keepass-es_ES.ts +++ b/src/translations/keepass-es_ES.ts @@ -9,161 +9,38 @@ - AboutDlg - - - About - Acerca de - - - - Thanks To - Agradecimientos - - - - License - Licencia - - - - Translation - Traducción - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:Sans Serif; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600;">KeePassX</span> - Cross Platform Password Manager</p></body></html> - - - - - Copyright (C) 2005 - 2006 Tarek Saidi -KeePassX is distributed under the terms of the -General Public License (GPL) version 2. - - - - - Credits - - - - - http://keepassx.sourceforge.net - - - - - keepassx@gmail.com - - - - - AutoType - - - More than one 'Auto-Type:' key sequence found. -Allowed is only one per entry. - - - - - Syntax Error in Auto-Type sequence near character %1 -Found '{' without closing '}' - - - - - Error - Error - - - - CAboutDialog + AboutDialog KeePassX %1 - KeePassX %1 - - - - Error - Error - - - - File '%1' could not be found. - Archivo '%1' no encontrado. - - - - Make sure that the program is installed correctly. - Asegúrese de que el programa está instalado correctamente. - - - - OK - OK - - - - Could not open file '%1' - No se pudo abrir fichero '%1' - - - - The following error occured: -%1 - Ha ocurrido el siguiente error: -%1 - - - - http://keepass.berlios.de/index.php - http://keepass.berlios.de/index.php + KeePassX %1 <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>Traducción actual: Español</b><br><br> + <b>Traducción actual: Español</b><br><br> <b>Author:</b> %1<br> - <b>Autor:</b> %1<br> + <b>Autor:</b> %1<br> - - $TRANSALTION_AUTHOR - Jaroslaw Filiochowski + + $TRANSLATION_AUTHOR + $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. - jarfil@jarfil.net + jarfil@jarfil.net - - Information on how to translate KeePassX can be found under: -http://keepass.berlios.de/translation-howto.html - Puede encontrar información sobre cómo traducir KeePassX en esta dirección: -http://keepass.berlios.de/translation-howto.html - - - - Matthias Miller - - - - - Eugen Gorschenin - - - - - $TRANSLATION_AUTHOR + + Information on how to translate KeePassX can be found under: +http://keepassx.sourceforge.net/ @@ -186,6 +63,11 @@ http://keepass.berlios.de/translation-howto.html tariq@users.berlios.de + + + Eugen Gorschenin + + Web Designer @@ -201,6 +83,11 @@ http://keepass.berlios.de/translation-howto.html Thanks To Agradecimientos + + + Matthias Miller + + Patches for better MacOS X support @@ -211,12 +98,6 @@ http://keepass.berlios.de/translation-howto.html www.outofhanwell.com - - - Information on how to translate KeePassX can be found under: -http://keepassx.sourceforge.net/ - - James Nicholls @@ -228,11 +109,207 @@ http://keepassx.sourceforge.net/ - + + Constantin Makshin + + + + + Various fixes and improvements + + + + + dinosaur-rus@users.sourceforge.net + + + + + Error + Error + + + + File '%1' could not be found. + Archivo '%1' no encontrado. + + + + Make sure that the program is installed correctly. + Asegúrese de que el programa está instalado correctamente. + + + + OK + + + + + Could not open file '%1' + No se pudo abrir fichero '%1' + + + + The following error occured: +%1 + Ha ocurrido el siguiente error: +%1 + + + http://keepassx.sf.net + + AboutDlg + + + About + Acerca de + + + + Thanks To + Agradecimientos + + + + License + Licencia + + + + Translation + Traducción + + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:Sans Serif; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600;">KeePassX</span> - Cross Platform Password Manager</p></body></html> + + + + + Credits + + + + + http://keepassx.sourceforge.net + + + + + keepassx@gmail.com + + + + + Copyright (C) 2005 - 2006 Tarek Saidi +KeePassX is distributed under the terms of the +General Public License (GPL) version 2 or later. + + + + + AutoType + + + More than one 'Auto-Type:' key sequence found. +Allowed is only one per entry. + + + + + Error + Error + + + + Syntax Error in Auto-Type sequence near character %1 +Found '{' without closing '}' + + + + + CAboutDialog + + + KeePassX %1 + KeePassX %1 + + + + Error + Error + + + + File '%1' could not be found. + Archivo '%1' no encontrado. + + + + Make sure that the program is installed correctly. + Asegúrese de que el programa está instalado correctamente. + + + + OK + OK + + + + Could not open file '%1' + No se pudo abrir fichero '%1' + + + + The following error occured: +%1 + Ha ocurrido el siguiente error: +%1 + + + + http://keepass.berlios.de/index.php + http://keepass.berlios.de/index.php + + + + <b>Current Translation: None</b><br><br> + Please replace 'None' with the language of your translation + <b>Traducción actual: Español</b><br><br> + + + + <b>Author:</b> %1<br> + <b>Autor:</b> %1<br> + + + + $TRANSALTION_AUTHOR + Jaroslaw Filiochowski + + + + $TRANSLATION_AUTHOR_EMAIL + Here you can enter your email or homepage if you want. + jarfil@jarfil.net + + + + Information on how to translate KeePassX can be found under: +http://keepass.berlios.de/translation-howto.html + Puede encontrar información sobre cómo traducir KeePassX en esta dirección: +http://keepass.berlios.de/translation-howto.html + + + + Thanks To + Agradecimientos + + CDbSettingsDlg @@ -284,24 +361,24 @@ http://keepassx.sourceforge.net/ CEditEntryDlg - + Warning Aviso - + Password and password repetition are not equal. Please check your input. Las contraseñas no coinciden. Compruebe que las ha introducido correctamente. - + OK Aceptar - + Save Attachment... Guardar Adjunto... @@ -318,7 +395,7 @@ Do you want to replace it? ¿Desea reemplazarlo? - + Yes @@ -328,7 +405,7 @@ Do you want to replace it? No - + Error Error @@ -343,72 +420,117 @@ Do you want to replace it? No se pudo crear el nuevo archivo. - + Error while writing the file. Error al escribir el archivo. - + Delete Attachment? Eliminar Adjunto? - + You are about to delete the attachment of this entry. Are you sure? Está a punto de eliminar el adjunto de esta entrada. ¿Está seguro? - + No, Cancel No, Cancelar Edit Entry - Editar Entrada + Editar Entrada - + Could not open file. No se pudo abrir el archivo. - + %1 Bit - + Add Attachment... - + Test 2 - + The chosen entry has no attachment or it is empty. + + + Today + + + + + 1 Week + + + + + 2 Weeks + + + + + 3 Weeks + + + + + 1 Month + + + + + 3 Months + + + + + 6 Months + + + + + 1 Year + + + + + Calendar... + + CGenPwDialog - + Notice Notificación - + You need to enter at least one character Debe introducir al menos un carácter - + OK Aceptar @@ -423,17 +545,17 @@ Are you sure? No se pudo abrir '/dev/random' o '/dev/urandom'. - + Password Generator Generador de Contraseña - + Accept - + %1 Bits @@ -441,27 +563,27 @@ Are you sure? CPasswordDialog - + OK Aceptar - + Error Error - + Please enter a Password. Introduzca una Contraseña. - + Please choose a key file. Seleccione un archivo de clave. - + Please enter a Password or select a key file. Introduzca una Contraseña o seleccione un archivo de clave. @@ -471,7 +593,7 @@ Are you sure? Contraseña de la Base de Datos - + Select a Key File Seleccione un Archivo de Clave @@ -486,55 +608,55 @@ Are you sure? Error Inesperado: Archivo no existe. - + The selected key file or directory does not exist. El archivo de clave seleccionado o el directorio no existen. - + The given directory does not contain any key files. El directorio no contiene ningún archivo de clave. - + The given directory contains more then one key file. Please specify the key file directly. El directorio contiene más de un archivo de clave. Especifique un archivo de clave concreto. - + The key file found in the given directory is not readable. Please check your permissions. El archivo de clave encontrado en el directorio no se puede leer. Compruebe sus permisos de acceso. - + Key file could not be found. Archivo de clave no encontrado. - + Key file is not readable. Please check your permissions. Archivo de clave no se puede leer. Compruebe sus permisos de acceso. - + Warning Advertencia - + Password an password repetition are not equal. Please check your input. Las contraseñas no coinciden. Compruebe que las ha introducido correctamente. - + Please enter a password or select a key file. Introduzca una contraseña o seleccione un archivo de clave. @@ -568,48 +690,48 @@ Do you want to replace it? ¿Desea reemplazarlo? - + The selected key file or directory is not readable. Please check your permissions. - + All Files (*) - + Key Files (*.key) - + File exists. - + A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one? - + Use - + Overwrite - + Cancel Cancelar - + Key file could not be created. %1 @@ -635,7 +757,7 @@ Please check your permissions. Search - Buscar + Buscar @@ -686,41 +808,49 @@ Please check your permissions. CSettingsDlg - + Settings Preferencias - + Select a directory... Seleccione un directorio... - + Error: %1 + + CalendarDialog + + + Calendar + + + CollectEntropyDlg - + Entropy Collection - + Random Number Generator - + Collecting entropy... Please move the mouse and/or press some keys until enought entropy for a reseed of the random number generator is collected. - + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Verdana'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> @@ -728,75 +858,396 @@ p, li { white-space: pre-wrap; } + + CustomizeDetailViewDialog + + + Group + + + + + Title + Título + + + + Username + Usuario + + + + Password + Contraseña + + + + Url + + + + + Comment + Comentario + + + + Attachment Name + + + + + Creation Date + + + + + Last Access Date + + + + + Last Modification Date + + + + + Expiration Date + + + + + Time till Expiration + + + + + Dialog + + + + + Rich Text Editor + + + + + Bold + + + + + B + + + + + Italic + + + + + I + + + + + Underlined + + + + + U + + + + + Left-Aligned + + + + + L + + + + + Centered + + + + + C + + + + + Right-Aligned + + + + + R + + + + + Justified + + + + + Text Color + + + + + Font Size + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + + 22 + + + + + 24 + + + + + 26 + + + + + 28 + + + + + 36 + + + + + 42 + + + + + 78 + + + + + Templates + + + + + T + + + + + HTML + + + + + Restore Default + + + + + Save + + + + + Cancel + Cancelar + + + + DetailViewTemplate + + + Group + + + + + Title + Título + + + + Username + Usuario + + + + Password + Contraseña + + + + URL + URL + + + + Creation + Creación + + + + Last Access + Último Acceso + + + + Last Modification + + + + + Expiration + + + + + Comment + Comentario + + EditEntryDialog - + Edit Entry Editar Entrada - + Username: Usuario: - + Password Repet.: Contraseña (repetida): - + Title: Título: - + URL: URL: - + Password: Contraseña: - + Quality: Calidad: - + Comment: Comentario: - + Expires: Expira: - + Group: Grupo: &Cancel - &Cancelar + &Cancelar Alt+C - Alt+C + Alt+C - + %1 %1 - + Icon: Icono: @@ -806,42 +1257,42 @@ p, li { white-space: pre-wrap; } % Bits - + Ge&n. Ge&n. - + ... ... O&K - &Aceptar + &Aceptar Alt+K - Alt+A + Alt+A - + Never Nunca - + Attachment: Adjunto: - + > - + %1 Bit @@ -889,6 +1340,57 @@ p, li { white-space: pre-wrap; } + + ExpiredEntriesDialog + + + Expried Entries of the Database + + + + + Expired Entries + + + + + Double click on an entry to jump to it. + + + + + Group + + + + + Title + Título + + + + Username + Usuario + + + + Expired + + + + + Export_KeePassX_Xml + + + XML Files (*.xml) + + + + + All Files (*) + + + Export_Txt @@ -896,81 +1398,104 @@ p, li { white-space: pre-wrap; } Could not open file (FileError=%1) No se pudo abrir el archivo (FileError=%1) + + + All Files (*) + + + + + Text Files (*.txt) + + + + + ExporterBase + + + Import File... + + + + + Export Failed + + FileErrors - + No error occurred. - + An error occurred while reading from the file. - + An error occurred while writing to the file. - + A fatal error occurred. - + An resource error occurred. - + The file could not be opened. - + The operation was aborted. - + A timeout occurred. - + An unspecified error occurred. - + The file could not be removed. - + The file could not be renamed. - + The position in the file could not be changed. - + The file could not be resized. - + The file could not be accessed. - + The file could not be copied. @@ -978,27 +1503,27 @@ p, li { white-space: pre-wrap; } GenPwDlg - + Alt+U Alt+U - + Alt+N Alt+N - + Alt+M Alt+M - + Alt+L Alt+L - + Password Generator Generador de Contraseña @@ -1013,52 +1538,52 @@ p, li { white-space: pre-wrap; } &Cancelar - + Generate Generar - + New Password: Nueva Contraseña: - + Quality: Calidad: - + Options Opciones - + &Upper Letters Mayúsc&ulas - + &Lower Letters Minúscu&las - + &Numbers &Números - + &Special Characters Carácteres E&speciales - + Minus Guión - + U&nderline S&ubrayado @@ -1068,17 +1593,17 @@ p, li { white-space: pre-wrap; } Alt+M - + Use &only following characters: Usar sól&o carácteres siguientes: - + Alt+O Alt+O - + Length: Longitud: @@ -1088,85 +1613,309 @@ p, li { white-space: pre-wrap; } Usar "/dev/rando&m" - + Use follo&wing character groups: Usar &grupos de carácteres siguientes: - + Alt+W Alt+G - + White &Spaces E&spacios - + Alt+S Alt+S - + Enable entropy collection - + Collect only once per session + + Import_KWalletXml + + + XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + Invalid XML data (see stdout for details). + Datos XML no válidos (ver stdout para más detalles). + + + + Invalid XML file. + Archivo XML no válido. + + + + Document does not contain data. + El documento no contiene datos. + + + + Import_KeePassX_Xml + + + KeePass XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + XML parsing error on line %1 column %2: +%3 + + + + + Parsing error: File is no valid KeePassX XML file. + + + + + Import_PwManager + + + PwManager Files (*.pwm) + + + + + All Files (*) + + + + + Import Failed + + + + + File is empty. + Archivo vacío. + + + + File is no valid PwManager file. + El archivo no es un archivo PwManager válido. + + + + Unsupported file version. + Version de archivo no soportada. + + + + Unsupported hash algorithm. + Algoritmo hash no soportado. + + + + Unsupported encryption algorithm. + Algoritmo de cifrado no soportado. + + + + Compressed files are not supported yet. + Los archivos comprimidos todavía no están soportados. + + + + Wrong password. + Contraseña incorrecta. + + + + File is damaged (hash test failed). + El archivo está dañado (comprobación hash fallida). + + + + Invalid XML data (see stdout for details). + Datos XML no válidos (ver stdout para más detalles). + + + + ImporterBase + + + Import File... + + + + + Import Failed + + + + + Kdb3Database + + + Could not open file. + No se pudo abrir el archivo. + + + + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Tamaño de fichero inesperado (DB_TOTAL_SIZE < DB_HEADER_SIZE) + + + + Wrong Signature + Firma Incorrecta + + + + Unsupported File Version. + + + + + Unknown Encryption Algorithm. + + + + + Decryption failed. +The key is wrong or the file is damaged. + + + + + Hash test failed. +The key is wrong or the file is damaged. + Comprobación hash fallida. +La clave es incorecta o el fichero está dañado. + + + + Unexpected error: Offset is out of range. [G1] + + + + + Unexpected error: Offset is out of range. [G2] + + + + + Unexpected error: Offset is out of range. [E1] + + + + + Unexpected error: Offset is out of range. [E2] + + + + + Unexpected error: Offset is out of range. [E3] + + + + + Invalid group tree. + + + + + Key file is empty. + + + + + The database must contain at least one group. + + + + + Could not open file for writing. + + + KeepassEntryView - + Title Título - + Username Usuario - + URL URL - + Password Contraseña - + Comments Comentarios - + Expires Expira - + Creation Creación - + Last Change Último Cambio - + Last Access Último Acceso - + Attachment Adjunto @@ -1175,133 +1924,163 @@ p, li { white-space: pre-wrap; } %1 items %1 elementos + + + Are you sure you want delete this entry? + + + + + Are you sure you want delete these %1 entries? + + + + + Delete? + + + + + Group + + KeepassGroupView - + Search Results Resultados de Búsqueda - + Groups Grupos + + + Delete? + + + + + Are you sure you want to delete this group, all it's child groups and all their entries? + + KeepassMainWindow - + Ctrl+O - + Ctrl+S - + Ctrl+G - + Ctrl+C Ctrl+C - + Ctrl+B - + Ctrl+U - + Ctrl+Y - + Ctrl+E - + Ctrl+D - + Ctrl+K Ctrl+A - + Ctrl+F - + Ctrl+W - + Shift+Ctrl+S - + Shift+Ctrl+F - + Error Error - + The following error occured while opening the database: %1 Ocurrió el siguiente error al intentar abrir la base de datos: %1 - + OK Aceptar - + Save modified file? ¿Guardar archivo modificado? - + The current file was modified. Do you want to save the changes? El archivo actual ha sido modificado. ¿Desea guardar los cambios? - + Yes - + No No - + Cancel Cancelar @@ -1311,27 +2090,27 @@ to save the changes? <b>Grupo: </b>%1 <b>Título: </b>%2 <b>Usuario: </b>%3 <b>URL: </b><a href="%4">%4</a> <b>Contraseña: </b>%5 <b>Creación: </b>%6 <b>Último Cambio: </b>%7 <b>Último Acceso: </b>%8 <b>Expira: </b>%9 - + Clone Entry Duplicar Entrada - + Delete Entry Eliminar Entrada - + Clone Entries Duplicar Entradas - + Delete Entries Eliminar Entradas - + File could not be saved. %1 Archivo no ha podido ser guardado. @@ -1343,27 +2122,27 @@ to save the changes? Guardar Base de Datos Como... - + Ready Listo - + [new] [nuevo] - + Open Database... Abrir Base de Datos... - + Loading Database... Cargando Base de Datos... - + Loading Failed Carga Fallida @@ -1395,68 +2174,108 @@ to save the changes? Error desconocido en Import_KWalletXml::importFile() - + Ctrl+V - + Show Toolbar Mostrar Barra de herramientas - + KeePassX KeePassX - + %1 - KeePassX - + Unknown error while loading database. - + KeePass Databases (*.kdb) - + All Files (*) - - <B>Group: </B>%1 <B>Title: </B>%2 <B>Username: </B>%3 <B>URL: </B><a href=%4>%4</a> <B>Password: </B>%5 <B>Creation: </B>%6 <B>Last Change: </B>%7 <B>LastAccess: </B>%8 <B>Expires: </B>%9 - - - - + Save Database... - + KeePassX - [unsaved] - - Text Files (*.txt) + + New Database - - Export Database + + expired - - Export Failed + + 1 Month + + + + + %1 Months + + + + + , + + + + + 1 Year + + + + + %1 Years + + + + + 1 Day + + + + + %1 Days + + + + + less than 1 day + + + + + Set Master Key + + + + + * - KeePassX @@ -1483,7 +2302,7 @@ to save the changes? Ver - + Columns Columnas @@ -1498,7 +2317,7 @@ to save the changes? Ayuda - + New Database... Nueva Base de Datos... @@ -1540,75 +2359,75 @@ to save the changes? PwManager File (*.pwm) - PwManager (*.pwm) + PwManager (*.pwm) KWallet XML-File (*.xml) - KWallet, archivo XML (*.xml) + KWallet, archivo XML (*.xml) - + Add New Group... Añadir Nuevo Grupo... - + Edit Group... Editar Grupo... - + Delete Group Eliminar Grupo - + Copy Password to Clipboard Copiar Contraseña al Portapapeles - + Copy Username to Clipboard Copiar Usuario al Portapapeles - + Open URL Abrir URL - + Save Attachment As... Guardar Adjunto Como... - + Add New Entry... Añadir Nueva Entrada... - + View/Edit Entry... Ver/Editar Entrada... - + Delete Entry Eliminar Entrada - + Clone Entry Duplicar Entrada - + Search In Database... Buscar en Base de Datos... - + Search in this group... Buscar en este grupo... @@ -1618,67 +2437,67 @@ to save the changes? Mostrar Barra de herramientas - + Show Entry Details Mostrar Detalles de Entradas - + Hide Usernames Ocultar Usuarios - + Hide Passwords Ocultar Contraseñas - + Title Título - + Username Usuario - + URL URL - + Password Contraseña - + Comment Comentario - + Expires Expira - + Creation Creación - + Last Change Último Cambio - + Last Access Último Acceso - + Attachment Adjunto @@ -1698,7 +2517,7 @@ to save the changes? Editar - + Show Statusbar Mostrar Barra de estado @@ -1715,138 +2534,163 @@ to save the changes? Plain Text (*.txt) - Texto Plano (*.txt) + Texto Plano (*.txt) - + Hide - + Perform AutoType - + Toolbar Icon Size - + 16x16 - + 22x22 - + 28x28 - + &View - + &File - + &Import from... - + &Export to... - + &Edit - + E&xtras - + &Help - + &Open Database... - + &Close Database - + &Save Database - + Save Database &As... - + &Database Settings... - + Change &Master Key... - + E&xit - + &Settings... - + &About... - + &KeePassX Handbook... - + Standard KeePass Single User Database (*.kdb) - + Advanced KeePassX Database (*.kxdb) - + Password Generator... + + + Group (search results only) + + + + + Show Expired Entries... + + + + + Show Expired Entries + + + + + Recycle Bin... + + + + + Lock Workspace + + PasswordDlg @@ -1966,22 +2810,22 @@ La clave es incorecta o el fichero está dañado. Warning - Advertencia + Advertencia Could not save configuration file. Make sure you have write access to '~/.keepass'. - No se pudo guardar el archivo de configuración. + No se pudo guardar el archivo de configuración. Asegúrese de tener acceso para escritura en '~/.keepass'. - + OK Aceptar - + File '%1' could not be found. Archivo '%1' no encontrado. @@ -2056,151 +2900,148 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.El documento no contiene datos. - + Error Error - - - Warning: - - - - - Invalid RGB color value. - - - Never Nunca - + Initialization failed. - + Could not locate library file. + + SearchDialog + + + Search + Buscar + + Search_Dlg - + Alt+T Alt+T - + Alt+U Alt+U - + A&nhang &Adjunto - + Alt+N Alt+A - + Alt+W Alt+C - + Alt+C Alt+M - + Search... Buscar... - + Search For: Buscar: - + Regular E&xpression E&xpresión Regular - + Alt+X Alt+X - + &Case Sensitive Distinguir &Mayúsculas - + Include: Incluir: - + &Titles &Títulos - + &Usernames &Usuarios - + C&omments C&omentarios - + Alt+O Alt+O - + U&RLs U&RLs - + Alt+R Alt+R - + Pass&words &Contraseñas - + Search Buscar - + Clo&se C&errar - + Alt+S Alt+E - + Include Subgroups (recursive) Incluir Subgrupos (recursivo) @@ -2231,7 +3072,7 @@ Asegúrese de tener acceso para escritura en '~/.keepass'. SettingsDialog - + Alt+Ö @@ -2256,12 +3097,12 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.&Cancelar - + Clear clipboard after: Borrar portapapeles después de: - + Seconds Segundos @@ -2271,47 +3112,47 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.M&ostrar contraseñas en texto plano por defecto - + Alt+O - + Appea&rance Apa&riencia - + Banner Color - + Text Color: Color de Texto: - + Change... Cambiar... - + Color 2: Color 2: - + C&hange... Ca&mbiar... - + Alt+H Alt+M - + Color 1: Color 1: @@ -2331,7 +3172,7 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.Recordar último archivo abierto - + Browser Command: Comando del Navegador: @@ -2341,148 +3182,218 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.Seguri&dad - + Alternating Row Colors Alternar Colores de Columna - + Browse... Navegar... - + Remember last key type and location Recordar último tipo de clave y localización - - Mounting Root: - - - - + Remember last opened file - + The integration plugins provide features like usage of the native file dialogs and message boxes of the particular desktop environments. - + General - + Show system tray icon - + Minimize to tray when clicking the main window's close button - + Save recent directories of file dialogs - - Clear - - - - - Enable bookmark menu - - - - + Group tree at start-up: - + Restore last state - + Expand all items - + Do not expand any item - + Security - + Show passwords in plain text in: - + Edit Entry Dialog - + Key Dialogs - + Desktop Integration - + Plug-Ins - + None - + Gnome Desktop Integration (Gtk 2.x) - + KDE 4 Desktop Integration - + You need to restart the program before the changes take effect. - + Configure... - + Advanced - - Verify database content and structure after saving + + Clear History Now + + + + + Always ask before deleting entries or groups + + + + + Unified Title and Toolbar + + + + + Customize Entry Detail View... + + + + + Features + + + + + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. + + + + + Bookmarks + + + + + Auto-Type Fine Tuning + + + + + Time between the activation of an auto-type action by the user and the first simulated key stroke. + + + + + ms + + + + + Pre-Gap: + + + + + Key Stroke Delay: + + + + + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. + + + + + The directory where storage devices like CDs and memory sticks are normally mounted. + + + + + Media Root: + + + + + System Default + + + + + Enable this if you want to use your bookmarks and the last opened file independet from their absolute paths. This is especially useful when using KeePassX portably and therefore with changing mount points in the file system. + + + + + Save relative paths (bookmarks and last file) @@ -2491,37 +3402,37 @@ Asegúrese de tener acceso para escritura en '~/.keepass'. O&K - &Aceptar + &Aceptar Alt+K - Alt+A + Alt+A Alt+C - Alt+C + Alt+C - + ... ... - + Enter your Password Introduzca su Contraseña - + Password: Contraseña: &Cancel - &Cancelar + &Cancelar @@ -2529,84 +3440,66 @@ Asegúrese de tener acceso para escritura en '~/.keepass'. Could not open file. - No se pudo abrir el archivo. + No se pudo abrir el archivo. Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) - Tamaño de fichero inesperado (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Tamaño de fichero inesperado (DB_TOTAL_SIZE < DB_HEADER_SIZE) Wrong Signature - Firma Incorrecta - - - - Unsupported File Version. - - - - - Unknown Encryption Algorithm. - - - - - Decryption failed. -The key is wrong or the file is damaged. - + Firma Incorrecta Hash test failed. The key is wrong or the file is damaged. - Comprobación hash fallida. + Comprobación hash fallida. La clave es incorecta o el fichero está dañado. + + + TrashCanDialog - - Unexpected error: Offset is out of range. [G1] + + Recycle Bin - - Unexpected error: Offset is out of range. [G2] + + Double click on an entry to restore it. - - Unexpected error: Offset is out of range. [E1] + + Group - - Unexpected error: Offset is out of range. [E2] + + Title + Título + + + + Username + Usuario + + + + Expired - - Unexpected error: Offset is out of range. [E3] + + Empty Recycle Bin - - Invalid group tree. - - - - - Key file is empty. - - - - - The database must contain at least one group. - - - - - Could not open file for writing. + + Close diff --git a/src/translations/keepass-fr_FR.ts b/src/translations/keepass-fr_FR.ts index c7b7add..d396242 100644 --- a/src/translations/keepass-fr_FR.ts +++ b/src/translations/keepass-fr_FR.ts @@ -8,6 +8,161 @@ Ne peut ouvrir le fichier (FileError=%1) + + AboutDialog + + + KeePassX %1 + KeePassX %1 + + + + <b>Current Translation: None</b><br><br> + Please replace 'None' with the language of your translation + <b>La présente traduction française</b><br><br> + + + + <b>Author:</b> %1<br> + <b> À pour auteur:</b> %1<br> + + + + $TRANSLATION_AUTHOR + <br>Djellel DIDA + + + + $TRANSLATION_AUTHOR_EMAIL + Here you can enter your email or homepage if you want. + <b>Courriel:</b> <br> djellel@free.fr + + + + + Information on how to translate KeePassX can be found under: +http://keepassx.sourceforge.net/ + + + + + Team + Équipe + + + + Tarek Saidi + Tarek Saidi + + + + Developer, Project Admin + Développeur et Administrateur du Projet + + + + tariq@users.berlios.de + tariq@users.berlios.de + + + + Eugen Gorschenin + Eugen Gorschenin + + + + + Web Designer + Concepteur du site Internet + + + + geugen@users.berlios.de + geugen@users.berlios.de + + + + Thanks To + Remerciement à + + + + Matthias Miller + Matthias Miller + + + + Patches for better MacOS X support + Pour les rustines ayant permis un meilleur support de MacOS X + + + + www.outofhanwell.com + <ADDRESS>www.outofhanwell.com<ADDRESS> + + + + James Nicholls + James Nicholls + + + + Main Application Icon + Pour le logo de KeepassX + + + + Constantin Makshin + + + + + Various fixes and improvements + + + + + dinosaur-rus@users.sourceforge.net + + + + + Error + Erreur + + + + File '%1' could not be found. + + + + + Make sure that the program is installed correctly. + S'assurer que l'application est correctement installée. + + + + OK + + + + + Could not open file '%1' + N'a pas pu ouvrir le fichier '%1' + + + + The following error occured: +%1 + L'erreur suivante est survenue: +%1 + + + + http://keepassx.sf.net + http://keepassx.sf.net + + AboutDlg @@ -21,12 +176,12 @@ Remerciement à - + License Licence - + Translation Traduction @@ -40,7 +195,7 @@ Copyright (C) 2005 - 2006 Tarek Saidi KeePassX is distributed under the terms of the General Public License (GPL) version 2. - <span style=" font-size:9pt; font-weight:400;">Copyright (c) 2005 - 2006 Tarek Saidi <br> + <span style=" font-size:9pt; font-weight:400;">Copyright (c) 2005 - 2006 Tarek Saidi <br> KeePassX est distribué sous les termes de la<br> Licence Publique Générale GNU v2 (GPL v2).</span> @@ -54,20 +209,27 @@ KeePassX est distribué sous les termes de la<br> Licence Publique http://keepass.berlios.de/ - + Credits Crédits - + http://keepassx.sourceforge.net http://keepassx.sourceforge.net - + keepassx@gmail.com keepassx@gmail.com + + + Copyright (C) 2005 - 2006 Tarek Saidi +KeePassX is distributed under the terms of the +General Public License (GPL) version 2 or later. + + AutoType @@ -82,7 +244,7 @@ Seulement une par entrée est autorisée. Syntax Error in Auto-Type sequence near character %1 Found '{' without closing '}' - Erreur de syntaxe à l'intérieur de la séquence d'auto-saisie près du caractère %1 + Erreur de syntaxe à l'intérieur de la séquence d'auto-saisie près du caractère %1 Trouvé '{' sans accolade fermante '}' @@ -90,44 +252,50 @@ Seulement une par entrée est autorisée. Error Erreur + + + Syntax Error in Auto-Type sequence near character %1 +Found '{' without closing '}' + + CAboutDialog KeePassX %1 - KeePassX %1 + KeePassX %1 Error - Erreur + Erreur File '%1' could not be found. - Le fichier '%1' n'a pu être trouvé. + Le fichier '%1' n'a pu être trouvé. Make sure that the program is installed correctly. - S'assurer que l'application est correctement installée. + S'assurer que l'application est correctement installée. OK - Ok + Ok Could not open file '%1' - N'a pas pu ouvrir le fichier '%1' + N'a pas pu ouvrir le fichier '%1' The following error occured: %1 - L'erreur suivante est survenue: + L'erreur suivante est survenue: %1 @@ -139,12 +307,12 @@ Seulement une par entrée est autorisée. <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>La présente traduction française</b><br><br> + <b>La présente traduction française</b><br><br> <b>Author:</b> %1<br> - <b> À pour auteur:</b> %1<br> + <b> À pour auteur:</b> %1<br> @@ -155,7 +323,7 @@ Seulement une par entrée est autorisée. $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. - <b>Courriel:</b> <br> djellel@free.fr + <b>Courriel:</b> <br> djellel@free.fr @@ -168,7 +336,7 @@ http://keepass.berlios.de/translation-howto.html Matthias Miller - Matthias Miller + Matthias Miller @@ -178,7 +346,7 @@ http://keepass.berlios.de/translation-howto.html Eugen Gorschenin - Eugen Gorschenin + Eugen Gorschenin @@ -189,7 +357,7 @@ http://keepass.berlios.de/translation-howto.html $TRANSLATION_AUTHOR - <br>Djellel DIDA + <br>Djellel DIDA @@ -201,69 +369,69 @@ http://keepass.berlios.de/ Team - Équipe + Équipe Tarek Saidi - Tarek Saidi + Tarek Saidi Developer, Project Admin - Développeur et Administrateur du Projet + Développeur et Administrateur du Projet tariq@users.berlios.de - tariq@users.berlios.de + tariq@users.berlios.de Web Designer - Concepteur du site Internet + Concepteur du site Internet geugen@users.berlios.de - geugen@users.berlios.de + geugen@users.berlios.de Thanks To - Remerciement à + Remerciement à Patches for better MacOS X support - Pour les rustines ayant permis un meilleur support de MacOS X + Pour les rustines ayant permis un meilleur support de MacOS X www.outofhanwell.com - <ADDRESS>www.outofhanwell.com<ADDRESS> + <ADDRESS>www.outofhanwell.com<ADDRESS> Information on how to translate KeePassX can be found under: http://keepassx.sourceforge.net/ - Les informations concernant la méthode de traduction de KeePassX peuvent être trouvées à l'adresse suivante:<br> + Les informations concernant la méthode de traduction de KeePassX peuvent être trouvées à l'adresse suivante:<br> <ADDRESS>http://keepass.berlios.de/translation-howto.html</ADDRESS> James Nicholls - James Nicholls + James Nicholls Main Application Icon - Pour le logo de KeepassX + Pour le logo de KeepassX http://keepassx.sf.net - http://keepassx.sf.net + http://keepassx.sf.net @@ -317,24 +485,24 @@ http://keepassx.sourceforge.net/ CEditEntryDlg - + Warning Avertissement - + Password and password repetition are not equal. Please check your input. Le mot de passe et sa confirmation ne sont pas identiques ! S'il vous plait, vérifier votre saisie. - + OK Accepter - + Save Attachment... Enregistrer la pièce jointe... @@ -351,7 +519,7 @@ Do you want to replace it? Voulez-vous le remplacer ? - + Yes Oui @@ -361,7 +529,7 @@ Voulez-vous le remplacer ? Non - + Error Erreur @@ -376,72 +544,117 @@ Voulez-vous le remplacer ? N'a pas pu créer un nouveau fichier. - + Error while writing the file. Erreur lors de l'écriture du fichier. - + Delete Attachment? Supprimer la pièce jointe ? - + You are about to delete the attachment of this entry. Are you sure? Vous êtes sur le point de supprimer la pièce jointe de cette entrée. En êtes-vous sûr ? - + No, Cancel Non, annuler Edit Entry - Édition de l'entrée + Édition de l'entrée - + Could not open file. N'a pas pu ouvrir le fichier. - + %1 Bit %1 Bits - + Add Attachment... Ajouter une pièce jointe... - + Test 2 - + The chosen entry has no attachment or it is empty. + + + Today + + + + + 1 Week + + + + + 2 Weeks + + + + + 3 Weeks + + + + + 1 Month + + + + + 3 Months + + + + + 6 Months + + + + + 1 Year + + + + + Calendar... + + CGenPwDialog - + Notice Notification - + You need to enter at least one character Vous devez au moins entrer un caractère - + OK Accepter @@ -456,7 +669,7 @@ En êtes-vous sûr ? N'a pas pu ouvrir '/dev/random' ou '/dev/urandom'. - + Password Generator Générateur de mots de passe @@ -466,12 +679,12 @@ En êtes-vous sûr ? %1 Bits - + Accept - + %1 Bits @@ -479,27 +692,27 @@ En êtes-vous sûr ? CPasswordDialog - + OK Accepter - + Error Erreur - + Please enter a Password. Entrer un mot de passe. - + Please choose a key file. Sélectionner un trousseau de clés. - + Please enter a Password or select a key file. Entrer un mot de passe ou sélectionner un trousseau de clés. @@ -509,7 +722,7 @@ En êtes-vous sûr ? Base de données des clés - + Select a Key File Selectionner un trousseau de clés @@ -524,55 +737,55 @@ En êtes-vous sûr ? Erreur inattendue: Le fichier n'existe pas. - + The selected key file or directory does not exist. Le trousseau de clés ou le répertoire n'existe pas. - + The given directory does not contain any key files. Le répertoire désigné ne contient aucun trousseau de clés. - + The given directory contains more then one key file. Please specify the key file directly. Le répertoire désigné contient plus d'un trousseau de clés. Pourriez-vous sélectionner le trousseau de clés désiré. - + The key file found in the given directory is not readable. Please check your permissions. Le trousseau de clés choisi dans le répertoire n'est pas lisible. S'il vous plait, vérifier vos permissions. - + Key file could not be found. Le trousseau de clés n'a pu être trouvé. - + Key file is not readable. Please check your permissions. Le trousseau de clés n'est pas lisible. S'il vous plait, vérifier vos permissions. - + Warning Avertissement - + Password an password repetition are not equal. Please check your input. Le mot de passe et sa confirmation ne sont pas identiques ! S'il vous plait, vérifier votre saisie. - + Please enter a password or select a key file. Entrer un mot de passe ou sélectionner un trousseau de clés. @@ -606,49 +819,49 @@ Do you want to replace it? Désirez-vous le remplacer ? - + The selected key file or directory is not readable. Please check your permissions. Le trousseau de clés choisi n'est pas lisible. S'il vous plait, vérifier vos permissions. - + All Files (*) - + Key Files (*.key) - + File exists. - + A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one? - + Use - + Overwrite - + Cancel Annuler - + Key file could not be created. %1 @@ -674,7 +887,7 @@ S'il vous plait, vérifier vos permissions. Search - Recherche + Recherche @@ -731,41 +944,49 @@ S'il vous plait, vérifier vos permissions. CSettingsDlg - + Settings Préférences - + Select a directory... Sélectionner un répertoire.... - + Error: %1 + + CalendarDialog + + + Calendar + + + CollectEntropyDlg - + Entropy Collection - + Random Number Generator - + Collecting entropy... Please move the mouse and/or press some keys until enought entropy for a reseed of the random number generator is collected. - + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Verdana'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> @@ -773,75 +994,396 @@ p, li { white-space: pre-wrap; } + + CustomizeDetailViewDialog + + + Group + + + + + Title + Títre + + + + Username + Nom d'utilisateur + + + + Password + Mot de passe + + + + Url + + + + + Comment + Commentaire + + + + Attachment Name + + + + + Creation Date + + + + + Last Access Date + + + + + Last Modification Date + + + + + Expiration Date + + + + + Time till Expiration + + + + + Dialog + + + + + Rich Text Editor + + + + + Bold + + + + + B + + + + + Italic + + + + + I + + + + + Underlined + + + + + U + + + + + Left-Aligned + + + + + L + + + + + Centered + + + + + C + + + + + Right-Aligned + + + + + R + + + + + Justified + + + + + Text Color + + + + + Font Size + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + + 22 + + + + + 24 + + + + + 26 + + + + + 28 + + + + + 36 + + + + + 42 + + + + + 78 + + + + + Templates + + + + + T + + + + + HTML + + + + + Restore Default + + + + + Save + + + + + Cancel + Annuler + + + + DetailViewTemplate + + + Group + + + + + Title + Títre + + + + Username + Nom d'utilisateur + + + + Password + Mot de passe + + + + URL + URL + + + + Creation + + + + + Last Access + Dernier accès + + + + Last Modification + + + + + Expiration + + + + + Comment + Commentaire + + EditEntryDialog - + Edit Entry Édition de l'entrée - + Username: Nom d'utilisateur: - + Password Repet.: Confirmation: - + Title: Títre: - + URL: URL: - + Password: Mot de passe: - + Quality: Qualité - + Comment: Commentaire: - + Expires: Expire le: - + Group: Groupe: &Cancel - A&nnuler + A&nnuler Alt+C - Alt+N + Alt+N - + %1 %1 - + Icon: Icône: @@ -851,42 +1393,42 @@ p, li { white-space: pre-wrap; } % Bits - + Ge&n. &Gen. - + ... ... O&K - &Accepter + &Accepter Alt+K - Alt+A + Alt+A - + Never Jamais - + Attachment: Pièce jointe: - + > > - + %1 Bit %1 Bits @@ -934,6 +1476,57 @@ p, li { white-space: pre-wrap; } > + + ExpiredEntriesDialog + + + Expried Entries of the Database + + + + + Expired Entries + + + + + Double click on an entry to jump to it. + + + + + Group + + + + + Title + Títre + + + + Username + Nom d'utilisateur + + + + Expired + + + + + Export_KeePassX_Xml + + + XML Files (*.xml) + + + + + All Files (*) + + + Export_Txt @@ -941,81 +1534,104 @@ p, li { white-space: pre-wrap; } Could not open file (FileError=%1) N'a pas pu ouvrir le fichier (FileError=%1) + + + All Files (*) + + + + + Text Files (*.txt) + + + + + ExporterBase + + + Import File... + + + + + Export Failed + + FileErrors - + No error occurred. - + An error occurred while reading from the file. - + An error occurred while writing to the file. - + A fatal error occurred. - + An resource error occurred. - + The file could not be opened. - + The operation was aborted. - + A timeout occurred. - + An unspecified error occurred. - + The file could not be removed. - + The file could not be renamed. - + The position in the file could not be changed. - + The file could not be resized. - + The file could not be accessed. - + The file could not be copied. @@ -1023,27 +1639,27 @@ p, li { white-space: pre-wrap; } GenPwDlg - + Alt+U Alt+U - + Alt+N Alt+N - + Alt+M Alt+M - + Alt+L Alt+L - + Password Generator Générateur de mots de passe @@ -1058,52 +1674,52 @@ p, li { white-space: pre-wrap; } &Annuler - + Generate Générer - + New Password: Nouveau mot de passe: - + Quality: Qualité: - + Options Options - + &Upper Letters Lettres majusc&ules - + &Lower Letters Lettres minuscu&les - + &Numbers &Nombres - + &Special Characters Caractères &Spéciaux - + Minus Moins - + U&nderline Soulig&né @@ -1118,17 +1734,17 @@ p, li { white-space: pre-wrap; } Alt+H - + Use &only following characters: Utiliser s&eulement les caractères suivant: - + Alt+O Alt+E - + Length: Longueur: @@ -1138,85 +1754,310 @@ p, li { white-space: pre-wrap; } Utiliser "/dev/rando&m" - + Use follo&wing character groups: Utiliser le &groupe de caractères suivant: - + Alt+W Alt+G - + White &Spaces E&space - + Alt+S Alt+S - + Enable entropy collection - + Collect only once per session + + Import_KWalletXml + + + XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + Invalid XML data (see stdout for details). + Donnée XML invalide (voir 'stdout pour plus de détails). + + + + Invalid XML file. + Fichier XML invalide. + + + + Document does not contain data. + Le document ne contient pas de donnée. + + + + Import_KeePassX_Xml + + + KeePass XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + XML parsing error on line %1 column %2: +%3 + + + + + Parsing error: File is no valid KeePassX XML file. + + + + + Import_PwManager + + + PwManager Files (*.pwm) + + + + + All Files (*) + + + + + Import Failed + + + + + File is empty. + Le fichier est vide. + + + + File is no valid PwManager file. + Le fichier n'est pas un fichier PwManager valide. + + + + Unsupported file version. + Version de fichier non supportée. + + + + Unsupported hash algorithm. + L'algorithme de hachage non supporté. + + + + Unsupported encryption algorithm. + Algorithme d'encryptage non supporté. + + + + Compressed files are not supported yet. + Fichiers de compression non supportés encore. + + + + Wrong password. + Mauvais mot de passe. + + + + File is damaged (hash test failed). + Le fichier est endommagé (Le test de hachage a échoué). + + + + Invalid XML data (see stdout for details). + Donnée XML invalide (voir 'stdout pour plus de détails). + + + + ImporterBase + + + Import File... + + + + + Import Failed + + + + + Kdb3Database + + + Could not open file. + + + + + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Taille de fichier inattendue (DB_TOTAL_SIZE < DB_HEADER_SIZE) + + + + Wrong Signature + Mauvaise signature + + + + Unsupported File Version. + Version de fichier non supportée. + + + + Unknown Encryption Algorithm. + Algorithme d'encryptage inconnu. + + + + Decryption failed. +The key is wrong or the file is damaged. + Le décryptage a échoué. +La clé est mauvaise ou le fichier est endommagé. + + + + Hash test failed. +The key is wrong or the file is damaged. + Le test de hachage a échoué. +La clé est mauvaise ou le fichier est endommagé. + + + + Unexpected error: Offset is out of range. [G1] + Erreur inattendue: Le décalage est hors limite.[G1] + + + + Unexpected error: Offset is out of range. [G2] + Erreur inattendue: Le décalage est hors limite.[G2] + + + + Unexpected error: Offset is out of range. [E1] + Erreur inattendue: Le décalage est hors limite.[E1] + + + + Unexpected error: Offset is out of range. [E2] + Erreur inattendue: Le décalage est hors limite.[E2] + + + + Unexpected error: Offset is out of range. [E3] + Erreur inattendue: Le décalage est hors limite.[E3] + + + + Invalid group tree. + + + + + Key file is empty. + + + + + The database must contain at least one group. + + + + + Could not open file for writing. + N'a pu ouvrir le fichier pour écriture. + + KeepassEntryView - + Title Títre - + Username Nom d'utilisateur - + URL URL - + Password Mot de passe - + Comments Commentaires - + Expires Expire le - + Creation Créé le - + Last Change Dernier changement - + Last Access Dernier accès - + Attachment Pièce jointe @@ -1225,19 +2066,49 @@ p, li { white-space: pre-wrap; } %1 items %1 élements + + + Are you sure you want delete this entry? + + + + + Are you sure you want delete these %1 entries? + + + + + Delete? + + + + + Group + + KeepassGroupView - + Search Results Résultats de la recherche - + Groups Groupes + + + Delete? + + + + + Are you sure you want to delete this group, all it's child groups and all their entries? + + KeepassMainWindow @@ -1247,116 +2118,116 @@ p, li { white-space: pre-wrap; } Ctrl+N - + Ctrl+O Ctrl+O - + Ctrl+S Ctrl+S - + Ctrl+G Ctrl+G - + Ctrl+C Ctrl+C - + Ctrl+B Ctrl+B - + Ctrl+U Ctrl+U - + Ctrl+Y Ctrl+Y - + Ctrl+E Ctrl+E - + Ctrl+D Ctrl+D - + Ctrl+K Ctrl+A - + Ctrl+F Ctrl+F - + Ctrl+W Ctrl+W - + Shift+Ctrl+S Shift+Ctrl+S - + Shift+Ctrl+F Shift+Ctrl+F - + Error Erreur - + The following error occured while opening the database: %1 l'erreur suivante est survenue à l'ouverture de la base de données: %1 - + OK Accepter - + Save modified file? Enregistrer le fichier modifié ? - + The current file was modified. Do you want to save the changes? Le courant fichier a été modifié. Désirez-vous enregistrer le changement ? - + Yes Oui - + No Non - + Cancel Annuler @@ -1371,27 +2242,27 @@ Désirez-vous enregistrer le changement ? <B>Groupe: </B>%1 <B>Titre: </B>%2 <B>Nom d'utilisateur: </B>%3 <B>URL: </B><a href=%4>%4</a> <B>Mot de passe: </B>%5 <B>Date de création: </B>%6 <B>Dernier changement: </B>%7 <B>Dernier accès: </B>%8 <B>Date d'expiration: </B>%9 - + Clone Entry Dupliquer l'entrée - + Delete Entry Supprimer l'entrée - + Clone Entries Dupliquer les entrées - + Delete Entries Supprimer les entrées - + File could not be saved. %1 Le fichier n'a pu être enregistré. @@ -1403,27 +2274,27 @@ Désirez-vous enregistrer le changement ? Enregistrer la BD sous... - + Ready Prêt - + [new] [nouveau] - + Open Database... Ouvrir la BD... - + Loading Database... Chargement de la BD... - + Loading Failed Le chargement a échoué @@ -1460,68 +2331,108 @@ Désirez-vous enregistrer le changement ? Erreur inconnue dans PwDatabase::openDatabase() - + Ctrl+V Ctrl+V - + Show Toolbar Afficher la barre outils - + KeePassX KeePassX - + %1 - KeePassX - + Unknown error while loading database. - + KeePass Databases (*.kdb) - + All Files (*) - - <B>Group: </B>%1 <B>Title: </B>%2 <B>Username: </B>%3 <B>URL: </B><a href=%4>%4</a> <B>Password: </B>%5 <B>Creation: </B>%6 <B>Last Change: </B>%7 <B>LastAccess: </B>%8 <B>Expires: </B>%9 - - - - + Save Database... - + KeePassX - [unsaved] - - Text Files (*.txt) + + New Database - - Export Database + + expired - - Export Failed + + 1 Month + + + + + %1 Months + + + + + , + + + + + 1 Year + + + + + %1 Years + + + + + 1 Day + + + + + %1 Days + + + + + less than 1 day + + + + + Set Master Key + + + + + * - KeePassX @@ -1548,7 +2459,7 @@ Désirez-vous enregistrer le changement ? Affichage - + Columns Colonnes @@ -1563,7 +2474,7 @@ Désirez-vous enregistrer le changement ? Aide - + New Database... Nouvelle BD... @@ -1605,75 +2516,75 @@ Désirez-vous enregistrer le changement ? PwManager File (*.pwm) - Fichier PwManager (*.pwm) + Fichier PwManager (*.pwm) KWallet XML-File (*.xml) - Fichier XML, KWallet (*.xml) + Fichier XML, KWallet (*.xml) - + Add New Group... Ajouter un nouveau groupe... - + Edit Group... Modifier le groupe... - + Delete Group Supprimer le groupe - + Copy Password to Clipboard Copier le mot de passe dans le presse-papier - + Copy Username to Clipboard Copier l'utilisateur dans le presse-papier - + Open URL Ouvrir l'URL - + Save Attachment As... Enregistrer la pièce jointe sous... - + Add New Entry... Ajouter une nouvelle entrée... - + View/Edit Entry... Modifier/afficher l'entrée... - + Delete Entry Supprimer l'entrée - + Clone Entry Dupliquer l'entrée - + Search In Database... Rechercher dans la BD... - + Search in this group... Rechercher dans ce groupe... @@ -1683,67 +2594,67 @@ Désirez-vous enregistrer le changement ? Afficher la barre outils - + Show Entry Details Afficher les détails de l'entrée - + Hide Usernames Cacher l'utilisateur - + Hide Passwords Cacher les mots de passe - + Title Títre - + Username Nom d'utilisateur - + URL URL - + Password Mot de passe - + Comment Commentaire - + Expires Date d'expiration - + Creation Date de création - + Last Change Dernier changement - + Last Access Dernier accès - + Attachment Pièce jointe @@ -1763,7 +2674,7 @@ Désirez-vous enregistrer le changement ? Édition - + Show Statusbar Afficher la barre de statuts @@ -1780,15 +2691,15 @@ Désirez-vous enregistrer le changement ? Plain Text (*.txt) - Un fichier plein texte (*.txt) + Un fichier plein texte (*.txt) - + Hide Cacher - + Perform AutoType Exécuter l'auto-saisie @@ -1798,57 +2709,57 @@ Désirez-vous enregistrer le changement ? Saisir ici - + Toolbar Icon Size Taille des icônes de la barre d'outils - + 16x16 - + 22x22 - + 28x28 - + &View &Affichage - + &File &Fichier - + &Import from... &Importer d'un... - + &Export to... &Exporter vers... - + &Edit Ed&iter - + E&xtras E&xtras - + &Help Ai&de @@ -1858,70 +2769,95 @@ Désirez-vous enregistrer le changement ? &Nouvelle BD... - + &Open Database... &Ouvrir une BD... - + &Close Database Fer&mer la BD - + &Save Database &Enregistrer la BD - + Save Database &As... Enre&gistrer la BD sous... - + &Database Settings... Paramé&trage de la BD... - + Change &Master Key... &Changer la clé maitresse... - + E&xit &Quitter - + &Settings... &Préférences... - + &About... À pr&opos... - + &KeePassX Handbook... Le manuel de &KeePassX... - + Standard KeePass Single User Database (*.kdb) - + Advanced KeePassX Database (*.kxdb) - + Password Generator... + + + Group (search results only) + + + + + Show Expired Entries... + + + + + Show Expired Entries + + + + + Recycle Bin... + + + + + Lock Workspace + + PasswordDlg @@ -2088,22 +3024,22 @@ La clé est mauvaise ou le fichier est endommagé. Warning - Avertissement + Avertissement Could not save configuration file. Make sure you have write access to '~/.keepass'. - N'a pu enregistrer le fichier de configuration. + N'a pu enregistrer le fichier de configuration. Étes-vous sûr de posséder le droit en écriture sur '~/.keepass'. - + OK Accepter - + File '%1' could not be found. Le fichier '%1' n'a pu être trouvé. @@ -2178,20 +3114,20 @@ Make sure you have write access to '~/.keepass'. Le document ne contient pas de donnée. - + Error Erreur Warning: - Avertissement: + Avertissement: Invalid RGB color value. - Valeur de la couleur RGB invalide. + Valeur de la couleur RGB invalide. @@ -2199,130 +3135,138 @@ Make sure you have write access to '~/.keepass'. Jamais - + Initialization failed. - + Could not locate library file. + + SearchDialog + + + Search + + + Search_Dlg - + Alt+T Alt+T - + Alt+U Alt+U - + A&nhang A&nnexe - + Alt+N Alt+N - + Alt+W Alt+P - + Alt+C Alt+C - + Search... Rechercher... - + Search For: Recherche de: - + Regular E&xpression E&xpression Régulière - + Alt+X Alt+X - + &Case Sensitive Respecter la &casse - + Include: Inclure: - + &Titles &Títres - + &Usernames Nom d'&utilisateurs - + C&omments C&ommentaires - + Alt+O Alt+O - + U&RLs U&RLs - + Alt+R Alt+R - + Pass&words Mot de &passe - + Search Chercher - + Clo&se &Quitter - + Alt+S Alt+Q - + Include Subgroups (recursive) Inclure les sous-groupes (récursive) @@ -2353,7 +3297,7 @@ Make sure you have write access to '~/.keepass'. SettingsDialog - + Alt+Ö Alt+R @@ -2383,12 +3327,12 @@ Make sure you have write access to '~/.keepass'. A&nnuler - + Clear clipboard after: Effacer le presse-papier après: - + Seconds Secondes @@ -2398,47 +3342,47 @@ Make sure you have write access to '~/.keepass'. A&fficher le mot de passe en clair par défaut - + Alt+O Alt+F - + Appea&rance Appa&rence - + Banner Color Couleur du bandeau - + Text Color: Couleur du texte: - + Change... Changer... - + Color 2: Couleur 2: - + C&hange... C&hanger... - + Alt+H Alt+H - + Color 1: Couleur 1: @@ -2458,7 +3402,7 @@ Make sure you have write access to '~/.keepass'. Se souvenir du dernier fichier ouvert - + Browser Command: Commande du navigateur: @@ -2468,148 +3412,223 @@ Make sure you have write access to '~/.keepass'. Séc&urité - + Alternating Row Colors Couleurs alternées pour les rangées - + Browse... Parcourir... - + Remember last key type and location Se souvenir de la dernière saisie de clé et du dernier emplacement Mounting Root: - Point de montage: + Point de montage: - + Remember last opened file Se souvenir du dernier fichier ouvert - + The integration plugins provide features like usage of the native file dialogs and message boxes of the particular desktop environments. - + General - + Show system tray icon - + Minimize to tray when clicking the main window's close button - + Save recent directories of file dialogs - - Clear - - - - - Enable bookmark menu - - - - + Group tree at start-up: - + Restore last state - + Expand all items - + Do not expand any item - + Security - + Show passwords in plain text in: - + Edit Entry Dialog - + Key Dialogs - + Desktop Integration - + Plug-Ins - + None - + Gnome Desktop Integration (Gtk 2.x) - + KDE 4 Desktop Integration - + You need to restart the program before the changes take effect. - + Configure... - + Advanced - - Verify database content and structure after saving + + Clear History Now + + + + + Always ask before deleting entries or groups + + + + + Unified Title and Toolbar + + + + + Customize Entry Detail View... + + + + + Features + + + + + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. + + + + + Bookmarks + + + + + Auto-Type Fine Tuning + + + + + Time between the activation of an auto-type action by the user and the first simulated key stroke. + + + + + ms + + + + + Pre-Gap: + + + + + Key Stroke Delay: + + + + + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. + + + + + The directory where storage devices like CDs and memory sticks are normally mounted. + + + + + Media Root: + + + + + System Default + + + + + Enable this if you want to use your bookmarks and the last opened file independet from their absolute paths. This is especially useful when using KeePassX portably and therefore with changing mount points in the file system. + + + + + Save relative paths (bookmarks and last file) @@ -2618,124 +3637,147 @@ Make sure you have write access to '~/.keepass'. O&K - &Accepter + &Accepter Alt+K - Alt+A + Alt+A Alt+C - Alt+N + Alt+N - + ... ... - + Enter your Password Entrer votre mot de passe - + Password: Mot de passe: &Cancel - A&nnuler + A&nnuler StandardDatabase - - - Could not open file. - - Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) - Taille de fichier inattendue (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Taille de fichier inattendue (DB_TOTAL_SIZE < DB_HEADER_SIZE) Wrong Signature - Mauvaise signature + Mauvaise signature Unsupported File Version. - Version de fichier non supportée. + Version de fichier non supportée. Unknown Encryption Algorithm. - Algorithme d'encryptage inconnu. + Algorithme d'encryptage inconnu. Decryption failed. The key is wrong or the file is damaged. - Le décryptage a échoué. + Le décryptage a échoué. La clé est mauvaise ou le fichier est endommagé. Hash test failed. The key is wrong or the file is damaged. - Le test de hachage a échoué. + Le test de hachage a échoué. La clé est mauvaise ou le fichier est endommagé. Unexpected error: Offset is out of range. [G1] - Erreur inattendue: Le décalage est hors limite.[G1] + Erreur inattendue: Le décalage est hors limite.[G1] Unexpected error: Offset is out of range. [G2] - Erreur inattendue: Le décalage est hors limite.[G2] + Erreur inattendue: Le décalage est hors limite.[G2] Unexpected error: Offset is out of range. [E1] - Erreur inattendue: Le décalage est hors limite.[E1] + Erreur inattendue: Le décalage est hors limite.[E1] Unexpected error: Offset is out of range. [E2] - Erreur inattendue: Le décalage est hors limite.[E2] + Erreur inattendue: Le décalage est hors limite.[E2] Unexpected error: Offset is out of range. [E3] - Erreur inattendue: Le décalage est hors limite.[E3] - - - - Invalid group tree. - - - - - Key file is empty. - - - - - The database must contain at least one group. - + Erreur inattendue: Le décalage est hors limite.[E3] Could not open file for writing. - N'a pu ouvrir le fichier pour écriture. + N'a pu ouvrir le fichier pour écriture. + + + + TrashCanDialog + + + Recycle Bin + + + + + Double click on an entry to restore it. + + + + + Group + + + + + Title + Títre + + + + Username + Nom d'utilisateur + + + + Expired + + + + + Empty Recycle Bin + + + + + Close + diff --git a/src/translations/keepass-ru_RU.ts b/src/translations/keepass-ru_RU.ts index 0093e92..3c81229 100644 --- a/src/translations/keepass-ru_RU.ts +++ b/src/translations/keepass-ru_RU.ts @@ -1,5 +1,157 @@ + + AboutDialog + + + KeePassX %1 + KeePassX %1 + + + + <b>Current Translation: None</b><br><br> + Please replace 'None' with the language of your translation + <b>Current Translation: Russian</b><br><br> + + + + <b>Author:</b> %1<br> + <b>Автор:</b> %1<br> + + + + $TRANSLATION_AUTHOR + Дмитрий Функ + + + + $TRANSLATION_AUTHOR_EMAIL + Here you can enter your email or homepage if you want. + dmitry.funk@gmail.com + + + + Information on how to translate KeePassX can be found under: +http://keepassx.sourceforge.net/ + + + + + Team + Комманда разработчиков + + + + Tarek Saidi + + + + + Developer, Project Admin + Разработчик, руководитель проекта + + + + tariq@users.berlios.de + + + + + Eugen Gorschenin + + + + + Web Designer + Web дизайнер + + + + geugen@users.berlios.de + geugen@users.berlios.de + + + + Thanks To + Благодарность + + + + Matthias Miller + + + + + Patches for better MacOS X support + Исправления для улучшения поддержки MacOS X + + + + www.outofhanwell.com + www.outofhanwell.com + + + + James Nicholls + + + + + Main Application Icon + Значок программы + + + + Constantin Makshin + + + + + Various fixes and improvements + + + + + dinosaur-rus@users.sourceforge.net + + + + + Error + Ошибка + + + + File '%1' could not be found. + Файл '%1' не найден. + + + + Make sure that the program is installed correctly. + Убедитесь что программа установлена корректно. + + + + OK + OK + + + + Could not open file '%1' + Невозможно открыть файл '%1' + + + + The following error occured: +%1 + + + + + http://keepassx.sf.net + http://keepassx.sf.net + + AboutDlg @@ -8,12 +160,12 @@ О программе - + License Лицензия - + Translation Перевод @@ -27,25 +179,32 @@ Copyright (C) 2005 - 2006 Tarek Saidi KeePassX is distributed under the terms of the General Public License (GPL) version 2. - Copyright (C) 2005 - 2006 Tarek Saidi + Copyright (C) 2005 - 2006 Tarek Saidi KeePassX is distributed under the terms of the General Public License (GPL) version 2. - + Credits Благодарности - + http://keepassx.sourceforge.net keepassx@gmail.com - + keepassx@gmail.com keepassx@gmail.com + + + Copyright (C) 2005 - 2006 Tarek Saidi +KeePassX is distributed under the terms of the +General Public License (GPL) version 2 or later. + + AutoType @@ -63,7 +222,7 @@ Allowed is only one per entry. Syntax Error in Auto-Type sequence near character %1 -Found '{' without closing '}' +Found '{' without closing '}' @@ -72,137 +231,106 @@ Allowed is only one per entry. KeePassX %1 - KeePassX %1 + KeePassX %1 Error - Ошибка + Ошибка File '%1' could not be found. - Файл '%1' не найден. + Файл '%1' не найден. Make sure that the program is installed correctly. - Убедитесь что программа установлена корректно. + Убедитесь что программа установлена корректно. OK - OK + OK Could not open file '%1' - Невозможно открыть файл '%1' - - - - The following error occured: -%1 - + Невозможно открыть файл '%1' <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>Current Translation: Russian</b><br><br> + <b>Current Translation: Russian</b><br><br> <b>Author:</b> %1<br> - <b>Автор:</b> %1<br> + <b>Автор:</b> %1<br> $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. - dmitry.funk@gmail.com - - - - Matthias Miller - - - - - Eugen Gorschenin - + dmitry.funk@gmail.com $TRANSLATION_AUTHOR - Дмитрий Функ + Дмитрий Функ Team - Комманда разработчиков - - - - Tarek Saidi - + Комманда разработчиков Developer, Project Admin - Разработчик, руководитель проекта - - - - tariq@users.berlios.de - + Разработчик, руководитель проекта Web Designer - Web дизайнер + Web дизайнер geugen@users.berlios.de - geugen@users.berlios.de + geugen@users.berlios.de Thanks To - Благодарность + Благодарность Patches for better MacOS X support - Исправления для улучшения поддержки MacOS X + Исправления для улучшения поддержки MacOS X www.outofhanwell.com - www.outofhanwell.com + www.outofhanwell.com Information on how to translate KeePassX can be found under: http://keepassx.sourceforge.net/ - Информацию по переводу KeePassX можно найти на: + Информацию по переводу KeePassX можно найти на: http://keepassx.sourceforge.net/ - - - James Nicholls - - Main Application Icon - Значок программы + Значок программы http://keepassx.sf.net - http://keepassx.sf.net + http://keepassx.sf.net @@ -256,24 +384,24 @@ http://keepassx.sourceforge.net/ CEditEntryDlg - + Warning Внимание - + Password and password repetition are not equal. Please check your input. Пароль и повтор пароля не эквивалентны. Проверьте введённые данные. - + OK OK - + Save Attachment... Сохранить вложение... @@ -283,7 +411,7 @@ Please check your input. Перезаписать? - + Yes Да @@ -293,7 +421,7 @@ Please check your input. Нет - + Error Ошибка @@ -308,71 +436,116 @@ Please check your input. Невозможно создать новый файл. - + Error while writing the file. Ошибка записи в файл. - + Delete Attachment? Удалить вложение? - + You are about to delete the attachment of this entry. Are you sure? - + No, Cancel Нет, Отмена Edit Entry - Изменить запись + Изменить запись - + Could not open file. Невозможно открыть файл. - + %1 Bit %1 бит - + Add Attachment... Добавить вложение... - + Test 2 - + The chosen entry has no attachment or it is empty. + + + Today + + + + + 1 Week + + + + + 2 Weeks + + + + + 3 Weeks + + + + + 1 Month + + + + + 3 Months + + + + + 6 Months + + + + + 1 Year + + + + + Calendar... + + CGenPwDialog - + Notice Предупреждение - + You need to enter at least one character Необходимо ввести более одного символа - + OK OK @@ -387,7 +560,7 @@ Are you sure? Невозможно открыть '/dev/random' или '/dev/urandom'. - + Password Generator Генератор паролей @@ -397,12 +570,12 @@ Are you sure? %1 бит - + Accept - + %1 Bits @@ -410,27 +583,27 @@ Are you sure? CPasswordDialog - + OK OK - + Error Ошибка - + Please enter a Password. Введите пароль. - + Please choose a key file. Выберите файл-ключ. - + Please enter a Password or select a key file. Введите пароль или выберите файл-ключ. @@ -440,7 +613,7 @@ Are you sure? Ключ базы паролей - + Select a Key File Выбор файл-ключа @@ -450,52 +623,52 @@ Are you sure? *.key - + The selected key file or directory does not exist. - + The given directory does not contain any key files. - + The given directory contains more then one key file. Please specify the key file directly. - + The key file found in the given directory is not readable. Please check your permissions. - + Key file could not be found. - + Key file is not readable. Please check your permissions. - + Warning Внимание - + Password an password repetition are not equal. Please check your input. Пароль и повтор пароля не эквивалентны. Проверьте введённые данные. - + Please enter a password or select a key file. Введите пароль или выберите файл-ключ. @@ -529,49 +702,49 @@ Do you want to replace it? Заменить его? - + The selected key file or directory is not readable. Please check your permissions. Выбранный файл-ключ или директория нечитаемы. Проверьте права доступа. - + All Files (*) - + Key Files (*.key) - + File exists. - + A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one? - + Use - + Overwrite - + Cancel Отмена - + Key file could not be created. %1 @@ -597,7 +770,7 @@ Please check your permissions. Search - Поиск + Поиск @@ -650,41 +823,49 @@ Please check your permissions. CSettingsDlg - + Settings Настройки - + Select a directory... Выберите директорию... - + Error: %1 + + CalendarDialog + + + Calendar + + + CollectEntropyDlg - + Entropy Collection - + Random Number Generator - + Collecting entropy... Please move the mouse and/or press some keys until enought entropy for a reseed of the random number generator is collected. - + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Verdana'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> @@ -692,115 +873,436 @@ p, li { white-space: pre-wrap; } + + CustomizeDetailViewDialog + + + Group + + + + + Title + Название + + + + Username + Имя + + + + Password + Пароль + + + + Url + + + + + Comment + Комментарий + + + + Attachment Name + + + + + Creation Date + + + + + Last Access Date + + + + + Last Modification Date + + + + + Expiration Date + + + + + Time till Expiration + + + + + Dialog + + + + + Rich Text Editor + + + + + Bold + + + + + B + + + + + Italic + + + + + I + + + + + Underlined + + + + + U + + + + + Left-Aligned + + + + + L + + + + + Centered + + + + + C + + + + + Right-Aligned + + + + + R + + + + + Justified + + + + + Text Color + + + + + Font Size + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + + 22 + + + + + 24 + + + + + 26 + + + + + 28 + + + + + 36 + + + + + 42 + + + + + 78 + + + + + Templates + + + + + T + + + + + HTML + + + + + Restore Default + + + + + Save + + + + + Cancel + Отмена + + + + DetailViewTemplate + + + Group + + + + + Title + Название + + + + Username + Имя + + + + Password + Пароль + + + + URL + Ссылка + + + + Creation + Создание + + + + Last Access + Последний доступ + + + + Last Modification + + + + + Expiration + + + + + Comment + Комментарий + + EditEntryDialog - + Edit Entry Изменить запись - + Username: Имя: - + Password Repet.: Повтор пароля: - + Title: Название: - + URL: Ссылка: - + Password: Пароль: - + Quality: Качество: - + Comment: Комментарий: - + Expires: Окончание: - + Group: Группа: &Cancel - &Отмена + &Отмена Alt+C - Alt+C + Alt+C - + %1 %1 - + Icon: Значок: - + Ge&n. &Генерация. - + ... ... O&K - O&K + O&K Alt+K - Alt+K + Alt+K - + Never Никогда - + Attachment: Вложение: - + > > - + %1 Bit %1 бит @@ -848,6 +1350,57 @@ p, li { white-space: pre-wrap; } > + + ExpiredEntriesDialog + + + Expried Entries of the Database + + + + + Expired Entries + + + + + Double click on an entry to jump to it. + + + + + Group + + + + + Title + Название + + + + Username + Имя + + + + Expired + + + + + Export_KeePassX_Xml + + + XML Files (*.xml) + + + + + All Files (*) + + + Export_Txt @@ -855,81 +1408,104 @@ p, li { white-space: pre-wrap; } Could not open file (FileError=%1) Невозможно открыть файл (FileError=%1) + + + All Files (*) + + + + + Text Files (*.txt) + + + + + ExporterBase + + + Import File... + + + + + Export Failed + + FileErrors - + No error occurred. - + An error occurred while reading from the file. - + An error occurred while writing to the file. - + A fatal error occurred. - + An resource error occurred. - + The file could not be opened. - + The operation was aborted. - + A timeout occurred. - + An unspecified error occurred. - + The file could not be removed. - + The file could not be renamed. - + The position in the file could not be changed. - + The file could not be resized. - + The file could not be accessed. - + The file could not be copied. @@ -937,27 +1513,27 @@ p, li { white-space: pre-wrap; } GenPwDlg - + Alt+U Alt+U - + Alt+N Alt+N - + Alt+M Alt+M - + Alt+L Alt+L - + Password Generator Генератор паролей @@ -972,52 +1548,52 @@ p, li { white-space: pre-wrap; } &Отмена - + Generate Генерировать - + New Password: Новый пароль: - + Quality: Качество: - + Options Опции - + &Upper Letters &Прописные буквы - + &Lower Letters &Строчные буквы - + &Numbers &Цифры - + &Special Characters &Специальные символы - + Minus Знак минуса - + U&nderline По&дчёркивание @@ -1032,17 +1608,17 @@ p, li { white-space: pre-wrap; } Alt+H - + Use &only following characters: &Только следующие символы: - + Alt+O Alt+O - + Length: Длинна: @@ -1052,85 +1628,309 @@ p, li { white-space: pre-wrap; } Использовать "/dev/rando&m" - + Use follo&wing character groups: Только следующие &группы символов: - + Alt+W Alt+W - + White &Spaces &Пробелы - + Alt+S Alt+S - + Enable entropy collection - + Collect only once per session + + Import_KWalletXml + + + XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + Invalid XML data (see stdout for details). + + + + + Invalid XML file. + Неверный файл XML. + + + + Document does not contain data. + Документ не содержит данных. + + + + Import_KeePassX_Xml + + + KeePass XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + XML parsing error on line %1 column %2: +%3 + + + + + Parsing error: File is no valid KeePassX XML file. + + + + + Import_PwManager + + + PwManager Files (*.pwm) + + + + + All Files (*) + + + + + Import Failed + + + + + File is empty. + Файл пуст. + + + + File is no valid PwManager file. + + + + + Unsupported file version. + Неподдерживаемая версия файла. + + + + Unsupported hash algorithm. + Неподдерживаемы хэш алгоритм. + + + + Unsupported encryption algorithm. + Неизвестный алгоритм шифрования. + + + + Compressed files are not supported yet. + + + + + Wrong password. + Неверный пароль. + + + + File is damaged (hash test failed). + + + + + Invalid XML data (see stdout for details). + + + + + ImporterBase + + + Import File... + + + + + Import Failed + + + + + Kdb3Database + + + Could not open file. + Невозможно открыть файл. + + + + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) + + + + + Wrong Signature + Неверная сигнатура + + + + Unsupported File Version. + Неподдерживаемая версия файла. + + + + Unknown Encryption Algorithm. + Неизвестный алгоритм шифрования. + + + + Decryption failed. +The key is wrong or the file is damaged. + Расшифровка прервана. +Ключ неверен или файл повреждён. + + + + Hash test failed. +The key is wrong or the file is damaged. + + + + + Unexpected error: Offset is out of range. [G1] + + + + + Unexpected error: Offset is out of range. [G2] + + + + + Unexpected error: Offset is out of range. [E1] + + + + + Unexpected error: Offset is out of range. [E2] + + + + + Unexpected error: Offset is out of range. [E3] + + + + + Invalid group tree. + + + + + Key file is empty. + + + + + The database must contain at least one group. + + + + + Could not open file for writing. + Невозможно открыть файл для записи. + + KeepassEntryView - + Title Название - + Username Имя - + URL Ссылка - + Password Пароль - + Comments Комментарий - + Expires Окончание - + Creation Создание - + Last Change Последнее изменение - + Last Access Последний доступ - + Attachment Вложение @@ -1139,19 +1939,49 @@ p, li { white-space: pre-wrap; } %1 items %1 пунктов + + + Are you sure you want delete this entry? + + + + + Are you sure you want delete these %1 entries? + + + + + Delete? + + + + + Group + + KeepassGroupView - + Search Results Результаты поиска - + Groups Группы + + + Delete? + + + + + Are you sure you want to delete this group, all it's child groups and all their entries? + + KeepassMainWindow @@ -1161,115 +1991,115 @@ p, li { white-space: pre-wrap; } Ctrl+N - + Ctrl+O Ctrl+O - + Ctrl+S Ctrl+S - + Ctrl+G Ctrl+G - + Ctrl+C Ctrl+C - + Ctrl+B Ctrl+B - + Ctrl+U Ctrl+U - + Ctrl+Y Ctrl+Y - + Ctrl+E Ctrl+E - + Ctrl+D Ctrl+D - + Ctrl+K Ctrl+K - + Ctrl+F Ctrl+F - + Ctrl+W Ctrl+W - + Shift+Ctrl+S Shift+Ctrl+S - + Shift+Ctrl+F Shift+Ctrl+F - + Error Ошибка - + The following error occured while opening the database: %1 - + OK OK - + Save modified file? Сохранить изменения файла? - + The current file was modified. Do you want to save the changes? Текущий файл был изменён. Хотите сохранить изменения? - + Yes Да - + No Нет - + Cancel Отмена @@ -1284,27 +2114,27 @@ to save the changes? <B>Группа: </B>%1 <B>Название: </B>%2 <B>Имя: </B>%3 <B>Ссылка: </B><a href=%4>%4</a> <B>Пароль: </B>%5 <B>Создано: </B>%6 <B>Изменено: </B>%7 <B>Доступ: </B>%8 <B>Окончание: </B>%9 - + Clone Entry Дублировать запись - + Delete Entry Удалить запись - + Clone Entries Дублировать записи - + Delete Entries Удалить записи - + File could not be saved. %1 Невозможно сохранить файл. @@ -1316,27 +2146,27 @@ to save the changes? Сохранить базу паролей как... - + Ready Готов - + [new] [новый] - + Open Database... Открыть базу паролей... - + Loading Database... Загрузка базы паролей... - + Loading Failed Ошибка загрузки @@ -1361,68 +2191,108 @@ to save the changes? Неизвестная ошибка в PwDatabase::openDatabase() - + Ctrl+V Ctrl+V - + Show Toolbar Отобразить панель инструментов - + KeePassX KeePassX - + %1 - KeePassX - + Unknown error while loading database. - + KeePass Databases (*.kdb) - + All Files (*) - - <B>Group: </B>%1 <B>Title: </B>%2 <B>Username: </B>%3 <B>URL: </B><a href=%4>%4</a> <B>Password: </B>%5 <B>Creation: </B>%6 <B>Last Change: </B>%7 <B>LastAccess: </B>%8 <B>Expires: </B>%9 - - - - + Save Database... - + KeePassX - [unsaved] - - Text Files (*.txt) + + New Database - - Export Database + + expired - - Export Failed + + 1 Month + + + + + %1 Months + + + + + , + + + + + 1 Year + + + + + %1 Years + + + + + 1 Day + + + + + %1 Days + + + + + less than 1 day + + + + + Set Master Key + + + + + * - KeePassX @@ -1434,82 +2304,82 @@ to save the changes? KeePassX - + Columns Столбцы PwManager File (*.pwm) - Файл PwManager (*.pwm) + Файл PwManager (*.pwm) KWallet XML-File (*.xml) - XML-файл KWallet (*.xml) + XML-файл KWallet (*.xml) - + Add New Group... Добавить новую группу... - + Edit Group... Изменить группу... - + Delete Group Удалить группу - + Copy Password to Clipboard Скопировать &пароль в буфер обмена - + Copy Username to Clipboard Скопировать имя в буфер обмена - + Open URL Открыть &ссылку - + Save Attachment As... Сохранить вложение как... - + Add New Entry... Добавить новую запись... - + View/Edit Entry... Просмотр/правка записи... - + Delete Entry Удалить запись - + Clone Entry Дублировать запись - + Search In Database... Поиск в базе паролей... - + Search in this group... Поиск в текущей группе... @@ -1519,87 +2389,87 @@ to save the changes? Отобразить панель инструментов - + Show Entry Details Отобразить данные записи - + Hide Usernames Скрыть имена - + Hide Passwords Скрыть пароли - + Title Название - + Username Имя - + URL Ссылка - + Password Пароль - + Comment Комментарий - + Expires Окончание - + Creation Создание - + Last Change Последнее изменение - + Last Access Последний доступ - + Attachment Вложение - + Show Statusbar Отобразить панель статуса Plain Text (*.txt) - Plain Text (*.txt) + Plain Text (*.txt) - + Hide Скрыть - + Perform AutoType Применить автоввод @@ -1609,57 +2479,57 @@ to save the changes? Ввести сюда - + Toolbar Icon Size Размер значков панели инструментов - + 16x16 16x16 - + 22x22 22x22 - + 28x28 28x28 - + &View &Вид - + &File &Файл - + &Import from... &Импортировать из... - + &Export to... &Экспортировать в... - + &Edit &Правка - + E&xtras &Дополнительно - + &Help &Справка @@ -1669,75 +2539,100 @@ to save the changes? Со&здать базу паролей... - + &Open Database... &Открыть базу паролей... - + &Close Database &Закрыть базу паролей - + &Save Database &Сохранить базу паролей - + Save Database &As... Сохранить базу паролей &как... - + &Database Settings... Н&астройки базы паролей... - + Change &Master Key... &Изменить основной пароль... - + E&xit В&ыход - + &Settings... &Настройка... - + &About... &О программе... - + &KeePassX Handbook... &Руководство "KeePassX"... - + Standard KeePass Single User Database (*.kdb) - + Advanced KeePassX Database (*.kxdb) - + New Database... - + Password Generator... + + + Group (search results only) + + + + + Show Expired Entries... + + + + + Show Expired Entries + + + + + Recycle Bin... + + + + + Lock Workspace + + PasswordDlg @@ -1862,21 +2757,15 @@ The key is wrong or the file is damaged. Warning - Внимание + Внимание - - Could not save configuration file. -Make sure you have write access to '~/.keepass'. - - - - + OK OK - + File '%1' could not be found. Файл '%1' не найден. @@ -1926,20 +2815,20 @@ Make sure you have write access to '~/.keepass'. Документ не содержит данных. - + Error Ошибка Warning: - Внимание: + Внимание: Invalid RGB color value. - Неверное значение цвета RGB. + Неверное значение цвета RGB. @@ -1948,130 +2837,138 @@ Make sure you have write access to '~/.keepass'. Никогда - + Initialization failed. - + Could not locate library file. + + SearchDialog + + + Search + Поиск + + Search_Dlg - + Alt+T Alt+T - + Alt+U Alt+U - + A&nhang - + Alt+N Alt+N - + Alt+W Alt+W - + Alt+C Alt+C - + Search... Поиск... - + Search For: Поиск: - + Regular E&xpression Регулярное &выражение - + Alt+X Alt+X - + &Case Sensitive &С учётом регистра - + Include: Включая: - + &Titles &Название - + &Usernames &Имя - + C&omments Ко&мментарий - + Alt+O Alt+O - + U&RLs &Ссылки - + Alt+R Alt+R - + Pass&words &Пароли - + Search Поиск - + Clo&se &Закрыть - + Alt+S Alt+S - + Include Subgroups (recursive) Включая подгруппы (рекурсивно) @@ -2132,12 +3029,12 @@ Make sure you have write access to '~/.keepass'. &Отмена - + Clear clipboard after: Буфер будет очищен через: - + Seconds секунд @@ -2147,47 +3044,47 @@ Make sure you have write access to '~/.keepass'. &Отображать пароли в текстовом виде по умолчанию - + Alt+O Alt+O - + Appea&rance &Внешний вид - + Banner Color Цвет банера - + Text Color: Цвет текста: - + Change... Изменить... - + Color 2: Цвет 2: - + C&hange... &Изменить - + Alt+H Alt+H - + Color 1: Цвет 1: @@ -2202,7 +3099,7 @@ Make sure you have write access to '~/.keepass'. &Другой - + Browser Command: Комманда браузера: @@ -2212,153 +3109,228 @@ Make sure you have write access to '~/.keepass'. Безопасность - + Alternating Row Colors Изменённые цвета столбцов - + Browse... Обзор... - + Remember last key type and location Запоминать последний тип и положение ключа Mounting Root: - Корень монтирования: + Корень монтирования: - + Remember last opened file Запоминать последний открытый файл - + The integration plugins provide features like usage of the native file dialogs and message boxes of the particular desktop environments. - + General - + Show system tray icon - + Minimize to tray when clicking the main window's close button - + Alt+Ö - + Save recent directories of file dialogs - - Clear - - - - - Enable bookmark menu - - - - + Group tree at start-up: - + Restore last state - + Expand all items - + Do not expand any item - + Security - + Show passwords in plain text in: - + Edit Entry Dialog - + Key Dialogs - + Desktop Integration - + Plug-Ins - + None - + Gnome Desktop Integration (Gtk 2.x) - + KDE 4 Desktop Integration - + You need to restart the program before the changes take effect. - + Configure... - + Advanced - - Verify database content and structure after saving + + Clear History Now + + + + + Always ask before deleting entries or groups + + + + + Unified Title and Toolbar + + + + + Customize Entry Detail View... + + + + + Features + + + + + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. + + + + + Bookmarks + + + + + Auto-Type Fine Tuning + + + + + Time between the activation of an auto-type action by the user and the first simulated key stroke. + + + + + ms + + + + + Pre-Gap: + + + + + Key Stroke Delay: + + + + + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. + + + + + The directory where storage devices like CDs and memory sticks are normally mounted. + + + + + Media Root: + + + + + System Default + + + + + Enable this if you want to use your bookmarks and the last opened file independet from their absolute paths. This is especially useful when using KeePassX portably and therefore with changing mount points in the file system. + + + + + Save relative paths (bookmarks and last file) @@ -2367,37 +3339,37 @@ Make sure you have write access to '~/.keepass'. O&K - O&K + O&K Alt+K - Alt+K + Alt+K Alt+C - Alt+C + Alt+C - + ... ... - + Enter your Password Введите пароль: - + Password: Пароль: &Cancel - &Отмена + &Отмена @@ -2405,85 +3377,77 @@ Make sure you have write access to '~/.keepass'. Could not open file. - Невозможно открыть файл. - - - - Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) - + Невозможно открыть файл. Wrong Signature - Неверная сигнатура + Неверная сигнатура Unsupported File Version. - Неподдерживаемая версия файла. + Неподдерживаемая версия файла. Unknown Encryption Algorithm. - Неизвестный алгоритм шифрования. + Неизвестный алгоритм шифрования. Decryption failed. The key is wrong or the file is damaged. - Расшифровка прервана. + Расшифровка прервана. Ключ неверен или файл повреждён. - - - Hash test failed. -The key is wrong or the file is damaged. - - - - - Unexpected error: Offset is out of range. [G1] - - - - - Unexpected error: Offset is out of range. [G2] - - - - - Unexpected error: Offset is out of range. [E1] - - - - - Unexpected error: Offset is out of range. [E2] - - - - - Unexpected error: Offset is out of range. [E3] - - - - - Invalid group tree. - - - - - Key file is empty. - - - - - The database must contain at least one group. - - Could not open file for writing. - Невозможно открыть файл для записи. + Невозможно открыть файл для записи. + + + + TrashCanDialog + + + Recycle Bin + + + + + Double click on an entry to restore it. + + + + + Group + + + + + Title + Название + + + + Username + Имя + + + + Expired + + + + + Empty Recycle Bin + + + + + Close + diff --git a/src/translations/keepass-xx_XX.ts b/src/translations/keepass-xx_XX.ts index c60509d..0a0680f 100644 --- a/src/translations/keepass-xx_XX.ts +++ b/src/translations/keepass-xx_XX.ts @@ -1,108 +1,12 @@ - AboutDlg - - - About - - - - - License - - - - - Translation - - - - - <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:Sans Serif; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600;">KeePassX</span> - Cross Platform Password Manager</p></body></html> - - - - - Copyright (C) 2005 - 2006 Tarek Saidi -KeePassX is distributed under the terms of the -General Public License (GPL) version 2. - - - - - Credits - - - - - http://keepassx.sourceforge.net - - - - - keepassx@gmail.com - - - - - AutoType - - - More than one 'Auto-Type:' key sequence found. -Allowed is only one per entry. - - - - - Syntax Error in Auto-Type sequence near character %1 -Found '{' without closing '}' - - - - - Error - - - - - CAboutDialog + AboutDialog KeePassX %1 - - - Error - - - - - File '%1' could not be found. - - - - - Make sure that the program is installed correctly. - - - - - OK - - - - - Could not open file '%1' - - - - - The following error occured: -%1 - - <b>Current Translation: None</b><br><br> @@ -114,6 +18,11 @@ Allowed is only one per entry. <b>Author:</b> %1<br> + + + $TRANSLATION_AUTHOR + + $TRANSLATION_AUTHOR_EMAIL @@ -121,18 +30,9 @@ Allowed is only one per entry. - - Matthias Miller - - - - - Eugen Gorschenin - - - - - $TRANSLATION_AUTHOR + + Information on how to translate KeePassX can be found under: +http://keepassx.sourceforge.net/ @@ -155,6 +55,11 @@ Allowed is only one per entry. tariq@users.berlios.de + + + Eugen Gorschenin + + Web Designer @@ -170,6 +75,11 @@ Allowed is only one per entry. Thanks To + + + Matthias Miller + + Patches for better MacOS X support @@ -180,12 +90,6 @@ Allowed is only one per entry. www.outofhanwell.com - - - Information on how to translate KeePassX can be found under: -http://keepassx.sourceforge.net/ - - James Nicholls @@ -197,11 +101,125 @@ http://keepassx.sourceforge.net/ - + + Constantin Makshin + + + + + Various fixes and improvements + + + + + dinosaur-rus@users.sourceforge.net + + + + + Error + + + + + File '%1' could not be found. + + + + + Make sure that the program is installed correctly. + + + + + OK + + + + + Could not open file '%1' + + + + + The following error occured: +%1 + + + + http://keepassx.sf.net + + AboutDlg + + + About + + + + + License + + + + + Translation + + + + + <html><head><meta name="qrichtext" content="1" /></head><body style=" white-space: pre-wrap; font-family:Sans Serif; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:12pt; font-weight:600;">KeePassX</span> - Cross Platform Password Manager</p></body></html> + + + + + Credits + + + + + http://keepassx.sourceforge.net + + + + + keepassx@gmail.com + + + + + Copyright (C) 2005 - 2006 Tarek Saidi +KeePassX is distributed under the terms of the +General Public License (GPL) version 2 or later. + + + + + AutoType + + + More than one 'Auto-Type:' key sequence found. +Allowed is only one per entry. + + + + + Error + + + + + Syntax Error in Auto-Type sequence near character %1 +Found '{' without closing '}' + + + + + CAboutDialog + CDbSettingsDlg @@ -253,117 +271,157 @@ http://keepassx.sourceforge.net/ CEditEntryDlg - + Warning - + Password and password repetition are not equal. Please check your input. - + OK - + Save Attachment... - + Yes - + Error - + Error while writing the file. - + Delete Attachment? - + You are about to delete the attachment of this entry. Are you sure? - + No, Cancel - - Edit Entry - - - - + Could not open file. - + %1 Bit - + Add Attachment... - + Test 2 - + The chosen entry has no attachment or it is empty. + + + Today + + + + + 1 Week + + + + + 2 Weeks + + + + + 3 Weeks + + + + + 1 Month + + + + + 3 Months + + + + + 6 Months + + + + + 1 Year + + + + + Calendar... + + CGenPwDialog - + Notice - + You need to enter at least one character - + OK - + Password Generator - + Accept - + %1 Bits @@ -371,27 +429,27 @@ Are you sure? CPasswordDialog - + OK - + Error - + Please enter a Password. - + Please choose a key file. - + Please enter a Password or select a key file. @@ -401,102 +459,102 @@ Are you sure? - + Select a Key File - + The selected key file or directory does not exist. - + The given directory does not contain any key files. - + The given directory contains more then one key file. Please specify the key file directly. - + The key file found in the given directory is not readable. Please check your permissions. - + Key file could not be found. - + Key file is not readable. Please check your permissions. - + Warning - + Password an password repetition are not equal. Please check your input. - + Please enter a password or select a key file. - + The selected key file or directory is not readable. Please check your permissions. - + All Files (*) - + Key Files (*.key) - + File exists. - + A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one? - + Use - + Overwrite - + Cancel - + Key file could not be created. %1 @@ -504,11 +562,6 @@ Please check your permissions. CSearchDlg - - - Search - - CSelectIconDlg @@ -558,41 +611,49 @@ Please check your permissions. CSettingsDlg - + Settings - + Select a directory... - + Error: %1 + + CalendarDialog + + + Calendar + + + CollectEntropyDlg - + Entropy Collection - + Random Number Generator - + Collecting entropy... Please move the mouse and/or press some keys until enought entropy for a reseed of the random number generator is collected. - + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Verdana'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> @@ -600,115 +661,416 @@ p, li { white-space: pre-wrap; } + + CustomizeDetailViewDialog + + + Group + + + + + Title + + + + + Username + + + + + Password + + + + + Url + + + + + Comment + + + + + Attachment Name + + + + + Creation Date + + + + + Last Access Date + + + + + Last Modification Date + + + + + Expiration Date + + + + + Time till Expiration + + + + + Dialog + + + + + Rich Text Editor + + + + + Bold + + + + + B + + + + + Italic + + + + + I + + + + + Underlined + + + + + U + + + + + Left-Aligned + + + + + L + + + + + Centered + + + + + C + + + + + Right-Aligned + + + + + R + + + + + Justified + + + + + Text Color + + + + + Font Size + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 14 + + + + + 16 + + + + + 18 + + + + + 20 + + + + + 22 + + + + + 24 + + + + + 26 + + + + + 28 + + + + + 36 + + + + + 42 + + + + + 78 + + + + + Templates + + + + + T + + + + + HTML + + + + + Restore Default + + + + + Save + + + + + Cancel + + + + + DetailViewTemplate + + + Group + + + + + Title + + + + + Username + + + + + Password + + + + + URL + + + + + Creation + + + + + Last Access + + + + + Last Modification + + + + + Expiration + + + + + Comment + + + EditEntryDialog - + Edit Entry - + Username: - + Password Repet.: - + Title: - + URL: - + Password: - + Quality: - + Comment: - + Expires: - + Group: - - &Cancel - - - - - Alt+C - - - - + %1 - + Icon: - + Ge&n. - + ... - - O&K - - - - - Alt+K - - - - + Never - + Attachment: - + > - + %1 Bit @@ -756,80 +1118,157 @@ p, li { white-space: pre-wrap; } + + ExpiredEntriesDialog + + + Expried Entries of the Database + + + + + Expired Entries + + + + + Double click on an entry to jump to it. + + + + + Group + + + + + Title + + + + + Username + + + + + Expired + + + + + Export_KeePassX_Xml + + + XML Files (*.xml) + + + + + All Files (*) + + + + + Export_Txt + + + All Files (*) + + + + + Text Files (*.txt) + + + + + ExporterBase + + + Import File... + + + + + Export Failed + + + FileErrors - + No error occurred. - + An error occurred while reading from the file. - + An error occurred while writing to the file. - + A fatal error occurred. - + An resource error occurred. - + The file could not be opened. - + The operation was aborted. - + A timeout occurred. - + An unspecified error occurred. - + The file could not be removed. - + The file could not be renamed. - + The position in the file could not be changed. - + The file could not be resized. - + The file could not be accessed. - + The file could not be copied. @@ -837,420 +1276,713 @@ p, li { white-space: pre-wrap; } GenPwDlg - + Alt+U - + Alt+N - + Alt+M - + Alt+L - + Password Generator - + Generate - + New Password: - + Quality: - + Options - + &Upper Letters - + &Lower Letters - + &Numbers - + &Special Characters - + Minus - + U&nderline - + Use &only following characters: - + Alt+O - + Length: - + Use follo&wing character groups: - + Alt+W - + White &Spaces - + Alt+S - + Enable entropy collection - + Collect only once per session + + Import_KWalletXml + + + XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + Invalid XML data (see stdout for details). + + + + + Invalid XML file. + + + + + Document does not contain data. + + + + + Import_KeePassX_Xml + + + KeePass XML Files (*.xml) + + + + + All Files (*) + + + + + Import Failed + + + + + XML parsing error on line %1 column %2: +%3 + + + + + Parsing error: File is no valid KeePassX XML file. + + + + + Import_PwManager + + + PwManager Files (*.pwm) + + + + + All Files (*) + + + + + Import Failed + + + + + File is empty. + + + + + File is no valid PwManager file. + + + + + Unsupported file version. + + + + + Unsupported hash algorithm. + + + + + Unsupported encryption algorithm. + + + + + Compressed files are not supported yet. + + + + + Wrong password. + + + + + File is damaged (hash test failed). + + + + + Invalid XML data (see stdout for details). + + + + + ImporterBase + + + Import File... + + + + + Import Failed + + + + + Kdb3Database + + + Could not open file. + + + + + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) + + + + + Wrong Signature + + + + + Unsupported File Version. + + + + + Unknown Encryption Algorithm. + + + + + Decryption failed. +The key is wrong or the file is damaged. + + + + + Hash test failed. +The key is wrong or the file is damaged. + + + + + Unexpected error: Offset is out of range. [G1] + + + + + Unexpected error: Offset is out of range. [G2] + + + + + Unexpected error: Offset is out of range. [E1] + + + + + Unexpected error: Offset is out of range. [E2] + + + + + Unexpected error: Offset is out of range. [E3] + + + + + Invalid group tree. + + + + + Key file is empty. + + + + + The database must contain at least one group. + + + + + Could not open file for writing. + + + KeepassEntryView - + Title - + Username - + URL - + Password - + Comments - + Expires - + Creation - + Last Change - + Last Access - + Attachment + + + Are you sure you want delete this entry? + + + + + Are you sure you want delete these %1 entries? + + + + + Delete? + + + + + Group + + KeepassGroupView - + Search Results - + Groups + + + Delete? + + + + + Are you sure you want to delete this group, all it's child groups and all their entries? + + KeepassMainWindow - + Ctrl+O - + Ctrl+S - + Ctrl+G - + Ctrl+C - + Ctrl+B - + Ctrl+U - + Ctrl+Y - + Ctrl+E - + Ctrl+D - + Ctrl+K - + Ctrl+F - + Ctrl+W - + Shift+Ctrl+S - + Shift+Ctrl+F - + Error - + The following error occured while opening the database: %1 - + OK - + Save modified file? - + The current file was modified. Do you want to save the changes? - + Yes - + No - + Cancel - + Clone Entry - + Delete Entry - + Clone Entries - + Delete Entries - + File could not be saved. %1 - + Ready - + [new] - + Open Database... - + Loading Database... - + Loading Failed - + Ctrl+V - + Show Toolbar - + KeePassX - + %1 - KeePassX - + Unknown error while loading database. - + KeePass Databases (*.kdb) - + All Files (*) - - <B>Group: </B>%1 <B>Title: </B>%2 <B>Username: </B>%3 <B>URL: </B><a href=%4>%4</a> <B>Password: </B>%5 <B>Creation: </B>%6 <B>Last Change: </B>%7 <B>LastAccess: </B>%8 <B>Expires: </B>%9 - - - - + Save Database... - + KeePassX - [unsaved] - - Text Files (*.txt) + + New Database - - Export Database + + expired - - Export Failed + + 1 Month + + + + + %1 Months + + + + + , + + + + + 1 Year + + + + + %1 Years + + + + + 1 Day + + + + + %1 Days + + + + + less than 1 day + + + + + Set Master Key + + + + + * - KeePassX @@ -1262,295 +1994,305 @@ to save the changes? - + Columns - - PwManager File (*.pwm) - - - - - KWallet XML-File (*.xml) - - - - + Add New Group... - + Edit Group... - + Delete Group - + Copy Password to Clipboard - + Copy Username to Clipboard - + Open URL - + Save Attachment As... - + Add New Entry... - + View/Edit Entry... - + Delete Entry - + Clone Entry - + Search In Database... - + Search in this group... - + Show Entry Details - + Hide Usernames - + Hide Passwords - + Title - + Username - + URL - + Password - + Comment - + Expires - + Creation - + Last Change - + Last Access - + Attachment - + Show Statusbar - - Plain Text (*.txt) - - - - + Hide - + Perform AutoType - + Toolbar Icon Size - + 16x16 - + 22x22 - + 28x28 - + &View - + &File - + &Import from... - + &Export to... - + &Edit - + E&xtras - + &Help - + &Open Database... - + &Close Database - + &Save Database - + Save Database &As... - + &Database Settings... - + Change &Master Key... - + E&xit - + &Settings... - + &About... - + &KeePassX Handbook... - + Standard KeePass Single User Database (*.kdb) - + Advanced KeePassX Database (*.kxdb) - + New Database... - + Password Generator... + + + Group (search results only) + + + + + Show Expired Entries... + + + + + Show Expired Entries + + + + + Recycle Bin... + + + + + Lock Workspace + + PasswordDlg @@ -1623,172 +2365,158 @@ to save the changes? QObject - - Warning - - - - - Could not save configuration file. -Make sure you have write access to '~/.keepass'. - - - - + OK - + File '%1' could not be found. - + Error - - - Warning: - - - - - Invalid RGB color value. - - - Never - + Initialization failed. - + Could not locate library file. + + SearchDialog + + + Search + + + Search_Dlg - + Alt+T - + Alt+U - + A&nhang - + Alt+N - + Alt+W - + Alt+C - + Search... - + Search For: - + Regular E&xpression - + Alt+X - + &Case Sensitive - + Include: - + &Titles - + &Usernames - + C&omments - + Alt+O - + U&RLs - + Alt+R - + Pass&words - + Search - + Clo&se - + Alt+S - + Include Subgroups (recursive) @@ -1819,7 +2547,7 @@ Make sure you have write access to '~/.keepass'. SettingsDialog - + Alt+Ö @@ -1829,331 +2557,342 @@ Make sure you have write access to '~/.keepass'. - + Clear clipboard after: - + Seconds - + Alt+O - + Appea&rance - + Banner Color - + Text Color: - + Change... - + Color 2: - + C&hange... - + Alt+H - + Color 1: - + Browser Command: - + Alternating Row Colors - + Browse... - + Remember last key type and location - - Mounting Root: - - - - + Remember last opened file - + The integration plugins provide features like usage of the native file dialogs and message boxes of the particular desktop environments. - + General - + Show system tray icon - + Minimize to tray when clicking the main window's close button - + Save recent directories of file dialogs - - Clear - - - - - Enable bookmark menu - - - - + Group tree at start-up: - + Restore last state - + Expand all items - + Do not expand any item - + Security - + Show passwords in plain text in: - + Edit Entry Dialog - + Key Dialogs - + Desktop Integration - + Plug-Ins - + None - + Gnome Desktop Integration (Gtk 2.x) - + KDE 4 Desktop Integration - + You need to restart the program before the changes take effect. - + Configure... - + Advanced - - Verify database content and structure after saving + + Clear History Now + + + + + Always ask before deleting entries or groups + + + + + Unified Title and Toolbar + + + + + Customize Entry Detail View... + + + + + Features + + + + + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. + + + + + Bookmarks + + + + + Auto-Type Fine Tuning + + + + + Time between the activation of an auto-type action by the user and the first simulated key stroke. + + + + + ms + + + + + Pre-Gap: + + + + + Key Stroke Delay: + + + + + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. + + + + + The directory where storage devices like CDs and memory sticks are normally mounted. + + + + + Media Root: + + + + + System Default + + + + + Enable this if you want to use your bookmarks and the last opened file independet from their absolute paths. This is especially useful when using KeePassX portably and therefore with changing mount points in the file system. + + + + + Save relative paths (bookmarks and last file) SimplePasswordDialog - - O&K - - - - - Alt+K - - - - - Alt+C - - - - + ... - + Enter your Password - + Password: - - - &Cancel - - StandardDatabase + + + TrashCanDialog - - Could not open file. + + Recycle Bin - - Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) + + Double click on an entry to restore it. - - Wrong Signature + + Group - - Unsupported File Version. + + Title - - Unknown Encryption Algorithm. + + Username - - Decryption failed. -The key is wrong or the file is damaged. + + Expired - - Hash test failed. -The key is wrong or the file is damaged. + + Empty Recycle Bin - - Unexpected error: Offset is out of range. [G1] - - - - - Unexpected error: Offset is out of range. [G2] - - - - - Unexpected error: Offset is out of range. [E1] - - - - - Unexpected error: Offset is out of range. [E2] - - - - - Unexpected error: Offset is out of range. [E3] - - - - - Invalid group tree. - - - - - Key file is empty. - - - - - The database must contain at least one group. - - - - - Could not open file for writing. + + Close