\ 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;i*keys.size()*/count;i++){
Entry entry;
- QStringList value=config->fileDlgHistory(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
-
+ LicenseLicence
-
+ TranslationPř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.
-
+ CreditsPoděkování
-
+ http://keepassx.sourceforge.nethttp://keepassx.sourceforge.net
-
+ keepassx@gmail.comkeepassx@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.ErrorChyba
+
+
+ Syntax Error in Auto-Type sequence near character %1
+Found '{' without closing '}'
+
+ CAboutDialogKeePassX %1
- KeePassX %1
+ KeePassX %1Error
- Chyba
+ ChybaFile '%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
+ OKCould 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_EMAILHere 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 MillerEugen Gorschenin
- Eugen Gorschenin
+ Eugen Gorschenin$TRANSLATION_AUTHOR
- Marek Straka
+ Marek StrakaTeam
- Vývojová skupina
+ Vývojová skupinaTarek Saidi
- Tarek Saidi
+ Tarek SaidiDeveloper, Project Admin
- Vývojář, vedoucí projektu
+ Vývojář, vedoucí projektutariq@users.berlios.de
- tariq@users.berlios.de
+ tariq@users.berlios.deWeb Designer
- Webový designér
+ Webový designérgeugen@users.berlios.de
- geugen@users.berlios.de
+ geugen@users.berlios.deThanks To
- Poděkování
+ PoděkováníPatches for better MacOS X support
- Patches pro lepší MacOS X podporu
+ Patches pro lepší MacOS X podporuwww.outofhanwell.com
- www.outofhanwell.com
+ www.outofhanwell.comInformation 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 NichollsMain Application Icon
- Hlavní ikonka aplikace
+ Hlavní ikonka aplikacehttp://keepassx.sf.net
- http://keepassx.sf.net
+ http://keepassx.sf.net
@@ -259,24 +425,24 @@ http://keepassx.sourceforge.net/
CEditEntryDlg
-
+ WarningUpozornění
-
+ Password and password repetition are not equal.
Please check your input.Heslo a opakované heslo nejsou stejné
Prosím zkontrolujte zadané údaje.
-
+ OKOK
-
+ Save Attachment...Uložit přílohu...
@@ -293,7 +459,7 @@ Do you want to replace it?
Chcete ho přepsat?
-
+ YesAno
@@ -303,7 +469,7 @@ Chcete ho přepsat?
Ne
-
+ ErrorChyba
@@ -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, CancelNe, zrušitEdit 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
-
+ NoticePoznámka
-
+ You need to enter at least one characterJe nutné vložit minimálně jeden znak
-
+ OKOK
@@ -398,7 +609,7 @@ Jste si tím jistí?
Nelze otevřít '/dev/random' nebo '/dev/urandom'.
-
+ Password GeneratorGenerá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
-
+ OKOK
-
+ ErrorChyba
-
+ 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 FileVyberte 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.
-
+ WarningUpozorně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
-
+ CancelZruš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
-
+ SettingsNastavení
-
+ 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šitAlt+C
- Alt+C
+ Alt+C
-
+ %1%1
-
+ Icon:Ikonka:
-
+ Ge&n.Ge&n.
-
+ ......O&K
- O&K
+ O&KAlt+K
- Alt+K
+ Alt+K
-
+ NeverNikdy
-
+ 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+UAlt+U
-
+ Alt+NAlt+N
-
+ Alt+MAlt+M
-
+ Alt+LAlt+L
-
+ Password GeneratorGenerátor hesla
@@ -991,52 +1605,52 @@ p, li { white-space: pre-wrap; }
&zrušit
-
+ GenerateVygenerovat
-
+ New Password:Nové heslo:
-
+ Quality:Kvalita:
-
+ OptionsVolby
-
+ &Upper Letters&Velká písmena
-
+ &Lower Letters&Malá písmena
-
+ &NumbersČís&la
-
+ &Special Characters&Zvláštní znaky
-
+ MinusMinus
-
+ U&nderlinePo&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+OAlt+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+WAlt+W
-
+ White &SpacesMe&zery
-
+ Alt+SAlt+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
-
+ TitleNázev
-
+ UsernameUživatelské jméno
-
+ URLURL
-
+ PasswordHeslo
-
+ CommentsKomentáře
-
+ ExpiresVyprší
-
+ CreationVytvoření
-
+ Last ChangePoslední změna
-
+ Last AccessPoslední přístup
-
+ AttachmentPří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 ResultsVýsledky hledání
-
+ GroupsSkupiny
+
+
+ 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+OCtrl+O
-
+ Ctrl+SCtrl+S
-
+ Ctrl+GCtrl+G
-
+ Ctrl+CCtrl+C
-
+ Ctrl+BCtrl+B
-
+ Ctrl+UCtrl+U
-
+ Ctrl+YCtrl+Y
-
+ Ctrl+ECtrl+E
-
+ Ctrl+DCtrl+D
-
+ Ctrl+KCtrl+K
-
+ Ctrl+FCtrl+F
-
+ Ctrl+WCtrl+W
-
+ Shift+Ctrl+SShift+Ctrl+S
-
+ Shift+Ctrl+FShift+Ctrl+F
-
+ ErrorChyba
-
+ The following error occured while opening the database:
%1Při otevírání databáze se objevila následující chyba:
%1
-
+ OKOK
-
+ 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?
-
+ YesAno
-
+ NoNe
-
+ CancelZruš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 EntryNaklonovat záznam
-
+ Delete EntrySmazat záznam
-
+ Clone EntriesNaklonovat záznamy
-
+ Delete EntriesSmazat záznamy
-
+ File could not be saved.
%1Soubor nemohl být uložen.
@@ -1336,27 +2205,27 @@ změny uloženy? Uložit databázi jako ...
-
+ ReadyPřipraveno
-
+ [new][nový]
-
+ Open Database...Otevřít databázi ...
-
+ Loading Database...Otevírání databáze ...
-
+ Loading FailedOtevření selhalo
@@ -1393,68 +2262,108 @@ změny uloženy?
Neznámá chyba v PwDatabase::openDatabase()
-
+ Ctrl+VCtrl+V
-
+ Show ToolbarPanel nástrojů
-
+ KeePassXKeePassX
-
+ %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
-
+ ColumnsSloupečkyPwManager 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 GroupSmazat skupinu
-
+ Copy Password to ClipboardZkopírovat heslo do schránky
-
+ Copy Username to ClipboardZkopírovat uživatelské jméno do schránky
-
+ Open URLOtevří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 EntrySmazat položku
-
+ Clone EntryNaklonovat 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 DetailsDetaily položky
-
+ Hide UsernamesSkrýt uživatelská jména
-
+ Hide PasswordsSkrýt hesla
-
+ TitleNázev
-
+ UsernameUživatel
-
+ URLURL
-
+ PasswordHeslo
-
+ CommentKomentář
-
+ ExpiresPlatnost
-
+ CreationVytvoření
-
+ Last ChangePoslední změna
-
+ Last AccessPoslední přístup
-
+ AttachmentPříloha
-
+ Show StatusbarStavový řádekPlain Text (*.txt)
- Jednoduchého textu (*.txt)
+ Jednoduchého textu (*.txt)
-
+ HideSkrýt
-
+ Perform AutoTypeProvádět autodoplňování
@@ -1641,57 +2550,57 @@ změny uloženy?
Psát zde
-
+ Toolbar Icon SizeVelikost ikonek na panelu nástrojů
-
+ 16x1616x16
-
+ 22x2222x22
-
+ 28x2828x28
-
+ &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 DatabaseZa&vřít databázi
-
+ &Save DatabaseUlož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&xitUk&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'.
-
+ OKOK
-
+ 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.
-
+ ErrorChybaWarning:
- 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+TAlt+T
-
+ Alt+UAlt+U
-
+ A&nhangPřílo&ha
-
+ Alt+NAlt+N
-
+ Alt+WAlt+W
-
+ Alt+CAlt+C
-
+ Search...Hledat...
-
+ Search For:Vyhledat:
-
+ Regular E&xpressionRegulární &výraz
-
+ Alt+XAlt+X
-
+ &Case SensitiveS &ohledem na velikost písmene
-
+ Include:Vložit:
-
+ &Titles&Názvy
-
+ &UsernamesUživatelská &jména
-
+ C&ommentsKo&mentáře
-
+ Alt+OAlt+O
-
+ U&RLsU&RLs
-
+ Alt+RAlt+R
-
+ Pass&wordsHe&sla
-
+ SearchHledat
-
+ Clo&seU&zavřít
-
+ Alt+SAlt+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:
-
+ SecondsSekundá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+OAlt+O
-
+ Appea&ranceZo&brazení
-
+ Banner ColorBarva banneru
-
+ Text Color:Barva textu:
-
+ Change...Změnit...
-
+ Color 2:Barva 2:
-
+ C&hange...Z&měnit...
-
+ Alt+HAlt+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 ColorsStřídavě barevné podklady řádků
-
+ Browse...Projít...
-
+ Remember last key type and locationZapamatovat naposledy napsaný klíč a umístěníMounting Root:
- Mountovat jako Root:
+ Mountovat jako Root:
-
+ Remember last opened fileZapamatovat 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&KAlt+K
- Alt+K
+ Alt+KAlt+C
- Alt+C
+ Alt+C
-
+ ......
-
+ Enter your PasswordVložit heslo
-
+ Password:Heslo:&Cancel
- &Zrušit
+ &ZrušitStandardDatabase
-
-
- 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ý podpisUnsupported 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
-
+ LicenseLizenz
-
+ 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.ErrorFehler
+
+
+ Syntax Error in Auto-Type sequence near character %1
+Found '{' without closing '}'
+
+ CAboutDialogKeePassX %1
- KeePassX %1
+ KeePassX %1Error
- Fehler
+ FehlerFile '%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
+ OKCould 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_EMAILHere 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 Millerhttp://www.outofhanwell.com/<br>Mac OS X Supporthttp://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
-
+ TeamDeveloper, Project Admin
- Entwickler und Projektadministrator
-
-
-
- tariq@users.berlios.de
-
-
-
-
- Web Designer
-
-
-
-
- geugen@users.berlios.de
-
+ Entwickler und ProjektadministratorThanks To
- Dank An
+ Dank AnPatches 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ützungMain Application Icon
- Anwendungssymbol
-
-
-
- http://keepassx.sf.net
-
+ Anwendungssymbol
@@ -310,24 +430,24 @@ http://keepassx.sourceforge.net/
CEditEntryDlg
-
+ WarningWarnung
-
+ Password and password repetition are not equal.
Please check your input.Passwort und Passwortwiederholung stimmen nicht überein.
Bitte prüfen Sie Ihre Eingabe.
-
+ OKOK
-
+ Save Attachment...Anhang Speichern...
@@ -344,7 +464,7 @@ Do you want to replace it?
Möchten Sie diese ersetzen.
-
+ YesJa
@@ -354,7 +474,7 @@ Möchten Sie diese ersetzen.
Nein
-
+ ErrorFehler
@@ -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, CancelNein, AbbrechenEdit 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
-
+ NoticeHinweis
-
+ You need to enter at least one characterSie müssen mindestens ein Zeichen angeben.
-
+ OKOK
@@ -449,17 +614,17 @@ Sind Sie sicher?
'/dev/random' oder '/dev/urandom' konnte nicht geöffnet werden.
-
+ Password GeneratorPasswortgenerator
-
+ Accept
-
+ %1 Bits
@@ -467,27 +632,27 @@ Sind Sie sicher?
CPasswordDialog
-
+ OKOK
-
+ ErrorFehler
-
+ 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 FileSchlü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.
-
+ WarningWarnung
-
+ 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
-
+ CancelAbbrechen
-
+ 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
-
+ SettingsEinstellungen
-
+ 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 EntryEintrag 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
+ &AbbrechenAlt+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&KAlt+K
- Alt+K
+ Alt+K
-
+ NeverNie
-
+ 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 GeneratorPasswortgenerator
@@ -1043,52 +1611,52 @@ p, li { white-space: pre-wrap; }
Abbre&chen
-
+ GenerateGenerieren
-
+ New Password:Neues Passwort:
-
+ Quality:Qualität:
-
+ OptionsOptionen
-
+ &Upper LettersGroßbuchstaben:
-
+ &Lower LettersKleinbuchstaben:
-
+ &NumbersZahlen
-
+ &Special CharactersSonderzeichen
-
+ MinusMinus
-
+ U&nderlineUnterstrich
@@ -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 &SpacesLeerzeichen
-
+ 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
-
+ TitleTitel
-
+ UsernameBenutzername
-
+ URLURL
-
+ PasswordPasswort
-
+ CommentsKommentar
-
+ ExpiresLäuft ab
-
+ CreationErstellung
-
+ Last ChangeLetzte Änderung
-
+ Last AccessLetzter Zugriff
-
+ AttachmentAnhang
@@ -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 ResultsSuchergebnisse
-
+ GroupsGruppen
+
+
+ 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
-
+ ErrorFehler
-
+ The following error occured while opening the database:
%1Beim Öffnen der Datenbank ist folgender Fehler aufgetreten:
%1
-
+ OKOK
-
+ 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?
-
+ YesJa
-
+ NoNein
-
+ CancelAbbrechen
@@ -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 EntryEintrag duplizieren
-
+ Delete EntryEintrag löschen
-
+ Clone EntriesEinträge duplizieren
-
+ Delete EntriesEinträge löschen
-
+ File could not be saved.
%1Datei konnte nicht gespeichert werden.
@@ -1373,27 +2196,27 @@ die Änderungen speichern?Datenbank speichern unter...
-
+ ReadyBereit
-
+ [new][neu]
-
+ Open Database...Datenbank öffnen...
-
+ Loading Database...Lade Datenbank...
-
+ Loading FailedLaden fehlgeschlagen
@@ -1430,68 +2253,108 @@ die Änderungen speichern?
Unbekannter Fehler in PwDatabase::openDatabase()
-
+ Ctrl+V
-
+ Show ToolbarWerkzeugleiste anzeigen
-
+ KeePassXKeePassX
-
+ %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
-
+ ColumnsSpalten
@@ -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 GroupGruppe löschen
-
+ Copy Password to ClipboardPasswort in Zwischenablage kopieren
-
+ Copy Username to ClipboardBenutzername in Zwischenablage kopieren
-
+ Open URLURL öffnen
-
+ Save Attachment As...Anhang speichern unter...
-
+ Add New Entry...Neuen Eintrag hinzufügen...
-
+ View/Edit Entry...Eintrag anzeigen/bearbeiten...
-
+ Delete EntryEintrag löschen
-
+ Clone EntryEintrag 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 DetailsEintragsdetails anzeigen
-
+ Hide UsernamesBenutzernamen verbergen
-
+ Hide PasswordsPasswörter verbergen
-
+ TitleTitel
-
+ UsernameBenutzername
-
+ URLURL
-
+ PasswordPasswort
-
+ CommentKommentar
-
+ ExpiresLäuft ab
-
+ CreationErstellung
-
+ Last ChangeLetzte Änderung
-
+ Last AccessLetzter Zugriff
-
+ AttachmentAnhang
@@ -1733,7 +2596,7 @@ die Änderungen speichern?
Bearbeiten
-
+ Show StatusbarStatusleiste anzeigen
@@ -1750,15 +2613,15 @@ die Änderungen speichern?
Plain Text (*.txt)
- Klartext (*.txt)
+ Klartext (*.txt)
-
+ HideVerbergen
-
+ Perform AutoTypeAutoType ausführen
@@ -1768,57 +2631,57 @@ die Änderungen speichern?
Type Here
-
+ Toolbar Icon SizeSymbolleistengröße
-
+ 16x16
-
+ 22x22
-
+ 28x28
-
+ &ViewAnsicht
-
+ &File&Datei
-
+ &Import from...&Importieren aus...
-
+ &Export to...&Exportieren nach...
-
+ &Edit&Bearbeiten
-
+ E&xtrasE&xtras
-
+ &Help&Hilfe
@@ -1828,70 +2691,95 @@ die Änderungen speichern?
&Neue Datenbank...
-
+ &Open Database...Datenbank &öffnen...
-
+ &Close DatabaseDatenbank s&chließen
-
+ &Save DatabaseDatenbank &speichern
-
+ Save Database &As...D&atenbank speichern unter...
-
+ &Database Settings...&Datenbankeinstellungen...
-
+ Change &Master Key...Hauptschlüssel &ändern...
-
+ E&xitBeend&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
+ WarnungCould 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.
-
+ OKOK
-
+ 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.
-
+ ErrorFehlerWarning:
- 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&xpressionregulärer Ausdruck
-
+ Alt+X
-
+ &Case SensitiveGroß- und Kleinschreibung beachten
-
+ Include:Einbeziehen:
-
+ &TitlesTitel
-
+ &UsernamesBenutzernamen
-
+ C&ommentsKommentare
-
+ Alt+O
-
+ U&RLsURLs
-
+ Alt+R
-
+ Pass&wordsPasswörter
-
+ SearchSuchen
-
+ Clo&seSchließ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:
-
+ SecondsSekunden
@@ -2333,47 +3229,47 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Passwort standardmäßig im Klartext anzeigen
-
+ Alt+O
-
+ Appea&ranceErscheinungsbild
-
+ Banner ColorBannerfarbe
-
+ 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 ColorsAbwechselnde Zeilenfarben
-
+ Browse...Durchsuchen...
-
+ Remember last key type and locationArt und Ort des Schlüssels der letzten Datenbank merkenMounting Root:
- Datenträgerwurzelverzeichnis:
+ Datenträgerwurzelverzeichnis:
-
+ Remember last opened fileZuletzt 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 SignaturUnsupported 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
+ AboutDialogKeePassX %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_EMAILHere 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 ToAgradecimientos
+
+
+ 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
-
+ WarningAviso
-
+ Password and password repetition are not equal.
Please check your input.Las contraseñas no coinciden.
Compruebe que las ha introducido correctamente.
-
+ OKAceptar
-
+ Save Attachment...Guardar Adjunto...
@@ -318,7 +395,7 @@ Do you want to replace it?
¿Desea reemplazarlo?
-
+ YesSí
@@ -328,7 +405,7 @@ Do you want to replace it?
No
-
+ ErrorError
@@ -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, CancelNo, CancelarEdit 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
-
+ NoticeNotificación
-
+ You need to enter at least one characterDebe introducir al menos un carácter
-
+ OKAceptar
@@ -423,17 +545,17 @@ Are you sure?
No se pudo abrir '/dev/random' o '/dev/urandom'.
-
+ Password GeneratorGenerador de Contraseña
-
+ Accept
-
+ %1 Bits
@@ -441,27 +563,27 @@ Are you sure?
CPasswordDialog
-
+ OKAceptar
-
+ ErrorError
-
+ 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 FileSeleccione 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.
-
+ WarningAdvertencia
-
+ 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
-
+ CancelCancelar
-
+ 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
-
+ SettingsPreferencias
-
+ 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 EntryEditar 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
+ &CancelarAlt+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
+ &AceptarAlt+K
- Alt+A
+ Alt+A
-
+ NeverNunca
-
+ 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+UAlt+U
-
+ Alt+NAlt+N
-
+ Alt+MAlt+M
-
+ Alt+LAlt+L
-
+ Password GeneratorGenerador de Contraseña
@@ -1013,52 +1538,52 @@ p, li { white-space: pre-wrap; }
&Cancelar
-
+ GenerateGenerar
-
+ New Password:Nueva Contraseña:
-
+ Quality:Calidad:
-
+ OptionsOpciones
-
+ &Upper LettersMayúsc&ulas
-
+ &Lower LettersMinúscu&las
-
+ &Numbers&Números
-
+ &Special CharactersCarácteres E&speciales
-
+ MinusGuión
-
+ U&nderlineS&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+OAlt+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+WAlt+G
-
+ White &SpacesE&spacios
-
+ Alt+SAlt+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
-
+ TitleTítulo
-
+ UsernameUsuario
-
+ URLURL
-
+ PasswordContraseña
-
+ CommentsComentarios
-
+ ExpiresExpira
-
+ CreationCreación
-
+ Last ChangeÚltimo Cambio
-
+ Last AccessÚltimo Acceso
-
+ AttachmentAdjunto
@@ -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 ResultsResultados de Búsqueda
-
+ GroupsGrupos
+
+
+ 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+CCtrl+C
-
+ Ctrl+B
-
+ Ctrl+U
-
+ Ctrl+Y
-
+ Ctrl+E
-
+ Ctrl+D
-
+ Ctrl+KCtrl+A
-
+ Ctrl+F
-
+ Ctrl+W
-
+ Shift+Ctrl+S
-
+ Shift+Ctrl+F
-
+ ErrorError
-
+ The following error occured while opening the database:
%1Ocurrió el siguiente error al intentar abrir la base de datos:
%1
-
+ OKAceptar
-
+ 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?
-
+ YesSí
-
+ NoNo
-
+ CancelCancelar
@@ -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 EntryDuplicar Entrada
-
+ Delete EntryEliminar Entrada
-
+ Clone EntriesDuplicar Entradas
-
+ Delete EntriesEliminar Entradas
-
+ File could not be saved.
%1Archivo no ha podido ser guardado.
@@ -1343,27 +2122,27 @@ to save the changes?
Guardar Base de Datos Como...
-
+ ReadyListo
-
+ [new][nuevo]
-
+ Open Database...Abrir Base de Datos...
-
+ Loading Database...Cargando Base de Datos...
-
+ Loading FailedCarga Fallida
@@ -1395,68 +2174,108 @@ to save the changes?
Error desconocido en Import_KWalletXml::importFile()
-
+ Ctrl+V
-
+ Show ToolbarMostrar Barra de herramientas
-
+ KeePassXKeePassX
-
+ %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
-
+ ColumnsColumnas
@@ -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 GroupEliminar Grupo
-
+ Copy Password to ClipboardCopiar Contraseña al Portapapeles
-
+ Copy Username to ClipboardCopiar Usuario al Portapapeles
-
+ Open URLAbrir URL
-
+ Save Attachment As...Guardar Adjunto Como...
-
+ Add New Entry...Añadir Nueva Entrada...
-
+ View/Edit Entry...Ver/Editar Entrada...
-
+ Delete EntryEliminar Entrada
-
+ Clone EntryDuplicar 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 DetailsMostrar Detalles de Entradas
-
+ Hide UsernamesOcultar Usuarios
-
+ Hide PasswordsOcultar Contraseñas
-
+ TitleTítulo
-
+ UsernameUsuario
-
+ URLURL
-
+ PasswordContraseña
-
+ CommentComentario
-
+ ExpiresExpira
-
+ CreationCreación
-
+ Last ChangeÚltimo Cambio
-
+ Last AccessÚltimo Acceso
-
+ AttachmentAdjunto
@@ -1698,7 +2517,7 @@ to save the changes?
Editar
-
+ Show StatusbarMostrar 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
+ AdvertenciaCould 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'.
-
+ OKAceptar
-
+ 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.
-
+ ErrorError
-
-
- Warning:
-
-
-
-
- Invalid RGB color value.
-
-
- NeverNunca
-
+ Initialization failed.
-
+ Could not locate library file.
+
+ SearchDialog
+
+
+ Search
+ Buscar
+
+Search_Dlg
-
+ Alt+TAlt+T
-
+ Alt+UAlt+U
-
+ A&nhang&Adjunto
-
+ Alt+NAlt+A
-
+ Alt+WAlt+C
-
+ Alt+CAlt+M
-
+ Search...Buscar...
-
+ Search For:Buscar:
-
+ Regular E&xpressionE&xpresión Regular
-
+ Alt+XAlt+X
-
+ &Case SensitiveDistinguir &Mayúsculas
-
+ Include:Incluir:
-
+ &Titles&Títulos
-
+ &Usernames&Usuarios
-
+ C&ommentsC&omentarios
-
+ Alt+OAlt+O
-
+ U&RLsU&RLs
-
+ Alt+RAlt+R
-
+ Pass&words&Contraseñas
-
+ SearchBuscar
-
+ Clo&seC&errar
-
+ Alt+SAlt+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:
-
+ SecondsSegundos
@@ -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&ranceApa&riencia
-
+ Banner Color
-
+ Text Color:Color de Texto:
-
+ Change...Cambiar...
-
+ Color 2:Color 2:
-
+ C&hange...Ca&mbiar...
-
+ Alt+HAlt+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 ColorsAlternar Colores de Columna
-
+ Browse...Navegar...
-
+ Remember last key type and locationRecordar ú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
+ &AceptarAlt+K
- Alt+A
+ Alt+AAlt+C
- Alt+C
+ Alt+C
-
+ ......
-
+ Enter your PasswordIntroduzca 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 IncorrectaHash 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 à
-
+ LicenseLicence
-
+ TranslationTraduction
@@ -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/
-
+ CreditsCrédits
-
+ http://keepassx.sourceforge.nethttp://keepassx.sourceforge.net
-
+ keepassx@gmail.comkeepassx@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. ErrorErreur
+
+
+ Syntax Error in Auto-Type sequence near character %1
+Found '{' without closing '}'
+
+ CAboutDialogKeePassX %1
- KeePassX %1
+ KeePassX %1Error
- Erreur
+ ErreurFile '%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
+ OkCould 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_EMAILHere 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
+ ÉquipeTarek Saidi
- Tarek Saidi
+ Tarek SaidiDeveloper, Project Admin
- Développeur et Administrateur du Projet
+ Développeur et Administrateur du Projettariq@users.berlios.de
- tariq@users.berlios.de
+ tariq@users.berlios.deWeb Designer
- Concepteur du site Internet
+ Concepteur du site Internetgeugen@users.berlios.de
- geugen@users.berlios.de
+ geugen@users.berlios.deThanks 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 Xwww.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 NichollsMain Application Icon
- Pour le logo de KeepassX
+ Pour le logo de KeepassXhttp://keepassx.sf.net
- http://keepassx.sf.net
+ http://keepassx.sf.net
@@ -317,24 +485,24 @@ http://keepassx.sourceforge.net/
CEditEntryDlg
-
+ WarningAvertissement
-
+ 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.
-
+ OKAccepter
-
+ Save Attachment...Enregistrer la pièce jointe...
@@ -351,7 +519,7 @@ Do you want to replace it?
Voulez-vous le remplacer ?
-
+ YesOui
@@ -361,7 +529,7 @@ Voulez-vous le remplacer ?
Non
-
+ ErrorErreur
@@ -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, CancelNon, annulerEdit 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
-
+ NoticeNotification
-
+ You need to enter at least one characterVous devez au moins entrer un caractère
-
+ OKAccepter
@@ -456,7 +669,7 @@ En êtes-vous sûr ?
N'a pas pu ouvrir '/dev/random' ou '/dev/urandom'.
-
+ Password GeneratorGé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
-
+ OKAccepter
-
+ ErrorErreur
-
+ 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 FileSelectionner 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.
-
+ WarningAvertissement
-
+ 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
-
+ CancelAnnuler
-
+ 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
-
+ SettingsPré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&nnulerAlt+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
+ &AccepterAlt+K
- Alt+A
+ Alt+A
-
+ NeverJamais
-
+ 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+UAlt+U
-
+ Alt+NAlt+N
-
+ Alt+MAlt+M
-
+ Alt+LAlt+L
-
+ Password GeneratorGénérateur de mots de passe
@@ -1058,52 +1674,52 @@ p, li { white-space: pre-wrap; }
&Annuler
-
+ GenerateGénérer
-
+ New Password:Nouveau mot de passe:
-
+ Quality:Qualité:
-
+ OptionsOptions
-
+ &Upper LettersLettres majusc&ules
-
+ &Lower LettersLettres minuscu&les
-
+ &Numbers&Nombres
-
+ &Special CharactersCaractères &Spéciaux
-
+ MinusMoins
-
+ U&nderlineSoulig&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+OAlt+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+WAlt+G
-
+ White &SpacesE&space
-
+ Alt+SAlt+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
-
+ TitleTítre
-
+ UsernameNom d'utilisateur
-
+ URLURL
-
+ PasswordMot de passe
-
+ CommentsCommentaires
-
+ ExpiresExpire le
-
+ CreationCréé le
-
+ Last ChangeDernier changement
-
+ Last AccessDernier accès
-
+ AttachmentPiè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 ResultsRésultats de la recherche
-
+ GroupsGroupes
+
+
+ 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+OCtrl+O
-
+ Ctrl+SCtrl+S
-
+ Ctrl+GCtrl+G
-
+ Ctrl+CCtrl+C
-
+ Ctrl+BCtrl+B
-
+ Ctrl+UCtrl+U
-
+ Ctrl+YCtrl+Y
-
+ Ctrl+ECtrl+E
-
+ Ctrl+DCtrl+D
-
+ Ctrl+KCtrl+A
-
+ Ctrl+FCtrl+F
-
+ Ctrl+WCtrl+W
-
+ Shift+Ctrl+SShift+Ctrl+S
-
+ Shift+Ctrl+FShift+Ctrl+F
-
+ ErrorErreur
-
+ The following error occured while opening the database:
%1l'erreur suivante est survenue à l'ouverture de la base de données:
%1
-
+ OKAccepter
-
+ 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 ?
-
+ YesOui
-
+ NoNon
-
+ CancelAnnuler
@@ -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 EntryDupliquer l'entrée
-
+ Delete EntrySupprimer l'entrée
-
+ Clone EntriesDupliquer les entrées
-
+ Delete EntriesSupprimer les entrées
-
+ File could not be saved.
%1Le fichier n'a pu être enregistré.
@@ -1403,27 +2274,27 @@ Désirez-vous enregistrer le changement ?Enregistrer la BD sous...
-
+ ReadyPrêt
-
+ [new][nouveau]
-
+ Open Database...Ouvrir la BD...
-
+ Loading Database...Chargement de la BD...
-
+ Loading FailedLe chargement a échoué
@@ -1460,68 +2331,108 @@ Désirez-vous enregistrer le changement ?
Erreur inconnue dans PwDatabase::openDatabase()
-
+ Ctrl+VCtrl+V
-
+ Show ToolbarAfficher la barre outils
-
+ KeePassXKeePassX
-
+ %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
-
+ ColumnsColonnes
@@ -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 GroupSupprimer le groupe
-
+ Copy Password to ClipboardCopier le mot de passe dans le presse-papier
-
+ Copy Username to ClipboardCopier l'utilisateur dans le presse-papier
-
+ Open URLOuvrir 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 EntrySupprimer l'entrée
-
+ Clone EntryDupliquer 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 DetailsAfficher les détails de l'entrée
-
+ Hide UsernamesCacher l'utilisateur
-
+ Hide PasswordsCacher les mots de passe
-
+ TitleTítre
-
+ UsernameNom d'utilisateur
-
+ URLURL
-
+ PasswordMot de passe
-
+ CommentCommentaire
-
+ ExpiresDate d'expiration
-
+ CreationDate de création
-
+ Last ChangeDernier changement
-
+ Last AccessDernier accès
-
+ AttachmentPièce jointe
@@ -1763,7 +2674,7 @@ Désirez-vous enregistrer le changement ?
Édition
-
+ Show StatusbarAfficher 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)
-
+ HideCacher
-
+ Perform AutoTypeExécuter l'auto-saisie
@@ -1798,57 +2709,57 @@ Désirez-vous enregistrer le changement ?
Saisir ici
-
+ Toolbar Icon SizeTaille des icônes de la barre d'outils
-
+ 16x16
-
+ 22x22
-
+ 28x28
-
+ &View&Affichage
-
+ &File&Fichier
-
+ &Import from...&Importer d'un...
-
+ &Export to...&Exporter vers...
-
+ &EditEd&iter
-
+ E&xtrasE&xtras
-
+ &HelpAi&de
@@ -1858,70 +2769,95 @@ Désirez-vous enregistrer le changement ?
&Nouvelle BD...
-
+ &Open Database...&Ouvrir une BD...
-
+ &Close DatabaseFer&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
+ AvertissementCould 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'.
-
+ OKAccepter
-
+ 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.
-
+ ErrorErreurWarning:
- 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+TAlt+T
-
+ Alt+UAlt+U
-
+ A&nhangA&nnexe
-
+ Alt+NAlt+N
-
+ Alt+WAlt+P
-
+ Alt+CAlt+C
-
+ Search...Rechercher...
-
+ Search For:Recherche de:
-
+ Regular E&xpressionE&xpression Régulière
-
+ Alt+XAlt+X
-
+ &Case SensitiveRespecter la &casse
-
+ Include:Inclure:
-
+ &Titles&Títres
-
+ &UsernamesNom d'&utilisateurs
-
+ C&ommentsC&ommentaires
-
+ Alt+OAlt+O
-
+ U&RLsU&RLs
-
+ Alt+RAlt+R
-
+ Pass&wordsMot de &passe
-
+ SearchChercher
-
+ Clo&se&Quitter
-
+ Alt+SAlt+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:
-
+ SecondsSecondes
@@ -2398,47 +3342,47 @@ Make sure you have write access to '~/.keepass'.
A&fficher le mot de passe en clair par défaut
-
+ Alt+OAlt+F
-
+ Appea&ranceAppa&rence
-
+ Banner ColorCouleur du bandeau
-
+ Text Color:Couleur du texte:
-
+ Change...Changer...
-
+ Color 2:Couleur 2:
-
+ C&hange...C&hanger...
-
+ Alt+HAlt+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 ColorsCouleurs alternées pour les rangées
-
+ Browse...Parcourir...
-
+ Remember last key type and locationSe souvenir de la dernière saisie de clé et du dernier emplacementMounting Root:
- Point de montage:
+ Point de montage:
-
+ Remember last opened fileSe 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
+ &AccepterAlt+K
- Alt+A
+ Alt+AAlt+C
- Alt+N
+ Alt+N
-
+ ......
-
+ Enter your PasswordEntrer votre mot de passe
-
+ Password:Mot de passe:&Cancel
- A&nnuler
+ A&nnulerStandardDatabase
-
-
- 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 signatureUnsupported 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.netkeepassx@gmail.com
-
+ keepassx@gmail.comkeepassx@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 %1Error
- Ошибка
+ ОшибкаFile '%1' could not be found.
- Файл '%1' не найден.
+ Файл '%1' не найден.Make sure that the program is installed correctly.
- Убедитесь что программа установлена корректно.
+ Убедитесь что программа установлена корректно.OK
- OK
+ OKCould 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_EMAILHere 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.deThanks To
- Благодарность
+ БлагодарностьPatches for better MacOS X support
- Исправления для улучшения поддержки MacOS X
+ Исправления для улучшения поддержки MacOS Xwww.outofhanwell.com
- www.outofhanwell.com
+ www.outofhanwell.comInformation 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.Пароль и повтор пароля не эквивалентны.
Проверьте введённые данные.
-
+ OKOK
-
+ 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Необходимо ввести более одного символа
-
+ OKOK
@@ -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
-
+ OKOK
-
+ 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&KAlt+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+UAlt+U
-
+ Alt+NAlt+N
-
+ Alt+MAlt+M
-
+ Alt+LAlt+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+OAlt+O
-
+ Length:Длинна:
@@ -1052,85 +1628,309 @@ p, li { white-space: pre-wrap; }
Использовать "/dev/rando&m"
-
+ Use follo&wing character groups:Только следующие &группы символов:
-
+ Alt+WAlt+W
-
+ White &Spaces&Пробелы
-
+ Alt+SAlt+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+OCtrl+O
-
+ Ctrl+SCtrl+S
-
+ Ctrl+GCtrl+G
-
+ Ctrl+CCtrl+C
-
+ Ctrl+BCtrl+B
-
+ Ctrl+UCtrl+U
-
+ Ctrl+YCtrl+Y
-
+ Ctrl+ECtrl+E
-
+ Ctrl+DCtrl+D
-
+ Ctrl+KCtrl+K
-
+ Ctrl+FCtrl+F
-
+ Ctrl+WCtrl+W
-
+ Shift+Ctrl+SShift+Ctrl+S
-
+ Shift+Ctrl+FShift+Ctrl+F
-
+ ErrorОшибка
-
+ The following error occured while opening the database:
%1
-
+ OKOK
-
+ 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+VCtrl+V
-
+ Show ToolbarОтобразить панель инструментов
-
+ KeePassXKeePassX
-
+ %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Размер значков панели инструментов
-
+ 16x1616x16
-
+ 22x2222x22
-
+ 28x2828x28
-
+ &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'.
-
-
-
-
+ OKOK
-
+ 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+TAlt+T
-
+ Alt+UAlt+U
-
+ A&nhang
-
+ Alt+NAlt+N
-
+ Alt+WAlt+W
-
+ Alt+CAlt+C
-
+ Search...Поиск...
-
+ Search For:Поиск:
-
+ Regular E&xpressionРегулярное &выражение
-
+ Alt+XAlt+X
-
+ &Case Sensitive&С учётом регистра
-
+ Include:Включая:
-
+ &Titles&Название
-
+ &Usernames&Имя
-
+ C&ommentsКо&мментарий
-
+ Alt+OAlt+O
-
+ U&RLs&Ссылки
-
+ Alt+RAlt+R
-
+ Pass&words&Пароли
-
+ SearchПоиск
-
+ Clo&se&Закрыть
-
+ Alt+SAlt+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+OAlt+O
-
+ Appea&rance&Внешний вид
-
+ Banner ColorЦвет банера
-
+ Text Color:Цвет текста:
-
+ Change...Изменить...
-
+ Color 2:Цвет 2:
-
+ C&hange...&Изменить
-
+ Alt+HAlt+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&KAlt+K
- Alt+K
+ Alt+KAlt+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
+ AboutDialogKeePassX %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