","Please replace 'None' with the language of your translation");
+ QString AboutTr=QString("%1: %2
").arg(tr("Current Translation")).arg(tr("None","Please replace 'None' with the language of your translation"));
if(TrActive){
- AboutTr+=tr("Author: %1 ").arg(tr("$TRANSLATION_AUTHOR"));
+ AboutTr+=QString("%1: %2 ").arg(tr("Author")).arg(tr("$TRANSLATION_AUTHOR"));
QString mail=tr("$TRANSLATION_AUTHOR_EMAIL","Here you can enter your email or homepage if you want.");
if(!mail.isEmpty()){
AboutTr+=mail+" ";
diff --git a/src/dialogs/ExpiredEntriesDlg.cpp b/src/dialogs/ExpiredEntriesDlg.cpp
index b91f9c2..c1bd252 100644
--- a/src/dialogs/ExpiredEntriesDlg.cpp
+++ b/src/dialogs/ExpiredEntriesDlg.cpp
@@ -30,7 +30,7 @@ ExpiredEntriesDialog::ExpiredEntriesDialog(QWidget* parent,IDatabase* database,c
item->setText(0,Entries[i]->group()->title());
item->setText(1,Entries[i]->title());
item->setText(2,Entries[i]->username());
- item->setText(3,Entries[i]->expire().dateToString(Qt::LocalDate));
+ item->setText(3,Entries[i]->expire().dateToString(Qt::DefaultLocaleShortDate));
item->setIcon(0,database->icon(Entries[i]->group()->image()));
item->setIcon(1,database->icon(Entries[i]->image()));
diff --git a/src/lib/AutoType_X11.cpp b/src/lib/AutoType_X11.cpp
index 03bef09..24075a7 100644
--- a/src/lib/AutoType_X11.cpp
+++ b/src/lib/AutoType_X11.cpp
@@ -112,8 +112,8 @@ void AutoType::perform(IEntryHandle* entry, QString& err,bool hideWindow,int nr)
bool capsEnabled = HelperX11::keyboardModifiers(pDisplay)&LockMask;
if (capsEnabled){
- XTestFakeKeyEvent(pDisplay,XKeysymToKeycode(pDisplay,XK_Caps_Lock),true,CurrentTime);
- XTestFakeKeyEvent(pDisplay,XKeysymToKeycode(pDisplay,XK_Caps_Lock),false,CurrentTime);
+ XTestFakeKeyEvent(pDisplay,XKeysymToKeycode(pDisplay,XK_Caps_Lock),true,0);
+ XTestFakeKeyEvent(pDisplay,XKeysymToKeycode(pDisplay,XK_Caps_Lock),false,0);
AutoTypePrivate::sleepKeyStrokeDelay();
}
@@ -150,8 +150,8 @@ void AutoType::perform(IEntryHandle* entry, QString& err,bool hideWindow,int nr)
}
if (capsEnabled){
- XTestFakeKeyEvent(pDisplay,XKeysymToKeycode(pDisplay,XK_Caps_Lock),true,CurrentTime);
- XTestFakeKeyEvent(pDisplay,XKeysymToKeycode(pDisplay,XK_Caps_Lock),false,CurrentTime);
+ XTestFakeKeyEvent(pDisplay,XKeysymToKeycode(pDisplay,XK_Caps_Lock),true,0);
+ XTestFakeKeyEvent(pDisplay,XKeysymToKeycode(pDisplay,XK_Caps_Lock),false,0);
}
if (hideWindow && !(config->showSysTrayIcon() && config->minimizeTray()) )
diff --git a/src/lib/EntryView.cpp b/src/lib/EntryView.cpp
index df364d4..f2d9e11 100644
--- a/src/lib/EntryView.cpp
+++ b/src/lib/EntryView.cpp
@@ -183,13 +183,13 @@ void KeepassEntryView::updateEntry(EntryViewItem* item){
if (Columns.at(4)){
item->setText(j++,entry->comment().section('\n',0,0));}
if (Columns.at(5)){
- item->setText(j++,entry->expire().dateToString(Qt::LocalDate));}
+ item->setText(j++,entry->expire().dateToString(Qt::DefaultLocaleShortDate));}
if (Columns.at(6)){
- item->setText(j++,entry->creation().dateToString(Qt::LocalDate));}
+ item->setText(j++,entry->creation().dateToString(Qt::DefaultLocaleShortDate));}
if (Columns.at(7)){
- item->setText(j++,entry->lastMod().dateToString(Qt::LocalDate));}
+ item->setText(j++,entry->lastMod().dateToString(Qt::DefaultLocaleShortDate));}
if (Columns.at(8)){
- item->setText(j++,entry->lastAccess().dateToString(Qt::LocalDate));}
+ item->setText(j++,entry->lastAccess().dateToString(Qt::DefaultLocaleShortDate));}
if (Columns.at(9)){
item->setText(j++,entry->binaryDesc());}
if(Columns.at(10) && ViewMode==ShowSearchResults){
@@ -376,13 +376,13 @@ void KeepassEntryView::createItems(QList& entries){
if (Columns.at(4)){
item->setText(j++,entries[i]->comment().section('\n',0,0));}
if (Columns.at(5)){
- item->setText(j++,entries[i]->expire().dateToString(Qt::LocalDate));}
+ item->setText(j++,entries[i]->expire().dateToString(Qt::DefaultLocaleShortDate));}
if (Columns.at(6)){
- item->setText(j++,entries[i]->creation().dateToString(Qt::LocalDate));}
+ item->setText(j++,entries[i]->creation().dateToString(Qt::DefaultLocaleShortDate));}
if (Columns.at(7)){
- item->setText(j++,entries[i]->lastMod().dateToString(Qt::LocalDate));}
+ item->setText(j++,entries[i]->lastMod().dateToString(Qt::DefaultLocaleShortDate));}
if (Columns.at(8)){
- item->setText(j++,entries[i]->lastAccess().dateToString(Qt::LocalDate));}
+ item->setText(j++,entries[i]->lastAccess().dateToString(Qt::DefaultLocaleShortDate));}
if (Columns.at(9)){
item->setText(j++,entries[i]->binaryDesc());}
if(Columns.at(10) && ViewMode==ShowSearchResults){
diff --git a/src/lib/HelperX11.cpp b/src/lib/HelperX11.cpp
index c267e13..221b2ac 100644
--- a/src/lib/HelperX11.cpp
+++ b/src/lib/HelperX11.cpp
@@ -887,9 +887,8 @@ quint16 HelperX11::getKeysym(const QChar& c){
/*if((unicode & 0xFF000000)==0x00)
return (unicode & 0x00FFFFFF)|0x01FFFFFF;*/
- int MapSize=sizeof(KeysymMap);
-
- for(int i=0; iurl());
- templ.replace("%creation%",entry->creation().toString(Qt::LocalDate));
- templ.replace("%lastmod%",entry->lastMod().toString(Qt::LocalDate));
- templ.replace("%lastaccess%",entry->lastAccess().toString(Qt::LocalDate));
- templ.replace("%expire%",entry->expire().toString(Qt::LocalDate));
+ templ.replace("%creation%",entry->creation().toString(Qt::DefaultLocaleShortDate));
+ templ.replace("%lastmod%",entry->lastMod().toString(Qt::DefaultLocaleShortDate));
+ templ.replace("%lastaccess%",entry->lastAccess().toString(Qt::DefaultLocaleShortDate));
+ templ.replace("%expire%",entry->expire().toString(Qt::DefaultLocaleShortDate));
templ.replace("%comment%",entry->comment());
templ.replace("%attachment%",entry->binaryDesc());
diff --git a/src/translations/keepassx-cs_CZ.ts b/src/translations/keepassx-cs_CZ.ts
index ceb1bd0..3f2d5f7 100644
--- a/src/translations/keepassx-cs_CZ.ts
+++ b/src/translations/keepassx-cs_CZ.ts
@@ -1,142 +1,192 @@
-
+
+AboutDialog
+ KeePassX %1KeePassX %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_AUTHORMarek Straka
+ $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>)
+ TeamVývojová skupina
+ Tarek SaidiTarek Saidi
+ Developer, Project AdminVývojář, vedoucí projektu
+ tariq@users.berlios.detariq@users.berlios.de
+ Eugen GorscheninEugen Gorschenin
+ Web DesignerWebový designér
+ geugen@users.berlios.degeugen@users.berlios.de
+ Thanks ToPoděkování
+ Matthias MillerMatthias Miller
+ Patches for better MacOS X supportPatches pro lepší MacOS X podporu
+ www.outofhanwell.comwww.outofhanwell.com
+ James NichollsJames Nicholls
+ Main Application IconHlavní ikonka aplikace
+ Various fixes and improvements
+ ErrorChyba
+ 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.
+ OKOK
+ Could not open file '%1'Nelze otevřít soubor '%1'
+ The following error occured:
%1Vyskytl se následující problém:
%1
+ http://keepassx.sf.nethttp://keepassx.sf.net
+ Developer
+ Information on how to translate KeePassX can be found under:
+
+
+ Current Translation
+
+
+
+
+ None
+ Please replace 'None' with the language of your translation
+
+
+
+
+ Author
+
+ AboutDlg
+ AboutO aplikaci
+ LicenseLicence
+ TranslationPřeklad
+ <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><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> - multiplatformní správce hesel</p></body></html>
+ Copyright (C) 2005 - 2006 Tarek Saidi
KeePassX is distributed under the terms of the
General Public License (GPL) version 2.
@@ -145,27 +195,33 @@ 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
+ AppName
+ AppFunc
- Copyright (C) 2005 - 2007 KeePassX Team
+
+ Copyright (C) 2005 - 2008 KeePassX Team
KeePassX is distributed under the terms of the
General Public License (GPL) version 2.
@@ -174,30 +230,37 @@ General Public License (GPL) version 2.AddBookmarkDlg
+ Add Bookmark
+ Title:Název:
+ File:
+ Browse...Projít...
+ Edit Bookmark
+ KeePass Databases (*.kdb)
+ All Files (*)
@@ -205,58 +268,70 @@ General Public License (GPL) version 2.
AutoType
+ More than one 'Auto-Type:' key sequence found.
Allowed is only one per entry.Nalezena více než jedna 'Auto-Type:' klíčová sekvence
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
Nalezeno '{' bez uzavření '}'
+ ErrorChyba
+ Syntax Error in Auto-Type sequence near character %1
Found '{' without closing '}'
- Auto-Type string contains illegal characters
+
+ Auto-Type string contains invalid charactersAutoTypeDlg
+ KeePassX - Auto-Type
+ Click on an entry to auto-type it.
+ Group
+ TitleNázev
+ Username
+ CancelZrušit
+ Auto-Type
@@ -264,112 +339,138 @@ Je dovolena pouze jedna na každý záznam.
CAboutDialog
+ KeePassX %1KeePassX %1
+ ErrorChyba
+ 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.
+ OKOK
+ Could not open file '%1'Nelze otevřít soubor '%1'
+ The following error occured:
%1Vyskytl 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>Author:</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>)
+ Matthias MillerMatthias Miller
+ Eugen GorscheninEugen Gorschenin
+ $TRANSLATION_AUTHORMarek Straka
+ TeamVývojová skupina
+ Tarek SaidiTarek Saidi
+ Developer, Project AdminVývojář, vedoucí projektu
+ tariq@users.berlios.detariq@users.berlios.de
+ Web DesignerWebový designér
+ geugen@users.berlios.degeugen@users.berlios.de
+ Thanks ToPoděkování
+ Patches for better MacOS X supportPatches pro lepší MacOS X podporu
+ www.outofhanwell.comwww.outofhanwell.com
+ Information on how to translate KeePassX can be found under:
http://keepassx.sourceforge.net/Informace o tom jak přeložit KeePassX lze nalézt zde:
http://keepassx.sourceforge.net/
+ James NichollsJames Nicholls
+ Main Application IconHlavní ikonka aplikace
+ http://keepassx.sf.nethttp://keepassx.sf.net
@@ -377,38 +478,47 @@ http://keepassx.sourceforge.net/
CDbSettingsDlg
+ AES(Rijndael): 256 Bit (default)AES(Rijndael): 256 Bitů (standartní)
+ Twofish: 256 BitTwofish: 256 Bitů
+ WarningVarování
+ Please determine the number of encryption rounds.Prosím zadejte počet šifrovacích kol.
+ OKOK
+ ErrorChyba
+ '%1' is not valid integer value.'%1' není platná integer hodnota.
+ The number of encryption rounds have to be greater than 0.Počet kol zašifrování musí být větší než 0.
+ SettingsNastavení
@@ -416,163 +526,206 @@ 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...
+ Overwrite?Přepsat?
+ A file with this name already exists.
Do you want to replace it?Soubor s tímto jménem již existuje.
Chcete ho přepsat?
+ YesAno
+ NoNe
+ ErrorChyba
+ Could not remove old file.Nelze odstranit starý soubor.
+ Could not create new file.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šit
+ Edit EntryUpravit záznam
+ Could not open file.Nelze otevřít soubor.
+ %1 Bit%1 bitů
+ Add Attachment...Připojit přílohu...
+ 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...
+ [Untitled Entry]
+
+
+ New Entry
+
+ CGenPwDialog
+ NoticePoznámka
+ You need to enter at least one characterJe nutné vložit minimálně jeden znak
+ OKOK
+ ErrorChyba
+ Could not open '/dev/random' or '/dev/urandom'.Nelze otevřít '/dev/random' nebo '/dev/urandom'.
+ Password GeneratorGenerátor hesla
+ %1 Bit%1 bitů
+ %1 Bits
@@ -580,168 +733,164 @@ Jste si tím jistí?
CPasswordDialog
+ OK
- OK
+ OK
+ Error
- Chyba
+ Chyba
+ Please enter a Password.
- Vložte prosím heslo.
+ Vložte prosím heslo.
+ Please choose a key file.
- Vyberte prosím soubor s klíčem.
+ 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.
+ Vložte prosím heslo nebo vyberte soubor s klíčem.
+ Database Key
- Klíč k databázi
+ Klíč k databázi
+ Select a Key File
- Vyberte soubor s klíčem
+ Vyberte soubor s klíčem
+ *.key*.key
+ Unexpected Error: File does not exist.Neočekávaná chyba: Soubor neexistuje.
+ The selected key file or directory does not exist.
- Vybraný soubor s klíčem nebo adresář neexistuje.
+ 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.
+ 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íč.
+ 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.
+ 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.
+ 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.
+ Soubor s klíčem nelze přečíst.
Zkontrolujte prosím parametry souboru.
+ Warning
- Upozornění
+ Upozornění
+ Password an password repetition are not equal.
Please check your input.
- Heslo a opakované heslo nejsou stejné.
+ 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.
+ Prosím vložte heslo nebo vyberte soubor s klíčem.
+ A file with the name 'pwsafe.key' already exisits in the given directory.
Do you want to replace it?Soubor se jménem 'pwsafe.key' již v zadaném adresáři existuje.
Chcete ho přepsat?
+ YesAno
+ NoNe
+ The exisiting file is not writable.Existující soubor není zapisovatelný.
+ A file with the this name already exisits.
Do you want to replace it?Soubor s tímto jménem již existuje.
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.
+ Vybraný soubor s klíčem nebo adresář nelze otevřít.
Prosím zkontrolujte jeho parametry.
- All Files (*)
-
-
-
- Key Files (*.key)
-
-
-
- File exists.
-
-
-
- A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one?
-
-
-
- Use
-
-
-
- Overwrite
-
-
-
+ Cancel
- Zrušit
-
-
- Key file could not be created.
-%1
-
-
-
- Last File
-
+ ZrušitCSearchDlg
+ NoticePoznámka
+ Please enter a search string.Prosím vložte hledaný řetězec.
+ OKOK
+ SearchVyhledat
@@ -749,54 +898,66 @@ Prosím zkontrolujte jeho parametry.
CSelectIconDlg
+ DeleteSmazat
+ Add Icons...Přidat ikonky...
+ Images (%1)Obrázky (%1)
+ %1: File could not be loaded.
%1: Soubor nemohl být otevřen.
+ ErrorChyba
+ Replace...Zaměnit...
+ An error occured while loading the icon(s):
%1Vyskytla se chyba během otevírání ikonky (ikonek):
%1
+ An error occured while loading the icon.Během otevírání ikonky se vyskytla chyba.
+ Add Custom Icon
+ PickVybrat
+ %1: File could not be loaded.
+ An error occured while loading the icon(s):
@@ -804,14 +965,17 @@ Prosím zkontrolujte jeho parametry.
CSettingsDlg
+ SettingsNastavení
+ Select a directory...Výběr adresáře...
+ Select an executable...
@@ -819,6 +983,7 @@ Prosím zkontrolujte jeho parametry.
CalendarDialog
+ Calendar
@@ -826,19 +991,23 @@ Prosím zkontrolujte jeho parametry.
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;">
@@ -849,206 +1018,257 @@ p, li { white-space: pre-wrap; }
CustomizeDetailViewDialog
+ Group
+ TitleNázev
+ Username
+ PasswordHeslo
+ Url
+ CommentKomentář
+ 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
+ CancelZrušit
@@ -1056,6 +1276,7 @@ p, li { white-space: pre-wrap; }
Database
+ NeverNikdy
@@ -1063,61 +1284,80 @@ p, li { white-space: pre-wrap; }
DatabaseSettingsDlg
+ Database SettingsNastavení databáze
+ EncryptionZašifrování
+ Algorithm:Algoritmus:
+ Encryption Rounds:Počet kol zašifrování:
+
+
+ Calculate rounds for a 1-second delay on this computer
+
+ DetailViewTemplate
+ Group
+ TitleNázev
+ Username
+ PasswordHeslo
+ URLURL
+ CreationVytvoření
+ Last AccessPoslední přístup
+ Last Modification
+ Expiration
+ CommentKomentář
@@ -1125,90 +1365,112 @@ p, li { white-space: pre-wrap; }
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
+ Alt+CAlt+C
+ %1%1
+ Icon:Ikonka:
+ Ge&n.Ge&n.
+ ......
+ O&KO&K
+ Alt+KAlt+K
+ NeverNikdy
+ Attachment:Příloha:
+ >>
+ %1 Bit%1 bitů
@@ -1216,34 +1478,42 @@ p, li { white-space: pre-wrap; }
EditGroupDialog
+ Group PropertiesVlastnosti skupiny
+ Title:Název:
+ Icon:Ikonka:
+ &Cancel&zrušit
+ Alt+CAlt+C
+ O&KO&K
+ Alt+KAlt+K
+ >>
@@ -1251,30 +1521,37 @@ p, li { white-space: pre-wrap; }
ExpiredEntriesDialog
+ Expired Entries
+ Double click on an entry to jump to it.
+ Group
+ TitleNázev
+ Username
+ Expired
+ Expired Entries in the Database
@@ -1282,14 +1559,17 @@ p, li { white-space: pre-wrap; }
Export_KeePassX_Xml
+ XML Files (*.xml)
+ All Files (*)
+ KeePassX XML File
@@ -1297,18 +1577,22 @@ p, li { white-space: pre-wrap; }
Export_Txt
+ Could not open file (FileError=%1)Nelze otevřít soubor (FileError=%1)
+ All Files (*)
+ Text Files (*.txt)
+ Text File
@@ -1316,10 +1600,12 @@ p, li { white-space: pre-wrap; }
ExporterBase
+ Import File...
+ Export Failed
@@ -1327,62 +1613,77 @@ p, li { white-space: pre-wrap; }
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.
@@ -1390,118 +1691,147 @@ p, li { white-space: pre-wrap; }
GenPwDlg
+ Alt+UAlt+U
+ Alt+NAlt+N
+ Alt+MAlt+M
+ Alt+LAlt+L
+ Password GeneratorGenerátor hesla
+ Accep&tPřevzí&t
+ &Cancel&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
+ h&igher ANSI-Characters&Speciální ANSI znaky
+ Alt+HAlt+H
+ Use &only following characters:Používat &jen následující znaky:
+ Alt+OAlt+O
+ Length:Délka:
+ Use "/dev/rando&m"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
@@ -1509,26 +1839,32 @@ p, li { white-space: pre-wrap; }
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.
@@ -1536,23 +1872,28 @@ p, li { white-space: pre-wrap; }
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.
@@ -1560,50 +1901,62 @@ p, li { white-space: pre-wrap; }
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).
@@ -1611,10 +1964,12 @@ p, li { white-space: pre-wrap; }
ImporterBase
+ Import File...
+ Import Failed
@@ -1622,74 +1977,91 @@ p, li { white-space: pre-wrap; }
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 SignatureChybný 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.
+ Unexpected error: Offset is out of range.
@@ -1697,18 +2069,22 @@ Klíč je chybný nebo je soubor poškozen.
Kdb3Database::EntryHandle
+ Bytes
+ KiB
+ MiB
+ GiB
@@ -1716,93 +2092,115 @@ Klíč je chybný nebo je soubor poškozen.
KeepassEntryView
+ TitleNázev
+ UsernameUživatelské jméno
+ URLURL
+ PasswordHeslo
+ CommentsKomentáře
+ ExpiresVyprší
+ CreationVytvoření
+ Last ChangePoslední změna
+ Last AccessPoslední přístup
+ AttachmentPříloha
+ %1 items%1 položky
- Are you sure you want delete this entry?
-
-
-
- Are you sure you want delete these %1 entries?
-
-
-
+ Delete?
+ Group
+ ErrorChyba
+ At least one group must exist before adding an entry.
+ OKOK
+
+
+ Are you sure you want to delete this entry?
+
+
+
+
+ Are you sure you want to delete these %1 entries?
+
+ 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?
@@ -1810,301 +2208,378 @@ Klíč je chybný nebo je soubor poškozen.
KeepassMainWindow
+ Ctrl+N
- Ctrl+N
+ 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?
+ Yes
- Ano
+ Ano
+ No
- Ne
+ Ne
+ Cancel
- Zrušit
+ Zrušit
+ KeePassX - %1KeePassX - %1
+ <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<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.
%1
+ Save Database As...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
+ Could not create key file. The following error occured:
%1Nebylo možné vytvořit klíčový soubor. Vyskytla se následující chyba:
%1
+ Export To...Vyexportovat do ...
+ KeePassX [new]KeePassX [new]
+ Unknown error in Import_PwManager::importFile()()Neznámá chyba v Import_PwManager::importFile()()
+ Unknown error in Import_KWalletXml::importFile()Neznámaá chyba v Import_KWalletXml::importFile()
+ Unknown error in PwDatabase::openDatabase()Neznámá chyba v PwDatabase::openDatabase()
+ Ctrl+VCtrl+V
+ Show Toolbar
- Panel nástrojů
+ Panel nástrojů
+ KeePassXKeePassX
+ Unknown error while loading database.
+ KeePass Databases (*.kdb)
+ All Files (*)
+ Save Database...
- New Database
-
-
-
+ 1 Month
+ %1 Months
+ 1 Year
+ %1 Years
+ 1 Day
+ %1 Days
+ less than 1 day
- Set Master Key
-
-
-
+ Locked
+ Unlocked
+ Ctrl+L
+ Ctrl+Q
+ The database file does not exist.
+ new
+ Expired
+ Un&lock Workspace
+ &Lock Workspace
+ The following error occured while opening the database:
+ File could not be saved.
+
+
+ Show &Toolbar
+
+
+
+
+ Ctrl+P
+
+
+
+
+ Ctrl+X
+
+ Main
+ ErrorChyba
+ File '%1' could not be found.Soubor '%1' nemohl být nalezen.
+ OKOK
@@ -2112,437 +2587,809 @@ změny uloženy?
MainWindow
+ KeePassXKeePassX
+ Columns
- Sloupečky
+ Sloupečky
+ PwManager File (*.pwm)PwManager souboru (*.pwm)
+ KWallet XML-File (*.xml)KWallet XML-souboru (*.xml)
+ Add New Group...
- Přidat novou skupinu...
+ Přidat novou skupinu...
+ Edit Group...
- Upravit skupinu...
+ Upravit skupinu...
+ Delete Group
- Smazat skupinu
+ Smazat skupinu
+ Copy Password to Clipboard
- Zkopírovat heslo do schránky
+ Zkopírovat heslo do schránky
+ Copy Username to Clipboard
- Zkopírovat uživatelské jméno do schránky
+ Zkopírovat uživatelské jméno do schránky
+ Open URL
- Otevřít URL
+ Otevřít URL
+ Save Attachment As...
- Uložit přílohu jako...
+ Uložit přílohu jako...
+ Add New Entry...
- Přidat novou položku...
+ Přidat novou položku...
+ View/Edit Entry...
- Zobrazit/upravit položku...
+ Zobrazit/upravit položku...
+ Delete Entry
- Smazat položku
+ Smazat položku
+ Clone Entry
- Naklonovat položku
+ Naklonovat položku
+ Search In Database...Vyhledat v databázi...
+ Search in this group...Vyhledat v této skupině...
+ Show ToolbarPanel nástrojů
+ Show Entry Details
- Detaily položky
+ Detaily položky
+ Hide Usernames
- Skrýt uživatelská jména
+ Skrýt uživatelská jména
+ Hide Passwords
- Skrýt hesla
+ Skrýt hesla
+ Title
- Název
+ Název
+ Username
- Uživatel
+ Uživatel
+ URL
- URL
+ URL
+ Password
- Heslo
+ Heslo
+ Comment
- Komentář
+ Komentář
+ Expires
- Platnost
+ Platnost
+ Creation
- Vytvoření
+ Vytvoření
+ Last Change
- Poslední změna
+ Poslední změna
+ Last Access
- Poslední přístup
+ Poslední přístup
+ Attachment
- Příloha
+ Příloha
+ Show Statusbar
- Stavový řádek
+ Stavový řádek
+ Plain Text (*.txt)Jednoduchého textu (*.txt)
+ HideSkrýt
+ Perform AutoType
- Provádět autodoplňování
+ Provádět autodoplňování
+ Type HerePsát zde
+ Toolbar Icon Size
- Velikost ikonek na panelu nástrojů
+ Velikost ikonek na panelu nástrojů
+ 16x16
- 16x16
+ 16x16
+ 22x22
- 22x22
+ 22x22
+ 28x28
- 28x28
+ 28x28
+ &View&Zobrazit
+ &File&Soubor
+ &Import from...&Importovat z ...
+ &Export to...&Exportovat do ...
+ &Edit&Upravit
+ E&xtras&Doplňky
+ &Help&Nápověda
+ &New Database...
- Nová &databáze...
+ 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...
-
-
-
+ Recycle Bin...
+ GroupsSkupiny
- Bookmarks
-
-
-
- Manage Bookmarks...
-
-
-
+ &Lock Workspace
- Q&uit
+
+ &Bookmarks
- Search in Database...
+
+ Toolbar &Icon Size
- Search in this Group...
+
+ &Columns
- Add Bookmark...
+
+ &Manage Bookmarks...
- Bookmark this Database...
+
+ &Quit
+
+
+
+
+ &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...
+
+
+
+
+ De&lete Entry
+
+
+
+
+ &Clone Entry
+
+
+
+
+ Search &in Database...
+
+
+
+
+ Search in this &Group...
+
+
+
+
+ Show &Entry Details
+
+
+
+
+ Hide &Usernames
+
+
+
+
+ Hide &Passwords
+
+
+
+
+ &Title
+
+
+
+
+ User&name
+
+
+
+
+ &URL
+
+
+
+
+ &Password
+
+
+
+
+ &Comment
+
+
+
+
+ E&xpires
+
+
+
+
+ C&reation
+
+
+
+
+ &Last Change
+
+
+
+
+ Last &Access
+
+
+
+
+ A&ttachment
+
+
+
+
+ Show &Statusbar
+
+
+
+
+ &Perform AutoType
+
+
+
+
+ &16x16
+
+
+
+
+ &22x22
+
+
+
+
+ 2&8x28
+ 28x28 {2&8x?}
+
+
+
+ &Password Generator...
+
+
+
+
+ &Group (search results only)
+
+
+
+
+ Show &Expired Entries...
+
+
+
+
+ &Add Bookmark...
+
+
+
+
+ Bookmark &this Database...ManageBookmarksDlg
+ Manage Bookmarks
+
+ PasswordDialog
+
+
+ Enter Master Key
+
+
+
+
+ Set Master Key
+
+
+
+
+ Change Master Key
+
+
+
+
+ Database Key
+ Klíč k databázi
+
+
+
+ Last File
+
+
+
+
+ Select a Key File
+ Vyberte soubor s klíčem
+
+
+
+ All Files (*)
+
+
+
+
+ Key Files (*.key)
+
+
+
+
+ Please enter a Password or select a key file.
+ Vložte prosím heslo nebo vyberte soubor s klíčem.
+
+
+
+ Please enter a Password.
+ Vložte prosím heslo.
+
+
+
+ Please provide a key file.
+
+
+
+
+ %1:
+No such file or directory.
+
+
+
+
+ The selected key file or directory is not readable.
+
+
+
+
+ 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 files.
+Please specify the key file directly.
+
+
+
+
+ %1:
+File is not readable.
+
+
+
+
+ Create Key File...
+
+
+PasswordDlg
+ TextLabelTextová nálepka
+ OKOK
+ ...
- ...
+ ...
+ CancelZrušit
+ Enter a Password and/or choose a key file.Vložit heslo nebo vybrat soubor s klíčem.
+ KeyKlíč
+ Password:Heslo:
+ Key file or directory:
- Soubor s klíčem nebo adresář:
+ Soubor s klíčem nebo adresář:
+ &Browse...&Projít...
+ Alt+BAlt+B
+ Use Password AND Key File
- Použít heslo současně se souborem s klíčem
+ Použít heslo současně se souborem s klíčem
+ ExitUkončit
+ Password Repet.:
- Zopakování hesla:
+ Zopakování hesla:
+ Last File
+
+
+ Key File:
+
+
+
+
+ Generate Key File...
+
+
+
+
+ Please repeat your password:
+
+
+
+
+ Back
+
+
+
+
+ Passwords are not equal.
+
+ PwDatabase
+ Unknown ErrorNeznámá chyba
+ Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE)Neočekávaná velikost souboru (DB_TOTAL_SIZE < DB_HEADER_SIZE)
+ Wrong SignatureChybný podpis
+ AES-Init FailedAES-Init selhal
+ 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]
+ Hash test failed.
The key is wrong or the file is damaged.Hash test selhal.
Klíč je chybný nebo je soubor poškozen.
+ Could not open key file.Nebylo možné otevřít soubor s klíčem.
+ Key file could not be written.Soubor s klíčem nemohl být uložen.
+ Could not open file.Nebylo možné otevřít soubor.
+ Could not open file for writing.Nebylo možné otevřít soubor pro zápis.
+ 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.
@@ -2552,101 +3399,129 @@ Buď je nesprávný klíč nebo je soubor poškozen.QObject
+ WarningUpozornění
+ Could not save configuration file.
Make sure you have write access to '~/.keepass'.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.
+ File not found.Soubor nenalezen.
+ Could not open file.Nebylo možné otevřít soubor.
+ 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).
+ File is empty.Soubor je prázdný.
+ Invalid XML file (see stdout for details).Neplatný XML soubor (viz stdout pro detaily).
+ Invalid XML file.Neplatný XML soubor.
+ Document does not contain data.Dokument neobsahuje žádná data.
+ ErrorChyba
+ Warning:Upozornění:
+ Invalid RGB color value.
Neplatná RGB hodnota barvy.
+ NeverNikdy
+
+
+ Could not locate library file.
+
+ SearchDialog
+ Search
@@ -2654,94 +3529,117 @@ Ujistěte se, že je možný přístup do '~/.keepass'.
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ě)
@@ -2749,18 +3647,22 @@ Ujistěte se, že je možný přístup do '~/.keepass'.
SelectIconDlg
+ Icon SelectionVýběr ikonky
+ Add Custom Icon...Přidat vlastní ikonku...
+ PickVybrat
+ CancelZrušit
@@ -2768,313 +3670,405 @@ Ujistěte se, že je možný přístup do '~/.keepass'.
SettingsDialog
+ Alt+ÖAlt+Ö
+ O&KO&K
+ Alt+KAlt+K
+ Alt+CAlt+C
+ SettingsNastavení
+ &Cancel&Zrušit
+ Clear clipboard after:Smazat schránku po:
+ Seconds
- Sekundách
+ Sekundách
+ Sh&ow passwords in plain text by defaultZobrazovat &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:
+ Expand group tree when opening a databasePři otevření databáze rozvinout skupiny ve stromové struktuře
+ &Other&Ostatní
+ Browser Command:Příkaz pro prohlížeč:
+ Securi&ty&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:
+ 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
+ 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
+ Clear History Now
+ Always ask before deleting entries or groups
+ 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:
+ 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)
+ Minimize to tray instead of taskbar
+ Start minimized
+ Start locked
+ Lock workspace when minimizing the main window
+ Global Auto-Type Shortcut:
- Use entry titles to match the window for Global Auto-Type
-
-
-
+ Custom Browser Command
+ Browse
+
+
+ Automatically save database on exit and workspace locking
+
+
+
+
+ Show plain text passwords in:
+
+
+
+
+ Database Key Dialog
+
+
+
+
+ seconds
+
+
+
+
+ Lock database after inactivity of
+
+
+
+
+ Use entries' title to match the window for Global Auto-Type
+
+ ShortcutWidget
+ Ctrl
+ Shift
+ Alt
+ AltGr
+ Win
@@ -3082,30 +4076,37 @@ Ujistěte se, že je možný přístup do '~/.keepass'.
SimplePasswordDialog
+ O&KO&K
+ Alt+KAlt+K
+ Alt+CAlt+C
+ ......
+ Enter your PasswordVložit heslo
+ Password:Heslo:
+ &Cancel&Zrušit
@@ -3113,54 +4114,66 @@ Ujistěte se, že je možný přístup do '~/.keepass'.
StandardDatabase
+ Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE)Neočekávaná velikost souboru (DB_TOTAL_SIZE < DB_HEADER_SIZE)
+ Wrong SignatureChybný 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]
+ Could not open file for writing.Nebylo možné otevřít soubor pro zápis.
@@ -3168,6 +4181,7 @@ Klíč je chybný nebo je soubor poškozen.
TrashCanDialog
+ TitleNázev
@@ -3175,10 +4189,12 @@ Klíč je chybný nebo je soubor poškozen.
WorkspaceLockedWidget
+ Form
+ <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;">
@@ -3186,10 +4202,12 @@ p, li { white-space: pre-wrap; }
+ Unlock
+ Close Database
@@ -3197,38 +4215,47 @@ p, li { white-space: pre-wrap; }
dbsettingdlg_base
+ Database SettingsNastavení databáze
+ EncryptionZašifrování
+ Algorithm:Algoritmus:
+ ??
+ Encryption Rounds:Počet kol zašifrování:
+ O&KO&K
+ Ctrl+KCtrl+K
+ &Cancel&Zrušit
+ Ctrl+CCtrl+C
diff --git a/src/translations/keepassx-de_DE.ts b/src/translations/keepassx-de_DE.ts
index 5231f38..3c3fe1e 100644
--- a/src/translations/keepassx-de_DE.ts
+++ b/src/translations/keepassx-de_DE.ts
@@ -1,7 +1,9 @@
-
+
+
-
+ @default
+ Could not open file (FileError=%1)Datei konnte nicht geöffnet werden. (FileError=%1)
@@ -9,117 +11,160 @@
AboutDialog
+ KeePassX %1KeePassX %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>Aktuelle Übersetzung: Deutsch</b><br><br>
+ <b>Author:</b> %1<br>
- <b>Autor:</b> %1<br>
+ <b>Autor:</b> %1<br>
+ $TRANSLATION_AUTHORTarek Saidi
+ $TRANSLATION_AUTHOR_EMAILHere you can enter your email or homepage if you want.tarek.saidi@arcor.de
+ TeamTeam
+ Developer, Project AdminEntwickler und Projektadministrator
+ Web Designer
+ Thanks ToDank An
+ Matthias MillerMatthias Miller
+ Patches for better MacOS X supportPatches für bessere MacOS X Unterstützung
+ Main Application IconAnwendungssymbol
+ Various fixes and improvements
+ ErrorFehler
+ 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.
+ OKOK
+ Could not open file '%1'Datei '%1' konnte nicht geöffnet werden.
+ The following error occured:
%1Folgender Fehler ist aufgetreten:
%1
+ Information on how to translate KeePassX can be found under:
+ Developer
+
+
+ Current Translation
+
+
+
+
+ None
+ Please replace 'None' with the language of your translation
+
+
+
+
+ Author
+
+ AboutDlg
+ AboutÜber
+ Thanks ToDank An
+ LicenseLizenz
+ TranslationÜbersetzung
+ <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><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.
@@ -128,35 +173,43 @@ KeePassX steht unter der
General Public License (GPL) Version 2.
+ tarek.saidi@arcor.detarek.saidi@arcor.de
+ http://keepass.berlios.de/http://keepass.berlios.de/
+ Credits
+ http://keepassx.sourceforge.net
+ keepassx@gmail.com
+ AppName
+ AppFunc
- Copyright (C) 2005 - 2007 KeePassX Team
+
+ Copyright (C) 2005 - 2008 KeePassX Team
KeePassX is distributed under the terms of the
General Public License (GPL) version 2.
@@ -165,30 +218,37 @@ General Public License (GPL) version 2.AddBookmarkDlg
+ Add Bookmark
+ Title:Titel:
+ File:
+ Browse...Durchsuchen...
+ Edit Bookmark
+ KeePass Databases (*.kdb)
+ All Files (*)
@@ -196,58 +256,70 @@ General Public License (GPL) version 2.AutoType
+ More than one 'Auto-Type:' key sequence found.
Allowed is only one per entry.Es wurde mehr als eine 'Auto-Type:'-Zeichenkette gefunden.
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
Öffnende Klammer '{' ohne Gegenstück gefunden.
+ ErrorFehler
+ Syntax Error in Auto-Type sequence near character %1
Found '{' without closing '}'
- Auto-Type string contains illegal characters
+
+ Auto-Type string contains invalid charactersAutoTypeDlg
+ KeePassX - Auto-Type
+ Click on an entry to auto-type it.
+ Group
+ TitleTitel
+ UsernameBenutzername
+ CancelAbbrechen
+ Auto-Type
@@ -255,98 +327,120 @@ Erlaubt ist nur eine pro Eintrag.
CAboutDialog
+ KeePassX %1KeePassX %1
+ ErrorFehler
+ 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.
+ OKOK
+ Could not open file '%1'Datei '%1' konnte nicht geöffnet werden.
+ The following error occured:
%1Folgender Fehler ist aufgetreten:
%1
+ http://keepass.berlios.de/index.phphttp://keepass.berlios.de/index.php
+ <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>
+ $TRANSALTION_AUTHORTarek Saidi
+ $TRANSLATION_AUTHOR_EMAILHere 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://keepass.berlios.de/translation-howto.htmlInformationen wie Sie eine Übersetztung für KeePassX erstellen können finden Sie unter:
http://keepass.berlios.de/translation-howto.html
+ Matthias MillerMatthias Miller
+ http://www.outofhanwell.com/<br>Mac OS X Supporthttp://www.outofhanwell.com/<br>Mac OS X Unterstützung
+ $TRANSLATION_AUTHORTarek Saidi
+ Information on how to translate KeePassX can be found under:
http://keepass.berlios.de/Informationen über das Erstellen eine Übersetztung für KeePassX sind hier zu finden:
http://keepass.berlios.de
+ TeamTeam
+ Developer, Project AdminEntwickler und Projektadministrator
+ Thanks ToDank An
+ Patches for better MacOS X supportPatches für bessere MacOS X Unterstützung
+ Main Application IconAnwendungssymbol
@@ -354,38 +448,47 @@ http://keepass.berlios.de
CDbSettingsDlg
+ AES(Rijndael): 256 Bit (default)AES(Rijndael): 256 Bit (Standard)
+ Twofish: 256 BitTwofish: 256 Bit
+ WarningWarnung
+ Please determine the number of encryption rounds.Bitte geben Sie die Zahl der Verschlüsselungsrunden an.
+ OKOK
+ ErrorFehler
+ '%1' is not valid integer value.'%1' ist kein gültiger Ganzzahlwert.
+ The number of encryption rounds have to be greater than 0.Die Anzahl an Verschlüsselungsrunden muss mindestens Eins betragen.
+ SettingsEinstellungen
@@ -393,159 +496,201 @@ http://keepass.berlios.de
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...
+ Overwrite?Überschreiben?
+ A file with this name already exists.
Do you want to replace it?Eine Datei mit diesem Namen existiert bereits.
Möchten Sie diese ersetzen.
+ YesJa
+ NoNein
+ ErrorFehler
+ Could not remove old file.Alte Datei konnte nicht entfernt werden.
+ Could not create new file.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, Abbrechen
+ Edit EntryEintrag bearbeiten
+ Could not open file.Datei konnte nicht geöffnet werden.
+ %1 Bit
+ Add Attachment...Anhang hinzufügen...
+ 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...
+ [Untitled Entry]
+
+
+ New Entry
+
+ CGenPwDialog
+ NoticeHinweis
+ You need to enter at least one characterSie müssen mindestens ein Zeichen angeben.
+ OKOK
+ ErrorFehler
+ Could not open '/dev/random' or '/dev/urandom'.'/dev/random' oder '/dev/urandom' konnte nicht geöffnet werden.
+ Password GeneratorPasswortgenerator
+ %1 Bits
@@ -553,170 +698,166 @@ Sind Sie sicher?
CPasswordDialog
+ OK
- OK
+ OK
+ Error
- Fehler
+ Fehler
+ Please enter a Password.
- Bitte geben Sie ein Passwort ein.
+ Bitte geben Sie ein Passwort ein.
+ Please choose a key file.
- Bitte wählen Sie eine Schlüsseldatei.
+ 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
+ Bitte geben Sie ein Passwort ein oder wählen
Sie eine Schlüsseldatei.
+ Database Key
- Datenbankschlüssel
+ Datenbankschlüssel
+ Select a Key File
- Schlüsseldatei wählen
+ Schlüsseldatei wählen
+ *.key*.key
+ Unexpected Error: File does not exist.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.
+ 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.
+ 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.
+ 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.
+ 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.
+ Schlüsseldatei konnte nicht gefunden werden.
+ Key file is not readable.
Please check your permissions.
- Die angegebene Schlüsseldatei ist nicht lesbar.
+ Die angegebene Schlüsseldatei ist nicht lesbar.
Bitter prüfen Sie Ihre Zugriffsrechte.
+ Warning
- Warnung
+ Warnung
+ Password an password repetition are not equal.
Please check your input.
- Passwort und Passwortwiederholung stimmen nicht überein.
+ 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
+ Bitte geben Sie ein Passwort ein oder wählen
Sie eine Schlüsseldatei.
+ A file with the name 'pwsafe.key' already exisits in the given directory.
Do you want to replace it?Im angegebenen Verzeichnis existiert bereits eine Datei mit dem Namen 'pwsafe.key'.
Möchten Sie diese ersetzen?
+ YesJa
+ NoNein
+ The exisiting file is not writable.Die exisitierende Datei ist nicht überschreibbar.
+ A file with the this name already exisits.
Do you want to replace it?Eine Datei mit diesem Namen existiert bereits.
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.
+ Das angegebene Verzeichnis oder die angegebene Schlüsseldatei ist nicht lesbar.
Bitter prüfen Sie Ihre Zugriffsrechte.
- All Files (*)
-
-
-
- Key Files (*.key)
-
-
-
- File exists.
-
-
-
- A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one?
-
-
-
- Use
-
-
-
- Overwrite
-
-
-
+ Cancel
- Abbrechen
-
-
- Key file could not be created.
-%1
-
-
-
- Last File
-
+ AbbrechenCSearchDlg
+ NoticeHinweis
+ Please enter a search string.Bitte geben Sie einen Suchbegriff ein.
+ OKOK
+ SearchSuchen
@@ -724,53 +865,65 @@ Bitter prüfen Sie Ihre Zugriffsrechte.
CSelectIconDlg
+ DeleteLöschen
+ Add Icons...Symbol hinzufügen...
+ Images (%1)Symbole (%1)
+ %1: File could not be loaded.
%1: Datei konnte nicht geladen werden.
+ ErrorFehler
+ Replace...Ersetzen...
+ An error occured while loading the icon(s):
%1Beim Laden der Symbole traten Fehler auf:
%1
+ An error occured while loading the icon.Beim Laden des Symbols ist ein Fehler aufgetreten.
+ Add Custom Icon
+ PickWählen
+ %1: File could not be loaded.
+ An error occured while loading the icon(s):
@@ -778,14 +931,17 @@ Bitter prüfen Sie Ihre Zugriffsrechte.
CSettingsDlg
+ SettingsEinstellungen
+ Select a directory...Verzeichnis wählen...
+ Select an executable...
@@ -793,6 +949,7 @@ Bitter prüfen Sie Ihre Zugriffsrechte.
CalendarDialog
+ Calendar
@@ -800,19 +957,23 @@ Bitter prüfen Sie Ihre Zugriffsrechte.
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;">
@@ -823,206 +984,257 @@ p, li { white-space: pre-wrap; }
CustomizeDetailViewDialog
+ Group
+ TitleTitel
+ UsernameBenutzername
+ PasswordPasswort
+ Url
+ CommentKommentar
+ 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
+ CancelAbbrechen
@@ -1030,6 +1242,7 @@ p, li { white-space: pre-wrap; }
Database
+ NeverNie
@@ -1037,61 +1250,80 @@ p, li { white-space: pre-wrap; }
DatabaseSettingsDlg
+ Database SettingsDatenbankeinstellungen
+ EncryptionVerschlüsselung
+ Algorithm:Algorithmus:
+ Encryption Rounds:Verschlüsselungsrunden:
+
+
+ Calculate rounds for a 1-second delay on this computer
+
+ DetailViewTemplate
+ Group
+ TitleTitel
+ UsernameBenutzername
+ PasswordPasswort
+ URLURL
+ CreationErstellung
+ Last AccessLetzter Zugriff
+ Last Modification
+ Expiration
+ CommentKommentar
@@ -1099,90 +1331,112 @@ p, li { white-space: pre-wrap; }
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
+ Alt+CAlt+A
+ %1%1
+ Icon:Symbol:
+ % Bit% Bit
+ Ge&n.Ge&n.
+ ......
+ O&KO&K
+ Alt+KAlt+K
+ NeverNie
+ Attachment:Anhang:
+ %1 Bit
@@ -1190,30 +1444,37 @@ p, li { white-space: pre-wrap; }
EditGroupDialog
+ Group PropertiesGruppen-Eigenschaften
+ Title:Titel:
+ Icon:Symbol:
+ &CancelAbbre&chen
+ Alt+CAlt+C
+ O&KO&K
+ >
@@ -1221,30 +1482,37 @@ p, li { white-space: pre-wrap; }
ExpiredEntriesDialog
+ Expired Entries
+ Double click on an entry to jump to it.
+ Group
+ TitleTitel
+ UsernameBenutzername
+ Expired
+ Expired Entries in the Database
@@ -1252,14 +1520,17 @@ p, li { white-space: pre-wrap; }
Export_KeePassX_Xml
+ XML Files (*.xml)
+ All Files (*)
+ KeePassX XML File
@@ -1267,18 +1538,22 @@ p, li { white-space: pre-wrap; }
Export_Txt
+ Could not open file (FileError=%1)Datei konnte nicht geöffnet werden. (FileError=%1)
+ All Files (*)
+ Text Files (*.txt)
+ Text File
@@ -1286,10 +1561,12 @@ p, li { white-space: pre-wrap; }
ExporterBase
+ Import File...
+ Export Failed
@@ -1297,62 +1574,77 @@ p, li { white-space: pre-wrap; }
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.
@@ -1360,114 +1652,142 @@ p, li { white-space: pre-wrap; }
GenPwDlg
+ Alt+U
+ Alt+N
+ Alt+M
+ Alt+L
+ Password GeneratorPasswortgenerator
+ Accep&tAnnehmen
+ &CancelAbbre&chen
+ GenerateGenerieren
+ New Password:Neues Passwort:
+ Quality:Qualität:
+ OptionsOptionen
+ &Upper LettersGroßbuchstaben:
+ &Lower LettersKleinbuchstaben:
+ &NumbersZahlen
+ &Special CharactersSonderzeichen
+ MinusMinus
+ U&nderlineUnterstrich
+ h&igher ANSI-Charactershöhere ANSI-Zeichen
+ Use &only following characters:Nur folgende Zeichen benutzen:
+ Alt+O
+ Length:Länge:
+ Use "/dev/rando&m"'/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
@@ -1475,26 +1795,32 @@ p, li { white-space: pre-wrap; }
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.
@@ -1502,23 +1828,28 @@ p, li { white-space: pre-wrap; }
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.
@@ -1526,50 +1857,62 @@ p, li { white-space: pre-wrap; }
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).
@@ -1577,10 +1920,12 @@ p, li { white-space: pre-wrap; }
ImporterBase
+ Import File...
+ Import Failed
@@ -1588,54 +1933,66 @@ p, li { white-space: pre-wrap; }
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 SignatureFalsche 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.
+ 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.
+ Unexpected error: Offset is out of range.
@@ -1643,18 +2000,22 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt.
Kdb3Database::EntryHandle
+ Bytes
+ KiB
+ MiB
+ GiB
@@ -1662,93 +2023,115 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt.
KeepassEntryView
+ TitleTitel
+ UsernameBenutzername
+ URLURL
+ PasswordPasswort
+ CommentsKommentar
+ ExpiresLäuft ab
+ CreationErstellung
+ Last ChangeLetzte Änderung
+ Last AccessLetzter Zugriff
+ AttachmentAnhang
+ %1 items%1 Elemente
- Are you sure you want delete this entry?
-
-
-
- Are you sure you want delete these %1 entries?
-
-
-
+ Delete?
+ Group
+ ErrorFehler
+ At least one group must exist before adding an entry.
+ OKOK
+
+
+ Are you sure you want to delete this entry?
+
+
+
+
+ Are you sure you want to delete these %1 entries?
+
+ KeepassGroupView
+ Search ResultsSuchergebnisse
+ GroupsGruppen
+ Delete?
+ Are you sure you want to delete this group, all it's child groups and all their entries?
@@ -1756,293 +2139,373 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt.
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?
+ Yes
- Ja
+ Ja
+ No
- Nein
+ Nein
+ Cancel
- Abbrechen
+ Abbrechen
+ <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<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.
%1
+ Save Database As...Datenbank speichern unter...
+ ReadyBereit
+ [new][neu]
+ Open Database...Datenbank öffnen...
+ Loading Database...Lade Datenbank...
+ Loading FailedLaden fehlgeschlagen
+ Could not create key file. The following error occured:
%1Datei konnte nicht angelegt werden. Der folgende Fehler trat auf:
%1
+ Export To...Exportieren nach...
+ KeePassX [new]KeePassX [neu]
+ Unknown error in Import_PwManager::importFile()()Unbekannter Fehler in Import_PwManager::importFile()()
+ Unknown error in Import_KWalletXml::importFile()Unbekannter Fehler in Import_KWalletXml::importFile()
+ Unknown error in PwDatabase::openDatabase()Unbekannter Fehler in PwDatabase::openDatabase()
+ Ctrl+V
+ Show Toolbar
- Werkzeugleiste anzeigen
+ Werkzeugleiste anzeigen
+ KeePassXKeePassX
+ Unknown error while loading database.
+ KeePass Databases (*.kdb)
+ All Files (*)
+ Save Database...
- New Database
-
-
-
+ 1 Month
+ %1 Months
+ 1 Year
+ %1 Years
+ 1 Day
+ %1 Days
+ less than 1 day
- Set Master Key
-
-
-
+ Locked
+ Unlocked
+ Ctrl+L
+ Ctrl+Q
+ The database file does not exist.
+ new
+ Expired
+ Un&lock Workspace
+ &Lock Workspace
+ The following error occured while opening the database:
+ File could not be saved.
+
+
+ Show &Toolbar
+
+
+
+
+ Ctrl+N
+
+
+
+
+ Ctrl+P
+
+
+
+
+ Ctrl+X
+
+ Main
+ ErrorFehler
+ File '%1' could not be found.Datei '%1' konnte nicht geöffnet werden.
+ OKOK
@@ -2050,481 +2513,855 @@ die Änderungen speichern?
MainWindow
+ KeePassXKeePassX
+ FileDatei
+ Import from...Importieren aus...
+ ViewAnsicht
+ Columns
- Spalten
+ Spalten
+ ExtrasExtras
+ HelpHilfe
+ New Database...
- Neue Datenbank...
+ Neue Datenbank...
+ Open Database...Datenbank öffnen...
+ Close DatabaseDatenbank schließen
+ Save DatabaseDatenbank speichern
+ Save Database As...Datenbank speichern unter...
+ Database Settings...Datenbankeinstellungen...
+ Change Master Key...Hauptschlüssel ändern...
+ ExitBeenden
+ PwManager File (*.pwm)PwManager-Datei (*.pwm)
+ KWallet XML-File (*.xml)KWallet XML-Datei (*.xml)
+ Add New Group...
- Neu Gruppe hinzufügen...
+ Neu Gruppe hinzufügen...
+ Edit Group...
- Gruppe bearbeiten...
+ Gruppe bearbeiten...
+ Delete Group
- Gruppe löschen
+ Gruppe löschen
+ Copy Password to Clipboard
- Passwort in Zwischenablage kopieren
+ Passwort in Zwischenablage kopieren
+ Copy Username to Clipboard
- Benutzername in Zwischenablage kopieren
+ Benutzername in Zwischenablage kopieren
+ Open URL
- URL öffnen
+ URL öffnen
+ Save Attachment As...
- Anhang speichern unter...
+ Anhang speichern unter...
+ Add New Entry...
- Neuen Eintrag hinzufügen...
+ Neuen Eintrag hinzufügen...
+ View/Edit Entry...
- Eintrag anzeigen/bearbeiten...
+ Eintrag anzeigen/bearbeiten...
+ Delete Entry
- Eintrag löschen
+ Eintrag löschen
+ Clone Entry
- Eintrag duplizieren
+ Eintrag duplizieren
+ Search In Database...In Datenbank suchen...
+ Search in this group...In dieser Gruppe suchen...
+ Show ToolbarWerkzeugleiste anzeigen
+ Show Entry Details
- Eintragsdetails anzeigen
+ Eintragsdetails anzeigen
+ Hide Usernames
- Benutzernamen verbergen
+ Benutzernamen verbergen
+ Hide Passwords
- Passwörter verbergen
+ Passwörter verbergen
+ Title
- Titel
+ Titel
+ Username
- Benutzername
+ Benutzername
+ URL
- URL
+ URL
+ Password
- Passwort
+ Passwort
+ Comment
- Kommentar
+ Kommentar
+ Expires
- Läuft ab
+ Läuft ab
+ Creation
- Erstellung
+ Erstellung
+ Last Change
- Letzte Änderung
+ Letzte Änderung
+ Last Access
- Letzter Zugriff
+ Letzter Zugriff
+ Attachment
- Anhang
+ Anhang
+ Settings...Einstellungen...
+ About...Über...
+ EditBearbeiten
+ Show Statusbar
- Statusleiste anzeigen
+ Statusleiste anzeigen
+ Export to...Exportieren nach...
+ KeePassX Handbook...KeePassX Handbuch...
+ Plain Text (*.txt)Klartext (*.txt)
+ HideVerbergen
+ Perform AutoType
- AutoType ausführen
+ AutoType ausführen
+ Type HereType Here
+ Toolbar Icon Size
- Symbolleistengröße
-
-
- 16x16
-
-
-
- 22x22
-
-
-
- 28x28
-
+ Symbolleistengröße
+ &ViewAnsicht
+ &File&Datei
+ &Import from...&Importieren aus...
+ &Export to...&Exportieren nach...
+ &Edit&Bearbeiten
+ E&xtrasE&xtras
+ &Help&Hilfe
+ &New Database...
- &Neue Datenbank...
+ &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...
-
-
-
+ Recycle Bin...
+ GroupsGruppen
- Bookmarks
-
-
-
- Manage Bookmarks...
-
-
-
+ &Lock Workspace
- Q&uit
+
+ &Bookmarks
- Search in Database...
+
+ Toolbar &Icon Size
- Search in this Group...
+
+ &Columns
- Add Bookmark...
+
+ &Manage Bookmarks...
- Bookmark this Database...
+
+ &Quit
+
+
+
+
+ &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...
+
+
+
+
+ De&lete Entry
+
+
+
+
+ &Clone Entry
+
+
+
+
+ Search &in Database...
+
+
+
+
+ Search in this &Group...
+
+
+
+
+ Show &Entry Details
+
+
+
+
+ Hide &Usernames
+
+
+
+
+ Hide &Passwords
+
+
+
+
+ &Title
+
+
+
+
+ User&name
+
+
+
+
+ &URL
+
+
+
+
+ &Password
+
+
+
+
+ &Comment
+
+
+
+
+ E&xpires
+
+
+
+
+ C&reation
+
+
+
+
+ &Last Change
+
+
+
+
+ Last &Access
+
+
+
+
+ A&ttachment
+
+
+
+
+ Show &Statusbar
+
+
+
+
+ &Perform AutoType
+
+
+
+
+ &16x16
+
+
+
+
+ &22x22
+
+
+
+
+ 2&8x28
+
+
+
+
+ &Password Generator...
+
+
+
+
+ &Group (search results only)
+
+
+
+
+ Show &Expired Entries...
+
+
+
+
+ &Add Bookmark...
+
+
+
+
+ Bookmark &this Database...ManageBookmarksDlg
+ Manage Bookmarks
+
+ PasswordDialog
+
+
+ Enter Master Key
+
+
+
+
+ Set Master Key
+
+
+
+
+ Change Master Key
+
+
+
+
+ Database Key
+ Datenbankschlüssel
+
+
+
+ Last File
+
+
+
+
+ Select a Key File
+ Schlüsseldatei wählen
+
+
+
+ All Files (*)
+
+
+
+
+ Key Files (*.key)
+
+
+
+
+ Please enter a Password or select a key file.
+ Bitte geben Sie ein Passwort ein oder wählen
+Sie eine Schlüsseldatei.
+
+
+
+ Please enter a Password.
+ Bitte geben Sie ein Passwort ein.
+
+
+
+ Please provide a key file.
+
+
+
+
+ %1:
+No such file or directory.
+
+
+
+
+ The selected key file or directory is not readable.
+
+
+
+
+ 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 files.
+Please specify the key file directly.
+
+
+
+
+ %1:
+File is not readable.
+
+
+
+
+ Create Key File...
+
+
+PasswordDlg
+ OKOK
+ ...
- ...
+ ...
+ CancelAbbrechen
+ Enter a Password and/or choose a key file.Geben Sie ein Passwort ein oder wählen Sie eine Schlüsseldatei.
+ KeySchlüssel
+ Password:Passwort:
+ Key file or directory:
- Schlüsseldatei oder Datenträger:
+ Schlüsseldatei oder Datenträger:
+ &Browse...Durchsuchen...
+ Alt+B
+ Use Password AND Key File
- Passwort UND Schlüsseldatei verwenden
+ Passwort UND Schlüsseldatei verwenden
+ ExitBeenden
+ Password Repet.:
- Passwort Wdhlg.:
+ Passwort Wdhlg.:
+ Last File
+
+
+ Key File:
+
+
+
+
+ Generate Key File...
+
+
+
+
+ Please repeat your password:
+
+
+
+
+ Back
+
+
+
+
+ Passwords are not equal.
+
+ PwDatabase
+ Unknown ErrorUnbekannter Fehler
+ Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE)Unerwartete Dateigrößen (DB_TOTAL_SIZE < DB_HEADER_SIZE)
+ Wrong SignatureFalsche Signatur
+ AES-Init FailedAES Initialisierung fehlgeschlagen
+ 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.
+ Could not open key file.Schlüsseldatei konnte nicht geöffnet werden.
+ Key file could not be written.Schlüsseldatei konnte nicht geschrieben werden.
+ Could not open file.Datei konnte nicht geöffnet werden.
+ Could not open file for writing.Datei konnte nicht zum Schreiben geöffnent werden.
+ 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.
@@ -2534,100 +3371,128 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt.QObject
+ WarningWarnung
+ Could not save configuration file.
Make sure you have write access to '~/.keepass'.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.
+ File not found.Datei nicht gefunden.
+ Could not open file.Datei konnte nicht geöffnet werden.
+ 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).
+ File is empty.Datei ist leer.
+ Invalid XML file (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.
+ ErrorFehler
+ Warning:Warnung:
+ Invalid RGB color value.
Ungültiger RGB-Farbwert.
+ NeverNie
+
+
+ Could not locate library file.
+
+ SearchDialog
+ SearchSuchen
@@ -2635,90 +3500,112 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.
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
+ Include Subgroups (recursive)Untergruppen einbeziehen (rekursiv)
@@ -2726,18 +3613,22 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.
SelectIconDlg
+ Icon SelectionSymbolauswahl
+ Add Custom Icon...Eigenes Symbol hinzufügen...
+ PickWählen
+ CancelAbbrechen
@@ -2745,309 +3636,400 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.
SettingsDialog
+ Alt+Ö
+ O&KO&K
+ SettingsEinstellungen
+ &CancelAbbrechen
+ Clear clipboard after:Zwischenablage löschen nach:
+ Seconds
- Sekunden
+ Sekunden
+ Sh&ow passwords in plain text by defaultPasswort 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:
+ Expand group tree when opening a databaseGruppenbaum beim Öffnen aufklappen
+ &OtherSonstiges
+ Remember last opend fileZuletzt geöffnete Datei beim Starten öffnen
+ Browser Command:Browser Befehl:
+ Securi&tySicherheit
+ Alternating Row ColorsAbwechselnde Zeilenfarben
+ Browse...Durchsuchen...
+ Remember last key type and locationArt und Ort des Schlüssels der letzten Datenbank merken
+ Mounting Root: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
+ 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
+ Clear History Now
+ Always ask before deleting entries or groups
+ 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:
+ 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)
+ Minimize to tray instead of taskbar
+ Start minimized
+ Start locked
+ Lock workspace when minimizing the main window
+ Global Auto-Type Shortcut:
- Use entry titles to match the window for Global Auto-Type
-
-
-
+ Custom Browser Command
+ Browse
+
+
+ Automatically save database on exit and workspace locking
+
+
+
+
+ Show plain text passwords in:
+
+
+
+
+ Database Key Dialog
+
+
+
+
+ seconds
+
+
+
+
+ Lock database after inactivity of
+
+
+
+
+ Use entries' title to match the window for Global Auto-Type
+
+ ShortcutWidget
+ Ctrl
+ Shift
+ Alt
+ AltGr
+ Win
@@ -3055,22 +4037,27 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.
SimplePasswordDialog
+ O&KO&K
+ ......
+ Enter your Password
+ Password:Passwort:
+ &CancelAbbrechen
@@ -3078,38 +4065,46 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.
StandardDatabase
+ 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 SignatureFalsche 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.
+ Could not open file for writing.Datei konnte nicht zum Schreiben geöffnent werden.
@@ -3117,10 +4112,12 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt.
TrashCanDialog
+ TitleTitel
+ UsernameBenutzername
@@ -3128,10 +4125,12 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt.
WorkspaceLockedWidget
+ Form
+ <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;">
@@ -3139,10 +4138,12 @@ p, li { white-space: pre-wrap; }
+ Unlock
+ Close DatabaseDatenbank schließen
@@ -3150,30 +4151,37 @@ p, li { white-space: pre-wrap; }
dbsettingdlg_base
+ Database SettingsDatenbankeinstellungen
+ EncryptionVerschlüsselung
+ Algorithm:Algorithmus:
+ ??
+ Encryption Rounds:Verschlüsselungsrunden:
+ O&KO&K
+ &CancelAbbrechen
diff --git a/src/translations/keepassx-es_ES.ts b/src/translations/keepassx-es_ES.ts
index a0ca443..d7d9e30 100644
--- a/src/translations/keepassx-es_ES.ts
+++ b/src/translations/keepassx-es_ES.ts
@@ -1,7 +1,9 @@
-
+
+
-
+ @default
+ Could not open file (FileError=%1)No se pudo abrir el archivo (FileError=%1)
@@ -9,130 +11,176 @@
AboutDialog
+ KeePassX %1KeePassX %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>
+ $TRANSLATION_AUTHOR
+ $TRANSLATION_AUTHOR_EMAILHere you can enter your email or homepage if you want.jarfil@jarfil.net
+ Team
+ Developer, Project Admin
+ Web Designer
+ Thanks ToAgradecimientos
+ Patches for better MacOS X support
+ Main Application Icon
+ Various fixes and improvements
+ ErrorError
+ 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:
%1Ha ocurrido el siguiente error:
%1
+ Developer
+ Information on how to translate KeePassX can be found under:
+
+
+ Current Translation
+
+
+
+
+ None
+ Please replace 'None' with the language of your translation
+
+
+
+
+ Author
+
+ AboutDlg
+ AboutAcerca de
+ Thanks ToAgradecimientos
+ LicenseLicencia
+ TranslationTraducción
+ Credits
+ http://keepassx.sourceforge.net
+ keepassx@gmail.com
+ AppName
+ AppFunc
- Copyright (C) 2005 - 2007 KeePassX Team
+
+ Copyright (C) 2005 - 2008 KeePassX Team
KeePassX is distributed under the terms of the
General Public License (GPL) version 2.
@@ -141,30 +189,37 @@ General Public License (GPL) version 2.AddBookmarkDlg
+ Add Bookmark
+ Title:Título:
+ File:
+ Browse...Navegar...
+ Edit Bookmark
+ KeePass Databases (*.kdb)
+ All Files (*)
@@ -172,51 +227,62 @@ General Public License (GPL) version 2.AutoType
+ More than one 'Auto-Type:' key sequence found.
Allowed is only one per entry.
+ ErrorError
+ Syntax Error in Auto-Type sequence near character %1
Found '{' without closing '}'
- Auto-Type string contains illegal characters
+
+ Auto-Type string contains invalid charactersAutoTypeDlg
+ KeePassX - Auto-Type
+ Click on an entry to auto-type it.
+ Group
+ TitleTítulo
+ UsernameUsuario
+ CancelCancelar
+ Auto-Type
@@ -224,64 +290,78 @@ Allowed is only one per entry.
CAboutDialog
+ KeePassX %1KeePassX %1
+ ErrorError
+ 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.
+ OKOK
+ Could not open file '%1'No se pudo abrir fichero '%1'
+ The following error occured:
%1Ha ocurrido el siguiente error:
%1
+ http://keepass.berlios.de/index.phphttp://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_AUTHORJaroslaw Filiochowski
+ $TRANSLATION_AUTHOR_EMAILHere 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.htmlPuede encontrar información sobre cómo traducir KeePassX en esta dirección:
http://keepass.berlios.de/translation-howto.html
+ Thanks ToAgradecimientos
@@ -289,38 +369,47 @@ http://keepass.berlios.de/translation-howto.html
CDbSettingsDlg
+ AES(Rijndael): 256 Bit (default)AES(Rijndael): 256 Bits (por defecto)
+ Twofish: 256 BitTwofish: 256 Bits
+ WarningAviso
+ Please determine the number of encryption rounds.Defina el número de iteraciones de cifrado.
+ OKAceptar
+ ErrorError
+ '%1' is not valid integer value.'%1' no es un valor entero válido.
+ The number of encryption rounds have to be greater than 0.El númer de iteraciones de cifrado debe ser mayor que 0.
+ SettingsPreferencias
@@ -328,159 +417,201 @@ http://keepass.berlios.de/translation-howto.html
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...
+ Overwrite?Sobreescribir?
+ A file with this name already exists.
Do you want to replace it?Ya existe un archivo con este nombre.
¿Desea reemplazarlo?
+ YesSí
+ NoNo
+ ErrorError
+ Could not remove old file.No se pudo eliminar el archivo anterior.
+ Could not create new file.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, Cancelar
+ Edit EntryEditar Entrada
+ Could not open file.No se pudo abrir el archivo.
+ %1 Bit
+ Add Attachment...
+ 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...
+ [Untitled Entry]
+
+
+ New Entry
+
+ CGenPwDialog
+ NoticeNotificación
+ You need to enter at least one characterDebe introducir al menos un carácter
+ OKAceptar
+ ErrorError
+ Could not open '/dev/random' or '/dev/urandom'.No se pudo abrir '/dev/random' o '/dev/urandom'.
+ Password GeneratorGenerador de Contraseña
+ %1 Bits
@@ -488,167 +619,157 @@ Are you sure?
CPasswordDialog
+ OK
- Aceptar
+ Aceptar
+ Error
- Error
+ Error
+ Please enter a Password.
- Introduzca una Contraseña.
+ Introduzca una Contraseña.
+ Please choose a key file.
- Seleccione un archivo de clave.
+ Seleccione un archivo de clave.
+ Please enter a Password or select a key file.
- Introduzca una Contraseña o seleccione un archivo de clave.
+ Introduzca una Contraseña o seleccione un archivo de clave.
+ Database Key
- Contraseña de la Base de Datos
+ Contraseña de la Base de Datos
+ Select a Key File
- Seleccione un Archivo de Clave
+ Seleccione un Archivo de Clave
+ *.key*.key
+ Unexpected Error: File does not exist.Error Inesperado: Archivo no existe.
+ The selected key file or directory does not exist.
- El archivo de clave seleccionado o el directorio no existen.
+ 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.
+ 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.
+ 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.
+ 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.
+ Archivo de clave no encontrado.
+ Key file is not readable.
Please check your permissions.
- Archivo de clave no se puede leer.
+ Archivo de clave no se puede leer.
Compruebe sus permisos de acceso.
+ Warning
- Advertencia
+ Advertencia
+ Password an password repetition are not equal.
Please check your input.
- Las contraseñas no coinciden.
+ 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.
+ Introduzca una contraseña o seleccione un archivo de clave.
+ A file with the name 'pwsafe.key' already exisits in the given directory.
Do you want to replace it?El archivo 'pwsafe.key' ya existe en el directorio.
¿Desea reemplazarlo?
+ YesSí
+ NoNo
+ The exisiting file is not writable.El archivo existente no se puede escribir.
+ A file with the this name already exisits.
Do you want to replace it?Existe un archivo con ese nombre.
¿Desea reemplazarlo?
- The selected key file or directory is not readable.
-Please check your permissions.
-
-
-
- All Files (*)
-
-
-
- Key Files (*.key)
-
-
-
- File exists.
-
-
-
- A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one?
-
-
-
- Use
-
-
-
- Overwrite
-
-
-
+ Cancel
- Cancelar
-
-
- Key file could not be created.
-%1
-
-
-
- Last File
-
+ CancelarCSearchDlg
+ NoticeAviso
+ Please enter a search string.Introduzca una cadena de búsqueda.
+ OKAceptar
+ SearchBuscar
@@ -656,42 +777,52 @@ Please check your permissions.
CSelectIconDlg
+ Delete
+ Add Icons...
+ Images (%1)
+ ErrorError
+ Replace...
+ An error occured while loading the icon.
+ Add Custom Icon
+ Pick
+ %1: File could not be loaded.
+ An error occured while loading the icon(s):
@@ -699,14 +830,17 @@ Please check your permissions.
CSettingsDlg
+ SettingsPreferencias
+ Select a directory...Seleccione un directorio...
+ Select an executable...
@@ -714,6 +848,7 @@ Please check your permissions.
CalendarDialog
+ Calendar
@@ -721,19 +856,23 @@ Please check your permissions.
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;">
@@ -744,206 +883,257 @@ p, li { white-space: pre-wrap; }
CustomizeDetailViewDialog
+ Group
+ TitleTítulo
+ UsernameUsuario
+ PasswordContraseña
+ Url
+ CommentComentario
+ 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
+ CancelCancelar
@@ -951,6 +1141,7 @@ p, li { white-space: pre-wrap; }
Database
+ NeverNunca
@@ -958,61 +1149,80 @@ p, li { white-space: pre-wrap; }
DatabaseSettingsDlg
+ Database SettingsPreferencias de Base de Datos
+ EncryptionCifrado
+ Algorithm:Algoritmo:
+ Encryption Rounds:Iteraciones de Cifrado:
+
+
+ Calculate rounds for a 1-second delay on this computer
+
+ DetailViewTemplate
+ Group
+ TitleTítulo
+ UsernameUsuario
+ PasswordContraseña
+ URLURL
+ CreationCreación
+ Last AccessÚltimo Acceso
+ Last Modification
+ Expiration
+ CommentComentario
@@ -1020,90 +1230,112 @@ p, li { white-space: pre-wrap; }
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
+ Alt+CAlt+C
+ %1%1
+ Icon:Icono:
+ % Bit% Bits
+ Ge&n.Ge&n.
+ ......
+ O&K&Aceptar
+ Alt+KAlt+A
+ NeverNunca
+ Attachment:Adjunto:
+ %1 Bit
@@ -1111,34 +1343,42 @@ p, li { white-space: pre-wrap; }
EditGroupDialog
+ Group PropertiesPropiedades del Grupo
+ Title:Título:
+ Icon:Icono:
+ &Cancel&Cancelar
+ Alt+CAlt+C
+ O&K&Aceptar
+ Alt+KAlt+A
+ >
@@ -1146,30 +1386,37 @@ p, li { white-space: pre-wrap; }
ExpiredEntriesDialog
+ Expired Entries
+ Double click on an entry to jump to it.
+ Group
+ TitleTítulo
+ UsernameUsuario
+ Expired
+ Expired Entries in the Database
@@ -1177,14 +1424,17 @@ p, li { white-space: pre-wrap; }
Export_KeePassX_Xml
+ XML Files (*.xml)
+ All Files (*)
+ KeePassX XML File
@@ -1192,18 +1442,22 @@ p, li { white-space: pre-wrap; }
Export_Txt
+ Could not open file (FileError=%1)No se pudo abrir el archivo (FileError=%1)
+ All Files (*)
+ Text Files (*.txt)
+ Text File
@@ -1211,10 +1465,12 @@ p, li { white-space: pre-wrap; }
ExporterBase
+ Import File...
+ Export Failed
@@ -1222,62 +1478,77 @@ p, li { white-space: pre-wrap; }
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.
@@ -1285,114 +1556,142 @@ p, li { white-space: pre-wrap; }
GenPwDlg
+ Alt+UAlt+U
+ Alt+NAlt+N
+ Alt+MAlt+M
+ Alt+LAlt+L
+ Password GeneratorGenerador de Contraseña
+ Accep&t&Aceptar
+ &Cancel&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
+ Alt+HAlt+M
+ Use &only following characters:Usar sól&o carácteres siguientes:
+ Alt+OAlt+O
+ Length:Longitud:
+ Use "/dev/rando&m"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
@@ -1400,26 +1699,32 @@ p, li { white-space: pre-wrap; }
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.
@@ -1427,23 +1732,28 @@ p, li { white-space: pre-wrap; }
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.
@@ -1451,50 +1761,62 @@ p, li { white-space: pre-wrap; }
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).
@@ -1502,10 +1824,12 @@ p, li { white-space: pre-wrap; }
ImporterBase
+ Import File...
+ Import Failed
@@ -1513,53 +1837,65 @@ p, li { white-space: pre-wrap; }
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 SignatureFirma 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.
+ Invalid group tree.
+ Key file is empty.
+ The database must contain at least one group.
+ Could not open file for writing.
+ Unexpected error: Offset is out of range.
@@ -1567,18 +1903,22 @@ La clave es incorecta o el fichero está dañado.
Kdb3Database::EntryHandle
+ Bytes
+ KiB
+ MiB
+ GiB
@@ -1586,93 +1926,115 @@ La clave es incorecta o el fichero está dañado.
KeepassEntryView
+ TitleTítulo
+ UsernameUsuario
+ URLURL
+ PasswordContraseña
+ CommentsComentarios
+ ExpiresExpira
+ CreationCreación
+ Last ChangeÚltimo Cambio
+ Last AccessÚltimo Acceso
+ AttachmentAdjunto
+ %1 items%1 elementos
- Are you sure you want delete this entry?
-
-
-
- Are you sure you want delete these %1 entries?
-
-
-
+ Delete?
+ Group
+ ErrorError
+ At least one group must exist before adding an entry.
+ OK
+
+
+ Are you sure you want to delete this entry?
+
+
+
+
+ Are you sure you want to delete these %1 entries?
+
+ 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?
@@ -1680,289 +2042,368 @@ La clave es incorecta o el fichero está dañado.
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?
+ Yes
- Sí
+ Sí
+ No
- No
+ No
+ Cancel
- Cancelar
+ Cancelar
+ <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<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.
%1
+ Save Database As...Guardar Base de Datos Como...
+ ReadyListo
+ [new][nuevo]
+ Open Database...Abrir Base de Datos...
+ Loading Database...Cargando Base de Datos...
+ Loading FailedCarga Fallida
+ Could not create key file. The following error occured:
%1No se ha podido crear archivo de clave. Ha ocurrido el siguiente error:
%1
+ Export To...Exportar A...
+ KeePassX [new]KeePassX [nuevo]
+ Unknown error in Import_PwManager::importFile()()Error desconocido en Import_PwManager::importFile()()
+ Unknown error in Import_KWalletXml::importFile()Error desconocido en Import_KWalletXml::importFile()
+ Ctrl+V
+ Show Toolbar
- Mostrar Barra de herramientas
+ Mostrar Barra de herramientas
+ KeePassXKeePassX
+ Unknown error while loading database.
+ KeePass Databases (*.kdb)
+ All Files (*)
+ Save Database...
- New Database
-
-
-
+ 1 Month
+ %1 Months
+ 1 Year
+ %1 Years
+ 1 Day
+ %1 Days
+ less than 1 day
- Set Master Key
-
-
-
+ Locked
+ Unlocked
+ Ctrl+L
+ Ctrl+Q
+ The database file does not exist.
+ new
+ Expired
+ Un&lock Workspace
+ &Lock Workspace
+ The following error occured while opening the database:
+ File could not be saved.
+
+
+ Show &Toolbar
+
+
+
+
+ Ctrl+N
+
+
+
+
+ Ctrl+P
+
+
+
+
+ Ctrl+X
+
+ Main
+ ErrorError
+ File '%1' could not be found.Archivo '%1' no encontrado.
+ OK
@@ -1970,453 +2411,814 @@ to save the changes?MainWindow
+ KeePassXKeePassX
+ FileArchivo
+ Import from...Importar desde...
+ ViewVer
+ Columns
- Columnas
+ Columnas
+ ExtrasPreferencias
+ HelpAyuda
+ New Database...
- Nueva Base de Datos...
+ Nueva Base de Datos...
+ Open Database...Abrir Base de Datos...
+ Close DatabaseCerrar Base de Datos
+ Save DatabaseGuardar Base de Datos
+ Save Database As...Guardar Base de Datos Como...
+ Database Settings...Preferencias de Base de Datos...
+ Change Master Key...Cambiar Clave Maestra...
+ ExitSalir
+ PwManager File (*.pwm)PwManager (*.pwm)
+ KWallet XML-File (*.xml)KWallet, archivo XML (*.xml)
+ Add New Group...
- Añadir Nuevo Grupo...
+ Añadir Nuevo Grupo...
+ Edit Group...
- Editar Grupo...
+ Editar Grupo...
+ Delete Group
- Eliminar Grupo
+ Eliminar Grupo
+ Copy Password to Clipboard
- Copiar Contraseña al Portapapeles
+ Copiar Contraseña al Portapapeles
+ Copy Username to Clipboard
- Copiar Usuario al Portapapeles
+ Copiar Usuario al Portapapeles
+ Open URL
- Abrir URL
+ Abrir URL
+ Save Attachment As...
- Guardar Adjunto Como...
+ Guardar Adjunto Como...
+ Add New Entry...
- Añadir Nueva Entrada...
+ Añadir Nueva Entrada...
+ View/Edit Entry...
- Ver/Editar Entrada...
+ Ver/Editar Entrada...
+ Delete Entry
- Eliminar Entrada
+ Eliminar Entrada
+ Clone Entry
- Duplicar Entrada
+ Duplicar Entrada
+ Search In Database...Buscar en Base de Datos...
+ Search in this group...Buscar en este grupo...
+ Show ToolbarMostrar Barra de herramientas
+ Show Entry Details
- Mostrar Detalles de Entradas
+ Mostrar Detalles de Entradas
+ Hide Usernames
- Ocultar Usuarios
+ Ocultar Usuarios
+ Hide Passwords
- Ocultar Contraseñas
+ Ocultar Contraseñas
+ Title
- Título
+ Título
+ Username
- Usuario
+ Usuario
+ URL
- URL
+ URL
+ Password
- Contraseña
+ Contraseña
+ Comment
- Comentario
+ Comentario
+ Expires
- Expira
+ Expira
+ Creation
- Creación
+ Creación
+ Last Change
- Último Cambio
+ Último Cambio
+ Last Access
- Último Acceso
+ Último Acceso
+ Attachment
- Adjunto
+ Adjunto
+ Settings...Preferencias...
+ About...Acerca de...
+ EditEditar
+ Show Statusbar
- Mostrar Barra de estado
+ Mostrar Barra de estado
+ Export to...Exportar a...
+ KeePassX Handbook...Manual de KeePassX...
+ Plain Text (*.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...
+ &Settings...
+ &About...
+ &KeePassX Handbook...
+ Standard KeePass Single User Database (*.kdb)
+ Advanced KeePassX Database (*.kxdb)
- Password Generator...
-
-
-
- Group (search results only)
-
-
-
- Show Expired Entries...
-
-
-
+ Recycle Bin...
+ GroupsGrupos
- Bookmarks
-
-
-
- Manage Bookmarks...
-
-
-
+ &Lock Workspace
- Q&uit
+
+ &Bookmarks
- Search in Database...
+
+ Toolbar &Icon Size
- Search in this Group...
+
+ &Columns
- Add Bookmark...
+
+ &Manage Bookmarks...
- Bookmark this Database...
+
+ &Quit
+
+
+
+
+ &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...
+
+
+
+
+ De&lete Entry
+
+
+
+
+ &Clone Entry
+
+
+
+
+ Search &in Database...
+
+
+
+
+ Search in this &Group...
+
+
+
+
+ Show &Entry Details
+
+
+
+
+ Hide &Usernames
+
+
+
+
+ Hide &Passwords
+
+
+
+
+ &Title
+
+
+
+
+ User&name
+
+
+
+
+ &URL
+
+
+
+
+ &Password
+
+
+
+
+ &Comment
+
+
+
+
+ E&xpires
+
+
+
+
+ C&reation
+
+
+
+
+ &Last Change
+
+
+
+
+ Last &Access
+
+
+
+
+ A&ttachment
+
+
+
+
+ Show &Statusbar
+
+
+
+
+ &Perform AutoType
+
+
+
+
+ &16x16
+
+
+
+
+ &22x22
+
+
+
+
+ 2&8x28
+
+
+
+
+ &New Database...
+
+
+
+
+ &Password Generator...
+
+
+
+
+ &Group (search results only)
+
+
+
+
+ Show &Expired Entries...
+
+
+
+
+ &Add Bookmark...
+
+
+
+
+ Bookmark &this Database...ManageBookmarksDlg
+ Manage Bookmarks
+
+ PasswordDialog
+
+
+ Enter Master Key
+
+
+
+
+ Set Master Key
+
+
+
+
+ Change Master Key
+
+
+
+
+ Database Key
+ Contraseña de la Base de Datos
+
+
+
+ Last File
+
+
+
+
+ Select a Key File
+ Seleccione un Archivo de Clave
+
+
+
+ All Files (*)
+
+
+
+
+ Key Files (*.key)
+
+
+
+
+ Please enter a Password or select a key file.
+ Introduzca una Contraseña o seleccione un archivo de clave.
+
+
+
+ Please enter a Password.
+ Introduzca una Contraseña.
+
+
+
+ Please provide a key file.
+
+
+
+
+ %1:
+No such file or directory.
+
+
+
+
+ The selected key file or directory is not readable.
+
+
+
+
+ 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 files.
+Please specify the key file directly.
+
+
+
+
+ %1:
+File is not readable.
+
+
+
+
+ Create Key File...
+
+
+PasswordDlg
+ OKAceptar
+ ...
- ...
+ ...
+ CancelCancelar
+ Enter a Password and/or choose a key file.Introduzca una Contraseña y/o seleccione un archivo de clave.
+ KeyClave
+ Password:Contraseña:
+ Key file or directory:
- Archivo o directorio de clave:
+ Archivo o directorio de clave:
+ &Browse...&Navegar...
+ Alt+BAlt+N
+ Use Password AND Key File
- Usar Contraseña Y Archivo de Clave
+ Usar Contraseña Y Archivo de Clave
+ ExitSalir
+ Password Repet.:
- Contraseña (repetida):
+ Contraseña (repetida):
+ Last File
+
+
+ Key File:
+
+
+
+
+ Generate Key File...
+
+
+
+
+ Please repeat your password:
+
+
+
+
+ Back
+
+
+
+
+ Passwords are not equal.
+
+ PwDatabase
+ Unknown ErrorError Desconocido
+ Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE)Tamaño de fichero inesperado (DB_TOTAL_SIZE < DB_HEADER_SIZE)
+ Wrong SignatureFirma Incorrecta
+ AES-Init FailedFalló inicialización de AES
+ 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.
+ Could not open key file.No se pudo abrir archivo de clave.
+ Key file could not be written.No se pudo escribir archivo de clave.
+ Could not open file.No se pudo abrir el archivo.
@@ -2424,91 +3226,117 @@ La clave es incorecta o el fichero está dañado.
QObject
+ WarningAdvertencia
+ Could not save configuration file.
Make sure you have write access to '~/.keepass'.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.
+ File not found.Archivo no encontrado.
+ Could not open file.No se pudo abrir el archivo.
+ 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).
+ File is empty.Archivo vacío.
+ Invalid XML file (see stdout for details).Archivo XML no válido (ver stdout para más detalles).
+ Invalid XML file.Archivo XML no válido.
+ Document does not contain data.El documento no contiene datos.
+ ErrorError
+ NeverNunca
+
+
+ Could not locate library file.
+
+ SearchDialog
+ SearchBuscar
@@ -2516,94 +3344,117 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.
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)
@@ -2611,10 +3462,12 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.
SelectIconDlg
+ Icon Selection
+ CancelCancelar
@@ -2622,309 +3475,400 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.
SettingsDialog
+ Alt+Ö
+ O&K&Aceptar
+ Alt+KAlt+A
+ SettingsPreferencias
+ &Cancel&Cancelar
+ Clear clipboard after:Borrar portapapeles después de:
+ Seconds
- Segundos
+ Segundos
+ Sh&ow passwords in plain text by defaultM&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:
+ Expand group tree when opening a databaseExpandir árbol de grupo al abrir la base de datos
+ &Other&Otros
+ Remember last opend fileRecordar último archivo abierto
+ Browser Command:Comando del Navegador:
+ Securi&tySeguri&dad
+ Alternating Row ColorsAlternar Colores de Columna
+ Browse...Navegar...
+ Remember last key type and locationRecordar último tipo de clave y localización
+ 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
+ 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
+ Clear History Now
+ Always ask before deleting entries or groups
+ 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:
+ 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)
+ Minimize to tray instead of taskbar
+ Start minimized
+ Start locked
+ Lock workspace when minimizing the main window
+ Global Auto-Type Shortcut:
- Use entry titles to match the window for Global Auto-Type
-
-
-
+ Custom Browser Command
+ Browse
+
+
+ Automatically save database on exit and workspace locking
+
+
+
+
+ Show plain text passwords in:
+
+
+
+
+ Database Key Dialog
+
+
+
+
+ seconds
+
+
+
+
+ Lock database after inactivity of
+
+
+
+
+ Use entries' title to match the window for Global Auto-Type
+
+ ShortcutWidget
+ Ctrl
+ Shift
+ Alt
+ AltGr
+ Win
@@ -2932,30 +3876,37 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.
SimplePasswordDialog
+ O&K&Aceptar
+ Alt+KAlt+A
+ Alt+CAlt+C
+ ......
+ Enter your PasswordIntroduzca su Contraseña
+ Password:Contraseña:
+ &Cancel&Cancelar
@@ -2963,18 +3914,22 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.
StandardDatabase
+ 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 SignatureFirma Incorrecta
+ Hash test failed.
The key is wrong or the file is damaged.Comprobación hash fallida.
@@ -2984,10 +3939,12 @@ La clave es incorecta o el fichero está dañado.TrashCanDialog
+ TitleTítulo
+ UsernameUsuario
@@ -2995,10 +3952,12 @@ La clave es incorecta o el fichero está dañado.
WorkspaceLockedWidget
+ Form
+ <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;">
@@ -3006,10 +3965,12 @@ p, li { white-space: pre-wrap; }
+ Unlock
+ Close DatabaseCerrar Base de Datos
@@ -3017,38 +3978,47 @@ p, li { white-space: pre-wrap; }
dbsettingdlg_base
+ Database SettingsPreferencias de Base de Datos
+ EncryptionCifrado
+ Algorithm:Algoritmo:
+ ??
+ Encryption Rounds:Iteraciones de Cifrado:
+ O&K&Aceptar
+ Ctrl+KCtrl+A
+ &Cancel&Cancelar
+ Ctrl+CCtrl+C
diff --git a/src/translations/keepassx-fr_FR.ts b/src/translations/keepassx-fr_FR.ts
index 56308e1..93dc99a 100644
--- a/src/translations/keepassx-fr_FR.ts
+++ b/src/translations/keepassx-fr_FR.ts
@@ -1,7 +1,9 @@
-
+
+
-
+ @default
+ Could not open file (FileError=%1)Ne peut ouvrir le fichier (FileError=%1)
@@ -9,147 +11,197 @@
AboutDialog
+ KeePassX %1KeePassX %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>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>
+ $TRANSLATION_AUTHOR<br>Djellel DIDA
+ $TRANSLATION_AUTHOR_EMAILHere you can enter your email or homepage if you want. <b>Courriel:</b> <br> djellel@free.fr
+ TeamÉquipe
+ Tarek SaidiTarek Saidi
+ Developer, Project AdminDéveloppeur et Administrateur du Projet
+ tariq@users.berlios.detariq@users.berlios.de
+ Eugen GorscheninEugen Gorschenin
+ Web DesignerConcepteur du site Internet
+ geugen@users.berlios.degeugen@users.berlios.de
+ Thanks ToRemerciement à
+ Matthias MillerMatthias Miller
+ Patches for better MacOS X supportPour les rustines ayant permis un meilleur support de MacOS X
+ www.outofhanwell.com<ADDRESS>www.outofhanwell.com<ADDRESS>
+ James NichollsJames Nicholls
+ Main Application IconPour le logo de KeepassX
+ Various fixes and improvements
+ ErrorErreur
+ 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:
%1L'erreur suivante est survenue:
%1
+ http://keepassx.sf.nethttp://keepassx.sf.net
+ Developer
+ Information on how to translate KeePassX can be found under:
+
+
+ Current Translation
+
+
+
+
+ None
+ Please replace 'None' with the language of your translation
+
+
+
+
+ Author
+
+ AboutDlg
+ AboutÀ propos
+ Thanks ToRemerciement à
+ LicenseLicence
+ TranslationTraduction
+ <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><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> - Gest. de mot de passe multiplateforme</p></body></html>
+ Copyright (C) 2005 - 2006 Tarek Saidi
KeePassX is distributed under the terms of the
General Public License (GPL) version 2.
@@ -157,35 +209,43 @@ General Public License (GPL) version 2.
KeePassX est distribué sous les termes de la<br> Licence Publique Générale GNU v2 (GPL v2).</span>
+ tarek.saidi@arcor.detarek.saidi@arcor.de
+ http://keepass.berlios.de/http://keepass.berlios.de/
+ CreditsCrédits
+ http://keepassx.sourceforge.nethttp://keepassx.sourceforge.net
+ keepassx@gmail.comkeepassx@gmail.com
+ AppName
+ AppFunc
- Copyright (C) 2005 - 2007 KeePassX Team
+
+ Copyright (C) 2005 - 2008 KeePassX Team
KeePassX is distributed under the terms of the
General Public License (GPL) version 2.
@@ -194,30 +254,37 @@ General Public License (GPL) version 2.AddBookmarkDlg
+ Add Bookmark
+ Title:Títre:
+ File:
+ Browse...Parcourir...
+ Edit Bookmark
+ KeePass Databases (*.kdb)
+ All Files (*)
@@ -225,58 +292,70 @@ General Public License (GPL) version 2.
AutoType
+ More than one 'Auto-Type:' key sequence found.
Allowed is only one per entry.Plus d'une auto-saisie: Séquence clé trouvée.
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
Trouvé '{' sans accolade fermante '}'
+ ErrorErreur
+ Syntax Error in Auto-Type sequence near character %1
Found '{' without closing '}'
- Auto-Type string contains illegal characters
+
+ Auto-Type string contains invalid charactersAutoTypeDlg
+ KeePassX - Auto-Type
+ Click on an entry to auto-type it.
+ Group
+ TitleTítre
+ UsernameNom d'utilisateur
+ CancelAnnuler
+ Auto-Type
@@ -284,142 +363,174 @@ Seulement une par entrée est autorisée.
CAboutDialog
+ KeePassX %1KeePassX %1
+ ErrorErreur
+ File '%1' could not be found.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.
+ OKOk
+ Could not open file '%1'N'a pas pu ouvrir le fichier '%1'
+ The following error occured:
%1L'erreur suivante est survenue:
%1
+ http://keepass.berlios.de/index.phphttp://keepass.berlios.de/index.php
+ <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>
+ $TRANSALTION_AUTHOR<br>Djellel DIDA
+ $TRANSLATION_AUTHOR_EMAILHere 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://keepass.berlios.de/translation-howto.htmlLes informations concernant la méthode de traduction de KeePassX peut être trouvé à l'adresse suivante:<br>
<ADDRESS>http://keepass.berlios.de/translation-howto.html</ADDRESS>
+ Matthias MillerMatthias Miller
+ http://www.outofhanwell.com/<br>Mac OS X Support<ADDRESS>http://www.outofhanwell.com </ADDRESS>
+ Eugen GorscheninEugen Gorschenin
+ geugen@users.berlios.de<br>New Website<ADDRESS>geugen@users.berlios.de</ADDRESS>
+ $TRANSLATION_AUTHOR<br>Djellel DIDA
+ Information on how to translate KeePassX can be found under:
http://keepass.berlios.de/Toutes les informations concernant la méthode pour traduire KeePassX peuvent être obtenues à l'adresse suivante:<br>
<ADDRESS>http://keepass.berlios.de/<ADDRESS>
+ TeamÉquipe
+ Tarek SaidiTarek Saidi
+ Developer, Project AdminDéveloppeur et Administrateur du Projet
+ tariq@users.berlios.detariq@users.berlios.de
+ Web DesignerConcepteur du site Internet
+ geugen@users.berlios.degeugen@users.berlios.de
+ Thanks ToRemerciement à
+ Patches for better MacOS X supportPour les rustines ayant permis un meilleur support de MacOS X
+ www.outofhanwell.com<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>
<ADDRESS>http://keepass.berlios.de/translation-howto.html</ADDRESS>
+ James NichollsJames Nicholls
+ Main Application IconPour le logo de KeepassX
+ http://keepassx.sf.nethttp://keepassx.sf.net
@@ -427,38 +538,47 @@ http://keepassx.sourceforge.net/
CDbSettingsDlg
+ AES(Rijndael): 256 Bit (default)AES(Rijndael): 256 Bits (défaut)
+ Twofish: 256 BitTwofish: 256 Bits
+ WarningAvertissement
+ Please determine the number of encryption rounds.Définiser le nombre de passes.
+ OKAccepter
+ ErrorErreur
+ '%1' is not valid integer value.'%1' n'est pas un nombre entier valide.
+ The number of encryption rounds have to be greater than 0.Le nombre de passes doit être supérieur à 0.
+ SettingsPréférences
@@ -466,163 +586,206 @@ 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...
+ Overwrite?Écraser ?
+ A file with this name already exists.
Do you want to replace it?Un fichier ayant le même nom existe déjà.
Voulez-vous le remplacer ?
+ YesOui
+ NoNon
+ ErrorErreur
+ Could not remove old file.N'a pas pu enlever l'ancien fichier.
+ Could not create new file.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, annuler
+ Edit EntryÉ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...
+ 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...
+ [Untitled Entry]
+
+
+ New Entry
+
+ CGenPwDialog
+ NoticeNotification
+ You need to enter at least one characterVous devez au moins entrer un caractère
+ OKAccepter
+ ErrorErreur
+ Could not open '/dev/random' or '/dev/urandom'.N'a pas pu ouvrir '/dev/random' ou '/dev/urandom'.
+ Password GeneratorGénérateur de mots de passe
+ %1 Bit%1 Bits
+ %1 Bits
@@ -630,168 +793,164 @@ En êtes-vous sûr ?
CPasswordDialog
+ OK
- Accepter
+ Accepter
+ Error
- Erreur
+ Erreur
+ Please enter a Password.
- Entrer un mot de passe.
+ Entrer un mot de passe.
+ Please choose a key file.
- Sélectionner un trousseau de clés.
+ 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.
+ Entrer un mot de passe ou sélectionner un trousseau de clés.
+ Database Key
- Base de données des clés
+ Base de données des clés
+ Select a Key File
- Selectionner un trousseau de clés
+ Selectionner un trousseau de clés
+ *.key*.key
+ Unexpected Error: File does not exist.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.
+ 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.
+ 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.
+ 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.
+ 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é.
+ 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.
+ Le trousseau de clés n'est pas lisible.
S'il vous plait, vérifier vos permissions.
+ Warning
- Avertissement
+ Avertissement
+ Password an password repetition are not equal.
Please check your input.
- Le mot de passe et sa confirmation ne sont pas identiques !
+ 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.
+ Entrer un mot de passe ou sélectionner un trousseau de clés.
+ A file with the name 'pwsafe.key' already exisits in the given directory.
Do you want to replace it?Un fichier avec le nom 'pwsafe.key' existe déjà dans le répertoire selectionné.
Voulez-vous le remplacer ?
+ YesOui
+ NoNon
+ The exisiting file is not writable.L'existant fichier est protégé en écriture .
+ A file with the this name already exisits.
Do you want to replace it?Un fichier avec un même nom existe déjà.
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.
+ Le trousseau de clés choisi n'est pas lisible.
S'il vous plait, vérifier vos permissions.
- All Files (*)
-
-
-
- Key Files (*.key)
-
-
-
- File exists.
-
-
-
- A file with the selected name already exists, should this file be used as key file or do you want to overwrite it with a newly generated one?
-
-
-
- Use
-
-
-
- Overwrite
-
-
-
+ Cancel
- Annuler
-
-
- Key file could not be created.
-%1
-
-
-
- Last File
-
+ AnnulerCSearchDlg
+ NoticeNotification
+ Please enter a search string.Saisissez une recherche.
+ OKAccepter
+ SearchRecherche
@@ -799,57 +958,70 @@ S'il vous plait, vérifier vos permissions.
CSelectIconDlg
+ DeleteSupprimer
+ Add Icons...Ajouter une icône...
+ Images (%1)Images (%1)
+ %1: File could not be loaded.
%1: Le fichier n'a pu être chargé.
+ ErrorErreur
+ An error occured while loading the icon(s):
Une erreur est survenue lors du chargement (des) de l'icône(s):
+ Replace...Remplacez...
+ An error occured while loading the icon(s):
%1Une erreur est survenue lors du chargement (des) de l'icône(s): %1
+ An error occured while loading the icon.Une erreur est survenue lors du chargement de l'icône.
+ Add Custom Icon
+ PickSélectionner
+ %1: File could not be loaded.
+ An error occured while loading the icon(s):
@@ -857,14 +1029,17 @@ S'il vous plait, vérifier vos permissions.
CSettingsDlg
+ SettingsPréférences
+ Select a directory...Sélectionner un répertoire....
+ Select an executable...
@@ -872,6 +1047,7 @@ S'il vous plait, vérifier vos permissions.
CalendarDialog
+ Calendar
@@ -879,19 +1055,23 @@ S'il vous plait, vérifier vos permissions.
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;">
@@ -902,206 +1082,257 @@ p, li { white-space: pre-wrap; }
CustomizeDetailViewDialog
+ Group
+ TitleTítre
+ UsernameNom d'utilisateur
+ PasswordMot de passe
+ Url
+ CommentCommentaire
+ 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
+ CancelAnnuler
@@ -1109,6 +1340,7 @@ p, li { white-space: pre-wrap; }
Database
+ NeverJamais
@@ -1116,61 +1348,80 @@ p, li { white-space: pre-wrap; }
DatabaseSettingsDlg
+ Database SettingsPréférences de la Base de Données
+ EncryptionEncryptage
+ Algorithm:Algorithme:
+ Encryption Rounds:Nombre de passes:
+
+
+ Calculate rounds for a 1-second delay on this computer
+
+ DetailViewTemplate
+ Group
+ TitleTítre
+ UsernameNom d'utilisateur
+ PasswordMot de passe
+ URLURL
+ Creation
+ Last AccessDernier accès
+ Last Modification
+ Expiration
+ CommentCommentaire
@@ -1178,94 +1429,117 @@ p, li { white-space: pre-wrap; }
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:
+ &CancelA&nnuler
+ Alt+CAlt+N
+ %1%1
+ Icon:Icône:
+ % Bit% Bits
+ Ge&n.&Gen.
+ ......
+ O&K&Accepter
+ Alt+KAlt+A
+ NeverJamais
+ Attachment:Pièce jointe:
+ >>
+ %1 Bit%1 Bits
@@ -1273,34 +1547,42 @@ p, li { white-space: pre-wrap; }
EditGroupDialog
+ Group PropertiesPropriétés du groupe
+ Title:Títre:
+ Icon:Icône:
+ &CancelA&nnuler
+ Alt+CAlt+N
+ O&K&Accepter
+ Alt+KAlt+A
+ >>
@@ -1308,30 +1590,37 @@ p, li { white-space: pre-wrap; }
ExpiredEntriesDialog
+ Expired Entries
+ Double click on an entry to jump to it.
+ Group
+ TitleTítre
+ UsernameNom d'utilisateur
+ Expired
+ Expired Entries in the Database
@@ -1339,14 +1628,17 @@ p, li { white-space: pre-wrap; }
Export_KeePassX_Xml
+ XML Files (*.xml)
+ All Files (*)
+ KeePassX XML File
@@ -1354,18 +1646,22 @@ p, li { white-space: pre-wrap; }
Export_Txt
+ Could not open file (FileError=%1)N'a pas pu ouvrir le fichier (FileError=%1)
+ All Files (*)
+ Text Files (*.txt)
+ Text File
@@ -1373,10 +1669,12 @@ p, li { white-space: pre-wrap; }
ExporterBase
+ Import File...
+ Export Failed
@@ -1384,62 +1682,77 @@ p, li { white-space: pre-wrap; }
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.
@@ -1447,118 +1760,147 @@ 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
+ Accep&tAccep&ter
+ &Cancel&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é
+ h&igher ANSI-CharactersCaractères ANS&I étendus
+ Alt+HAlt+H
+ Use &only following characters:Utiliser s&eulement les caractères suivant:
+ Alt+OAlt+E
+ Length:Longueur:
+ Use "/dev/rando&m"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
@@ -1566,26 +1908,32 @@ p, li { white-space: pre-wrap; }
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.
@@ -1593,23 +1941,28 @@ p, li { white-space: pre-wrap; }
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.
@@ -1617,50 +1970,62 @@ p, li { white-space: pre-wrap; }
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).
@@ -1668,10 +2033,12 @@ p, li { white-space: pre-wrap; }
ImporterBase
+ Import File...
+ Import Failed
@@ -1679,74 +2046,91 @@ p, li { white-space: pre-wrap; }
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 SignatureMauvaise 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.
+ Unexpected error: Offset is out of range.
@@ -1754,18 +2138,22 @@ La clé est mauvaise ou le fichier est endommagé.
Kdb3Database::EntryHandle
+ Bytes
+ KiB
+ MiB
+ GiB
@@ -1773,93 +2161,115 @@ La clé est mauvaise ou le fichier est endommagé.
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
+ %1 items%1 élements
- Are you sure you want delete this entry?
-
-
-
- Are you sure you want delete these %1 entries?
-
-
-
+ Delete?
+ Group
+ ErrorErreur
+ At least one group must exist before adding an entry.
+ OK
+
+
+ Are you sure you want to delete this entry?
+
+
+
+
+ Are you sure you want to delete these %1 entries?
+
+ 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?
@@ -1867,301 +2277,378 @@ La clé est mauvaise ou le fichier est endommagé.
KeepassMainWindow
+ Ctrl+N
- Ctrl+N
+ 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 ?
+ Yes
- Oui
+ Oui
+ No
- Non
+ Non
+ Cancel
- Annuler
+ Annuler
+ KeePassX - %1KeePassX - %1
+ <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<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é.
%1
+ Save Database As...Enregistrer la BD sous...
+ ReadyPrêt
+ [new][nouveau]
+ Open Database...Ouvrir la BD...
+ Loading Database...Chargement de la BD...
+ Loading FailedLe chargement a échoué
+ Could not create key file. The following error occured:
%1N'a pu créer le trousseau de clés. L'erreur suivante est survenue:
%1
+ Export To...Exporter vers...
+ KeePassX [new]KeePassX [nouveau]
+ Unknown error in Import_PwManager::importFile()()Erreur inconnue dans Import_PwManager::importFile()()
+ Unknown error in Import_KWalletXml::importFile()Erreur inconnue dans Import_KWalletXml::importFile()
+ Unknown error in PwDatabase::openDatabase()Erreur inconnue dans PwDatabase::openDatabase()
+ Ctrl+VCtrl+V
+ Show Toolbar
- Afficher la barre outils
+ Afficher la barre outils
+ KeePassXKeePassX
+ Unknown error while loading database.
+ KeePass Databases (*.kdb)
+ All Files (*)
+ Save Database...
- New Database
-
-
-
+ 1 Month
+ %1 Months
+ 1 Year
+ %1 Years
+ 1 Day
+ %1 Days
+ less than 1 day
- Set Master Key
-
-
-
+ Locked
+ Unlocked
+ Ctrl+L
+ Ctrl+Q
+ The database file does not exist.
+ new
+ Expired
+ Un&lock Workspace
+ &Lock Workspace
+ The following error occured while opening the database:
+ File could not be saved.
+
+
+ Show &Toolbar
+
+
+
+
+ Ctrl+P
+
+
+
+
+ Ctrl+X
+
+ Main
+ ErrorErreur
+ File '%1' could not be found.
+ OK
@@ -2169,503 +2656,881 @@ Désirez-vous enregistrer le changement ?
MainWindow
+ KeePassXKeePassX
+ FileFichier
+ Import from...Importer d'un...
+ ViewAffichage
+ Columns
- Colonnes
+ Colonnes
+ ExtrasExtras
+ HelpAide
+ New Database...
- Nouvelle BD...
+ Nouvelle BD...
+ Open Database...Ouvrir une BD...
+ Close DatabaseFermer la BD
+ Save DatabaseEnregistrer la BD
+ Save Database As...Enregistrer la BD sous...
+ Database Settings...Paramétrage de la BD...
+ Change Master Key...Changer la clé maitresse...
+ ExitQuitter
+ PwManager File (*.pwm)Fichier PwManager (*.pwm)
+ KWallet XML-File (*.xml)Fichier XML, KWallet (*.xml)
+ Add New Group...
- Ajouter un nouveau groupe...
+ Ajouter un nouveau groupe...
+ Edit Group...
- Modifier le groupe...
+ Modifier le groupe...
+ Delete Group
- Supprimer le groupe
+ Supprimer le groupe
+ Copy Password to Clipboard
- Copier le mot de passe dans le presse-papier
+ Copier le mot de passe dans le presse-papier
+ Copy Username to Clipboard
- Copier l'utilisateur dans le presse-papier
+ Copier l'utilisateur dans le presse-papier
+ Open URL
- Ouvrir l'URL
+ Ouvrir l'URL
+ Save Attachment As...
- Enregistrer la pièce jointe sous...
+ Enregistrer la pièce jointe sous...
+ Add New Entry...
- Ajouter une nouvelle entrée...
+ Ajouter une nouvelle entrée...
+ View/Edit Entry...
- Modifier/afficher l'entrée...
+ Modifier/afficher l'entrée...
+ Delete Entry
- Supprimer l'entrée
+ Supprimer l'entrée
+ Clone Entry
- Dupliquer l'entrée
+ Dupliquer l'entrée
+ Search In Database...Rechercher dans la BD...
+ Search in this group...Rechercher dans ce groupe...
+ Show ToolbarAfficher la barre outils
+ Show Entry Details
- Afficher les détails de l'entrée
+ Afficher les détails de l'entrée
+ Hide Usernames
- Cacher l'utilisateur
+ Cacher l'utilisateur
+ Hide Passwords
- Cacher les mots de passe
+ Cacher les mots de passe
+ Title
- Títre
+ Títre
+ Username
- Nom d'utilisateur
+ Nom d'utilisateur
+ URL
- URL
+ URL
+ Password
- Mot de passe
+ Mot de passe
+ Comment
- Commentaire
+ Commentaire
+ Expires
- Date d'expiration
+ Date d'expiration
+ Creation
- Date de création
+ Date de création
+ Last Change
- Dernier changement
+ Dernier changement
+ Last Access
- Dernier accès
+ Dernier accès
+ Attachment
- Pièce jointe
+ Pièce jointe
+ Settings...Préférences...
+ About...À propos...
+ EditÉdition
+ Show Statusbar
- Afficher la barre de statuts
+ Afficher la barre de statuts
+ Export to...Exporter vers...
+ KeePassX Handbook...Le manuel de KeePassX...
+ Plain Text (*.txt)Un fichier plein texte (*.txt)
+ HideCacher
+ Perform AutoType
- Exécuter l'auto-saisie
+ Exécuter l'auto-saisie
+ Type HereSaisir ici
+ Toolbar Icon Size
- Taille des icônes de la barre d'outils
-
-
- 16x16
-
-
-
- 22x22
-
-
-
- 28x28
-
+ Taille des icônes de la barre d'outils
+ &View&Affichage
+ &File&Fichier
+ &Import from...&Importer d'un...
+ &Export to...&Exporter vers...
+ &EditEd&iter
+ E&xtrasE&xtras
+ &HelpAi&de
+ &New Database...
- &Nouvelle BD...
+ &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...
-
-
-
+ Recycle Bin...
+ GroupsGroupes
- Bookmarks
-
-
-
- Manage Bookmarks...
-
-
-
+ &Lock Workspace
- Q&uit
+
+ &Bookmarks
- Search in Database...
+
+ Toolbar &Icon Size
- Search in this Group...
+
+ &Columns
- Add Bookmark...
+
+ &Manage Bookmarks...
- Bookmark this Database...
+
+ &Quit
+
+
+
+
+ &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...
+
+
+
+
+ De&lete Entry
+
+
+
+
+ &Clone Entry
+
+
+
+
+ Search &in Database...
+
+
+
+
+ Search in this &Group...
+
+
+
+
+ Show &Entry Details
+
+
+
+
+ Hide &Usernames
+
+
+
+
+ Hide &Passwords
+
+
+
+
+ &Title
+
+
+
+
+ User&name
+
+
+
+
+ &URL
+
+
+
+
+ &Password
+
+
+
+
+ &Comment
+
+
+
+
+ E&xpires
+
+
+
+
+ C&reation
+
+
+
+
+ &Last Change
+
+
+
+
+ Last &Access
+
+
+
+
+ A&ttachment
+
+
+
+
+ Show &Statusbar
+
+
+
+
+ &Perform AutoType
+
+
+
+
+ &16x16
+
+
+
+
+ &22x22
+
+
+
+
+ 2&8x28
+
+
+
+
+ &Password Generator...
+
+
+
+
+ &Group (search results only)
+
+
+
+
+ Show &Expired Entries...
+
+
+
+
+ &Add Bookmark...
+
+
+
+
+ Bookmark &this Database...ManageBookmarksDlg
+ Manage Bookmarks
+
+ PasswordDialog
+
+
+ Enter Master Key
+
+
+
+
+ Set Master Key
+
+
+
+
+ Change Master Key
+
+
+
+
+ Database Key
+ Base de données des clés
+
+
+
+ Last File
+
+
+
+
+ Select a Key File
+ Selectionner un trousseau de clés
+
+
+
+ All Files (*)
+
+
+
+
+ Key Files (*.key)
+
+
+
+
+ Please enter a Password or select a key file.
+ Entrer un mot de passe ou sélectionner un trousseau de clés.
+
+
+
+ Please enter a Password.
+ Entrer un mot de passe.
+
+
+
+ Please provide a key file.
+
+
+
+
+ %1:
+No such file or directory.
+
+
+
+
+ The selected key file or directory is not readable.
+
+
+
+
+ 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 files.
+Please specify the key file directly.
+
+
+
+
+ %1:
+File is not readable.
+
+
+
+
+ Create Key File...
+
+
+PasswordDlg
+ OKAccepter
+ ...
- ...
+ ...
+ CancelAnnuler
+ Enter a Password and/or choose a key file.Entrer un mot de passe et/ou sélectionner un trousseau de clés.
+ KeyClé maitresse
+ Password:Mot de passe:
+ Key file or directory:
- Trousseau de clés ou répertoire:
+ Trousseau de clés ou répertoire:
+ &Browse...&Parcourir...
+ Alt+BAlt+P
+ Use Password AND Key File
- Utiliser un mot de passe ET un trousseau de clés
+ Utiliser un mot de passe ET un trousseau de clés
+ ExitQuitter
+ Password Repet.:
- Confirmation:
+ Confirmation:
+ Last File
+
+
+ Key File:
+
+
+
+
+ Generate Key File...
+
+
+
+
+ Please repeat your password:
+
+
+
+
+ Back
+
+
+
+
+ Passwords are not equal.
+
+ PwDatabase
+ Unknown ErrorErreur inconnue
+ Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE)Taille de fichier inattendue (DB_TOTAL_SIZE < DB_HEADER_SIZE)
+ Wrong SignatureMauvaise signature
+ AES-Init FailedL'initialisation de AES a échoué
+ 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]
+ 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é.
+ Could not open key file.N'a pu ouvrir le trousseau de clés.
+ Key file could not be written.Le trousseau de clés n'a pas pu être écrit.
+ Could not open file.N'a pu ouvrir le fichier.
+ 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é.
+ Could not open file for writing.N'a pu ouvrir le fichier pour écriture.
@@ -2673,100 +3538,128 @@ La clé est mauvaise ou le fichier est endommagé.
QObject
+ WarningAvertissement
+ Could not save configuration file.
Make sure you have write access to '~/.keepass'.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é.
+ File not found.Fichier non trouvé.
+ Could not open file.N'a pu ouvrir le fichier.
+ 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).
+ File is empty.Le fichier est vide.
+ Invalid XML file (see stdout for details).Fichier 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.
+ ErrorErreur
+ Warning:Avertissement:
+ Invalid RGB color value.
Valeur de la couleur RGB invalide.
+ NeverJamais
+
+
+ Could not locate library file.
+
+ SearchDialog
+ Search
@@ -2774,94 +3667,117 @@ Make sure you have write access to '~/.keepass'.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)
@@ -2869,18 +3785,22 @@ Make sure you have write access to '~/.keepass'.
SelectIconDlg
+ Icon SelectionChoix d'icônes
+ Add Custom Icon...Ajouter une icône...
+ PickSélectionner
+ CancelAnnuler
@@ -2888,317 +3808,410 @@ Make sure you have write access to '~/.keepass'.
SettingsDialog
+ Alt+ÖAlt+R
+ O&K&Accepter
+ Alt+KAlt+A
+ Alt+CAlt+N
+ SettingsPréférences
+ &CancelA&nnuler
+ Clear clipboard after:Effacer le presse-papier après:
+ Seconds
- Secondes
+ Secondes
+ Sh&ow passwords in plain text by defaultA&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:
+ Expand group tree when opening a databaseDévelopper l'arborescence du groupe à l'ouverture de la base de données
+ &OtherAu&tre
+ Remember last opend fileSe souvenir du dernier fichier ouvert
+ Browser Command:Commande du navigateur:
+ Securi&tySé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 emplacement
+ Mounting Root: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
+ 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
+ Clear History Now
+ Always ask before deleting entries or groups
+ 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:
+ 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)
+ Minimize to tray instead of taskbar
+ Start minimized
+ Start locked
+ Lock workspace when minimizing the main window
+ Global Auto-Type Shortcut:
- Use entry titles to match the window for Global Auto-Type
-
-
-
+ Custom Browser Command
+ Browse
+
+
+ Automatically save database on exit and workspace locking
+
+
+
+
+ Show plain text passwords in:
+
+
+
+
+ Database Key Dialog
+
+
+
+
+ seconds
+
+
+
+
+ Lock database after inactivity of
+
+
+
+
+ Use entries' title to match the window for Global Auto-Type
+
+ ShortcutWidget
+ Ctrl
+ Shift
+ Alt
+ AltGr
+ Win
@@ -3206,30 +4219,37 @@ Make sure you have write access to '~/.keepass'.
SimplePasswordDialog
+ O&K&Accepter
+ Alt+KAlt+A
+ Alt+CAlt+N
+ ......
+ Enter your PasswordEntrer votre mot de passe
+ Password:Mot de passe:
+ &CancelA&nnuler
@@ -3237,54 +4257,66 @@ Make sure you have write access to '~/.keepass'.
StandardDatabase
+ Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE)Taille de fichier inattendue (DB_TOTAL_SIZE < DB_HEADER_SIZE)
+ Wrong SignatureMauvaise 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]
+ Could not open file for writing.N'a pu ouvrir le fichier pour écriture.
@@ -3292,10 +4324,12 @@ La clé est mauvaise ou le fichier est endommagé.
TrashCanDialog
+ TitleTítre
+ UsernameNom d'utilisateur
@@ -3303,10 +4337,12 @@ La clé est mauvaise ou le fichier est endommagé.
WorkspaceLockedWidget
+ Form
+ <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;">
@@ -3314,10 +4350,12 @@ p, li { white-space: pre-wrap; }
+ Unlock
+ Close DatabaseFermer la BD
@@ -3325,38 +4363,47 @@ p, li { white-space: pre-wrap; }
dbsettingdlg_base
+ Database SettingsPréférences de la Base de Données
+ EncryptionEncryptage
+ Algorithm:Algorithme:
+ ??
+ Encryption Rounds:Nombre de passes:
+ O&K&Accepter
+ Ctrl+KCtrl+A
+ &CancelA&nnuler
+ Ctrl+CCtrl+N
diff --git a/src/translations/keepassx-ja_JP.ts b/src/translations/keepassx-ja_JP.ts
index 82d97e9..067e1d9 100644
--- a/src/translations/keepassx-ja_JP.ts
+++ b/src/translations/keepassx-ja_JP.ts
@@ -11,20 +11,20 @@
<b>Current Translation: None</b><br><br>Please replace 'None' with the language of your translation
- <b>現在の翻訳: 日本語</b><br><br>
+ <b>現在の翻訳: 日本語</b><br><br><b>Author:</b> %1<br>
- <b>作者:</b> %1<br>
+ <b>作者:</b> %1<br>
-
+ $TRANSLATION_AUTHORNardog
-
+ $TRANSLATION_AUTHOR_EMAILHere you can enter your email or homepage if you want.http://nardog.takoweb.com
@@ -37,7 +37,7 @@
http://keepassx.sourceforge.net/
-
+ Teamチーム
@@ -47,7 +47,7 @@
Tarek Saidi
-
+ Developer, Project Admin開発者、プロジェクト管理者
@@ -62,7 +62,7 @@
Eugen Gorschenin
-
+ Web DesignerWeb デザイナ
@@ -72,7 +72,7 @@
geugen@users.berlios.de
-
+ Thanks To謝辞
@@ -82,7 +82,7 @@
Matthias Miller
-
+ Patches for better MacOS X supportよりよい MacOS X サポートのパッチ
@@ -97,7 +97,7 @@
James Nicholls
-
+ Main Application Iconメイン アプリケーションのアイコン
@@ -107,7 +107,7 @@
Constantin Makshin
-
+ Various fixes and improvementsさまざまな修正と向上
@@ -117,22 +117,22 @@
dinosaur-rus@users.sourceforge.net
-
+ Errorエラー
-
+ File '%1' could not be found.ファイル '%1' が見つかりませんでした。
-
+ Make sure that the program is installed correctly.プログラムが正しくインストールされていることを確実にしてください。
-
+ OKOK
@@ -154,30 +154,46 @@
http://keepassx.sf.net
-
+ Information on how to translate KeePassX can be found under:KeePassX を翻訳する方法についての情報は次の下に見つかります:
-
+ Developer開発者
+
+
+ Current Translation
+
+
+
+
+ None
+ Please replace 'None' with the language of your translation
+ なし
+
+
+
+ Author
+
+ AboutDlg
-
+ Aboutバージョン情報
-
+ Licenseライセンス
-
+ Translation翻訳
@@ -187,17 +203,17 @@
<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> - クロス プラットフォーム パスワード マネージャ</p></body></html>
-
+ Creditsクレジット
-
+ http://keepassx.sourceforge.nethttp://keepassx.sourceforge.net
-
+ keepassx@gmail.comkeepassx@gmail.com
@@ -211,12 +227,12 @@ KeePassX は General Public License (GPL) version 2 以降の
条件の下で配布されています。
-
+ AppNameAppName
-
+ AppFuncAppFunc
@@ -225,45 +241,54 @@ KeePassX は General Public License (GPL) version 2 以降の
Copyright (C) 2005 - 2007 KeePassX Team
KeePassX is distributed under the terms of the
General Public License (GPL) version 2.
- Copyright (C) 2005 - 2007 KeePassX Team
+ Copyright (C) 2005 - 2007 KeePassX Team
KeePassX は General Public License (GPL)
version 2 の条件の下に配布されています。
+
+
+ Copyright (C) 2005 - 2008 KeePassX Team
+KeePassX is distributed under the terms of the
+General Public License (GPL) version 2.
+ Copyright (C) 2005 - 2007 KeePassX Team
+KeePassX は General Public License (GPL)
+version 2 の条件の下に配布されています。 {2005 ?} {2008 ?} {2.?}
+ AddBookmarkDlg
-
+ Add Bookmarkブックマークの追加
-
+ Title:タイトル:
-
+ File:ファイル:
-
+ Browse...参照...
-
+ Edit Bookmarkブックマークの編集
-
+ KeePass Databases (*.kdb)KeePass データベース (*.kdb)
-
+ All Files (*)すべてのファイル (*)
@@ -271,7 +296,7 @@ version 2 の条件の下に配布されています。
AutoType
-
+ More than one 'Auto-Type:' key sequence found.
Allowed is only one per entry.1 つより多くの '自動入力:' キー シーケンスが見つかりました。
@@ -283,7 +308,7 @@ Allowed is only one per entry.
エラー
-
+ Syntax Error in Auto-Type sequence near character %1
Found '{' without closing '}'文字 %1 に近い [自動入力] シーケンスでの構文エラーです
@@ -292,38 +317,43 @@ Allowed is only one per entry.
Auto-Type string contains illegal characters
- 自動入力の文字列は不法な文字を含みます
+ 自動入力の文字列は不法な文字を含みます
+
+
+
+ Auto-Type string contains invalid characters
+ AutoTypeDlg
-
+ KeePassX - Auto-TypeKeePassX - 自動入力
-
+ Click on an entry to auto-type it.自動入力するにはエントリ上でクリックします。
-
+ Groupグループ
-
+ Titleタイトル
-
+ Usernameユーザー名
-
+ Auto-Type自動入力
@@ -331,47 +361,47 @@ Allowed is only one per entry.
CDbSettingsDlg
-
+ AES(Rijndael): 256 Bit (default)AES(Rijndael): 256 ビット (既定)
-
+ Twofish: 256 BitTwofish: 256 ビット
-
+ Warning警告
-
+ Please determine the number of encryption rounds.暗号化の周囲数を決定してください。
-
+ OKOK
-
+ Errorエラー
-
+ '%1' is not valid integer value.'%1' は有効な整数値ではありません。
-
+ The number of encryption rounds have to be greater than 0.暗号化の周囲数は 0 より多い必要があります。
-
+ Settings設定
@@ -379,71 +409,71 @@ Allowed is only one per entry.
CEditEntryDlg
-
+ Warning警告
-
+ Password and password repetition are not equal.
Please check your input.パスワードとパスワードの反復が同じではありません。
ご入力をチェックしてください。
-
+ OKOK
-
+ 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いいえ、キャンセル
-
+ Could not open file.ファイルを開けませんでした。
-
+ %1 Bit%1 ビット
-
+ Add Attachment...添付の追加...
@@ -453,85 +483,90 @@ Are you sure?
テスト 2
-
+ The chosen entry has no attachment or it is empty.選択されたエントリは添付がないか空です。
-
+ Today今日
-
+ 1 Week1 週間
-
+ 2 Weeks2 週間
-
+ 3 Weeks3 週間
-
+ 1 Month1 ヶ月間
-
+ 3 Months3 ヶ月間
-
+ 6 Months6 ヶ月間
-
+ 1 Year1 年間
-
+ Calendar...カレンダー...
-
+ Edit Entryエントリの編集
-
+ [Untitled Entry][無題のエントリ]
+
+
+ New Entry
+
+ CGenPwDialog
-
+ Notice通知
-
+ You need to enter at least one character少なくとも 1 文字入力する必要があります
-
+ OKOK
-
+ Password Generatorパスワード ジェネレータ
@@ -541,7 +576,7 @@ Are you sure?
承認
-
+ %1 Bits%1 ビット
@@ -551,160 +586,160 @@ Are you sure?
OK
- OK
+ OKError
- エラー
+ エラーPlease enter a Password.
- パスワードを入力してください。
+ パスワードを入力してください。Please choose a key file.
- キー ファイルを選択してください。
+ キー ファイルを選択してください。Please enter a Password or select a key file.
- パスワードを入力するかキー ファイルを選択してください。
+ パスワードを入力するかキー ファイルを選択してください。Database Key
- データベース キー
+ データベース キー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.
- ディレクトリは 1 つより多くのキー ファイルを含みます。
+ ディレクトリは 1 つより多くのキー ファイルを含みます。
直接キー ファイルを指定してください。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)
- キー ファイル (*.key)
+ キー ファイル (*.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
- キー ファイルは作成できませんでした。
+ キー ファイルは作成できませんでした。
%1Last File
- 最後のファイル
+ 最後のファイルCSelectIconDlg
-
+ Delete削除
-
+ Add Icons...アイコンの追加...
-
+ Images (%1)イメージ (%1)
@@ -716,12 +751,12 @@ Please check your permissions.
-
+ Errorエラー
-
+ Replace...置換...
@@ -733,27 +768,27 @@ Please check your permissions.
%1
-
+ An error occured while loading the icon.アイコンの読み込み中にエラーが発生しました。
-
+ Add Custom Iconカスタム アイコンの追加
-
+ Pick抽出
-
+ %1: File could not be loaded.%1: ファイルは読み込めませんでした。
-
+ An error occured while loading the icon(s):アイコンの読み込み中にエラーが発生しました:
@@ -761,12 +796,12 @@ Please check your permissions.
CSettingsDlg
-
+ Settings設定
-
+ Select a directory...ディレクトリの選択...
@@ -776,7 +811,7 @@ Please check your permissions.
エラー: %1
-
+ Select an executable...実行ファイルの選択...
@@ -784,7 +819,7 @@ Please check your permissions.
CalendarDialog
-
+ Calendarカレンダー
@@ -792,24 +827,24 @@ Please check your permissions.
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;">
@@ -823,252 +858,252 @@ p, li { white-space: pre-wrap; }
CustomizeDetailViewDialog
-
+ Groupグループ
-
+ Titleタイトル
-
+ Usernameユーザー名
-
+ Passwordパスワード
-
+ UrlUrl
-
+ 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フォント サイズ
-
+ 66
-
+ 77
-
+ 88
-
+ 99
-
+ 1010
-
+ 1111
-
+ 1212
-
+ 1414
-
+ 1616
-
+ 1818
-
+ 2020
-
+ 2222
-
+ 2424
-
+ 2626
-
+ 2828
-
+ 3636
-
+ 4242
-
+ 7878
-
+ Templatesテンプレート
-
+ Tテ
-
+ HTMLHTML
@@ -1091,7 +1126,7 @@ p, li { white-space: pre-wrap; }
Database
-
+ Neverしない
@@ -1099,75 +1134,80 @@ p, li { white-space: pre-wrap; }
DatabaseSettingsDlg
-
+ Database Settingsデータベースの設定
-
+ Encryption暗号化
-
+ Algorithm:アルゴリズム:
-
+ Encryption Rounds:暗号化の周囲:
+
+
+ Calculate rounds for a 1-second delay on this computer
+
+ DetailViewTemplate
-
+ Groupグループ
-
+ Titleタイトル
-
+ Usernameユーザー名
-
+ Passwordパスワード
-
+ URLURL
-
+ Creation作成
-
+ Last Access最終アクセス
-
+ Last Modification最終変更
-
+ Expiration満了
-
+ Commentコメント
@@ -1175,67 +1215,67 @@ p, li { white-space: pre-wrap; }
EditEntryDialog
-
+ Edit Entryエントリの編集
-
+ Username:ユーザー名:
-
+ Password Repet.:パスワードの反復:
-
+ Title:タイトル:
-
+ URL:URL:
-
+ Password:パスワード:
-
+ Quality:品質:
-
+ Comment:コメント:
-
+ Expires:満了:
-
+ Group:グループ:
-
+ %1%1
-
+ Icon:アイコン:
-
+ Ge&n.生成(&N)
@@ -1245,12 +1285,12 @@ p, li { white-space: pre-wrap; }
...
-
+ Neverしない
-
+ Attachment:添付:
@@ -1260,7 +1300,7 @@ p, li { white-space: pre-wrap; }
>
-
+ %1 Bit%1 ビット
@@ -1268,17 +1308,17 @@ p, li { white-space: pre-wrap; }
EditGroupDialog
-
+ Group Propertiesグループのプロパティ
-
+ Title:タイトル:
-
+ Icon:アイコン:
@@ -1303,7 +1343,7 @@ p, li { white-space: pre-wrap; }
Alt+K
-
+ >>
@@ -1316,37 +1356,37 @@ p, li { white-space: pre-wrap; }
データベースの満了済みエントリ
-
+ Expired Entries満了済みエントリ
-
+ Double click on an entry to jump to it.ジャンプするエントリ上でダブル クリックします。
-
+ Groupグループ
-
+ Titleタイトル
-
+ Usernameユーザー名
-
+ Expired満了
-
+ Expired Entries in the Databaseデータベースの満了済みエントリ
@@ -1354,17 +1394,17 @@ p, li { white-space: pre-wrap; }
Export_KeePassX_Xml
-
+ XML Files (*.xml)XML ファイル (*.xml)
-
+ All Files (*)すべてのファイル (*)
-
+ KeePassX XML FileKeePassX XML ファイル
@@ -1372,17 +1412,17 @@ p, li { white-space: pre-wrap; }
Export_Txt
-
+ All Files (*)すべてのファイル (*)
-
+ Text Files (*.txt)テキスト ファイル (*.txt)
-
+ Text Fileテキスト ファイル
@@ -1390,12 +1430,12 @@ p, li { white-space: pre-wrap; }
ExporterBase
-
+ Import File...ファイルのインポート...
-
+ Export Failedエクスポートが失敗しました
@@ -1403,77 +1443,77 @@ p, li { white-space: pre-wrap; }
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.ファイルはコピーできませんでした。
@@ -1481,122 +1521,122 @@ p, li { white-space: pre-wrap; }
GenPwDlg
-
+ Alt+UAlt+U
-
+ Alt+NAlt+N
-
+ Alt+MAlt+M
-
+ Alt+LAlt+L
-
+ Password Generatorパスワード ジェネレータ
-
+ Generate生成
-
+ New Password:新しいパスワード:
-
+ Quality:品質:
-
+ Optionsオプション
-
+ &Upper Letters大文字(&U)
-
+ &Lower Letters小文字(&L)
-
+ &Numbers数字(&N)
-
+ &Special Characters特殊文字(&S)
-
+ Minusマイナス
-
+ U&nderline下線(&N)
-
+ Use &only following characters:以下の文字のみ使用する(&O):
-
+ Alt+OAlt+O
-
+ Length:長さ:
-
+ Use follo&wing character groups:以下の文字グループを使用する(&W):
-
+ Alt+WAlt+W
-
+ White &Spaces空白(&S)
-
+ Alt+SAlt+S
-
+ Enable entropy collectionエントロピーの収集を有効にする
-
+ Collect only once per session収集は 1 セッションあたり 1 回のみ
@@ -1604,32 +1644,32 @@ p, li { white-space: pre-wrap; }
Import_KWalletXml
-
+ XML Files (*.xml)XML ファイル (*.xml)
-
+ All Files (*)すべてのファイル (*)
-
+ Import Failedインポートが失敗しました
-
+ Invalid XML data (see stdout for details).不正な XML データです (詳細は stdout をご覧ください)。
-
+ Invalid XML file.不正な XML データです。
-
+ Document does not contain data.ドキュメントがデータを含みません。
@@ -1637,29 +1677,29 @@ p, li { white-space: pre-wrap; }
Import_KeePassX_Xml
-
+ KeePass XML Files (*.xml)KeePass XML ファイル (*.xml)
-
+ All Files (*)すべてのファイル (*)
-
+ Import Failedインポートが失敗しました
-
+ XML parsing error on line %1 column %2:
%3行 %1 列 %2 での XML 構文解析エラー:
%3
-
+ Parsing error: File is no valid KeePassX XML file.構文解析エラー: ファイルは有効な KeePassX XML ファイルではありません。
@@ -1667,62 +1707,62 @@ p, li { white-space: pre-wrap; }
Import_PwManager
-
+ PwManager Files (*.pwm)PwManager ファイル (*.pwm)
-
+ All Files (*)すべてのファイル (*)
-
+ Import Failedインポートが失敗しました
-
+ File is empty.ファイルは空です。
-
+ File is no valid PwManager file.ファイルは有効な PwManager ファイルではありません。
-
+ 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).不正な XML データです (詳細は stdout をご覧ください)。
@@ -1730,12 +1770,12 @@ p, li { white-space: pre-wrap; }
ImporterBase
-
+ Import File...ファイルのインポート...
-
+ Import Failedインポートが失敗しました
@@ -1743,39 +1783,39 @@ p, li { white-space: pre-wrap; }
Kdb3Database
-
+ Could not open file.ファイルを開けませんでした。
-
+ Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_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.ハッシュ テストが失敗しました。
@@ -1807,27 +1847,27 @@ The key is wrong or the file is damaged.
予期しないエラー: オフセットは範囲外です。[E3]
-
+ Invalid group tree.不正なグループ ツリーです。
-
+ Key file is empty.キー ファイルは空です。
-
+ The database must contain at least one group.データベースは少なくとも 1 つのグループを含む必要があります。
-
+ Could not open file for writing.書き込み用のファイルを開けませんでした。
-
+ Unexpected error: Offset is out of range.予期しないエラー: オフセットは範囲外です。
@@ -1835,22 +1875,22 @@ The key is wrong or the file is damaged.
Kdb3Database::EntryHandle
-
+ Bytesバイト
-
+ KiBKiB
-
+ MiBMiB
-
+ GiBGiB
@@ -1858,95 +1898,105 @@ The key is wrong or the file is damaged.
KeepassEntryView
-
+ Titleタイトル
-
+ Usernameユーザー名
-
+ URLURL
-
+ 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?
- これら %1 個のエントリを削除してもよろしいですか?
+ これら %1 個のエントリを削除してもよろしいですか?
-
+ Delete?削除しますか?
-
+ Groupグループ
-
+ Errorエラー
-
+ At least one group must exist before adding an entry.少なくとも 1 のグループはエントリの追加前に存在する必要があります。
-
+ OKOK
+
+
+ Are you sure you want to delete this entry?
+
+
+
+
+ Are you sure you want to delete these %1 entries?
+
+ KeepassGroupView
-
+ Search Results検索結果
@@ -1956,12 +2006,12 @@ The key is wrong or the file is damaged.
グループ
-
+ Delete?削除しますか?
-
+ Are you sure you want to delete this group, all it's child groups and all their entries?このグループ、すべての子グループ、およびそれらのエントリをすべて削除してもよろしいですか?
@@ -1969,77 +2019,77 @@ The key is wrong or the file is damaged.
KeepassMainWindow
-
+ 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エラー
@@ -2056,12 +2106,12 @@ The key is wrong or the file is damaged.
OK
-
+ Save modified file?変更されたファイルを保存しますか?
-
+ The current file was modified. Do you want
to save the changes?現在のファイルは変更されました。変更を
@@ -2070,35 +2120,35 @@ to save the changes?
Yes
- はい
+ はいNo
- いいえ
+ いいえCancel
- キャンセル
+ キャンセル
-
+ Clone Entryエントリを閉じる
-
+ Delete Entryエントリの削除
-
+ Clone Entriesエントリのクローン
-
+ Delete Entriesエントリの削除
@@ -2110,7 +2160,7 @@ to save the changes?
%1
-
+ Readyレディ
@@ -2120,29 +2170,29 @@ to save the changes?
[新規]
-
+ Open Database...データベースを開く...
-
+ Loading Database...データベースを読み込んでいます...
-
+ Loading Failed読み込みが失敗しました
-
+ Ctrl+VCtrl+VShow Toolbar
- ツール バーの表示
+ ツール バーの表示
@@ -2155,22 +2205,22 @@ to save the changes?
%1 - KeePassX
-
+ Unknown error while loading database.データベースの読み込み中の不明なエラーです。
-
+ KeePass Databases (*.kdb)KeePass データベース (*.kdb)
-
+ All Files (*)すべてのファイル (*)
-
+ Save Database...データベースの保存...
@@ -2182,7 +2232,7 @@ to save the changes?
New Database
- 新しいデータベース
+ 新しいデータベース
@@ -2190,12 +2240,12 @@ to save the changes?
満了済み
-
+ 1 Month1 ヶ月間
-
+ %1 Months%1 ヶ月間
@@ -2205,34 +2255,34 @@ to save the changes?
、
-
+ 1 Year1 年間
-
+ %1 Years%1 年間
-
+ 1 Day1 日間
-
+ %1 Days%1 日間
-
+ less than 1 day1 日未満Set Master Key
- マスター キーの設定
+ マスター キーの設定
@@ -2240,75 +2290,95 @@ to save the changes?
* - KeePassX
-
+ Lockedロック済み
-
+ Unlocked未ロック
-
+ Ctrl+LCtrl+L
-
+ Ctrl+QCtrl+Q
-
+ The database file does not exist.データベース ファイルが存在しません。
-
+ The following error occured while opening the database:データベースを開いている間に以下のエラーが発生ました:
-
+ new新規
-
+ Expired満了済み
-
+ File could not be saved.ファイルは保存できませんでした。
-
+ Un&lock Workspaceワークスペースのロック解除(&L)
-
+ &Lock Workspaceワークスペースのロック(&L)
+
+
+ Show &Toolbar
+
+
+
+
+ Ctrl+N
+
+
+
+
+ Ctrl+P
+
+
+
+
+ Ctrl+X
+
+ Main
-
+ Errorエラー
-
+ File '%1' could not be found.ファイル '%1' は見つかりませんでした。
-
+ OKOK
@@ -2316,69 +2386,69 @@ to save the changes?
MainWindow
-
+ KeePassXKeePassXColumns
- 列
+ 列Add New Group...
- 新しいグループの追加...
+ 新しいグループの追加...Edit Group...
- グループの編集...
+ グループの編集...Delete Group
- グループの削除
+ グループの削除Copy Password to Clipboard
- クリップボードへパスワードをコピー
+ クリップボードへパスワードをコピーCopy Username to Clipboard
- クリップボードへユーザー名をコピー
+ クリップボードへユーザー名をコピーOpen URL
- URL を開く
+ URL を開くSave Attachment As...
- 名前を付けて添付を保存...
+ 名前を付けて添付を保存...Add New Entry...
- 新しいエントリの追加...
+ 新しいエントリの追加...View/Edit Entry...
- エントリの表示/編集...
+ エントリの表示/編集...Delete Entry
- エントリの削除
+ エントリの削除Clone Entry
- エントリのクローン
+ エントリのクローン
@@ -2393,165 +2463,165 @@ to save the changes?
Show Entry Details
- エントリの詳細の表示
+ エントリの詳細の表示Hide Usernames
- ユーザー名を隠す
+ ユーザー名を隠すHide Passwords
- パスワードを隠す
+ パスワードを隠すTitle
- タイトル
+ タイトルUsername
- ユーザー名
+ ユーザー名URL
- URL
+ URLPassword
- パスワード
+ パスワードComment
- コメント
+ コメントExpires
- 満了
+ 満了Creation
- 作成
+ 作成Last Change
- 最終変更
+ 最終変更Last Access
- 最終アクセス
+ 最終アクセスAttachment
- 添付
+ 添付Show Statusbar
- ステータス バーの表示
+ ステータス バーの表示
-
+ Hide非表示Perform AutoType
- 自動入力を行う
+ 自動入力を行うToolbar Icon Size
- ツール バー アイコンのサイズ
+ ツール バー アイコンのサイズ16x16
- 16x16
+ 16x1622x22
- 22x22
+ 22x2228x28
- 28x28
+ 28x28
-
+ &View表示(&V)
-
+ &Fileファイル(&F)
-
+ &Import from...インポート(&I)...
-
+ &Export to...エクスポート(&E)...
-
+ &Edit編集(&E)
-
+ E&xtras追加(&X)
-
+ &Helpヘルプ(&H)
-
+ &Open Database...データベースを開く(&O)...
-
+ &Close Databaseデータベースを閉じる(&C)
-
+ &Save Databaseデータベースの上書き保存(&S)
-
+ Save Database &As...名前を付けてデータベースを保存(&A)...
-
+ &Database Settings...データベースの設定(&D)...
-
+ Change &Master Key...マスター キーの変更(&M)...
@@ -2561,49 +2631,49 @@ to save the changes?
終了(&X)
-
+ &Settings...設定(&S)...
-
+ &About...バージョン情報(&A)...
-
+ &KeePassX Handbook...KeePassX ハンドブック(&K)...
-
+ Standard KeePass Single User Database (*.kdb)スタンダード KeePass シングル ユーザー データベース (*.kdb)
-
+ Advanced KeePassX Database (*.kxdb)アドバンスド KeePass データベース (*.kdb)New Database...
- 新しいデータベース...
+ 新しいデータベース...Password Generator...
- パスワード ジェネレータ...
+ パスワード ジェネレータ...Group (search results only)
- グループ (検索結果のみ)
+ グループ (検索結果のみ)Show Expired Entries...
- 満了済みエントリの表示...
+ 満了済みエントリの表示...
@@ -2611,7 +2681,7 @@ to save the changes?
満了済みエントリの表示
-
+ Recycle Bin...ごみ箱...
@@ -2621,59 +2691,360 @@ to save the changes?
ワークスペースのロック
-
+ GroupsグループBookmarks
- ブックマーク
+ ブックマークManage Bookmarks...
- ブックマークの管理...
+ ブックマークの管理...
-
+ &Lock Workspaceワークスペースのロック(&L)Q&uit
- 終了(&U)
+ 終了(&U)Search in Database...
- データベースから検索...
+ データベースから検索...Search in this Group...
- このグループから検索...
+ このグループから検索...Add Bookmark...
- ブックマークの追加...
+ ブックマークの追加...Bookmark this Database...
- このデータベースをブックマーク...
+ このデータベースをブックマーク...
+
+
+
+ &Bookmarks
+
+
+
+
+ Toolbar &Icon Size
+
+
+
+
+ &Columns
+
+
+
+
+ &Manage Bookmarks...
+
+
+
+
+ &Quit
+
+
+
+
+ &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...
+
+
+
+
+ De&lete Entry
+
+
+
+
+ &Clone Entry
+
+
+
+
+ Search &in Database...
+
+
+
+
+ Search in this &Group...
+
+
+
+
+ Show &Entry Details
+
+
+
+
+ Hide &Usernames
+
+
+
+
+ Hide &Passwords
+
+
+
+
+ &Title
+
+
+
+
+ User&name
+
+
+
+
+ &URL
+
+
+
+
+ &Password
+
+
+
+
+ &Comment
+
+
+
+
+ E&xpires
+
+
+
+
+ C&reation
+
+
+
+
+ &Last Change
+
+
+
+
+ Last &Access
+
+
+
+
+ A&ttachment
+
+
+
+
+ Show &Statusbar
+
+
+
+
+ &Perform AutoType
+
+
+
+
+ &16x16
+
+
+
+
+ &22x22
+
+
+
+
+ 2&8x28
+ 28x28 {2&8x?}
+
+
+
+ &New Database...
+
+
+
+
+ &Password Generator...
+
+
+
+
+ &Group (search results only)
+
+
+
+
+ Show &Expired Entries...
+
+
+
+
+ &Add Bookmark...
+
+
+
+
+ Bookmark &this Database...
+ ManageBookmarksDlg
-
+ Manage Bookmarksブックマークの管理
+
+ PasswordDialog
+
+
+ Enter Master Key
+
+
+
+
+ Set Master Key
+ マスター キーの設定
+
+
+
+ Change Master Key
+
+
+
+
+ Database Key
+ データベース キー
+
+
+
+ Last File
+ 最後のファイル
+
+
+
+ Select a Key File
+ キー ファイルの選択
+
+
+
+ All Files (*)
+ すべてのファイル (*)
+
+
+
+ Key Files (*.key)
+ キー ファイル (*.key)
+
+
+
+ Please enter a Password or select a key file.
+ パスワードを入力するかキー ファイルを選択してください。
+
+
+
+ Please enter a Password.
+ パスワードを入力してください。
+
+
+
+ Please provide a key file.
+
+
+
+
+ %1:
+No such file or directory.
+
+
+
+
+ The selected key file or directory is not readable.
+
+
+
+
+ The given directory does not contain any key files.
+ ディレクトリがキー ファイルを含みません。
+
+
+
+ The given directory contains more then one key files.
+Please specify the key file directly.
+
+
+
+
+ %1:
+File is not readable.
+
+
+
+
+ Create Key File...
+
+
+PasswordDlg
@@ -2689,7 +3060,7 @@ to save the changes?
...
- ...
+ ...
@@ -2697,39 +3068,39 @@ to save the changes?
キャンセル
-
+ Enter a Password and/or choose a key file.パスワードを入力するかキー ファイルを選択します。
-
+ Keyキー
-
+ Password:パスワード:Key file or directory:
- キー ファイルまたはディレクトリ:
+ キー ファイルまたはディレクトリ:
-
+ &Browse...参照(&B)...
-
+ Alt+BAlt+BUse Password AND Key File
- パスワードとキー ファイルを使用する
+ パスワードとキー ファイルを使用する
@@ -2739,13 +3110,38 @@ to save the changes?
Password Repet.:
- パスワードの反復:
+ パスワードの反復:
-
+ Last File最後のファイル
+
+
+ Key File:
+
+
+
+
+ Generate Key File...
+
+
+
+
+ Please repeat your password:
+
+
+
+
+ Back
+
+
+
+
+ Passwords are not equal.
+
+ QObject
@@ -2775,15 +3171,15 @@ to save the changes?
初期化が失敗しました。
-
+ Could not locate library file.
- ライブラリ ファイルを検索できませんでした。
+ ライブラリ ファイルを検索できませんでした。SearchDialog
-
+ Search検索
@@ -2791,97 +3187,97 @@ to save the changes?
Search_Dlg
-
+ Alt+TAlt+T
-
+ Alt+UAlt+U
-
+ A&nhangアンハング(&N)
-
+ Alt+NAlt+N
-
+ Alt+WAlt+W
-
+ Alt+CAlt+C
-
+ Search...検索...
-
+ Search For:検索する文字列:
-
+ Regular E&xpression正規表現(&X)
-
+ Alt+XAlt+X
-
+ &Case Sensitive大文字と小文字を区別する(&C)
-
+ Include:範囲:
-
+ &Titlesタイトル(&T)
-
+ &Usernamesユーザー名(&U)
-
+ C&ommentsコメント(&O)
-
+ Alt+OAlt+O
-
+ U&RLsURL(&R)
-
+ Alt+RAlt+R
-
+ Pass&wordsパスワード(&W)
@@ -2901,7 +3297,7 @@ to save the changes?
Alt+S
-
+ Include Subgroups (recursive)サブグループを含める (再帰的)
@@ -2909,7 +3305,7 @@ to save the changes?
SelectIconDlg
-
+ Icon Selectionアイコンの選択
@@ -2932,67 +3328,67 @@ to save the changes?
SettingsDialog
-
+ Alt+ÖShift+Alt+O
-
+ Settings設定
-
+ Clear clipboard after:クリップボードをクリアする:Seconds
- 秒後
+ 秒後
-
+ Alt+OAlt+O
-
+ Appea&rance外観(&R)
-
+ Banner Colorバナーの色
-
+ Text Color:テキストの色:
-
+ Change...変更...
-
+ Color 2:色 2:
-
+ C&hange...変更(&H)...
-
+ Alt+HAlt+H
-
+ Color 1:色 1:
@@ -3002,137 +3398,137 @@ to save the changes?
ブラウザ コマンド:
-
+ Alternating Row Colors交互の列の色
-
+ Browse...参照...
-
+ Remember last key type and location最後のキーの種類と場所を記憶する
-
+ 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ファイル ダイアログの最近のディレクトリを保存する
-
+ 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)Gnome デスクトップ統合 (Gtk 2.x)
-
+ KDE 4 Desktop IntegrationKDE 4 デスクトップ統合
-
+ You need to restart the program before the changes take effect.変更を影響させる前にプログラムを再起動する必要があります。
-
+ Configure...構成...
-
+ Advanced詳細設定
-
+ Clear History Now今すぐ履歴をクリア
-
+ Always ask before deleting entries or groups常にエントリまたはグループの削除前に質問する
@@ -3142,62 +3538,62 @@ to save the changes?
統一タイトルとツール バー
-
+ 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.ユーザー インターフェイスをスリムに維持する際は必要に応じてここで KeePassX のいくつかの機能を無効にできます。
-
+ Bookmarksブックマーク
-
+ Auto-Type Fine Tuning自動入力の微調整
-
+ Time between the activation of an auto-type action by the user and the first simulated key stroke.ユーザーによる自動入力のアクティブ化と最初のシミュレート済みキー ストロークの間の時間です。
-
+ msms
-
+ Pre-Gap:プリギャップ:
-
+ Key Stroke Delay:キー ストロークの遅延:
-
+ Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters.2 つのシミュレート済みキー ストロークの間の遅延です。自動入力がランダムに文字をスキップする場合はこれを上げます。
-
+ The directory where storage devices like CDs and memory sticks are normally mounted.CD やメモリ スティックのようなストレージ デバイスが通常マウントされるディレクトリです。
-
+ Media Root:メディア ルート:
@@ -3207,80 +3603,110 @@ to save the changes?
システム既定
-
+ 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.ブックマークとそれらの絶対パスから独立した最後に開かれたファイルを使用したい場合はこれを有効にします。これは特にポータブルに KeePassX を使用しそのためファイル システムのマウント ポイントの変更があるときに有用です。
-
+ Save relative paths (bookmarks and last file)相対パス (ブックマークと最後のファイル) を保存する
-
+ Minimize to tray instead of taskbarタスク バーの代わりにトレイへ最小化する
-
+ Start minimized最小化済みで起動する
-
+ Start lockedロック済みで起動する
-
+ Lock workspace when minimizing the main windowメイン ウィンドウの最小化時にワークスペースをロックする
-
+ Custom Browser Commandカスタム ブラウザ コマンド
-
+ Browse参照
-
+ Global Auto-Type Shortcut:グローバル自動入力ショートカット:Use entry titles to match the window for Global Auto-Type
- グローバグ自動入力のウィンドウへの一致にエントリのタイトルを使用する
+ グローバグ自動入力のウィンドウへの一致にエントリのタイトルを使用する
+
+
+
+ Automatically save database on exit and workspace locking
+
+
+
+
+ Show plain text passwords in:
+
+
+
+
+ Database Key Dialog
+
+
+
+
+ seconds
+
+
+
+
+ Lock database after inactivity of
+
+
+
+
+ Use entries' title to match the window for Global Auto-Type
+ ShortcutWidget
-
+ CtrlCtrl
-
+ ShiftShift
-
+ AltAlt
-
+ AltGrAltGr
-
+ WinWin
@@ -3293,12 +3719,12 @@ to save the changes?
...
-
+ Enter your Passwordパスワードを入力します
-
+ Password:パスワード:
@@ -3349,12 +3775,12 @@ to save the changes?
WorkspaceLockedWidget
-
+ Formフォーム
-
+ <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;">
@@ -3365,12 +3791,12 @@ p, li { white-space: pre-wrap; }
<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:10pt; font-weight:600;">ワークスペースはロックされています。</span></p></body></html>
-
+ Unlockロック解除
-
+ Close Databaseデータベースを閉じる
diff --git a/src/translations/keepassx-ru_RU.ts b/src/translations/keepassx-ru_RU.ts
index 1463404..254abf7 100644
--- a/src/translations/keepassx-ru_RU.ts
+++ b/src/translations/keepassx-ru_RU.ts
@@ -1,116 +1,160 @@
-
+
+AboutDialog
+ KeePassX %1KeePassX %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Дмитрий Функ
+ $TRANSLATION_AUTHOR_EMAILHere you can enter your email or homepage if you want.dmitry.funk@gmail.com
+ TeamКомманда разработчиков
+ Developer, Project AdminРазработчик, руководитель проекта
+ Web DesignerWeb дизайнер
+ geugen@users.berlios.degeugen@users.berlios.de
+ Thanks ToБлагодарность
+ Patches for better MacOS X supportИсправления для улучшения поддержки MacOS X
+ www.outofhanwell.comwww.outofhanwell.com
+ Main Application IconЗначок программы
+ Various fixes and improvements
+ ErrorОшибка
+ File '%1' could not be found.Файл '%1' не найден.
+ Make sure that the program is installed correctly.Убедитесь что программа установлена корректно.
+ OKOK
+ Could not open file '%1'Невозможно открыть файл '%1'
+ http://keepassx.sf.nethttp://keepassx.sf.net
+ Developer
+ Information on how to translate KeePassX can be found under:
+
+
+ Current Translation
+
+
+
+
+ None
+ Please replace 'None' with the language of your translation
+
+
+
+
+ Author
+
+ 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><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> - Кроссплатформенный менеджер паролей</p></body></html>
+ Copyright (C) 2005 - 2006 Tarek Saidi
KeePassX is distributed under the terms of the
General Public License (GPL) version 2.
@@ -119,27 +163,33 @@ 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
+ AppName
+ AppFunc
- Copyright (C) 2005 - 2007 KeePassX Team
+
+ Copyright (C) 2005 - 2008 KeePassX Team
KeePassX is distributed under the terms of the
General Public License (GPL) version 2.
@@ -148,30 +198,37 @@ General Public License (GPL) version 2.AddBookmarkDlg
+ Add Bookmark
+ Title:Название:
+ File:
+ Browse...Обзор...
+ Edit Bookmark
+ KeePass Databases (*.kdb)
+ All Files (*)
@@ -179,51 +236,62 @@ General Public License (GPL) version 2.
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 '}'
- Auto-Type string contains illegal characters
+
+ Auto-Type string contains invalid charactersAutoTypeDlg
+ KeePassX - Auto-Type
+ Click on an entry to auto-type it.
+ Group
+ TitleНазвание
+ UsernameИмя
+ CancelОтмена
+ Auto-Type
@@ -231,86 +299,106 @@ Allowed is only one per entry.
CAboutDialog
+ KeePassX %1KeePassX %1
+ ErrorОшибка
+ File '%1' could not be found.Файл '%1' не найден.
+ Make sure that the program is installed correctly.Убедитесь что программа установлена корректно.
+ OKOK
+ Could not open file '%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>Author:</b> %1<br><b>Автор:</b> %1<br>
+ $TRANSLATION_AUTHOR_EMAILHere you can enter your email or homepage if you want.dmitry.funk@gmail.com
+ $TRANSLATION_AUTHORДмитрий Функ
+ TeamКомманда разработчиков
+ Developer, Project AdminРазработчик, руководитель проекта
+ Web DesignerWeb дизайнер
+ geugen@users.berlios.degeugen@users.berlios.de
+ Thanks ToБлагодарность
+ Patches for better MacOS X supportИсправления для улучшения поддержки MacOS X
+ www.outofhanwell.comwww.outofhanwell.com
+ Information on how to translate KeePassX can be found under:
http://keepassx.sourceforge.net/Информацию по переводу KeePassX можно найти на:
http://keepassx.sourceforge.net/
+ Main Application IconЗначок программы
+ http://keepassx.sf.nethttp://keepassx.sf.net
@@ -318,38 +406,47 @@ http://keepassx.sourceforge.net/
CDbSettingsDlg
+ AES(Rijndael): 256 Bit (default)AES(Rijndael): 256 бит (по умолчанию)
+ Twofish: 256 BitTwofish: 256 бит
+ WarningВнимание
+ Please determine the number of encryption rounds.
+ OKOK
+ ErrorОшибка
+ '%1' is not valid integer value.'%1' не корректное целое значение.
+ The number of encryption rounds have to be greater than 0.
+ SettingsНастройки
@@ -357,156 +454,198 @@ http://keepassx.sourceforge.net/
CEditEntryDlg
+ WarningВнимание
+ Password and password repetition are not equal.
Please check your input.Пароль и повтор пароля не эквивалентны.
Проверьте введённые данные.
+ OKOK
+ Save Attachment...Сохранить вложение...
+ Overwrite?Перезаписать?
+ YesДа
+ NoНет
+ ErrorОшибка
+ Could not remove old file.Невозможно удалить старый файл.
+ Could not create new file.Невозможно создать новый файл.
+ 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...Добавить вложение...
+ 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...
+ [Untitled Entry]
+
+
+ New Entry
+
+ CGenPwDialog
+ NoticeПредупреждение
+ You need to enter at least one characterНеобходимо ввести более одного символа
+ OKOK
+ ErrorОшибка
+ Could not open '/dev/random' or '/dev/urandom'.Невозможно открыть '/dev/random' или '/dev/urandom'.
+ Password GeneratorГенератор паролей
+ %1 Bit%1 бит
+ %1 Bits
@@ -514,161 +653,123 @@ Are you sure?
CPasswordDialog
+ OK
- OK
+ OK
+ Error
- Ошибка
+ Ошибка
+ Please enter a Password.
- Введите пароль.
+ Введите пароль.
+ Please choose a key file.
- Выберите файл-ключ.
+ Выберите файл-ключ.
+ Please enter a Password or select a key file.
- Введите пароль или выберите файл-ключ.
+ Введите пароль или выберите файл-ключ.
+ Database Key
- Ключ базы паролей
+ Ключ базы паролей
+ Select a Key File
- Выбор файл-ключа
+ Выбор файл-ключа
+ *.key*.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.
- Введите пароль или выберите файл-ключ.
+ Введите пароль или выберите файл-ключ.
+ A file with the name 'pwsafe.key' already exisits in the given directory.
Do you want to replace it?Файл с именем 'pwsafe.key' уже существует в данной директории.
Заменить его?
+ YesДа
+ NoНет
+ The exisiting file is not writable.Сужествующий файл незаписываем.
+ A file with the this name already exisits.
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
-
-
-
- Last File
-
+ ОтменаCSearchDlg
+ NoticeПредупреждение
+ Please enter a search string.Введите строку для поиска.
+ OKOK
+ SearchПоиск
@@ -676,54 +777,66 @@ Please check your permissions.
CSelectIconDlg
+ DeleteУдалить
+ Add Icons...Добавить значок...
+ Images (%1)Изображение (%1)
+ %1: File could not be loaded.
%1: Файл не может быть загружен.
+ ErrorОшибка
+ Replace...Заменить...
+ An error occured while loading the icon(s):
%1Ошибка при загрузке значков:
%1
+ An error occured while loading the icon.Ошибка при загрузке значка.
+ Add Custom Icon
+ PickВыбрать
+ %1: File could not be loaded.
+ An error occured while loading the icon(s):
@@ -731,14 +844,17 @@ Please check your permissions.
CSettingsDlg
+ SettingsНастройки
+ Select a directory...Выберите директорию...
+ Select an executable...
@@ -746,6 +862,7 @@ Please check your permissions.
CalendarDialog
+ Calendar
@@ -753,19 +870,23 @@ Please check your permissions.
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;">
@@ -776,206 +897,257 @@ 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
+ CancelОтмена
@@ -983,6 +1155,7 @@ p, li { white-space: pre-wrap; }
Database
+ NeverНикогда
@@ -990,61 +1163,80 @@ p, li { white-space: pre-wrap; }
DatabaseSettingsDlg
+ Database SettingsН&астройки базы паролей...
+ EncryptionШифрование
+ Algorithm:Алгоритм:
+ Encryption Rounds:
+
+
+ Calculate rounds for a 1-second delay on this computer
+
+ DetailViewTemplate
+ Group
+ TitleНазвание
+ UsernameИмя
+ PasswordПароль
+ URLСсылка
+ CreationСоздание
+ Last AccessПоследний доступ
+ Last Modification
+ Expiration
+ CommentКомментарий
@@ -1052,90 +1244,112 @@ p, li { white-space: pre-wrap; }
EditEntryDialog
+ Edit EntryИзменить запись
+ Username:Имя:
+ Password Repet.:Повтор пароля:
+ Title:Название:
+ URL:Ссылка:
+ Password:Пароль:
+ Quality:Качество:
+ Comment:Комментарий:
+ Expires:Окончание:
+ Group:Группа:
+ &Cancel&Отмена
+ Alt+CAlt+C
+ %1%1
+ Icon:Значок:
+ Ge&n.&Генерация.
+ ......
+ O&KO&K
+ Alt+KAlt+K
+ NeverНикогда
+ Attachment:Вложение:
+ >>
+ %1 Bit%1 бит
@@ -1143,34 +1357,42 @@ p, li { white-space: pre-wrap; }
EditGroupDialog
+ Group PropertiesПараметры группы
+ Title:Название:
+ Icon:Значок:
+ &Cancel&Отмена
+ Alt+CAlt+C
+ O&KO&K
+ Alt+KAlt+K
+ >>
@@ -1178,30 +1400,37 @@ p, li { white-space: pre-wrap; }
ExpiredEntriesDialog
+ Expired Entries
+ Double click on an entry to jump to it.
+ Group
+ TitleНазвание
+ UsernameИмя
+ Expired
+ Expired Entries in the Database
@@ -1209,14 +1438,17 @@ p, li { white-space: pre-wrap; }
Export_KeePassX_Xml
+ XML Files (*.xml)
+ All Files (*)
+ KeePassX XML File
@@ -1224,18 +1456,22 @@ p, li { white-space: pre-wrap; }
Export_Txt
+ Could not open file (FileError=%1)Невозможно открыть файл (FileError=%1)
+ All Files (*)
+ Text Files (*.txt)
+ Text File
@@ -1243,10 +1479,12 @@ p, li { white-space: pre-wrap; }
ExporterBase
+ Import File...
+ Export Failed
@@ -1254,62 +1492,77 @@ p, li { white-space: pre-wrap; }
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.
@@ -1317,118 +1570,147 @@ p, li { white-space: pre-wrap; }
GenPwDlg
+ Alt+UAlt+U
+ Alt+NAlt+N
+ Alt+MAlt+M
+ Alt+LAlt+L
+ Password GeneratorГенератор паролей
+ Accep&t&Принять
+ &Cancel&Отмена
+ GenerateГенерировать
+ New Password:Новый пароль:
+ Quality:Качество:
+ OptionsОпции
+ &Upper Letters&Прописные буквы
+ &Lower Letters&Строчные буквы
+ &Numbers&Цифры
+ &Special Characters&Специальные символы
+ MinusЗнак минуса
+ U&nderlineПо&дчёркивание
+ h&igher ANSI-CharactersANSI-символы &второй половины таблицы
+ Alt+HAlt+H
+ Use &only following characters:&Только следующие символы:
+ Alt+OAlt+O
+ Length:Длинна:
+ Use "/dev/rando&m"Использовать "/dev/rando&m"
+ Use follo&wing character groups:Только следующие &группы символов:
+ Alt+WAlt+W
+ White &Spaces&Пробелы
+ Alt+SAlt+S
+ Enable entropy collection
+ Collect only once per session
@@ -1436,26 +1718,32 @@ p, li { white-space: pre-wrap; }
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.Документ не содержит данных.
@@ -1463,23 +1751,28 @@ p, li { white-space: pre-wrap; }
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.
@@ -1487,50 +1780,62 @@ p, li { white-space: pre-wrap; }
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).
@@ -1538,10 +1843,12 @@ p, li { white-space: pre-wrap; }
ImporterBase
+ Import File...
+ Import Failed
@@ -1549,53 +1856,65 @@ p, li { white-space: pre-wrap; }
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.
+ Invalid group tree.
+ Key file is empty.
+ The database must contain at least one group.
+ Could not open file for writing.Невозможно открыть файл для записи.
+ Unexpected error: Offset is out of range.
@@ -1603,18 +1922,22 @@ The key is wrong or the file is damaged.Kdb3Database::EntryHandle
+ Bytes
+ KiB
+ MiB
+ GiB
@@ -1622,93 +1945,115 @@ The key is wrong or the file is damaged.
KeepassEntryView
+ TitleНазвание
+ UsernameИмя
+ URLСсылка
+ PasswordПароль
+ CommentsКомментарий
+ ExpiresОкончание
+ CreationСоздание
+ Last ChangeПоследнее изменение
+ Last AccessПоследний доступ
+ AttachmentВложение
+ %1 items%1 пунктов
- Are you sure you want delete this entry?
-
-
-
- Are you sure you want delete these %1 entries?
-
-
-
+ Delete?
+ Group
+ ErrorОшибка
+ At least one group must exist before adding an entry.
+ OKOK
+
+
+ Are you sure you want to delete this entry?
+
+
+
+
+ Are you sure you want to delete these %1 entries?
+
+ KeepassGroupView
+ Search ResultsРезультаты поиска
+ GroupsГруппы
+ Delete?
+ Are you sure you want to delete this group, all it's child groups and all their entries?
@@ -1716,285 +2061,359 @@ The key is wrong or the file is damaged.
KeepassMainWindow
+ Ctrl+N
- Ctrl+N
+ 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Ошибка
+ OKOK
+ Save modified file?Сохранить изменения файла?
+ The current file was modified. Do you want
to save the changes?Текущий файл был изменён. Хотите
сохранить изменения?
+ Yes
- Да
+ Да
+ No
- Нет
+ Нет
+ Cancel
- Отмена
+ Отмена
+ KeePassX - %1KeePassX - %1
+ <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<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Невозможно сохранить файл.
%1
+ Save Database As...Сохранить базу паролей как...
+ ReadyГотов
+ [new][новый]
+ Open Database...Открыть базу паролей...
+ Loading Database...Загрузка базы паролей...
+ Loading FailedОшибка загрузки
+ Export To...Экспорт в...
+ Unknown error in Import_PwManager::importFile()()Неизвестная ошибка в Import_PwManager::importFile()()
+ Unknown error in Import_KWalletXml::importFile()Неизвестная ошибка в Import_KWalletXml::importFile()
+ Unknown error in PwDatabase::openDatabase()Неизвестная ошибка в PwDatabase::openDatabase()
+ Ctrl+VCtrl+V
+ Show Toolbar
- Отобразить панель инструментов
+ Отобразить панель инструментов
+ KeePassXKeePassX
+ Unknown error while loading database.
+ KeePass Databases (*.kdb)
+ All Files (*)
+ Save Database...
- New Database
-
-
-
+ 1 Month
+ %1 Months
+ 1 Year
+ %1 Years
+ 1 Day
+ %1 Days
+ less than 1 day
- Set Master Key
-
-
-
+ Locked
+ Unlocked
+ Ctrl+L
+ Ctrl+Q
+ The database file does not exist.
+ new
+ Expired
+ Un&lock Workspace
+ &Lock Workspace
+ The following error occured while opening the database:
+ File could not be saved.
+
+
+ Show &Toolbar
+
+
+
+
+ Ctrl+P
+
+
+
+
+ Ctrl+X
+
+ Main
+ ErrorОшибка
+ File '%1' could not be found.Файл '%1' не найден.
+ OKOK
@@ -2002,403 +2421,767 @@ to save the changes?
MainWindow
+ KeePassXKeePassX
+ Columns
- Столбцы
+ Столбцы
+ PwManager File (*.pwm)Файл PwManager (*.pwm)
+ KWallet XML-File (*.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...Поиск в текущей группе...
+ Show ToolbarОтобразить панель инструментов
+ 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)
+ HideСкрыть
+ Perform AutoType
- Применить автоввод
+ Применить автоввод
+ Type HereВвести сюда
+ Toolbar Icon Size
- Размер значков панели инструментов
+ Размер значков панели инструментов
+ 16x16
- 16x16
+ 16x16
+ 22x22
- 22x22
+ 22x22
+ 28x28
- 28x28
+ 28x28
+ &View&Вид
+ &File&Файл
+ &Import from...&Импортировать из...
+ &Export to...&Экспортировать в...
+ &Edit&Правка
+ E&xtras&Дополнительно
+ &Help&Справка
+ &New Database...
- Со&здать базу паролей...
+ Со&здать базу паролей...
+ &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...
-
-
-
+ Recycle Bin...
+ GroupsГруппы
- Bookmarks
-
-
-
- Manage Bookmarks...
-
-
-
+ &Lock Workspace
- Q&uit
+
+ &Bookmarks
- Search in Database...
+
+ Toolbar &Icon Size
- Search in this Group...
+
+ &Columns
- Add Bookmark...
+
+ &Manage Bookmarks...
- Bookmark this Database...
+
+ &Quit
+
+
+
+
+ &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...
+
+
+
+
+ De&lete Entry
+
+
+
+
+ &Clone Entry
+
+
+
+
+ Search &in Database...
+
+
+
+
+ Search in this &Group...
+
+
+
+
+ Show &Entry Details
+
+
+
+
+ Hide &Usernames
+
+
+
+
+ Hide &Passwords
+
+
+
+
+ &Title
+
+
+
+
+ User&name
+
+
+
+
+ &URL
+
+
+
+
+ &Password
+
+
+
+
+ &Comment
+
+
+
+
+ E&xpires
+
+
+
+
+ C&reation
+
+
+
+
+ &Last Change
+
+
+
+
+ Last &Access
+
+
+
+
+ A&ttachment
+
+
+
+
+ Show &Statusbar
+
+
+
+
+ &Perform AutoType
+
+
+
+
+ &16x16
+
+
+
+
+ &22x22
+
+
+
+
+ 2&8x28
+ 28x28 {2&8x?}
+
+
+
+ &Password Generator...
+
+
+
+
+ &Group (search results only)
+
+
+
+
+ Show &Expired Entries...
+
+
+
+
+ &Add Bookmark...
+
+
+
+
+ Bookmark &this Database...ManageBookmarksDlg
+ Manage Bookmarks
+
+ PasswordDialog
+
+
+ Enter Master Key
+
+
+
+
+ Set Master Key
+
+
+
+
+ Change Master Key
+
+
+
+
+ Database Key
+ Ключ базы паролей
+
+
+
+ Last File
+
+
+
+
+ Select a Key File
+ Выбор файл-ключа
+
+
+
+ All Files (*)
+
+
+
+
+ Key Files (*.key)
+
+
+
+
+ Please enter a Password or select a key file.
+ Введите пароль или выберите файл-ключ.
+
+
+
+ Please enter a Password.
+ Введите пароль.
+
+
+
+ Please provide a key file.
+
+
+
+
+ %1:
+No such file or directory.
+
+
+
+
+ The selected key file or directory is not readable.
+
+
+
+
+ The given directory does not contain any key files.
+
+
+
+
+ The given directory contains more then one key files.
+Please specify the key file directly.
+
+
+
+
+ %1:
+File is not readable.
+
+
+
+
+ Create Key File...
+
+
+PasswordDlg
+ TextLabelТекстЛабел
+ OKOK
+ ...
- ...
+ ...
+ CancelОтмена
+ Enter a Password and/or choose a key file.Введите пароль и/или выберите файл-ключ.
+ KeyКлюч
+ Password:Пароль:
+ Key file or directory:
- Папка с файл-ключом:
+ Папка с файл-ключом:
+ &Browse...&Обзор...
+ Alt+BAlt+B
+ Use Password AND Key File
- Использовать пароль И файл-ключ
+ Использовать пароль И файл-ключ
+ ExitВыход
+ Password Repet.:
- Повтор пароля:
+ Повтор пароля:
+ Last File
+
+
+ Key File:
+
+
+
+
+ Generate Key File...
+
+
+
+
+ Please repeat your password:
+
+
+
+
+ Back
+
+
+
+
+ Passwords are not equal.
+
+ PwDatabase
+ Unknown ErrorНеизвестная ошибка
+ Wrong SignatureНеверная сигнатура
+ Could not open key file.Невозможно открыть файл-ключ.
+ Key file could not be written.Файл-ключ не записываем.
+ Could not open file.Невозможно открыть файл.
+ Could not open file for writing.Невозможно открыть файл для записи.
+ Unsupported File Version.Неподдерживаемая версия файла.
+ Unknown Encryption Algorithm.Неизвестный алгоритм шифрования.
+ Decryption failed.
The key is wrong or the file is damaged.Расшифровка прервана.
@@ -2408,75 +3191,97 @@ The key is wrong or the file is damaged.
QObject
+ WarningВнимание
+ OKOK
+ File '%1' could not be found.Файл '%1' не найден.
+ File not found.Файл не найден.
+ Could not open file.Невозможно открыть файл.
+ Unsupported file version.Неподдерживаемая версия файла.
+ Unsupported hash algorithm.Неподдерживаемы хэш алгоритм.
+ Unsupported encryption algorithm.Неизвестный алгоритм шифрования.
+ Wrong password.Неверный пароль.
+ File is empty.Файл пуст.
+ Invalid XML file.Неверный файл XML.
+ Document does not contain data.Документ не содержит данных.
+ ErrorОшибка
+ Warning:Внимание:
+ Invalid RGB color value.
Неверное значение цвета RGB.
+ NeverНикогда
+
+
+ Could not locate library file.
+
+ SearchDialog
+ SearchПоиск
@@ -2484,94 +3289,117 @@ The key is wrong or the file is damaged.
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)Включая подгруппы (рекурсивно)
@@ -2579,18 +3407,22 @@ The key is wrong or the file is damaged.
SelectIconDlg
+ Icon SelectionВыбор значка
+ Add Custom Icon...Добавить свой значок...
+ PickВыбрать
+ CancelОтмена
@@ -2598,317 +3430,410 @@ The key is wrong or the file is damaged.
SettingsDialog
+ Alt+ÖAlt+Ö
+ O&KO&K
+ Alt+KAlt+K
+ Alt+CAlt+C
+ SettingsНастройки
+ &Cancel&Отмена
+ Clear clipboard after:Буфер будет очищен через:
+ Seconds
- секунд
+ секунд
+ Sh&ow passwords in plain text by default&Отображать пароли в текстовом виде по умолчанию
+ Alt+OAlt+O
+ Appea&rance&Внешний вид
+ Banner ColorЦвет банера
+ Text Color:Цвет текста:
+ Change...Изменить...
+ Color 2:Цвет 2:
+ C&hange...&Изменить
+ Alt+HAlt+H
+ Color 1:Цвет 1:
+ Expand group tree when opening a databaseРаскрывать дерево групп при открытии базы паролей
+ &Other&Другой
+ Browser Command:Комманда браузера:
+ Securi&tyБезопасность
+ 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
+ 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
+ Clear History Now
+ Always ask before deleting entries or groups
+ 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:
+ 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)
+ Minimize to tray instead of taskbar
+ Start minimized
+ Start locked
+ Lock workspace when minimizing the main window
+ Global Auto-Type Shortcut:
- Use entry titles to match the window for Global Auto-Type
-
-
-
+ Custom Browser Command
+ Browse
+
+
+ Automatically save database on exit and workspace locking
+
+
+
+
+ Show plain text passwords in:
+
+
+
+
+ Database Key Dialog
+
+
+
+
+ seconds
+
+
+
+
+ Lock database after inactivity of
+
+
+
+
+ Use entries' title to match the window for Global Auto-Type
+
+ ShortcutWidget
+ Ctrl
+ Shift
+ Alt
+ AltGr
+ Win
@@ -2916,30 +3841,37 @@ The key is wrong or the file is damaged.
SimplePasswordDialog
+ O&KO&K
+ Alt+KAlt+K
+ Alt+CAlt+C
+ ......
+ Enter your PasswordВведите пароль:
+ Password:Пароль:
+ &Cancel&Отмена
@@ -2947,28 +3879,34 @@ The key is wrong or the file is damaged.
StandardDatabase
+ Could not open file.Невозможно открыть файл.
+ Wrong SignatureНеверная сигнатура
+ Unsupported File Version.Неподдерживаемая версия файла.
+ Unknown Encryption Algorithm.Неизвестный алгоритм шифрования.
+ Decryption failed.
The key is wrong or the file is damaged.Расшифровка прервана.
Ключ неверен или файл повреждён.
+ Could not open file for writing.Невозможно открыть файл для записи.
@@ -2976,10 +3914,12 @@ The key is wrong or the file is damaged.
TrashCanDialog
+ TitleНазвание
+ UsernameИмя
@@ -2987,10 +3927,12 @@ The key is wrong or the file is damaged.
WorkspaceLockedWidget
+ Form
+ <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;">
@@ -2998,10 +3940,12 @@ p, li { white-space: pre-wrap; }
+ Unlock
+ Close Database
@@ -3009,34 +3953,42 @@ p, li { white-space: pre-wrap; }
dbsettingdlg_base
+ Database SettingsН&астройки базы паролей...
+ EncryptionШифрование
+ Algorithm:Алгоритм:
+ ??
+ O&KO&K
+ Ctrl+KCtrl+K
+ &Cancel&Отмена
+ Ctrl+CCtrl+C
diff --git a/src/translations/keepassx-xx_XX.ts b/src/translations/keepassx-xx_XX.ts
index cbccb94..78adf7f 100644
--- a/src/translations/keepassx-xx_XX.ts
+++ b/src/translations/keepassx-xx_XX.ts
@@ -1,145 +1,184 @@
-
+
+AboutDialog
- <b>Current Translation: None</b><br><br>
- Please replace 'None' with the language of your translation
-
-
-
- <b>Author:</b> %1<br>
-
-
-
+ $TRANSLATION_AUTHOR
+ $TRANSLATION_AUTHOR_EMAILHere you can enter your email or homepage if you want.
+ Information on how to translate KeePassX can be found under:
+ Team
+ Developer, Project Admin
+ Web Designer
+ Developer
+ Thanks To
+ Patches for better MacOS X support
+ Main Application Icon
+ Various fixes and improvements
+ Error
+ File '%1' could not be found.
+ Make sure that the program is installed correctly.
+ OK
+
+
+ Current Translation
+
+
+
+
+ None
+ Please replace 'None' with the language of your translation
+
+
+
+
+ Author
+
+ AboutDlg
+ About
+ AppName
+ AppFunc
+ http://keepassx.sourceforge.net
+ keepassx@gmail.com
- Copyright (C) 2005 - 2007 KeePassX Team
-KeePassX is distributed under the terms of the
-General Public License (GPL) version 2.
-
-
-
+ Credits
+ Translation
+ License
+
+
+ Copyright (C) 2005 - 2008 KeePassX Team
+KeePassX is distributed under the terms of the
+General Public License (GPL) version 2.
+
+ AddBookmarkDlg
+ Add Bookmark
+ Title:
+ File:
+ Browse...
+ Edit Bookmark
+ KeePass Databases (*.kdb)
+ All Files (*)
@@ -147,43 +186,52 @@ General Public License (GPL) version 2.
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 '}'
- Auto-Type string contains illegal characters
+
+ Auto-Type string contains invalid charactersAutoTypeDlg
+ KeePassX - Auto-Type
+ Click on an entry to auto-type it.
+ Group
+ Title
+ Username
+ Auto-Type
@@ -191,38 +239,47 @@ Allowed is only one per entry.
CDbSettingsDlg
+ Settings
+ AES(Rijndael): 256 Bit (default)
+ Twofish: 256 Bit
+ Warning
+ Please determine the number of encryption rounds.
+ OK
+ Error
+ '%1' is not valid integer value.
+ The number of encryption rounds have to be greater than 0.
@@ -230,283 +287,218 @@ Allowed is only one per entry.
CEditEntryDlg
+ Today
+ 1 Week
+ 2 Weeks
+ 3 Weeks
+ 1 Month
+ 3 Months
+ 6 Months
+ 1 Year
+ Calendar...
+ %1 Bit
+ Edit Entry
+ Warning
+ Password and password repetition are not equal.
Please check your input.
+ OK
+ [Untitled Entry]
+ Add Attachment...
+ Error
+ Could not open file.
+ The chosen entry has no attachment or it is empty.
+ Save Attachment...
+ Error while writing the file.
+ Delete Attachment?
+ You are about to delete the attachment of this entry.
Are you sure?
+ Yes
+ No, Cancel
+
+
+ New Entry
+
+ CGenPwDialog
+ Password Generator
+ Notice
+ You need to enter at least one character
+ OK
+ %1 BitsCPasswordDialog
-
- Database Key
-
-
-
- Last File
-
-
-
- Select a Key File
-
-
-
- Key Files (*.key)
-
-
-
- All Files (*)
-
-
-
- Error
-
-
-
- Please enter a Password or select a key file.
-
-
-
- OK
-
-
-
- Please enter a Password.
-
-
-
- Please choose a key file.
-
-
-
- The selected key file or directory does not exist.
-
-
-
- The selected key file or directory is not readable.
-Please check your permissions.
-
-
-
- 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.
-
-
-
- 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
-
- CSelectIconDlg
+ Replace...
+ Delete
+ Add Custom Icon
+ Pick
+ Add Icons...
+ Images (%1)
+ %1: File could not be loaded.
+ Error
+ An error occured while loading the icon(s):
+ An error occured while loading the icon.
@@ -514,14 +506,17 @@ Please check your input.
CSettingsDlg
+ Settings
+ Select a directory...
+ Select an executable...
@@ -529,6 +524,7 @@ Please check your input.
CalendarDialog
+ Calendar
@@ -536,15 +532,18 @@ Please check your input.
CollectEntropyDlg
+ 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;">
@@ -552,6 +551,7 @@ p, li { white-space: pre-wrap; }
+ Entropy Collection
@@ -559,202 +559,252 @@ p, li { white-space: pre-wrap; }
CustomizeDetailViewDialog
+ 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
+ Group
+ Title
+ Username
+ Password
+ Url
+ Comment
+ Attachment Name
+ Creation Date
+ Last Access Date
+ Last Modification Date
+ Expiration Date
+ Time till Expiration
@@ -762,6 +812,7 @@ p, li { white-space: pre-wrap; }
Database
+ Never
@@ -769,61 +820,80 @@ p, li { white-space: pre-wrap; }
DatabaseSettingsDlg
+ Database Settings
+ Encryption
+ Algorithm:
+ Encryption Rounds:
+
+
+ Calculate rounds for a 1-second delay on this computer
+
+ DetailViewTemplate
+ Group
+ Title
+ Username
+ Password
+ URL
+ Creation
+ Last Access
+ Last Modification
+ Expiration
+ Comment
@@ -831,66 +901,82 @@ p, li { white-space: pre-wrap; }
EditEntryDialog
+ Edit Entry
+ Ge&n.
+ Quality:
+ Attachment:
+ Title:
+ Username:
+ Comment:
+ %1
+ URL:
+ Group:
+ Password Repet.:
+ Password:
+ Expires:
+ Never
+ %1 Bit
+ Icon:
@@ -898,18 +984,22 @@ p, li { white-space: pre-wrap; }
EditGroupDialog
+ Group Properties
+ Icon:
+ Title:
+ >
@@ -917,30 +1007,37 @@ p, li { white-space: pre-wrap; }
ExpiredEntriesDialog
+ Expired Entries
+ Double click on an entry to jump to it.
+ Group
+ Title
+ Username
+ Expired
+ Expired Entries in the Database
@@ -948,14 +1045,17 @@ p, li { white-space: pre-wrap; }
Export_KeePassX_Xml
+ KeePassX XML File
+ XML Files (*.xml)
+ All Files (*)
@@ -963,14 +1063,17 @@ p, li { white-space: pre-wrap; }
Export_Txt
+ Text File
+ All Files (*)
+ Text Files (*.txt)
@@ -978,10 +1081,12 @@ p, li { white-space: pre-wrap; }
ExporterBase
+ Import File...
+ Export Failed
@@ -989,62 +1094,77 @@ p, li { white-space: pre-wrap; }
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.
@@ -1052,98 +1172,122 @@ p, li { white-space: pre-wrap; }
GenPwDlg
+ Password Generator
+ Options
+ Use follo&wing character groups:
+ Alt+W
+ &Lower Letters
+ Alt+L
+ U&nderline
+ Alt+N
+ &Numbers
+ White &Spaces
+ Alt+S
+ &Upper Letters
+ Alt+U
+ Minus
+ &Special Characters
+ Use &only following characters:
+ Alt+O
+ Length:
+ Quality:
+ Enable entropy collection
+ Alt+M
+ Collect only once per session
+ New Password:
+ Generate
@@ -1151,26 +1295,32 @@ p, li { white-space: pre-wrap; }
Import_KWalletXml
+ XML Files (*.xml)
+ All Files (*)
+ Import Failed
+ Invalid XML data (see stdout for details).
+ Invalid XML file.
+ Document does not contain data.
@@ -1178,23 +1328,28 @@ p, li { white-space: pre-wrap; }
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.
@@ -1202,50 +1357,62 @@ p, li { white-space: pre-wrap; }
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).
@@ -1253,10 +1420,12 @@ p, li { white-space: pre-wrap; }
ImporterBase
+ Import File...
+ Import Failed
@@ -1264,52 +1433,64 @@ p, li { white-space: pre-wrap; }
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.
+ Invalid group tree.
+ Key file is empty.
+ The database must contain at least one group.
+ Could not open file for writing.
@@ -1317,18 +1498,22 @@ The key is wrong or the file is damaged.
Kdb3Database::EntryHandle
+ Bytes
+ KiB
+ MiB
+ GiB
@@ -1336,85 +1521,105 @@ The key is wrong or the file is damaged.
KeepassEntryView
- Are you sure you want delete this entry?
-
-
-
- Are you sure you want delete these %1 entries?
-
-
-
+ Delete?
+ Error
+ At least one group must exist before adding an entry.
+ OK
+ Title
+ Username
+ URL
+ Password
+ Comments
+ Expires
+ Creation
+ Last Change
+ Last Access
+ Attachment
+ Group
+
+
+ Are you sure you want to delete this entry?
+
+
+
+
+ Are you sure you want to delete these %1 entries?
+
+ KeepassGroupView
+ Search Results
+ Delete?
+ Are you sure you want to delete this group, all it's child groups and all their entries?
@@ -1422,234 +1627,281 @@ The key is wrong or the file is damaged.
KeepassMainWindow
+ Ready
- Show Toolbar
-
-
-
+ Locked
+ Unlocked
+ Ctrl+O
+ Ctrl+S
+ Ctrl+L
+ Ctrl+Q
+ Ctrl+G
+ Ctrl+C
+ Ctrl+B
+ Ctrl+U
+ Ctrl+Y
+ Ctrl+E
+ Ctrl+D
+ Ctrl+K
+ Ctrl+F
+ Ctrl+V
+ Ctrl+W
+ Shift+Ctrl+S
+ Shift+Ctrl+F
+ Error
+ The database file does not exist.
+ Loading Database...
+ Loading Failed
+ Unknown error while loading database.
+ The following error occured while opening the database:
+ Save modified file?
+ The current file was modified. Do you want
to save the changes?
- Yes
-
-
-
- No
-
-
-
- Cancel
-
-
-
- New Database
-
-
-
+ new
+ Open Database...
+ KeePass Databases (*.kdb)
+ All Files (*)
+ Expired
+ 1 Month
+ %1 Months
+ 1 Year
+ %1 Years
+ 1 Day
+ %1 Days
+ less than 1 day
+ Clone Entry
+ Delete Entry
+ Clone Entries
+ Delete Entries
+ File could not be saved.
+ Save Database...
- Set Master Key
-
-
-
+ Un&lock Workspace
+ &Lock Workspace
+
+
+ Show &Toolbar
+
+
+
+
+ Ctrl+N
+
+
+
+
+ Ctrl+P
+
+
+
+
+ Ctrl+X
+
+ Main
+ Error
+ File '%1' could not be found.
+ OK
@@ -1657,319 +1909,500 @@ to save the changes?
MainWindow
+ KeePassX
+ Groups
+ &Help
+ &File
+ &Export to...
+ &Import from...
- Bookmarks
-
-
-
+ &Edit
+ &View
- Toolbar Icon Size
-
-
-
- Columns
-
-
-
+ E&xtras
- Manage Bookmarks...
-
-
-
+ &Open Database...
+ &Close Database
+ &Save Database
+ Save Database &As...
+ &Database Settings...
+ Change &Master Key...
+ &Lock Workspace
- Q&uit
-
-
-
- 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
-
-
-
+ &Settings...
+ &About...
- Show Statusbar
-
-
-
+ &KeePassX Handbook...
+ Hide
- Perform AutoType
-
-
-
- 16x16
-
-
-
- 22x22
-
-
-
- 28x28
-
-
-
+ Standard KeePass Single User Database (*.kdb)
+ Advanced KeePassX Database (*.kxdb)
- New Database...
-
-
-
- Password Generator...
-
-
-
- Group (search results only)
-
-
-
- Show Expired Entries...
-
-
-
+ Recycle Bin...
- Add Bookmark...
+
+ &Bookmarks
- Bookmark this Database...
+
+ Toolbar &Icon Size
+
+
+
+
+ &Columns
+
+
+
+
+ &Manage Bookmarks...
+
+
+
+
+ &Quit
+
+
+
+
+ &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...
+
+
+
+
+ De&lete Entry
+
+
+
+
+ &Clone Entry
+
+
+
+
+ Search &in Database...
+
+
+
+
+ Search in this &Group...
+
+
+
+
+ Show &Entry Details
+
+
+
+
+ Hide &Usernames
+
+
+
+
+ Hide &Passwords
+
+
+
+
+ &Title
+
+
+
+
+ User&name
+
+
+
+
+ &URL
+
+
+
+
+ &Password
+
+
+
+
+ &Comment
+
+
+
+
+ E&xpires
+
+
+
+
+ C&reation
+
+
+
+
+ &Last Change
+
+
+
+
+ Last &Access
+
+
+
+
+ A&ttachment
+
+
+
+
+ Show &Statusbar
+
+
+
+
+ &Perform AutoType
+
+
+
+
+ &16x16
+
+
+
+
+ &22x22
+
+
+
+
+ 2&8x28
+
+
+
+
+ &New Database...
+
+
+
+
+ &Password Generator...
+
+
+
+
+ &Group (search results only)
+
+
+
+
+ Show &Expired Entries...
+
+
+
+
+ &Add Bookmark...
+
+
+
+
+ Bookmark &this Database...ManageBookmarksDlg
+ Manage Bookmarks
+
+ PasswordDialog
+
+
+ Enter Master Key
+
+
+
+
+ Set Master Key
+
+
+
+
+ Change Master Key
+
+
+
+
+ Database Key
+
+
+
+
+ Last File
+
+
+
+
+ Select a Key File
+
+
+
+
+ All Files (*)
+
+
+
+
+ Key Files (*.key)
+
+
+
+
+ Please enter a Password or select a key file.
+
+
+
+
+ Please enter a Password.
+
+
+
+
+ Please provide a key file.
+
+
+
+
+ %1:
+No such file or directory.
+
+
+
+
+ The selected key file or directory is not readable.
+
+
+
+
+ The given directory does not contain any key files.
+
+
+
+
+ The given directory contains more then one key files.
+Please specify the key file directly.
+
+
+
+
+ %1:
+File is not readable.
+
+
+
+
+ Create Key File...
+
+
+PasswordDlg
+ Last File
+ Enter a Password and/or choose a key file.
+ Key
- Password Repet.:
-
-
-
+ Password:
- ...
-
-
-
- Key file or directory:
-
-
-
+ &Browse...
+ Alt+B
- Use Password AND Key File
+
+ Key File:
+
+
+
+
+ Generate Key File...
+
+
+
+
+ Please repeat your password:
+
+
+
+
+ Back
+
+
+
+
+ Passwords are not equal.
+
+
+
+
+ QObject
+
+
+ Could not locate library file.SearchDialog
+ Search
@@ -1977,82 +2410,102 @@ to save the changes?
Search_Dlg
+ Search...
+ Include:
+ Pass&words
+ Alt+W
+ A&nhang
+ Alt+N
+ U&RLs
+ Alt+R
+ C&omments
+ Alt+O
+ &Usernames
+ Alt+U
+ &Titles
+ Alt+T
+ &Case Sensitive
+ Alt+C
+ Regular E&xpression
+ Alt+X
+ Include Subgroups (recursive)
+ Search For:
@@ -2060,6 +2513,7 @@ to save the changes?
SelectIconDlg
+ Icon Selection
@@ -2067,273 +2521,350 @@ to save the changes?
SettingsDialog
+ Settings
+ 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 instead of taskbar
+ Minimize to tray when clicking the main window's close button
+ Remember last opened file
+ Alt+Ö
+ Remember last key type and location
+ Start minimized
+ Start locked
+ Save recent directories of file dialogs
+ Clear History Now
+ Always ask before deleting entries or groups
+ Appea&rance
+ Banner Color
+ Text Color:
+ Change...
+ Color 2:
+ C&hange...
+ Alt+H
+ Color 1:
+ Alternating Row Colors
+ Customize Entry Detail View...
+ 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
+ Alt+O
- Key Dialogs
-
-
-
+ Clear clipboard after:
- Seconds
-
-
-
+ Lock workspace when minimizing the main window
+ Features
+ You can disable several features of KeePassX here according to your needs in order to keep the user interface slim.
+ Bookmarks
+ 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
+ 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.
+ Custom Browser Command
+ Browse
+ Media Root:
+ The directory where storage devices like CDs and memory sticks are normally mounted.
+ Browse...
+ 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)
+ Global Auto-Type Shortcut:
- Use entry titles to match the window for Global Auto-Type
+
+ Automatically save database on exit and workspace locking
+
+
+
+
+ Show plain text passwords in:
+
+
+
+
+ Database Key Dialog
+
+
+
+
+ seconds
+
+
+
+
+ Lock database after inactivity of
+
+
+
+
+ Use entries' title to match the window for Global Auto-TypeShortcutWidget
+ Ctrl
+ Shift
+ Alt
+ AltGr
+ Win
@@ -2341,10 +2872,12 @@ to save the changes?
SimplePasswordDialog
+ Enter your Password
+ Password:
@@ -2352,10 +2885,12 @@ to save the changes?
WorkspaceLockedWidget
+ Form
+ <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;">
@@ -2363,10 +2898,12 @@ p, li { white-space: pre-wrap; }
+ Unlock
+ Close Database