From 56bc995cc2b8073bf063d4014b9a499290ab4cca Mon Sep 17 00:00:00 2001 From: sniperbeamer Date: Wed, 4 Jun 2008 19:41:27 +0000 Subject: [PATCH] Improved display of date strings in the EntryView git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@204 b624d157-de02-0410-bad0-e51aec6abb33 --- src/Database.cpp | 34 +- src/dialogs/AboutDlg.cpp | 4 +- src/dialogs/ExpiredEntriesDlg.cpp | 2 +- src/lib/AutoType_X11.cpp | 8 +- src/lib/EntryView.cpp | 16 +- src/lib/HelperX11.cpp | 5 +- src/main.cpp | 2 +- src/mainwindow.cpp | 8 +- src/translations/keepassx-cs_CZ.ts | 1337 +++++++++++++++++++++--- src/translations/keepassx-de_DE.ts | 1330 +++++++++++++++++++++--- src/translations/keepassx-es_ES.ts | 1310 +++++++++++++++++++++--- src/translations/keepassx-fr_FR.ts | 1371 ++++++++++++++++++++++--- src/translations/keepassx-ja_JP.ts | 1536 ++++++++++++++++++---------- src/translations/keepassx-ru_RU.ts | 1304 +++++++++++++++++++---- src/translations/keepassx-xx_XX.ts | 1231 +++++++++++++++------- 15 files changed, 7743 insertions(+), 1755 deletions(-) diff --git a/src/Database.cpp b/src/Database.cpp index 7194036..aa549a0 100644 --- a/src/Database.cpp +++ b/src/Database.cpp @@ -50,8 +50,8 @@ QString KpxUuid::toString()const{ return QString("{%1-%2-%3-%4-%5}") .arg(hex.mid(0,8)) .arg(hex.mid(8,4)) - .arg(hex.mid(12,4)) - .arg(hex.mid(16,4)) + .arg(hex.mid(12,4)) + .arg(hex.mid(16,4)) .arg(hex.mid(20,12)); } @@ -74,13 +74,35 @@ bool KpxUuid::operator!=(const KpxUuid& other)const{ QString KpxDateTime::toString(Qt::DateFormat format) const{ - if(*this==Date_Never)return QCoreApplication::translate("Database","Never"); - else return QDateTime::toString(format); + if (*this==Date_Never) + return QCoreApplication::translate("Database","Never"); + else if (format==Qt::DefaultLocaleShortDate){ + QString strFormat = QLocale::system().dateFormat(QLocale::ShortFormat); + if (!strFormat.contains("dd")) strFormat.replace("d", "dd"); + if (!strFormat.contains("MM")) strFormat.replace("M", "MM"); + if (!strFormat.contains("yyyy")) strFormat.replace("yy", "yyyy"); + if (!strFormat.contains("hh")) strFormat.replace("h", "hh"); + if (!strFormat.contains("HH")) strFormat.replace("H", "HH"); + if (!strFormat.contains("mm")) strFormat.replace("m", "mm"); + if (!strFormat.contains("ss")) strFormat.replace("s", "ss"); + return date().toString(strFormat); + } + else + return QDateTime::toString(format); } QString KpxDateTime::dateToString(Qt::DateFormat format) const{ - if(*this==Date_Never)return QCoreApplication::translate("Database","Never"); - else return date().toString(format); + if (*this==Date_Never) + return QCoreApplication::translate("Database","Never"); + else if (format==Qt::DefaultLocaleShortDate){ + QString strFormat = QLocale::system().dateFormat(QLocale::ShortFormat); + if (!strFormat.contains("dd")) strFormat.replace("d", "dd"); + if (!strFormat.contains("MM")) strFormat.replace("M", "MM"); + if (!strFormat.contains("yyyy")) strFormat.replace("yy", "yyyy"); + return date().toString(strFormat); + } + else + return date().toString(format); } diff --git a/src/dialogs/AboutDlg.cpp b/src/dialogs/AboutDlg.cpp index 5d124a9..ceb3e8a 100644 --- a/src/dialogs/AboutDlg.cpp +++ b/src/dialogs/AboutDlg.cpp @@ -29,9 +29,9 @@ AboutDialog::AboutDialog(QWidget* parent):QDialog(parent) labelAppName->setText(APP_DISPLAY_NAME); labelAppFunc->setText(QString(" - ").append(APP_LONG_FUNC)); - QString AboutTr=tr("Current Translation: None

","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 %1 KeePassX %1 + <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>Aktuální překlad: český</b><br><br> + <b>Aktuální překlad: český</b><br><br> + <b>Author:</b> %1<br> - <b>Autor:</b> %1<br> + <b>Autor:</b> %1<br> + $TRANSLATION_AUTHOR Marek Straka + $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. marek@straka.info (<a href="http://marek.straka.info">marek.straka.info</a>) + Team Vývojová skupina + Tarek Saidi Tarek Saidi + Developer, Project Admin Vývojář, vedoucí projektu + tariq@users.berlios.de tariq@users.berlios.de + Eugen Gorschenin Eugen Gorschenin + Web Designer Webový designér + geugen@users.berlios.de geugen@users.berlios.de + Thanks To Poděkování + Matthias Miller Matthias Miller + Patches for better MacOS X support Patches pro lepší MacOS X podporu + www.outofhanwell.com www.outofhanwell.com + James Nicholls James Nicholls + Main Application Icon Hlavní ikonka aplikace + Various fixes and improvements + Error Chyba + File '%1' could not be found. Soubor '%1' nemohl být nalezen. + Make sure that the program is installed correctly. Ujistěte se, že program je správně nainstalován. + OK OK + Could not open file '%1' Nelze otevřít soubor '%1' + The following error occured: %1 Vyskytl se následující problém: %1 + http://keepassx.sf.net http://keepassx.sf.net + 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 O aplikaci + License Licence + Translation Př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. + Credits Poděkování + http://keepassx.sourceforge.net http://keepassx.sourceforge.net + keepassx@gmail.com 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. @@ -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í '}' + Error Chyba + Syntax Error in Auto-Type sequence near character %1 Found '{' without closing '}' - Auto-Type string contains illegal characters + + Auto-Type string contains invalid characters AutoTypeDlg + KeePassX - Auto-Type + Click on an entry to auto-type it. + Group + Title Název + Username + Cancel Zrušit + Auto-Type @@ -264,112 +339,138 @@ Je dovolena pouze jedna na každý záznam. CAboutDialog + KeePassX %1 KeePassX %1 + Error Chyba + File '%1' could not be found. Soubor '%1' nemohl být nalezen. + Make sure that the program is installed correctly. Ujistěte se, že program je správně nainstalován. + OK OK + Could not open file '%1' Nelze otevřít soubor '%1' + The following error occured: %1 Vyskytl se následující problém: %1 + <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_EMAIL Here you can enter your email or homepage if you want. marek@straka.info (<a href="http://marek.straka.info">marek.straka.info</a>) + Matthias Miller Matthias Miller + Eugen Gorschenin Eugen Gorschenin + $TRANSLATION_AUTHOR Marek Straka + Team Vývojová skupina + Tarek Saidi Tarek Saidi + Developer, Project Admin Vývojář, vedoucí projektu + tariq@users.berlios.de tariq@users.berlios.de + Web Designer Webový designér + geugen@users.berlios.de geugen@users.berlios.de + Thanks To Poděkování + Patches for better MacOS X support Patches pro lepší MacOS X podporu + www.outofhanwell.com www.outofhanwell.com + Information on how to translate KeePassX can be found under: http://keepassx.sourceforge.net/ Informace o tom jak přeložit KeePassX lze nalézt zde: http://keepassx.sourceforge.net/ + James Nicholls James Nicholls + Main Application Icon Hlavní ikonka aplikace + http://keepassx.sf.net http://keepassx.sf.net @@ -377,38 +478,47 @@ http://keepassx.sourceforge.net/ CDbSettingsDlg + AES(Rijndael): 256 Bit (default) AES(Rijndael): 256 Bitů (standartní) + Twofish: 256 Bit Twofish: 256 Bitů + Warning Varování + Please determine the number of encryption rounds. Prosím zadejte počet šifrovacích kol. + OK OK + Error Chyba + '%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. + Settings Nastavení @@ -416,163 +526,206 @@ http://keepassx.sourceforge.net/ CEditEntryDlg + Warning Upozornění + Password and password repetition are not equal. Please check your input. Heslo a opakované heslo nejsou stejné Prosím zkontrolujte zadané údaje. + OK OK + Save Attachment... Uložit přílohu... + 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? + Yes Ano + No Ne + Error Chyba + 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, Cancel Ne, zrušit + Edit Entry Upravit 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 + Notice Poznámka + You need to enter at least one character Je nutné vložit minimálně jeden znak + OK OK + Error Chyba + Could not open '/dev/random' or '/dev/urandom'. Nelze otevřít '/dev/random' nebo '/dev/urandom'. + Password Generator Generá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? + Yes Ano + No Ne + 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šit CSearchDlg + Notice Poznámka + Please enter a search string. Prosím vložte hledaný řetězec. + OK OK + Search Vyhledat @@ -749,54 +898,66 @@ Prosím zkontrolujte jeho parametry. CSelectIconDlg + Delete Smazat + Add Icons... Přidat ikonky... + Images (%1) Obrázky (%1) + %1: File could not be loaded. %1: Soubor nemohl být otevřen. + Error Chyba + Replace... Zaměnit... + An error occured while loading the icon(s): %1 Vyskytla 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 + Pick Vybrat + %1: File could not be loaded. + An error occured while loading the icon(s): @@ -804,14 +965,17 @@ Prosím zkontrolujte jeho parametry. CSettingsDlg + Settings Nastavení + 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 + Title Název + Username + Password Heslo + Url + Comment Komentář + Attachment Name + Creation Date + Last Access Date + Last Modification Date + Expiration Date + Time till Expiration + Dialog + Rich Text Editor + Bold + B + Italic + I + Underlined + U + Left-Aligned + L + Centered + C + Right-Aligned + R + Justified + Text Color + Font Size + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 14 + 16 + 18 + 20 + 22 + 24 + 26 + 28 + 36 + 42 + 78 + Templates + T + HTML + Cancel Zrušit @@ -1056,6 +1276,7 @@ p, li { white-space: pre-wrap; } Database + Never Nikdy @@ -1063,61 +1284,80 @@ p, li { white-space: pre-wrap; } DatabaseSettingsDlg + Database Settings Nastavení databáze + Encryption Zašifrování + Algorithm: Algoritmus: + Encryption Rounds: Počet kol zašifrování: + + + Calculate rounds for a 1-second delay on this computer + + DetailViewTemplate + Group + Title Název + Username + Password Heslo + URL URL + Creation Vytvoření + Last Access Poslední přístup + Last Modification + Expiration + Comment Komentář @@ -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+C Alt+C + %1 %1 + Icon: Ikonka: + Ge&n. Ge&n. + ... ... + O&K O&K + Alt+K Alt+K + Never Nikdy + Attachment: Příloha: + > > + %1 Bit %1 bitů @@ -1216,34 +1478,42 @@ p, li { white-space: pre-wrap; } EditGroupDialog + Group Properties Vlastnosti skupiny + Title: Název: + Icon: Ikonka: + &Cancel &zrušit + Alt+C Alt+C + O&K O&K + Alt+K Alt+K + > > @@ -1251,30 +1521,37 @@ p, li { white-space: pre-wrap; } ExpiredEntriesDialog + Expired Entries + Double click on an entry to jump to it. + Group + Title Ná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+U Alt+U + Alt+N Alt+N + Alt+M Alt+M + Alt+L Alt+L + Password Generator Generátor hesla + Accep&t Převzí&t + &Cancel &zrušit + Generate Vygenerovat + New Password: Nové heslo: + Quality: Kvalita: + Options Volby + &Upper Letters &Velká písmena + &Lower Letters &Malá písmena + &Numbers Čís&la + &Special Characters &Zvláštní znaky + Minus Minus + U&nderline Po&dtržítko + h&igher ANSI-Characters &Speciální ANSI znaky + Alt+H Alt+H + Use &only following characters: Používat &jen následující znaky: + Alt+O Alt+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+W Alt+W + White &Spaces Me&zery + Alt+S Alt+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 Signature Chybný podpis + Unsupported File Version. Nepodporovaná verze souboru. + Unknown Encryption Algorithm. Neznámý algoritmus zašifrování. + Decryption failed. The key is wrong or the file is damaged. Rozšifrování se nepodařilo. Buď je nesprávný klíč nebo je soubor poškozen. + Hash test failed. The key is wrong or the file is damaged. Hash test selhal. Klíč je chybný nebo je soubor poškozen. + Unexpected error: Offset is out of range. [G1] Neočekávaná chyba: Offset je mimo rozsah. [G1] + Unexpected error: Offset is out of range. [G2] Neočekávaná chyba: Offset je mimo rozsah. [G2] + Unexpected error: Offset is out of range. [E1] Neočekávaná chyba: Offset je mimo rozsah. [E1] + Unexpected error: Offset is out of range. [E2] Neočekávaná chyba: Offset je mimo rozsah. [E2] + Unexpected error: Offset is out of range. [E3] Neočekávaná chyba: Offset je mimo rozsah. [E3] + Invalid group tree. + Key file is empty. + The database must contain at least one group. + Could not open file for writing. Nebylo možné otevřít soubor pro zápis. + 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 + Title Název + Username Uživatelské jméno + URL URL + Password Heslo + Comments Komentáře + Expires Vyprší + Creation Vytvoření + Last Change Poslední změna + Last Access Poslední přístup + Attachment Příloha + %1 items %1 položky - Are you sure you want delete this entry? - - - - Are you sure you want delete these %1 entries? - - - + Delete? + Group + Error Chyba + At least one group must exist before adding an entry. + OK OK + + + Are you sure you want to delete this entry? + + + + + Are you sure you want to delete these %1 entries? + + KeepassGroupView + Search Results Výsledky hledání + Groups Skupiny + Delete? + Are you sure you want to delete this group, all it's child groups and all their entries? @@ -1810,301 +2208,378 @@ Klíč je chybný nebo je soubor poškozen. KeepassMainWindow + Ctrl+N - Ctrl+N + Ctrl+N + Ctrl+O Ctrl+O + Ctrl+S Ctrl+S + Ctrl+G Ctrl+G + Ctrl+C Ctrl+C + Ctrl+B Ctrl+B + Ctrl+U Ctrl+U + Ctrl+Y Ctrl+Y + Ctrl+E Ctrl+E + Ctrl+D Ctrl+D + Ctrl+K Ctrl+K + Ctrl+F Ctrl+F + Ctrl+W Ctrl+W + Shift+Ctrl+S Shift+Ctrl+S + Shift+Ctrl+F Shift+Ctrl+F + Error Chyba + The following error occured while opening the database: %1 Při otevírání databáze se objevila následující chyba: %1 + OK OK + Save modified file? Uložit změněný soubor? + The current file was modified. Do you want to save the changes? Aktuální soubor byl změněn. Mají být změny uloženy? + Yes - Ano + Ano + No - Ne + Ne + Cancel - Zrušit + Zrušit + KeePassX - %1 KeePassX - %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 Entry Naklonovat záznam + Delete Entry Smazat záznam + Clone Entries Naklonovat záznamy + Delete Entries Smazat záznamy + File could not be saved. %1 Soubor nemohl být uložen. %1 + Save Database As... Uložit databázi jako ... + Ready Připraveno + [new] [nový] + Open Database... Otevřít databázi ... + Loading Database... Otevírání databáze ... + Loading Failed Otevření selhalo + Could not create key file. The following error occured: %1 Nebylo 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+V Ctrl+V + Show Toolbar - Panel nástrojů + Panel nástrojů + KeePassX KeePassX + 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 Chyba + File '%1' could not be found. Soubor '%1' nemohl být nalezen. + OK OK @@ -2112,437 +2587,809 @@ změny uloženy? MainWindow + KeePassX KeePassX + 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 Toolbar Panel 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) + Hide Skrýt + Perform AutoType - Provádět autodoplňování + Provádět autodoplňování + Type Here Psá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 Database Za&vřít databázi + &Save Database Uloži&t databázi + Save Database &As... Uložit databázi &jako... + &Database Settings... Nastavení data&báze... + Change &Master Key... Změnit &master klíč... + E&xit Uk&ončit + &Settings... N&astavení... + &About... O a&plikaci... + &KeePassX Handbook... &KeePassX příručka... + Standard KeePass Single User Database (*.kdb) + Advanced KeePassX Database (*.kxdb) - New Database... - - - - Password Generator... - - - - Group (search results only) - - - - Show Expired Entries... - - - + Recycle Bin... + Groups Skupiny - 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 + TextLabel Textová nálepka + OK OK + ... - ... + ... + Cancel Zrušit + Enter a Password and/or choose a key file. Vložit heslo nebo vybrat soubor s klíčem. + Key Klíč + Password: Heslo: + Key file or directory: - Soubor s klíčem nebo adresář: + Soubor s klíčem nebo adresář: + &Browse... &Projít... + Alt+B Alt+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 + Exit Ukonč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 Error Neznámá chyba + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) Neočekávaná velikost souboru (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Wrong Signature Chybný podpis + AES-Init Failed AES-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 + Warning Upozorně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'. + OK OK + 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. + Error Chyba + Warning: Upozornění: + Invalid RGB color value. Neplatná RGB hodnota barvy. + Never Nikdy + + + 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+T Alt+T + Alt+U Alt+U + A&nhang Přílo&ha + Alt+N Alt+N + Alt+W Alt+W + Alt+C Alt+C + Search... Hledat... + Search For: Vyhledat: + Regular E&xpression Regulární &výraz + Alt+X Alt+X + &Case Sensitive S &ohledem na velikost písmene + Include: Vložit: + &Titles &Názvy + &Usernames Uživatelská &jména + C&omments Ko&mentáře + Alt+O Alt+O + U&RLs U&RLs + Alt+R Alt+R + Pass&words He&sla + Search Hledat + Clo&se U&zavřít + Alt+S Alt+S + Include Subgroups (recursive) Vložit podskupiny (rekurzívně) @@ -2749,18 +3647,22 @@ Ujistěte se, že je možný přístup do '~/.keepass'. SelectIconDlg + Icon Selection Výběr ikonky + Add Custom Icon... Přidat vlastní ikonku... + Pick Vybrat + Cancel Zrušit @@ -2768,313 +3670,405 @@ Ujistěte se, že je možný přístup do '~/.keepass'. SettingsDialog + Alt+Ö Alt+Ö + O&K O&K + Alt+K Alt+K + Alt+C Alt+C + Settings Nastavení + &Cancel &Zrušit + Clear clipboard after: Smazat schránku po: + Seconds - Sekundách + Sekundách + Sh&ow passwords in plain text by default Zobrazovat &hesla vždy jako obyčejný text + Alt+O Alt+O + Appea&rance Zo&brazení + Banner Color Barva banneru + Text Color: Barva textu: + Change... Změnit... + Color 2: Barva 2: + C&hange... Z&měnit... + Alt+H Alt+H + Color 1: Barva 1: + Expand group tree when opening a database Př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 Colors Střídavě barevné podklady řádků + Browse... Projít... + Remember last key type and location Zapamatovat naposledy napsaný klíč a umístění + Mounting Root: Mountovat jako Root: + Remember last opened file Zapamatovat naposledy otevřený soubor + The integration plugins provide features like usage of the native file dialogs and message boxes of the particular desktop environments. + General + Show system tray icon + Minimize to tray when clicking the main window's close button + Save recent directories of file dialogs + 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&K O&K + Alt+K Alt+K + Alt+C Alt+C + ... ... + Enter your Password Vlož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 Signature Chybný podpis + Unsupported File Version. Nepodporovaná verze souboru. + Unknown Encryption Algorithm. Neznámý algoritmus zašifrování. + Decryption failed. The key is wrong or the file is damaged. Rozšifrování se nepodařilo. Buď je nesprávný klíč nebo je soubor poškozen. + Hash test failed. The key is wrong or the file is damaged. Hash test selhal. Klíč je chybný nebo je soubor poškozen. + Unexpected error: Offset is out of range. [G1] Neočekávaná chyba: Offset je mimo rozsah. [G1] + Unexpected error: Offset is out of range. [G2] Neočekávaná chyba: Offset je mimo rozsah. [G2] + Unexpected error: Offset is out of range. [E1] Neočekávaná chyba: Offset je mimo rozsah. [E1] + Unexpected error: Offset is out of range. [E2] Neočekávaná chyba: Offset je mimo rozsah. [E2] + Unexpected error: Offset is out of range. [E3] Neočekávaná chyba: Offset je mimo rozsah. [E3] + 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 + Title Ná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 Settings Nastavení databáze + Encryption Zašifrování + Algorithm: Algoritmus: + ? ? + Encryption Rounds: Počet kol zašifrování: + O&K O&K + Ctrl+K Ctrl+K + &Cancel &Zrušit + Ctrl+C Ctrl+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 %1 KeePassX %1 + <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>Aktuelle Übersetzung: Deutsch</b><br><br> + <b>Aktuelle Übersetzung: Deutsch</b><br><br> + <b>Author:</b> %1<br> - <b>Autor:</b> %1<br> + <b>Autor:</b> %1<br> + $TRANSLATION_AUTHOR Tarek Saidi + $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. tarek.saidi@arcor.de + Team Team + Developer, Project Admin Entwickler und Projektadministrator + Web Designer + Thanks To Dank An + Matthias Miller Matthias Miller + Patches for better MacOS X support Patches für bessere MacOS X Unterstützung + Main Application Icon Anwendungssymbol + Various fixes and improvements + Error Fehler + File '%1' could not be found. Datei '%1' konnte nicht geöffnet werden. + Make sure that the program is installed correctly. Stellen Sie sicher, dass das Programm korrekt installiert wurde. + OK OK + Could not open file '%1' Datei '%1' konnte nicht geöffnet werden. + The following error occured: %1 Folgender Fehler ist aufgetreten: %1 + 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 To Dank An + License Lizenz + 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.de tarek.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. + Error Fehler + Syntax Error in Auto-Type sequence near character %1 Found '{' without closing '}' - Auto-Type string contains illegal characters + + Auto-Type string contains invalid characters AutoTypeDlg + KeePassX - Auto-Type + Click on an entry to auto-type it. + Group + Title Titel + Username Benutzername + Cancel Abbrechen + Auto-Type @@ -255,98 +327,120 @@ Erlaubt ist nur eine pro Eintrag. CAboutDialog + KeePassX %1 KeePassX %1 + Error Fehler + File '%1' could not be found. Datei '%1' konnte nicht geöffnet werden. + Make sure that the program is installed correctly. Stellen Sie sicher, dass das Programm korrekt installiert wurde. + OK OK + Could not open file '%1' Datei '%1' konnte nicht geöffnet werden. + The following error occured: %1 Folgender Fehler ist aufgetreten: %1 + http://keepass.berlios.de/index.php http://keepass.berlios.de/index.php + <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation <b>Aktuelle Übersetzung: Deutsch</b><br><br> + <b>Author:</b> %1<br> <b>Autor:</b> %1<br> + $TRANSALTION_AUTHOR Tarek Saidi + $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. tarek.saidi@arcor.de + Information on how to translate KeePassX can be found under: http://keepass.berlios.de/translation-howto.html Informationen wie Sie eine Übersetztung für KeePassX erstellen können finden Sie unter: http://keepass.berlios.de/translation-howto.html + Matthias Miller Matthias Miller + http://www.outofhanwell.com/<br>Mac OS X Support http://www.outofhanwell.com/<br>Mac OS X Unterstützung + $TRANSLATION_AUTHOR Tarek 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 + Team Team + Developer, Project Admin Entwickler und Projektadministrator + Thanks To Dank An + Patches for better MacOS X support Patches für bessere MacOS X Unterstützung + Main Application Icon Anwendungssymbol @@ -354,38 +448,47 @@ http://keepass.berlios.de CDbSettingsDlg + AES(Rijndael): 256 Bit (default) AES(Rijndael): 256 Bit (Standard) + Twofish: 256 Bit Twofish: 256 Bit + Warning Warnung + Please determine the number of encryption rounds. Bitte geben Sie die Zahl der Verschlüsselungsrunden an. + OK OK + Error Fehler + '%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. + Settings Einstellungen @@ -393,159 +496,201 @@ http://keepass.berlios.de CEditEntryDlg + Warning Warnung + Password and password repetition are not equal. Please check your input. Passwort und Passwortwiederholung stimmen nicht überein. Bitte prüfen Sie Ihre Eingabe. + OK OK + Save Attachment... Anhang Speichern... + 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. + Yes Ja + No Nein + Error Fehler + 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, Cancel Nein, Abbrechen + Edit Entry Eintrag 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 + Notice Hinweis + You need to enter at least one character Sie müssen mindestens ein Zeichen angeben. + OK OK + Error Fehler + Could not open '/dev/random' or '/dev/urandom'. '/dev/random' oder '/dev/urandom' konnte nicht geöffnet werden. + Password Generator Passwortgenerator + %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? + Yes Ja + No Nein + 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 - + Abbrechen CSearchDlg + Notice Hinweis + Please enter a search string. Bitte geben Sie einen Suchbegriff ein. + OK OK + Search Suchen @@ -724,53 +865,65 @@ Bitter prüfen Sie Ihre Zugriffsrechte. CSelectIconDlg + Delete Löschen + Add Icons... Symbol hinzufügen... + Images (%1) Symbole (%1) + %1: File could not be loaded. %1: Datei konnte nicht geladen werden. + Error Fehler + Replace... Ersetzen... + An error occured while loading the icon(s): %1 Beim 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 + Pick Wä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 + Settings Einstellungen + 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 + Title Titel + Username Benutzername + Password Passwort + Url + Comment Kommentar + Attachment Name + Creation Date + Last Access Date + Last Modification Date + Expiration Date + Time till Expiration + Dialog + Rich Text Editor + Bold + B + Italic + I + Underlined + U + Left-Aligned + L + Centered + C + Right-Aligned + R + Justified + Text Color + Font Size + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 14 + 16 + 18 + 20 + 22 + 24 + 26 + 28 + 36 + 42 + 78 + Templates + T + HTML + Cancel Abbrechen @@ -1030,6 +1242,7 @@ p, li { white-space: pre-wrap; } Database + Never Nie @@ -1037,61 +1250,80 @@ p, li { white-space: pre-wrap; } DatabaseSettingsDlg + Database Settings Datenbankeinstellungen + Encryption Verschlüsselung + Algorithm: Algorithmus: + Encryption Rounds: Verschlüsselungsrunden: + + + Calculate rounds for a 1-second delay on this computer + + DetailViewTemplate + Group + Title Titel + Username Benutzername + Password Passwort + URL URL + Creation Erstellung + Last Access Letzter Zugriff + Last Modification + Expiration + Comment Kommentar @@ -1099,90 +1331,112 @@ p, li { white-space: pre-wrap; } EditEntryDialog + Edit Entry Eintrag bearbeiten + Username: Benutzername: + Password Repet.: Passwort Wdhlg.: + Title: Titel: + URL: URL: + Password: Passwort: + Quality: Qualität: + Comment: Kommentar: + Expires: Läuft ab: + Group: Gruppe: + &Cancel &Abbrechen + Alt+C Alt+A + %1 %1 + Icon: Symbol: + % Bit % Bit + Ge&n. Ge&n. + ... ... + O&K O&K + Alt+K Alt+K + Never Nie + Attachment: Anhang: + %1 Bit @@ -1190,30 +1444,37 @@ p, li { white-space: pre-wrap; } EditGroupDialog + Group Properties Gruppen-Eigenschaften + Title: Titel: + Icon: Symbol: + &Cancel Abbre&chen + Alt+C Alt+C + O&K O&K + > @@ -1221,30 +1482,37 @@ p, li { white-space: pre-wrap; } ExpiredEntriesDialog + Expired Entries + Double click on an entry to jump to it. + Group + Title Titel + Username Benutzername + 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 Generator Passwortgenerator + Accep&t Annehmen + &Cancel Abbre&chen + Generate Generieren + New Password: Neues Passwort: + Quality: Qualität: + Options Optionen + &Upper Letters Großbuchstaben: + &Lower Letters Kleinbuchstaben: + &Numbers Zahlen + &Special Characters Sonderzeichen + Minus Minus + U&nderline Unterstrich + h&igher ANSI-Characters hö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 &Spaces Leerzeichen + 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 Signature Falsche Signatur + Unsupported File Version. Nicht unterstützte Dateiversion. + Unknown Encryption Algorithm. Unbekannter bzw. nicht unterstüzter Verschlüsselungsalgorithmus. + Decryption failed. The key is wrong or the file is damaged. Entschlüsselung fehlgeschlagen. Der Schlüssel ist falsch oder die Datei ist beschädigt. + Hash test failed. The key is wrong or the file is damaged. Hash-Test fehlgeschlagen. Der Schlüssel ist falsch oder die Datei ist beschädigt. + 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 + Title Titel + Username Benutzername + URL URL + Password Passwort + Comments Kommentar + Expires Läuft ab + Creation Erstellung + Last Change Letzte Änderung + Last Access Letzter Zugriff + Attachment Anhang + %1 items %1 Elemente - Are you sure you want delete this entry? - - - - Are you sure you want delete these %1 entries? - - - + Delete? + Group + Error Fehler + At least one group must exist before adding an entry. + OK OK + + + Are you sure you want to delete this entry? + + + + + Are you sure you want to delete these %1 entries? + + KeepassGroupView + Search Results Suchergebnisse + Groups Gruppen + Delete? + Are you sure you want to delete this group, all it's child groups and all their entries? @@ -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 + Error Fehler + The following error occured while opening the database: %1 Beim Öffnen der Datenbank ist folgender Fehler aufgetreten: %1 + OK OK + Save modified file? Geändete Datei speichern? + The current file was modified. Do you want to save the changes? Die aktuelle Datei wurde verändert. Möchten Sie die Änderungen speichern? + Yes - Ja + 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 Entry Eintrag duplizieren + Delete Entry Eintrag löschen + Clone Entries Einträge duplizieren + Delete Entries Einträge löschen + File could not be saved. %1 Datei konnte nicht gespeichert werden. %1 + Save Database As... Datenbank speichern unter... + Ready Bereit + [new] [neu] + Open Database... Datenbank öffnen... + Loading Database... Lade Datenbank... + Loading Failed Laden fehlgeschlagen + Could not create key file. The following error occured: %1 Datei 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 + KeePassX KeePassX + 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 + Error Fehler + File '%1' could not be found. Datei '%1' konnte nicht geöffnet werden. + OK OK @@ -2050,481 +2513,855 @@ die Änderungen speichern? MainWindow + KeePassX KeePassX + File Datei + Import from... Importieren aus... + View Ansicht + Columns - Spalten + Spalten + Extras Extras + Help Hilfe + New Database... - Neue Datenbank... + Neue Datenbank... + Open Database... Datenbank öffnen... + Close Database Datenbank schließen + Save Database Datenbank speichern + Save Database As... Datenbank speichern unter... + Database Settings... Datenbankeinstellungen... + Change Master Key... Hauptschlüssel ändern... + Exit Beenden + 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 Toolbar Werkzeugleiste 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... + Edit Bearbeiten + Show Statusbar - Statusleiste anzeigen + Statusleiste anzeigen + Export to... Exportieren nach... + KeePassX Handbook... KeePassX Handbuch... + Plain Text (*.txt) Klartext (*.txt) + Hide Verbergen + Perform AutoType - AutoType ausführen + AutoType ausführen + Type Here Type Here + Toolbar Icon Size - Symbolleistengröße - - - 16x16 - - - - 22x22 - - - - 28x28 - + Symbolleistengröße + &View Ansicht + &File &Datei + &Import from... &Importieren aus... + &Export to... &Exportieren nach... + &Edit &Bearbeiten + E&xtras E&xtras + &Help &Hilfe + &New Database... - &Neue Datenbank... + &Neue Datenbank... + &Open Database... Datenbank &öffnen... + &Close Database Datenbank s&chließen + &Save Database Datenbank &speichern + Save Database &As... D&atenbank speichern unter... + &Database Settings... &Datenbankeinstellungen... + Change &Master Key... Hauptschlüssel &ändern... + E&xit Beend&en + &Settings... Ein&stellungen... + &About... &Über... + &KeePassX Handbook... &KeePassX Handbuch... + Standard KeePass Single User Database (*.kdb) + Advanced KeePassX Database (*.kxdb) - Password Generator... - - - - Group (search results only) - - - - Show Expired Entries... - - - + Recycle Bin... + Groups Gruppen - 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 + OK OK + ... - ... + ... + Cancel Abbrechen + Enter a Password and/or choose a key file. Geben Sie ein Passwort ein oder wählen Sie eine Schlüsseldatei. + Key Schlü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 + Exit Beenden + Password Repet.: - Passwort Wdhlg.: + Passwort Wdhlg.: + Last File + + + Key File: + + + + + Generate Key File... + + + + + Please repeat your password: + + + + + Back + + + + + Passwords are not equal. + + PwDatabase + Unknown Error Unbekannter Fehler + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) Unerwartete Dateigrößen (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Wrong Signature Falsche Signatur + AES-Init Failed AES 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 + Warning Warnung + 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. + OK OK + 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. + Error Fehler + Warning: Warnung: + Invalid RGB color value. Ungültiger RGB-Farbwert. + Never Nie + + + Could not locate library file. + + SearchDialog + Search Suchen @@ -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&xpression regulärer Ausdruck + Alt+X + &Case Sensitive Groß- und Kleinschreibung beachten + Include: Einbeziehen: + &Titles Titel + &Usernames Benutzernamen + C&omments Kommentare + Alt+O + U&RLs URLs + Alt+R + Pass&words Passwörter + Search Suchen + Clo&se Schließen + Include Subgroups (recursive) Untergruppen einbeziehen (rekursiv) @@ -2726,18 +3613,22 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben. SelectIconDlg + Icon Selection Symbolauswahl + Add Custom Icon... Eigenes Symbol hinzufügen... + Pick Wählen + Cancel Abbrechen @@ -2745,309 +3636,400 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben. SettingsDialog + Alt+Ö + O&K O&K + Settings Einstellungen + &Cancel Abbrechen + Clear clipboard after: Zwischenablage löschen nach: + Seconds - Sekunden + Sekunden + Sh&ow passwords in plain text by default Passwort standardmäßig im Klartext anzeigen + Alt+O + Appea&rance Erscheinungsbild + Banner Color Bannerfarbe + Text Color: Textfarbe + Change... Ändern... + Color 2: Farbe 2: + C&hange... Ändern... + Alt+H + Color 1: Farbe 1: + Expand group tree when opening a database Gruppenbaum beim Öffnen aufklappen + &Other Sonstiges + Remember last opend file Zuletzt geöffnete Datei beim Starten öffnen + Browser Command: Browser Befehl: + Securi&ty Sicherheit + Alternating Row Colors Abwechselnde Zeilenfarben + Browse... Durchsuchen... + Remember last key type and location Art und Ort des Schlüssels der letzten Datenbank merken + Mounting Root: Datenträgerwurzelverzeichnis: + Remember last opened file Zuletzt geöffnete Datei merken + The integration plugins provide features like usage of the native file dialogs and message boxes of the particular desktop environments. + General + Show system tray icon + Minimize to tray when clicking the main window's close button + Save recent directories of file dialogs + 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&K O&K + ... ... + Enter your Password + Password: Passwort: + &Cancel Abbrechen @@ -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 Signature Falsche Signatur + Unsupported File Version. Nicht unterstützte Dateiversion. + Unknown Encryption Algorithm. Unbekannter bzw. nicht unterstüzter Verschlüsselungsalgorithmus. + Decryption failed. The key is wrong or the file is damaged. Entschlüsselung fehlgeschlagen. Der Schlüssel ist falsch oder die Datei ist beschädigt. + Hash test failed. The key is wrong or the file is damaged. Hash-Test fehlgeschlagen. Der Schlüssel ist falsch oder die Datei ist beschädigt. + 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 + Title Titel + Username Benutzername @@ -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 Database Datenbank schließen @@ -3150,30 +4151,37 @@ p, li { white-space: pre-wrap; } dbsettingdlg_base + Database Settings Datenbankeinstellungen + Encryption Verschlüsselung + Algorithm: Algorithmus: + ? ? + Encryption Rounds: Verschlüsselungsrunden: + O&K O&K + &Cancel Abbrechen 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 %1 KeePassX %1 + <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>Traducción actual: Español</b><br><br> + <b>Traducción actual: Español</b><br><br> + <b>Author:</b> %1<br> - <b>Autor:</b> %1<br> + <b>Autor:</b> %1<br> + $TRANSLATION_AUTHOR + $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. jarfil@jarfil.net + Team + Developer, Project Admin + Web Designer + Thanks To Agradecimientos + Patches for better MacOS X support + Main Application Icon + Various fixes and improvements + Error Error + File '%1' could not be found. Archivo '%1' no encontrado. + Make sure that the program is installed correctly. Asegúrese de que el programa está instalado correctamente. + OK + Could not open file '%1' No se pudo abrir fichero '%1' + The following error occured: %1 Ha ocurrido el siguiente error: %1 + 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 Acerca de + Thanks To Agradecimientos + License Licencia + Translation Traducció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. + Error Error + Syntax Error in Auto-Type sequence near character %1 Found '{' without closing '}' - Auto-Type string contains illegal characters + + Auto-Type string contains invalid characters AutoTypeDlg + KeePassX - Auto-Type + Click on an entry to auto-type it. + Group + Title Título + Username Usuario + Cancel Cancelar + Auto-Type @@ -224,64 +290,78 @@ Allowed is only one per entry. CAboutDialog + KeePassX %1 KeePassX %1 + Error Error + File '%1' could not be found. Archivo '%1' no encontrado. + Make sure that the program is installed correctly. Asegúrese de que el programa está instalado correctamente. + OK OK + Could not open file '%1' No se pudo abrir fichero '%1' + The following error occured: %1 Ha ocurrido el siguiente error: %1 + http://keepass.berlios.de/index.php http://keepass.berlios.de/index.php + <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation <b>Traducción actual: Español</b><br><br> + <b>Author:</b> %1<br> <b>Autor:</b> %1<br> + $TRANSALTION_AUTHOR Jaroslaw Filiochowski + $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. jarfil@jarfil.net + Information on how to translate KeePassX can be found under: http://keepass.berlios.de/translation-howto.html Puede encontrar información sobre cómo traducir KeePassX en esta dirección: http://keepass.berlios.de/translation-howto.html + Thanks To Agradecimientos @@ -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 Bit Twofish: 256 Bits + Warning Aviso + Please determine the number of encryption rounds. Defina el número de iteraciones de cifrado. + OK Aceptar + Error Error + '%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. + Settings Preferencias @@ -328,159 +417,201 @@ http://keepass.berlios.de/translation-howto.html CEditEntryDlg + Warning Aviso + Password and password repetition are not equal. Please check your input. Las contraseñas no coinciden. Compruebe que las ha introducido correctamente. + OK Aceptar + Save Attachment... Guardar Adjunto... + Overwrite? Sobreescribir? + A file with this name already exists. Do you want to replace it? Ya existe un archivo con este nombre. ¿Desea reemplazarlo? + Yes + No No + Error Error + 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, Cancel No, Cancelar + Edit Entry Editar 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 + Notice Notificación + You need to enter at least one character Debe introducir al menos un carácter + OK Aceptar + Error Error + Could not open '/dev/random' or '/dev/urandom'. No se pudo abrir '/dev/random' o '/dev/urandom'. + Password Generator Generador 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? + Yes + No No + 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 - + Cancelar CSearchDlg + Notice Aviso + Please enter a search string. Introduzca una cadena de búsqueda. + OK Aceptar + Search Buscar @@ -656,42 +777,52 @@ Please check your permissions. CSelectIconDlg + Delete + Add Icons... + Images (%1) + Error Error + 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 + Settings Preferencias + 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 + Title Título + Username Usuario + Password Contraseña + Url + Comment Comentario + Attachment Name + Creation Date + Last Access Date + Last Modification Date + Expiration Date + Time till Expiration + Dialog + Rich Text Editor + Bold + B + Italic + I + Underlined + U + Left-Aligned + L + Centered + C + Right-Aligned + R + Justified + Text Color + Font Size + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 14 + 16 + 18 + 20 + 22 + 24 + 26 + 28 + 36 + 42 + 78 + Templates + T + HTML + Cancel Cancelar @@ -951,6 +1141,7 @@ p, li { white-space: pre-wrap; } Database + Never Nunca @@ -958,61 +1149,80 @@ p, li { white-space: pre-wrap; } DatabaseSettingsDlg + Database Settings Preferencias de Base de Datos + Encryption Cifrado + Algorithm: Algoritmo: + Encryption Rounds: Iteraciones de Cifrado: + + + Calculate rounds for a 1-second delay on this computer + + DetailViewTemplate + Group + Title Título + Username Usuario + Password Contraseña + URL URL + Creation Creación + Last Access Último Acceso + Last Modification + Expiration + Comment Comentario @@ -1020,90 +1230,112 @@ p, li { white-space: pre-wrap; } EditEntryDialog + Edit Entry Editar Entrada + Username: Usuario: + Password Repet.: Contraseña (repetida): + Title: Título: + URL: URL: + Password: Contraseña: + Quality: Calidad: + Comment: Comentario: + Expires: Expira: + Group: Grupo: + &Cancel &Cancelar + Alt+C Alt+C + %1 %1 + Icon: Icono: + % Bit % Bits + Ge&n. Ge&n. + ... ... + O&K &Aceptar + Alt+K Alt+A + Never Nunca + Attachment: Adjunto: + %1 Bit @@ -1111,34 +1343,42 @@ p, li { white-space: pre-wrap; } EditGroupDialog + Group Properties Propiedades del Grupo + Title: Título: + Icon: Icono: + &Cancel &Cancelar + Alt+C Alt+C + O&K &Aceptar + Alt+K Alt+A + > @@ -1146,30 +1386,37 @@ p, li { white-space: pre-wrap; } ExpiredEntriesDialog + Expired Entries + Double click on an entry to jump to it. + Group + Title Título + Username Usuario + 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+U Alt+U + Alt+N Alt+N + Alt+M Alt+M + Alt+L Alt+L + Password Generator Generador de Contraseña + Accep&t &Aceptar + &Cancel &Cancelar + Generate Generar + New Password: Nueva Contraseña: + Quality: Calidad: + Options Opciones + &Upper Letters Mayúsc&ulas + &Lower Letters Minúscu&las + &Numbers &Números + &Special Characters Carácteres E&speciales + Minus Guión + U&nderline S&ubrayado + Alt+H Alt+M + Use &only following characters: Usar sól&o carácteres siguientes: + Alt+O Alt+O + Length: Longitud: + Use "/dev/rando&m" Usar "/dev/rando&m" + Use follo&wing character groups: Usar &grupos de carácteres siguientes: + Alt+W Alt+G + White &Spaces E&spacios + Alt+S Alt+S + Enable entropy collection + Collect only once per session @@ -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 Signature Firma Incorrecta + Unsupported File Version. + Unknown Encryption Algorithm. + Decryption failed. The key is wrong or the file is damaged. + Hash test failed. The key is wrong or the file is damaged. Comprobación hash fallida. La clave es incorecta o el fichero está dañado. + 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 + Title Título + Username Usuario + URL URL + Password Contraseña + Comments Comentarios + Expires Expira + Creation Creación + Last Change Último Cambio + Last Access Último Acceso + Attachment Adjunto + %1 items %1 elementos - Are you sure you want delete this entry? - - - - Are you sure you want delete these %1 entries? - - - + Delete? + Group + Error Error + 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 Results Resultados de Búsqueda + Groups Grupos + Delete? + Are you sure you want to delete this group, all it's child groups and all their entries? @@ -1680,289 +2042,368 @@ La clave es incorecta o el fichero está dañado. KeepassMainWindow + Ctrl+O + Ctrl+S + Ctrl+G + Ctrl+C Ctrl+C + Ctrl+B + Ctrl+U + Ctrl+Y + Ctrl+E + Ctrl+D + Ctrl+K Ctrl+A + Ctrl+F + Ctrl+W + Shift+Ctrl+S + Shift+Ctrl+F + Error Error + The following error occured while opening the database: %1 Ocurrió el siguiente error al intentar abrir la base de datos: %1 + OK Aceptar + Save modified file? ¿Guardar archivo modificado? + The current file was modified. Do you want to save the changes? El archivo actual ha sido modificado. ¿Desea guardar los cambios? + Yes - + + No - No + 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 Entry Duplicar Entrada + Delete Entry Eliminar Entrada + Clone Entries Duplicar Entradas + Delete Entries Eliminar Entradas + File could not be saved. %1 Archivo no ha podido ser guardado. %1 + Save Database As... Guardar Base de Datos Como... + Ready Listo + [new] [nuevo] + Open Database... Abrir Base de Datos... + Loading Database... Cargando Base de Datos... + Loading Failed Carga Fallida + Could not create key file. The following error occured: %1 No 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 + KeePassX KeePassX + 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 + Error Error + File '%1' could not be found. Archivo '%1' no encontrado. + OK @@ -1970,453 +2411,814 @@ to save the changes? MainWindow + KeePassX KeePassX + File Archivo + Import from... Importar desde... + View Ver + Columns - Columnas + Columnas + Extras Preferencias + Help Ayuda + New Database... - Nueva Base de Datos... + Nueva Base de Datos... + Open Database... Abrir Base de Datos... + Close Database Cerrar Base de Datos + Save Database Guardar Base de Datos + Save Database As... Guardar Base de Datos Como... + Database Settings... Preferencias de Base de Datos... + Change Master Key... Cambiar Clave Maestra... + Exit Salir + 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 Toolbar Mostrar 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... + Edit Editar + 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... + Groups Grupos - 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 + OK Aceptar + ... - ... + ... + Cancel Cancelar + Enter a Password and/or choose a key file. Introduzca una Contraseña y/o seleccione un archivo de clave. + Key Clave + Password: Contraseña: + Key file or directory: - Archivo o directorio de clave: + Archivo o directorio de clave: + &Browse... &Navegar... + Alt+B Alt+N + Use Password AND Key File - Usar Contraseña Y Archivo de Clave + Usar Contraseña Y Archivo de Clave + Exit Salir + 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 Error Error Desconocido + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) Tamaño de fichero inesperado (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Wrong Signature Firma Incorrecta + AES-Init Failed Falló 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 + Warning Advertencia + 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'. + OK Aceptar + 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. + Error Error + Never Nunca + + + Could not locate library file. + + SearchDialog + Search Buscar @@ -2516,94 +3344,117 @@ Asegúrese de tener acceso para escritura en '~/.keepass'. Search_Dlg + Alt+T Alt+T + Alt+U Alt+U + A&nhang &Adjunto + Alt+N Alt+A + Alt+W Alt+C + Alt+C Alt+M + Search... Buscar... + Search For: Buscar: + Regular E&xpression E&xpresión Regular + Alt+X Alt+X + &Case Sensitive Distinguir &Mayúsculas + Include: Incluir: + &Titles &Títulos + &Usernames &Usuarios + C&omments C&omentarios + Alt+O Alt+O + U&RLs U&RLs + Alt+R Alt+R + Pass&words &Contraseñas + Search Buscar + Clo&se C&errar + Alt+S Alt+E + Include Subgroups (recursive) Incluir Subgrupos (recursivo) @@ -2611,10 +3462,12 @@ Asegúrese de tener acceso para escritura en '~/.keepass'. SelectIconDlg + Icon Selection + Cancel Cancelar @@ -2622,309 +3475,400 @@ Asegúrese de tener acceso para escritura en '~/.keepass'. SettingsDialog + Alt+Ö + O&K &Aceptar + Alt+K Alt+A + Settings Preferencias + &Cancel &Cancelar + Clear clipboard after: Borrar portapapeles después de: + Seconds - Segundos + Segundos + Sh&ow passwords in plain text by default M&ostrar contraseñas en texto plano por defecto + Alt+O + Appea&rance Apa&riencia + Banner Color + Text Color: Color de Texto: + Change... Cambiar... + Color 2: Color 2: + C&hange... Ca&mbiar... + Alt+H Alt+M + Color 1: Color 1: + Expand group tree when opening a database Expandir árbol de grupo al abrir la base de datos + &Other &Otros + Remember last opend file Recordar último archivo abierto + Browser Command: Comando del Navegador: + Securi&ty Seguri&dad + Alternating Row Colors Alternar Colores de Columna + Browse... Navegar... + Remember last key type and location Recordar último tipo de clave y localización + 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+K Alt+A + Alt+C Alt+C + ... ... + Enter your Password Introduzca 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 Signature Firma 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 + Title Título + Username Usuario @@ -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 Database Cerrar Base de Datos @@ -3017,38 +3978,47 @@ p, li { white-space: pre-wrap; } dbsettingdlg_base + Database Settings Preferencias de Base de Datos + Encryption Cifrado + Algorithm: Algoritmo: + ? ? + Encryption Rounds: Iteraciones de Cifrado: + O&K &Aceptar + Ctrl+K Ctrl+A + &Cancel &Cancelar + Ctrl+C Ctrl+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 %1 KeePassX %1 + <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>La présente traduction française</b><br><br> + <b>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_EMAIL Here you can enter your email or homepage if you want. <b>Courriel:</b> <br> djellel@free.fr + Team Équipe + Tarek Saidi Tarek Saidi + Developer, Project Admin Développeur et Administrateur du Projet + tariq@users.berlios.de tariq@users.berlios.de + Eugen Gorschenin Eugen Gorschenin + Web Designer Concepteur du site Internet + geugen@users.berlios.de geugen@users.berlios.de + Thanks To Remerciement à + Matthias Miller Matthias Miller + Patches for better MacOS X support Pour les rustines ayant permis un meilleur support de MacOS X + www.outofhanwell.com <ADDRESS>www.outofhanwell.com<ADDRESS> + James Nicholls James Nicholls + Main Application Icon Pour le logo de KeepassX + Various fixes and improvements + Error Erreur + File '%1' could not be found. + Make sure that the program is installed correctly. S'assurer que l'application est correctement installée. + OK + Could not open file '%1' N'a pas pu ouvrir le fichier '%1' + The following error occured: %1 L'erreur suivante est survenue: %1 + http://keepassx.sf.net http://keepassx.sf.net + 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 To Remerciement à + License Licence + Translation Traduction + <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.de tarek.saidi@arcor.de + http://keepass.berlios.de/ http://keepass.berlios.de/ + Credits Crédits + http://keepassx.sourceforge.net http://keepassx.sourceforge.net + keepassx@gmail.com 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. @@ -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 '}' + Error Erreur + Syntax Error in Auto-Type sequence near character %1 Found '{' without closing '}' - Auto-Type string contains illegal characters + + Auto-Type string contains invalid characters AutoTypeDlg + KeePassX - Auto-Type + Click on an entry to auto-type it. + Group + Title Títre + Username Nom d'utilisateur + Cancel Annuler + Auto-Type @@ -284,142 +363,174 @@ Seulement une par entrée est autorisée. CAboutDialog + KeePassX %1 KeePassX %1 + Error Erreur + 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. + OK Ok + Could not open file '%1' N'a pas pu ouvrir le fichier '%1' + The following error occured: %1 L'erreur suivante est survenue: %1 + http://keepass.berlios.de/index.php http://keepass.berlios.de/index.php + <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation <b>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_EMAIL Here you can enter your email or homepage if you want. <b>Courriel:</b> <br> djellel@free.fr + Information on how to translate KeePassX can be found under: http://keepass.berlios.de/translation-howto.html Les 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 Miller Matthias Miller + http://www.outofhanwell.com/<br>Mac OS X Support <ADDRESS>http://www.outofhanwell.com </ADDRESS> + Eugen Gorschenin Eugen 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 Saidi Tarek Saidi + Developer, Project Admin Développeur et Administrateur du Projet + tariq@users.berlios.de tariq@users.berlios.de + Web Designer Concepteur du site Internet + geugen@users.berlios.de geugen@users.berlios.de + Thanks To Remerciement à + Patches for better MacOS X support Pour les rustines ayant permis un meilleur support de MacOS X + www.outofhanwell.com <ADDRESS>www.outofhanwell.com<ADDRESS> + 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 Nicholls James Nicholls + Main Application Icon Pour le logo de KeepassX + http://keepassx.sf.net http://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 Bit Twofish: 256 Bits + Warning Avertissement + Please determine the number of encryption rounds. Définiser le nombre de passes. + OK Accepter + Error Erreur + '%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. + Settings Préférences @@ -466,163 +586,206 @@ http://keepassx.sourceforge.net/ CEditEntryDlg + Warning Avertissement + Password and password repetition are not equal. Please check your input. Le mot de passe et sa confirmation ne sont pas identiques ! S'il vous plait, vérifier votre saisie. + OK Accepter + Save Attachment... Enregistrer la pièce jointe... + 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 ? + Yes Oui + No Non + Error Erreur + 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, Cancel Non, 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 + Notice Notification + You need to enter at least one character Vous devez au moins entrer un caractère + OK Accepter + Error Erreur + Could not open '/dev/random' or '/dev/urandom'. N'a pas pu ouvrir '/dev/random' ou '/dev/urandom'. + Password Generator Gé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 ? + Yes Oui + No Non + 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 - + Annuler CSearchDlg + Notice Notification + Please enter a search string. Saisissez une recherche. + OK Accepter + Search Recherche @@ -799,57 +958,70 @@ S'il vous plait, vérifier vos permissions. CSelectIconDlg + Delete Supprimer + Add Icons... Ajouter une icône... + Images (%1) Images (%1) + %1: File could not be loaded. %1: Le fichier n'a pu être chargé. + Error Erreur + 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): %1 Une 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 + Pick Sé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 + Settings Pré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 + Title Títre + Username Nom d'utilisateur + Password Mot de passe + Url + Comment Commentaire + Attachment Name + Creation Date + Last Access Date + Last Modification Date + Expiration Date + Time till Expiration + Dialog + Rich Text Editor + Bold + B + Italic + I + Underlined + U + Left-Aligned + L + Centered + C + Right-Aligned + R + Justified + Text Color + Font Size + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 14 + 16 + 18 + 20 + 22 + 24 + 26 + 28 + 36 + 42 + 78 + Templates + T + HTML + Cancel Annuler @@ -1109,6 +1340,7 @@ p, li { white-space: pre-wrap; } Database + Never Jamais @@ -1116,61 +1348,80 @@ p, li { white-space: pre-wrap; } DatabaseSettingsDlg + Database Settings Préférences de la Base de Données + Encryption Encryptage + Algorithm: Algorithme: + Encryption Rounds: Nombre de passes: + + + Calculate rounds for a 1-second delay on this computer + + DetailViewTemplate + Group + Title Títre + Username Nom d'utilisateur + Password Mot de passe + URL URL + Creation + Last Access Dernier accès + Last Modification + Expiration + Comment Commentaire @@ -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: + &Cancel A&nnuler + Alt+C Alt+N + %1 %1 + Icon: Icône: + % Bit % Bits + Ge&n. &Gen. + ... ... + O&K &Accepter + Alt+K Alt+A + Never Jamais + Attachment: Pièce jointe: + > > + %1 Bit %1 Bits @@ -1273,34 +1547,42 @@ p, li { white-space: pre-wrap; } EditGroupDialog + Group Properties Propriétés du groupe + Title: Títre: + Icon: Icône: + &Cancel A&nnuler + Alt+C Alt+N + O&K &Accepter + Alt+K Alt+A + > > @@ -1308,30 +1590,37 @@ p, li { white-space: pre-wrap; } ExpiredEntriesDialog + Expired Entries + Double click on an entry to jump to it. + Group + Title Títre + Username Nom 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+U Alt+U + Alt+N Alt+N + Alt+M Alt+M + Alt+L Alt+L + Password Generator Générateur de mots de passe + Accep&t Accep&ter + &Cancel &Annuler + Generate Générer + New Password: Nouveau mot de passe: + Quality: Qualité: + Options Options + &Upper Letters Lettres majusc&ules + &Lower Letters Lettres minuscu&les + &Numbers &Nombres + &Special Characters Caractères &Spéciaux + Minus Moins + U&nderline Soulig&né + h&igher ANSI-Characters Caractères ANS&I étendus + Alt+H Alt+H + Use &only following characters: Utiliser s&eulement les caractères suivant: + Alt+O Alt+E + Length: Longueur: + Use "/dev/rando&m" Utiliser "/dev/rando&m" + Use follo&wing character groups: Utiliser le &groupe de caractères suivant: + Alt+W Alt+G + White &Spaces E&space + Alt+S Alt+S + Enable entropy collection + Collect only once per session @@ -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 Signature Mauvaise signature + Unsupported File Version. Version de fichier non supportée. + Unknown Encryption Algorithm. Algorithme d'encryptage inconnu. + Decryption failed. The key is wrong or the file is damaged. Le décryptage a échoué. La clé est mauvaise ou le fichier est endommagé. + Hash test failed. The key is wrong or the file is damaged. Le test de hachage a échoué. La clé est mauvaise ou le fichier est endommagé. + Unexpected error: Offset is out of range. [G1] Erreur inattendue: Le décalage est hors limite.[G1] + Unexpected error: Offset is out of range. [G2] Erreur inattendue: Le décalage est hors limite.[G2] + Unexpected error: Offset is out of range. [E1] Erreur inattendue: Le décalage est hors limite.[E1] + Unexpected error: Offset is out of range. [E2] Erreur inattendue: Le décalage est hors limite.[E2] + Unexpected error: Offset is out of range. [E3] Erreur inattendue: Le décalage est hors limite.[E3] + Invalid group tree. + Key file is empty. + The database must contain at least one group. + Could not open file for writing. N'a pu ouvrir le fichier pour écriture. + 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 + Title Títre + Username Nom d'utilisateur + URL URL + Password Mot de passe + Comments Commentaires + Expires Expire le + Creation Créé le + Last Change Dernier changement + Last Access Dernier accès + Attachment Pièce jointe + %1 items %1 élements - Are you sure you want delete this entry? - - - - Are you sure you want delete these %1 entries? - - - + Delete? + Group + Error Erreur + 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 Results Résultats de la recherche + Groups Groupes + Delete? + Are you sure you want to delete this group, all it's child groups and all their entries? @@ -1867,301 +2277,378 @@ La clé est mauvaise ou le fichier est endommagé. KeepassMainWindow + Ctrl+N - Ctrl+N + Ctrl+N + Ctrl+O Ctrl+O + Ctrl+S Ctrl+S + Ctrl+G Ctrl+G + Ctrl+C Ctrl+C + Ctrl+B Ctrl+B + Ctrl+U Ctrl+U + Ctrl+Y Ctrl+Y + Ctrl+E Ctrl+E + Ctrl+D Ctrl+D + Ctrl+K Ctrl+A + Ctrl+F Ctrl+F + Ctrl+W Ctrl+W + Shift+Ctrl+S Shift+Ctrl+S + Shift+Ctrl+F Shift+Ctrl+F + Error Erreur + The following error occured while opening the database: %1 l'erreur suivante est survenue à l'ouverture de la base de données: %1 + OK Accepter + Save modified file? Enregistrer le fichier modifié ? + The current file was modified. Do you want to save the changes? Le courant fichier a été modifié. Désirez-vous enregistrer le changement ? + Yes - Oui + Oui + No - Non + Non + Cancel - Annuler + Annuler + KeePassX - %1 KeePassX - %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 Entry Dupliquer l'entrée + Delete Entry Supprimer l'entrée + Clone Entries Dupliquer les entrées + Delete Entries Supprimer les entrées + File could not be saved. %1 Le fichier n'a pu être enregistré. %1 + Save Database As... Enregistrer la BD sous... + Ready Prêt + [new] [nouveau] + Open Database... Ouvrir la BD... + Loading Database... Chargement de la BD... + Loading Failed Le chargement a échoué + Could not create key file. The following error occured: %1 N'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+V Ctrl+V + Show Toolbar - Afficher la barre outils + Afficher la barre outils + KeePassX KeePassX + 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 Erreur + File '%1' could not be found. + OK @@ -2169,503 +2656,881 @@ Désirez-vous enregistrer le changement ? MainWindow + KeePassX KeePassX + File Fichier + Import from... Importer d'un... + View Affichage + Columns - Colonnes + Colonnes + Extras Extras + Help Aide + New Database... - Nouvelle BD... + Nouvelle BD... + Open Database... Ouvrir une BD... + Close Database Fermer la BD + Save Database Enregistrer la BD + Save Database As... Enregistrer la BD sous... + Database Settings... Paramétrage de la BD... + Change Master Key... Changer la clé maitresse... + Exit Quitter + 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 Toolbar Afficher 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) + Hide Cacher + Perform AutoType - Exécuter l'auto-saisie + Exécuter l'auto-saisie + Type Here Saisir 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... + &Edit Ed&iter + E&xtras E&xtras + &Help Ai&de + &New Database... - &Nouvelle BD... + &Nouvelle BD... + &Open Database... &Ouvrir une BD... + &Close Database Fer&mer la BD + &Save Database &Enregistrer la BD + Save Database &As... Enre&gistrer la BD sous... + &Database Settings... Paramé&trage de la BD... + Change &Master Key... &Changer la clé maitresse... + E&xit &Quitter + &Settings... &Préférences... + &About... À pr&opos... + &KeePassX Handbook... Le manuel de &KeePassX... + Standard KeePass Single User Database (*.kdb) + Advanced KeePassX Database (*.kxdb) - Password Generator... - - - - Group (search results only) - - - - Show Expired Entries... - - - + Recycle Bin... + Groups Groupes - 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 + OK Accepter + ... - ... + ... + Cancel Annuler + Enter a Password and/or choose a key file. Entrer un mot de passe et/ou sélectionner un trousseau de clés. + Key Clé 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+B Alt+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 + Exit Quitter + Password Repet.: - Confirmation: + Confirmation: + Last File + + + Key File: + + + + + Generate Key File... + + + + + Please repeat your password: + + + + + Back + + + + + Passwords are not equal. + + PwDatabase + Unknown Error Erreur inconnue + Unexpected file size (DB_TOTAL_SIZE < DB_HEADER_SIZE) Taille de fichier inattendue (DB_TOTAL_SIZE < DB_HEADER_SIZE) + Wrong Signature Mauvaise signature + AES-Init Failed L'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 + Warning Avertissement + 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'. + OK Accepter + 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. + Error Erreur + Warning: Avertissement: + Invalid RGB color value. Valeur de la couleur RGB invalide. + Never Jamais + + + Could not locate library file. + + SearchDialog + Search @@ -2774,94 +3667,117 @@ Make sure you have write access to '~/.keepass'. Search_Dlg + Alt+T Alt+T + Alt+U Alt+U + A&nhang A&nnexe + Alt+N Alt+N + Alt+W Alt+P + Alt+C Alt+C + Search... Rechercher... + Search For: Recherche de: + Regular E&xpression E&xpression Régulière + Alt+X Alt+X + &Case Sensitive Respecter la &casse + Include: Inclure: + &Titles &Títres + &Usernames Nom d'&utilisateurs + C&omments C&ommentaires + Alt+O Alt+O + U&RLs U&RLs + Alt+R Alt+R + Pass&words Mot de &passe + Search Chercher + Clo&se &Quitter + Alt+S Alt+Q + Include Subgroups (recursive) Inclure les sous-groupes (récursive) @@ -2869,18 +3785,22 @@ Make sure you have write access to '~/.keepass'. SelectIconDlg + Icon Selection Choix d'icônes + Add Custom Icon... Ajouter une icône... + Pick Sélectionner + Cancel Annuler @@ -2888,317 +3808,410 @@ Make sure you have write access to '~/.keepass'. SettingsDialog + Alt+Ö Alt+R + O&K &Accepter + Alt+K Alt+A + Alt+C Alt+N + Settings Préférences + &Cancel A&nnuler + Clear clipboard after: Effacer le presse-papier après: + Seconds - Secondes + Secondes + Sh&ow passwords in plain text by default A&fficher le mot de passe en clair par défaut + Alt+O Alt+F + Appea&rance Appa&rence + Banner Color Couleur du bandeau + Text Color: Couleur du texte: + Change... Changer... + Color 2: Couleur 2: + C&hange... C&hanger... + Alt+H Alt+H + Color 1: Couleur 1: + Expand group tree when opening a database Développer l'arborescence du groupe à l'ouverture de la base de données + &Other Au&tre + Remember last opend file Se souvenir du dernier fichier ouvert + Browser Command: Commande du navigateur: + Securi&ty Séc&urité + Alternating Row Colors Couleurs alternées pour les rangées + Browse... Parcourir... + Remember last key type and location Se souvenir de la dernière saisie de clé et du dernier emplacement + Mounting Root: Point de montage: + Remember last opened file Se souvenir du dernier fichier ouvert + The integration plugins provide features like usage of the native file dialogs and message boxes of the particular desktop environments. + General + Show system tray icon + Minimize to tray when clicking the main window's close button + Save recent directories of file dialogs + 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+K Alt+A + Alt+C Alt+N + ... ... + Enter your Password Entrer votre mot de passe + Password: Mot de passe: + &Cancel A&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 Signature Mauvaise signature + Unsupported File Version. Version de fichier non supportée. + Unknown Encryption Algorithm. Algorithme d'encryptage inconnu. + Decryption failed. The key is wrong or the file is damaged. Le décryptage a échoué. La clé est mauvaise ou le fichier est endommagé. + Hash test failed. The key is wrong or the file is damaged. Le test de hachage a échoué. La clé est mauvaise ou le fichier est endommagé. + Unexpected error: Offset is out of range. [G1] Erreur inattendue: Le décalage est hors limite.[G1] + Unexpected error: Offset is out of range. [G2] Erreur inattendue: Le décalage est hors limite.[G2] + Unexpected error: Offset is out of range. [E1] Erreur inattendue: Le décalage est hors limite.[E1] + Unexpected error: Offset is out of range. [E2] Erreur inattendue: Le décalage est hors limite.[E2] + Unexpected error: Offset is out of range. [E3] Erreur inattendue: Le décalage est hors limite.[E3] + 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 + Title Títre + Username Nom 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 Database Fermer la BD @@ -3325,38 +4363,47 @@ p, li { white-space: pre-wrap; } dbsettingdlg_base + Database Settings Préférences de la Base de Données + Encryption Encryptage + Algorithm: Algorithme: + ? ? + Encryption Rounds: Nombre de passes: + O&K &Accepter + Ctrl+K Ctrl+A + &Cancel A&nnuler + Ctrl+C Ctrl+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_AUTHOR Nardog - + $TRANSLATION_AUTHOR_EMAIL Here 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 Designer Web デザイナ @@ -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. プログラムが正しくインストールされていることを確実にしてください。 - + OK OK @@ -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.net http://keepassx.sourceforge.net - + keepassx@gmail.com keepassx@gmail.com @@ -211,12 +227,12 @@ KeePassX は General Public License (GPL) version 2 以降の 条件の下で配布されています。 - + AppName AppName - + AppFunc AppFunc @@ -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-Type KeePassX - 自動入力 - + 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 Bit Twofish: 256 ビット - + Warning 警告 - + Please determine the number of encryption rounds. 暗号化の周囲数を決定してください。 - + OK OK - + 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. パスワードとパスワードの反復が同じではありません。 ご入力をチェックしてください。 - + OK OK - + Save Attachment... 添付の保存... - + Yes はい - + Error エラー - + Error while writing the file. ファイルの書き込み中のエラーです。 - + Delete Attachment? 添付を削除しますか? - + You are about to delete the attachment of this entry. Are you sure? このエントリの添付を削除しようとしています。 よろしいですか? - + No, Cancel いいえ、キャンセル - + 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 Week 1 週間 - + 2 Weeks 2 週間 - + 3 Weeks 3 週間 - + 1 Month 1 ヶ月間 - + 3 Months 3 ヶ月間 - + 6 Months 6 ヶ月間 - + 1 Year 1 年間 - + Calendar... カレンダー... - + Edit Entry エントリの編集 - + [Untitled Entry] [無題のエントリ] + + + New Entry + + CGenPwDialog - + Notice 通知 - + You need to enter at least one character 少なくとも 1 文字入力する必要があります - + OK OK - + Password Generator パスワード ジェネレータ @@ -541,7 +576,7 @@ Are you sure? 承認 - + %1 Bits %1 ビット @@ -551,160 +586,160 @@ Are you sure? 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 - キー ファイルの選択 + キー ファイルの選択 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 - キー ファイルは作成できませんでした。 + キー ファイルは作成できませんでした。 %1 Last 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 パスワード - + Url 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 6 - + 7 7 - + 8 8 - + 9 9 - + 10 10 - + 11 11 - + 12 12 - + 14 14 - + 16 16 - + 18 18 - + 20 20 - + 22 22 - + 24 24 - + 26 26 - + 28 28 - + 36 36 - + 42 42 - + 78 78 - + Templates テンプレート - + T - + HTML HTML @@ -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 パスワード - + URL URL - + 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 File KeePassX 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+U Alt+U - + Alt+N Alt+N - + Alt+M Alt+M - + Alt+L Alt+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+O Alt+O - + Length: 長さ: - + Use follo&wing character groups: 以下の文字グループを使用する(&W): - + Alt+W Alt+W - + White &Spaces 空白(&S) - + Alt+S Alt+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 バイト - + KiB KiB - + MiB MiB - + GiB GiB @@ -1858,95 +1898,105 @@ The key is wrong or the file is damaged. KeepassEntryView - + Title タイトル - + Username ユーザー名 - + URL URL - + Password パスワード - + Comments コメント - + Expires 満了 - + Creation 作成 - + Last Change 最終変更 - + Last Access 最終アクセス - + Attachment 添付 Are you sure you want delete this entry? - このエントリを削除してもよろしいですか? + このエントリを削除してもよろしいですか? Are you sure you want delete these %1 entries? - これら %1 個のエントリを削除してもよろしいですか? + これら %1 個のエントリを削除してもよろしいですか? - + Delete? 削除しますか? - + Group グループ - + Error エラー - + At least one group must exist before adding an entry. 少なくとも 1 のグループはエントリの追加前に存在する必要があります。 - + OK OK + + + 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+O Ctrl+O - + Ctrl+S Ctrl+S - + Ctrl+G Ctrl+G - + Ctrl+C Ctrl+C - + Ctrl+B Ctrl+B - + Ctrl+U Ctrl+U - + Ctrl+Y Ctrl+Y - + Ctrl+E Ctrl+E - + Ctrl+D Ctrl+D - + Ctrl+K Ctrl+K - + Ctrl+F Ctrl+F - + Ctrl+W Ctrl+W - + Shift+Ctrl+S Shift+Ctrl+S - + Shift+Ctrl+F Shift+Ctrl+F - + Error エラー @@ -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+V Ctrl+V Show 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 Month 1 ヶ月間 - + %1 Months %1 ヶ月間 @@ -2205,34 +2255,34 @@ to save the changes? - + 1 Year 1 年間 - + %1 Years %1 年間 - + 1 Day 1 日間 - + %1 Days %1 日間 - + less than 1 day 1 日未満 Set Master Key - マスター キーの設定 + マスター キーの設定 @@ -2240,75 +2290,95 @@ to save the changes? * - KeePassX - + Locked ロック済み - + Unlocked 未ロック - + Ctrl+L Ctrl+L - + Ctrl+Q Ctrl+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' は見つかりませんでした。 - + OK OK @@ -2316,69 +2386,69 @@ to save the changes? MainWindow - + KeePassX KeePassX Columns - + 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 + URL Password - パスワード + パスワード Comment - コメント + コメント Expires - 満了 + 満了 Creation - 作成 + 作成 Last Change - 最終変更 + 最終変更 Last Access - 最終アクセス + 最終アクセス Attachment - 添付 + 添付 Show Statusbar - ステータス バーの表示 + ステータス バーの表示 - + Hide 非表示 Perform AutoType - 自動入力を行う + 自動入力を行う Toolbar Icon Size - ツール バー アイコンのサイズ + ツール バー アイコンのサイズ 16x16 - 16x16 + 16x16 22x22 - 22x22 + 22x22 28x28 - 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+B Alt+B Use 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+T Alt+T - + Alt+U Alt+U - + A&nhang アンハング(&N) - + Alt+N Alt+N - + Alt+W Alt+W - + Alt+C Alt+C - + Search... 検索... - + Search For: 検索する文字列: - + Regular E&xpression 正規表現(&X) - + Alt+X Alt+X - + &Case Sensitive 大文字と小文字を区別する(&C) - + Include: 範囲: - + &Titles タイトル(&T) - + &Usernames ユーザー名(&U) - + C&omments コメント(&O) - + Alt+O Alt+O - + U&RLs URL(&R) - + Alt+R Alt+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+O Alt+O - + Appea&rance 外観(&R) - + Banner Color バナーの色 - + Text Color: テキストの色: - + Change... 変更... - + Color 2: 色 2: - + C&hange... 変更(&H)... - + Alt+H Alt+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 Integration KDE 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. ユーザーによる自動入力のアクティブ化と最初のシミュレート済みキー ストロークの間の時間です。 - + ms ms - + 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 - + Ctrl Ctrl - + Shift Shift - + Alt Alt - + AltGr AltGr - + Win Win @@ -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 %1 KeePassX %1 + <b>Current Translation: None</b><br><br> Please replace 'None' with the language of your translation - <b>Current Translation: Russian</b><br><br> + <b>Current Translation: Russian</b><br><br> + <b>Author:</b> %1<br> - <b>Автор:</b> %1<br> + <b>Автор:</b> %1<br> + $TRANSLATION_AUTHOR Дмитрий Функ + $TRANSLATION_AUTHOR_EMAIL Here you can enter your email or homepage if you want. dmitry.funk@gmail.com + Team Комманда разработчиков + Developer, Project Admin Разработчик, руководитель проекта + Web Designer Web дизайнер + geugen@users.berlios.de geugen@users.berlios.de + Thanks To Благодарность + Patches for better MacOS X support Исправления для улучшения поддержки MacOS X + www.outofhanwell.com www.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. Убедитесь что программа установлена корректно. + OK OK + Could not open file '%1' Невозможно открыть файл '%1' + http://keepassx.sf.net http://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.net keepassx@gmail.com + keepassx@gmail.com 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. @@ -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 characters AutoTypeDlg + 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 %1 KeePassX %1 + Error Ошибка + File '%1' could not be found. Файл '%1' не найден. + Make sure that the program is installed correctly. Убедитесь что программа установлена корректно. + OK OK + 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_EMAIL Here you can enter your email or homepage if you want. dmitry.funk@gmail.com + $TRANSLATION_AUTHOR Дмитрий Функ + Team Комманда разработчиков + Developer, Project Admin Разработчик, руководитель проекта + Web Designer Web дизайнер + geugen@users.berlios.de geugen@users.berlios.de + Thanks To Благодарность + Patches for better MacOS X support Исправления для улучшения поддержки MacOS X + www.outofhanwell.com www.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.net http://keepassx.sf.net @@ -318,38 +406,47 @@ http://keepassx.sourceforge.net/ CDbSettingsDlg + AES(Rijndael): 256 Bit (default) AES(Rijndael): 256 бит (по умолчанию) + Twofish: 256 Bit Twofish: 256 бит + Warning Внимание + Please determine the number of encryption rounds. + OK OK + 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. Пароль и повтор пароля не эквивалентны. Проверьте введённые данные. + OK OK + 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 Необходимо ввести более одного символа + OK OK + 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. Введите строку для поиска. + OK OK + 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+C Alt+C + %1 %1 + Icon: Значок: + Ge&n. &Генерация. + ... ... + O&K O&K + Alt+K Alt+K + Never Никогда + Attachment: Вложение: + > > + %1 Bit %1 бит @@ -1143,34 +1357,42 @@ p, li { white-space: pre-wrap; } EditGroupDialog + Group Properties Параметры группы + Title: Название: + Icon: Значок: + &Cancel &Отмена + Alt+C Alt+C + O&K O&K + Alt+K Alt+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+U Alt+U + Alt+N Alt+N + Alt+M Alt+M + Alt+L Alt+L + Password Generator Генератор паролей + Accep&t &Принять + &Cancel &Отмена + Generate Генерировать + New Password: Новый пароль: + Quality: Качество: + Options Опции + &Upper Letters &Прописные буквы + &Lower Letters &Строчные буквы + &Numbers &Цифры + &Special Characters &Специальные символы + Minus Знак минуса + U&nderline По&дчёркивание + h&igher ANSI-Characters ANSI-символы &второй половины таблицы + Alt+H Alt+H + Use &only following characters: &Только следующие символы: + Alt+O Alt+O + Length: Длинна: + Use "/dev/rando&m" Использовать "/dev/rando&m" + Use follo&wing character groups: Только следующие &группы символов: + Alt+W Alt+W + White &Spaces &Пробелы + Alt+S Alt+S + Enable entropy collection + Collect only once per session @@ -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. + OK OK + + + 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+O Ctrl+O + Ctrl+S Ctrl+S + Ctrl+G Ctrl+G + Ctrl+C Ctrl+C + Ctrl+B Ctrl+B + Ctrl+U Ctrl+U + Ctrl+Y Ctrl+Y + Ctrl+E Ctrl+E + Ctrl+D Ctrl+D + Ctrl+K Ctrl+K + Ctrl+F Ctrl+F + Ctrl+W Ctrl+W + Shift+Ctrl+S Shift+Ctrl+S + Shift+Ctrl+F Shift+Ctrl+F + Error Ошибка + OK OK + Save modified file? Сохранить изменения файла? + The current file was modified. Do you want to save the changes? Текущий файл был изменён. Хотите сохранить изменения? + Yes - Да + Да + No - Нет + Нет + Cancel - Отмена + Отмена + KeePassX - %1 KeePassX - %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+V Ctrl+V + Show Toolbar - Отобразить панель инструментов + Отобразить панель инструментов + KeePassX KeePassX + 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' не найден. + OK OK @@ -2002,403 +2421,767 @@ to save the changes? MainWindow + KeePassX KeePassX + 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 ТекстЛабел + OK OK + ... - ... + ... + Cancel Отмена + Enter a Password and/or choose a key file. Введите пароль и/или выберите файл-ключ. + Key Ключ + Password: Пароль: + Key file or directory: - Папка с файл-ключом: + Папка с файл-ключом: + &Browse... &Обзор... + Alt+B Alt+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 Внимание + OK OK + 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+T Alt+T + Alt+U Alt+U + A&nhang + Alt+N Alt+N + Alt+W Alt+W + Alt+C Alt+C + Search... Поиск... + Search For: Поиск: + Regular E&xpression Регулярное &выражение + Alt+X Alt+X + &Case Sensitive &С учётом регистра + Include: Включая: + &Titles &Название + &Usernames &Имя + C&omments Ко&мментарий + Alt+O Alt+O + U&RLs &Ссылки + Alt+R Alt+R + Pass&words &Пароли + Search Поиск + Clo&se &Закрыть + Alt+S Alt+S + Include Subgroups (recursive) Включая подгруппы (рекурсивно) @@ -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&K O&K + Alt+K Alt+K + Alt+C Alt+C + Settings Настройки + &Cancel &Отмена + Clear clipboard after: Буфер будет очищен через: + Seconds - секунд + секунд + Sh&ow passwords in plain text by default &Отображать пароли в текстовом виде по умолчанию + Alt+O Alt+O + Appea&rance &Внешний вид + Banner Color Цвет банера + Text Color: Цвет текста: + Change... Изменить... + Color 2: Цвет 2: + C&hange... &Изменить + Alt+H Alt+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&K O&K + Alt+K Alt+K + Alt+C Alt+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&K O&K + Ctrl+K Ctrl+K + &Cancel &Отмена + Ctrl+C Ctrl+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_EMAIL Here 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 characters AutoTypeDlg + 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 Bits CPasswordDialog - - 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-Type ShortcutWidget + 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