From 104832fc9643baf7e8e021d79906d4318e7592a6 Mon Sep 17 00:00:00 2001 From: sniperbeamer Date: Thu, 19 Mar 2009 20:54:20 +0000 Subject: [PATCH] Prepare for release lupdate translations Always try to clean Klipper history git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@293 b624d157-de02-0410-bad0-e51aec6abb33 --- CMakeLists.txt | 2 +- changelog | 2 +- src/keepassx.h | 2 +- src/lib/AutoTypeGlobalX11.cpp | 6 +- src/lib/EntryView.cpp | 14 +- src/src.pro | 7 +- src/translations/keepassx-cs_CZ.ts | 197 +++++++++--------- src/translations/keepassx-de_DE.ts | 191 +++++++++--------- src/translations/keepassx-es_ES.ts | 197 +++++++++--------- src/translations/keepassx-fi_FI.ts | 191 +++++++++--------- src/translations/keepassx-fr_FR.ts | 191 +++++++++--------- src/translations/keepassx-gl_ES.ts | 197 +++++++++--------- src/translations/keepassx-it_IT.ts | 197 +++++++++--------- src/translations/keepassx-ja_JP.ts | 197 +++++++++--------- src/translations/keepassx-ru_RU.ts | 311 ++++++++++++++--------------- src/translations/keepassx-tr_TR.ts | 191 +++++++++--------- src/translations/keepassx-xx_XX.ts | 197 +++++++++--------- 17 files changed, 1134 insertions(+), 1156 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1201fec..6d98fe0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.6.0 FATAL_ERROR) MESSAGE("CMake is still experimental, use qmake instead") SET( keepassx_VERSION_SHORT "0.4.0" ) -SET( keepassx_VERSION "0.4.0beta1" ) +SET( keepassx_VERSION "0.4.0" ) ADD_DEFINITIONS(-D'KEEPASSX_VERSION="${keepassx_VERSION}"') diff --git a/changelog b/changelog index 8f43990..fb75d2f 100644 --- a/changelog +++ b/changelog @@ -1,5 +1,5 @@ ---------------------------- - 0.4.0 (2009-03-??) + 0.4.0 (2009-03-19) ---------------------------- - Added pronounceable password generator - Added action "Copy URL to Clipboard" diff --git a/src/keepassx.h b/src/keepassx.h index 9cad55c..1bbfde5 100644 --- a/src/keepassx.h +++ b/src/keepassx.h @@ -26,7 +26,7 @@ #define APP_CODE_NAME "keepassx" #define APP_SHORT_FUNC "Password Manager" #define APP_LONG_FUNC "Cross Platform Password Manager" -#define APP_VERSION "0.4.0beta1" +#define APP_VERSION "0.4.0" #define BUILTIN_ICONS 69 diff --git a/src/lib/AutoTypeGlobalX11.cpp b/src/lib/AutoTypeGlobalX11.cpp index e0a4e20..835e3e6 100644 --- a/src/lib/AutoTypeGlobalX11.cpp +++ b/src/lib/AutoTypeGlobalX11.cpp @@ -34,7 +34,7 @@ void initAutoType(KeepassMainWindow* mainWin) { AutoTypeGlobalX11::AutoTypeGlobalX11(KeepassMainWindow* mainWin) : AutoTypeX11(mainWin) { wm_state = XInternAtom(dpy, "WM_STATE", true); windowRoot = XRootWindow(dpy, mainWin->x11Info().screen()); - focusedWindow = NULL; + focusedWindow = 0; //windowBlacklist << "kicker" << "KDE Desktop"; classBlacklist << "desktop_window" << "gnome-panel"; // Gnome classBlacklist << "kdesktop" << "kicker"; // KDE 3 @@ -44,7 +44,7 @@ AutoTypeGlobalX11::AutoTypeGlobalX11(KeepassMainWindow* mainWin) : AutoTypeX11(m void AutoTypeGlobalX11::perform(IEntryHandle* entry, bool hideWindow, int nr, bool wasLocked){ if (focusedWindow && (!hideWindow || wasLocked)) { // detect if global auto-type XSetInputFocus(dpy, focusedWindow, RevertToPointerRoot, CurrentTime); - focusedWindow = NULL; + focusedWindow = 0; } AutoTypeX11::perform(entry, hideWindow, nr, wasLocked); } @@ -205,7 +205,7 @@ void AutoTypeGlobalX11::performGlobal(){ } if (validEntries.size()==1){ - focusedWindow = NULL; + focusedWindow = 0; perform(validEntries[0],wasLocked,entryNumbers[0],wasLocked); } else if (validEntries.size()>1){ diff --git a/src/lib/EntryView.cpp b/src/lib/EntryView.cpp index db499ff..ce34208 100644 --- a/src/lib/EntryView.cpp +++ b/src/lib/EntryView.cpp @@ -354,18 +354,8 @@ void KeepassEntryView::OnClipboardTimeOut(){ Clipboard->clear(QClipboard::Selection); } #ifdef Q_WS_X11 - static bool clearKlipper3 = true; - static bool clearKlipper4 = true; - - if (clearKlipper3){ - if (QProcess::execute("dcop klipper klipper clearClipboardHistory")!=0) - clearKlipper3 = false; - } - - if (clearKlipper4){ - if (QProcess::execute("dbus-send --type=method_call --print-reply --dest=org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory")!=0) - clearKlipper4 = false; - } + QProcess::execute("dcop klipper klipper clearClipboardHistory"); + QProcess::execute("dbus-send --type=method_call --dest=org.kde.klipper /klipper org.kde.klipper.klipper.clearClipboardHistory"); #endif } diff --git a/src/src.pro b/src/src.pro index deab9bf..01b2ed0 100644 --- a/src/src.pro +++ b/src/src.pro @@ -144,21 +144,22 @@ FORMS += forms/AboutDlg.ui \ forms/WorkspaceLockedWidget.ui TRANSLATIONS_KX = translations/keepassx-de_DE.ts \ -# translations/keepassx-cs_CZ.ts \ translations/keepassx-es_ES.ts \ translations/keepassx-fi_FI.ts \ translations/keepassx-fr_FR.ts \ translations/keepassx-gl_ES.ts \ translations/keepassx-it_IT.ts \ -# translations/keepassx-ja_JP.ts \ translations/keepassx-ru_RU.ts \ translations/keepassx-tr_TR.ts +TRANSLATIONS_DISABLED = translations/keepassx-cs_CZ.ts \ + translations/keepassx-ja_JP.ts + TRANSLATIONS_QT = translations/qt_fi.ts \ translations/qt_it.ts \ translations/qt_tr.ts -TRANSLATIONS = $$TRANSLATIONS_KX translations/keepassx-xx_XX.ts +TRANSLATIONS = $$TRANSLATIONS_KX $$TRANSLATIONS_DISABLED translations/keepassx-xx_XX.ts TRANSLATIONS_COMPILE = $$TRANSLATIONS_KX $$TRANSLATIONS_QT HEADERS += main.h \ diff --git a/src/translations/keepassx-cs_CZ.ts b/src/translations/keepassx-cs_CZ.ts index d682154..02f4035 100644 --- a/src/translations/keepassx-cs_CZ.ts +++ b/src/translations/keepassx-cs_CZ.ts @@ -322,7 +322,7 @@ Je dovolena pouze jedna na každý záznam. Zrušit - + Auto-Type @@ -956,20 +956,25 @@ Prosím zkontrolujte jeho parametry. CSettingsDlg - + Settings Nastavení - + Select a directory... Výběr adresáře... - + Select an executable... + + + System Language + + CalendarDialog @@ -1604,77 +1609,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. @@ -2092,12 +2097,12 @@ Klíč je chybný nebo je soubor poškozen. - + Key file is empty. - + The database must contain at least one group. @@ -2117,7 +2122,7 @@ Klíč je chybný nebo je soubor poškozen. - + The database has been opened read-only. @@ -2125,22 +2130,22 @@ Klíč je chybný nebo je soubor poškozen. Kdb3Database::EntryHandle - + Bytes - + KiB - + MiB - + GiB @@ -2148,52 +2153,52 @@ 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 @@ -2208,7 +2213,7 @@ Klíč je chybný nebo je soubor poškozen. - + Group @@ -2664,12 +2669,12 @@ Do you want to save the changes? Main - + Error Chyba - + File '%1' could not be found. Soubor '%1' nemohl být nalezen. @@ -3223,90 +3228,90 @@ Do you want to save the changes? 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... @@ -3800,7 +3805,7 @@ Ujistěte se, že je možný přístup do '~/.keepass'. &Zrušit - + Clear clipboard after: Smazat schránku po: @@ -3815,7 +3820,7 @@ Ujistěte se, že je možný přístup do '~/.keepass'. Zobrazovat &hesla vždy jako obyčejný text - + Alt+O Alt+O @@ -3885,7 +3890,7 @@ Ujistěte se, že je možný přístup do '~/.keepass'. Střídavě barevné podklady řádků - + Browse... Projít... @@ -3945,37 +3950,37 @@ Ujistěte se, že je možný přístup do '~/.keepass'. - + Edit Entry Dialog - + 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... @@ -4000,62 +4005,62 @@ Ujistěte se, že je možný přístup do '~/.keepass'. - + 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) @@ -4075,22 +4080,22 @@ Ujistěte se, že je možný přístup do '~/.keepass'. - + Lock workspace when minimizing the main window - + Global Auto-Type Shortcut: - + Custom Browser Command - + Browse @@ -4100,27 +4105,27 @@ Ujistěte se, že je možný přístup do '~/.keepass'. - + 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 @@ -4165,22 +4170,12 @@ Ujistěte se, že je možný přístup do '~/.keepass'. - - System Language - - - - - English - - - - + Language: - + Author: @@ -4335,7 +4330,7 @@ from the drop-down list, or enter the window title manually: Translation - + $TRANSLATION_AUTHOR Marek Straka @@ -4346,7 +4341,7 @@ from the drop-down list, or enter the window title manually: marek@straka.info (<a href="http://marek.straka.info">marek.straka.info</a>) - + $LANGUAGE_NAME Insert your language name in the format: English (United States) diff --git a/src/translations/keepassx-de_DE.ts b/src/translations/keepassx-de_DE.ts index 965aafd..c421033 100644 --- a/src/translations/keepassx-de_DE.ts +++ b/src/translations/keepassx-de_DE.ts @@ -335,7 +335,7 @@ Erlaubt ist nur eine pro Eintrag. Abbrechen - + Auto-Type Auto-Type @@ -947,20 +947,25 @@ Bitter prüfen Sie Ihre Zugriffsrechte. CSettingsDlg - + Settings Einstellungen - + Select a directory... Verzeichnis wählen... - + Select an executable... ausführbare Datei auswählen... + + + System Language + Systemsprache + CalendarDialog @@ -1596,77 +1601,77 @@ p, li { white-space: pre-wrap; } FileErrors - + No error occurred. Kein Fehler aufgetreten. - + An error occurred while reading from the file. Es ist ein Fehler beim lesen der Datei aufgetreten. - + An error occurred while writing to the file. Es ist ein Fehler beim schreiben der Datei aufgetreten. - + A fatal error occurred. Ein fataler Fehler hat sich ereignet. - + An resource error occurred. Ein Resourcenfehler hat siche ereignet. - + The file could not be opened. Die Datei konnte nicht geöffnet werden. - + The operation was aborted. Die Operation wurde abgebrochen. - + A timeout occurred. Ein Zeitlauffehler hat sich ereignet. - + An unspecified error occurred. Ein unspezifizierter Fehler hat sich ereignet. - + The file could not be removed. Die Datei konnte nicht gelöscht werden. - + The file could not be renamed. Die Datei konnte nicht umbenannt werden. - + The position in the file could not be changed. Die Position in der Datei konnte nicht geändert werden. - + The file could not be resized. Die Größe der Datei konnte nicht geändert werden. - + The file could not be accessed. Auf die Datei konnte nicht zugegriffen werden. - + The file could not be copied. Die Datei konnte nicht kopiert werden. @@ -2055,12 +2060,12 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt. Gruppenbaum ungültig. - + Key file is empty. Schlüsseldatei ist leer. - + The database must contain at least one group. Die Datenbank muss mindestens eine Gruppe enthalten. @@ -2080,7 +2085,7 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt. Der Twofish-Algorithmus ist nicht initialisierbar. - + The database has been opened read-only. @@ -2088,22 +2093,22 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt. Kdb3Database::EntryHandle - + Bytes Bytes - + KiB KiB - + MiB MiB - + GiB GiB @@ -2111,52 +2116,52 @@ 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 @@ -2171,7 +2176,7 @@ Der Schlüssel ist falsch oder die Datei ist beschädigt. löschen? - + Group Gruppe @@ -2634,12 +2639,12 @@ Do you want to save the changes? Main - + Error Fehler - + File '%1' could not be found. Datei '%1' konnte nicht geöffnet werden. @@ -3283,94 +3288,94 @@ Do you want to save the changes? PasswordDialog - + Enter Master Key Hauptschlüssel eingeben - + Set Master Key Hauptschlüssel festlegen - + Change Master Key Hauptschlüssel ändern - + Database Key Datenbankschlüssel - + Last File letzte Datei - + Select a Key File Schlüsseldatei wählen - + All Files (*) alle Dateien (*) - + Key Files (*.key) Schlüsseldateien (*.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. Bitte stellen Sie eine Schlüsseldatei zur Verfügung. - + %1: No such file or directory. %1: Datei oder Verzeichnis nicht gefunden. - + The selected key file or directory is not readable. Die ausgewählte Schlüsseldatei oder das Verzeichnis konnte nicht gelesen werden. - + 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. Das angegebene Verzeichnis enthält meher als eine Schlüsseldatei. Bitte die Schlüsseldatei direkt auswählen. - + %1: File is not readable. %1: Datei ist nicht lesbar. - + Create Key File... erzeuge Schlüsseldatei... @@ -3823,7 +3828,7 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Abbrechen - + Clear clipboard after: Zwischenablage löschen nach: @@ -3838,7 +3843,7 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Passwort standardmäßig im Klartext anzeigen - + Alt+O Alt+O @@ -3913,7 +3918,7 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.abwechselnde Zeilenfarben - + Browse... durchsuchen... @@ -3978,7 +3983,7 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Sicherheit - + Edit Entry Dialog Eintragbearbeitungs Dialog @@ -3988,32 +3993,32 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Benutzeroberflächenintegration - + Plug-Ins Plugins - + None nichts - + Gnome Desktop Integration (Gtk 2.x) Gnome Oberflächenintegration (Gtk 2.x) - + KDE 4 Desktop Integration KDE 4 Oberflächenintegration - + You need to restart the program before the changes take effect. Sie müssen das Program neu starten bevor die Änderungen wirksam werden. - + Configure... konfigurieren... @@ -4043,62 +4048,62 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.Eigenschaften - + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. Sie können einige Einstellung von KeePassX nach Ihren Wünschen abschalten, um das Erscheinungsbild gering zu halten. - + Bookmarks Lesezeichen - + Auto-Type Fine Tuning Auto-Type Feineinstellungen - + Time between the activation of an auto-type action by the user and the first simulated key stroke. Zeit zwischen der Aktivierung einer auto-type Aktion durch den Benutzer bis zum ersten simulierten Tastenanschlag. - + ms ms - + Pre-Gap: Pause vor erstem Tastenanschlag: - + Key Stroke Delay: Tasteneingabeverzögerung: - + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. Verzögerung zwischen zwei simulierten Tasteneingaben. Erhöhen Sie dies, wenn Auto-Type unregelmäßig Zeichen auslässt. - + The directory where storage devices like CDs and memory sticks are normally mounted. Das Verzeichnis, indem normalerweise Speichermedien (Festplatten, CDs, DVDs, USB-Sticks) eingehängt werden. - + Media Root: Hauptmedienverzeichnis: - + 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. Aktivieren Sie dies, wenn Sie Ihre Lesezeichen und die zu letzt geöffnete Datei unabhänig von deren absoluten Pfaden verwenden wollen. Dies ist natürlich am sinnvollsten, wenn Sie KeePassX flexibel einsetzten und sich dadurch die Einhängepunkte im Dauteisystem ändern. - + Save relative paths (bookmarks and last file) speichere relative Pfade (Lesezeichen und letzte Datei) @@ -4118,22 +4123,22 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.starte gesperrt - + Lock workspace when minimizing the main window sperre Arbeisbereich, wenn das Hauptfenster minimiert wird - + Global Auto-Type Shortcut: globale Auto-Type Tastenzuordnung - + Custom Browser Command anwenderspezifischer Browserbefehl - + Browse durchsuchen... @@ -4143,27 +4148,27 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben.automaitsches speichern der Datenbank beim Beenden und beim Sperren des Arbeitsbereiches - + Show plain text passwords in: zeige Klartextpasswörter in: - + Database Key Dialog Datenbank Schlüssel Dialog - + seconds Sekunden - + Lock database after inactivity of sperre Datenbank bei Inaktivität nach: - + Use entries' title to match the window for Global Auto-Type Vergleiche den Titel der Einträge mit Fenter für globale Auto-Type @@ -4210,20 +4215,20 @@ Stellen Sie sicher, dass Sie Schreibzugriff auf '~/.keepass' haben. System Language - Systemsprache + Systemsprache English - Englisch + Englisch - + Language: Sprache: - + Author: Author: @@ -4349,7 +4354,7 @@ aus der Auswähllistes auswählen, oder den Fenstertitel manuell eingeben: Translation - + $TRANSLATION_AUTHOR Tarek Saidi @@ -4360,7 +4365,7 @@ aus der Auswähllistes auswählen, oder den Fenstertitel manuell eingeben:tarek.saidi@arcor.de - + $LANGUAGE_NAME Insert your language name in the format: English (United States) Deutsch (Deutschland) diff --git a/src/translations/keepassx-es_ES.ts b/src/translations/keepassx-es_ES.ts index f28c97d..f82226e 100644 --- a/src/translations/keepassx-es_ES.ts +++ b/src/translations/keepassx-es_ES.ts @@ -299,7 +299,7 @@ Allowed is only one per entry. Cancelar - + Auto-Type Auto-escritura @@ -847,20 +847,25 @@ Do you want to replace it? CSettingsDlg - + Settings Preferencias - + Select a directory... Seleccione un directorio... - + Select an executable... Seleccionar un ejecutable... + + + System Language + + CalendarDialog @@ -1500,77 +1505,77 @@ p, li { white-space: pre-wrap; } FileErrors - + No error occurred. No se produjeron errores. - + An error occurred while reading from the file. Se produjo un error al leer el archivo. - + An error occurred while writing to the file. Se produjo un error al escribir en el archivo. - + A fatal error occurred. Se produjo un error fatal. - + An resource error occurred. Se produjo un error de recursos. - + The file could not be opened. No se puede abrir el archivo. - + The operation was aborted. Se abortó la operación. - + A timeout occurred. Venció un temporizador. - + An unspecified error occurred. Se produjo un error no especificado. - + The file could not be removed. No se puede eliminar el archivo. - + The file could not be renamed. No se puede renombrar el archivo. - + The position in the file could not be changed. No se puede cambiar la posición en el archivo. - + The file could not be resized. No se puede redimensionar el archivo. - + The file could not be accessed. No se puede acceder al archivo. - + The file could not be copied. No se puede copiar el archivo. @@ -1957,12 +1962,12 @@ La clave es incorecta o el fichero está dañado. Árbol de grupos no válido. - + Key file is empty. El archivo de claves está vacio. - + The database must contain at least one group. La base de datos tiene que contener al menos un grupo. @@ -1982,7 +1987,7 @@ La clave es incorecta o el fichero está dañado. Incapaz de iniciar el algoritmo twofish. - + The database has been opened read-only. @@ -1990,22 +1995,22 @@ La clave es incorecta o el fichero está dañado. Kdb3Database::EntryHandle - + Bytes Bytes - + KiB KiB - + MiB MiB - + GiB GiB @@ -2013,52 +2018,52 @@ 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 @@ -2073,7 +2078,7 @@ La clave es incorecta o el fichero está dañado. ¿Borrar? - + Group Grupo @@ -2529,12 +2534,12 @@ Do you want to save the changes? Main - + Error Error - + File '%1' could not be found. Archivo '%1' no encontrado. @@ -3158,90 +3163,90 @@ Do you want to save the changes? PasswordDialog - + Enter Master Key Introducir clave maestra - + Set Master Key Establecer clave maestra - + Change Master Key Cambiar clave maestra - + Database Key Contraseña de la Base de Datos - + Last File Último archivo - + Select a Key File Seleccione un archivo de contraseñas - + All Files (*) Todos los archivos (*) - + Key Files (*.key) Archivos de contraseñas (*.key) - + Please enter a Password or select a key file. Introduzca una contraseña o seleccione un archivo de contraseñas. - + Please enter a Password. Introduzca una Contraseña. - + Please provide a key file. Introduzca un archivo de contraseñas. - + %1: No such file or directory. %1:No existe el archivo o directorio. - + The selected key file or directory is not readable. No se puede leer el archivo o directorio de las contraseñas. - + The given directory does not contain any key files. El directorio especificado no contiene ningún archivo de contraseñas. - + The given directory contains more then one key files. Please specify the key file directly. El directorio especificado contiene más de un archivo de contraseñas.Por favor, especifique el archivo de contraseñas directamente. - + %1: File is not readable. %1:No se puede leer el archivo. - + Create Key File... Crear un archivo de contraseñas... @@ -3661,7 +3666,7 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.&Cancelar - + Clear clipboard after: Borrar portapapeles después de: @@ -3676,7 +3681,7 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.M&ostrar contraseñas en texto plano por defecto - + Alt+O @@ -3751,7 +3756,7 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.Alternar Colores de Columna - + Browse... Navegar... @@ -3816,7 +3821,7 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.Seguridad - + Edit Entry Dialog Editar cuadro de diálogo de entradas @@ -3826,32 +3831,32 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.Integración con el escritorio - + Plug-Ins Extensiones - + None Ninguno - + Gnome Desktop Integration (Gtk 2.x) Integración con Gnome (Gtk 2.x) - + KDE 4 Desktop Integration Integración con KDE 4 - + You need to restart the program before the changes take effect. Se necesita reiniciar el programa antes de que los cambios tengan efecto. - + Configure... Configurar... @@ -3881,62 +3886,62 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.Funcionalidades - + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. Aquí se pueden deshabilitar funcionalidades de KeePassX de acuerdo a tus prefencias para mantener la interfaz símple - + Bookmarks Marcadores - + Auto-Type Fine Tuning Ajuste fino de auto-escritura - + Time between the activation of an auto-type action by the user and the first simulated key stroke. Tiempo entre la activación por el usuario de una acción de auto-completar y la primera pulsación de tecla simulada. - + ms ms - + Pre-Gap: Hueco previo: - + Key Stroke Delay: Retraso en la pulsación de teclas: - + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. Retraso ente dos pulsaciones de tecla simuladas. Incrementar en caso de que auto-completar se salte caracteres aleatoriamente. - + The directory where storage devices like CDs and memory sticks are normally mounted. El directorio en el que se suelen monar los dispositivos como CDs y unidades de memoria. - + Media Root: Raíz de los medios: - + 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. Habilitar si se quiere usar los marcadores y el último archivo abierto de forma independiente de las rutas absolutas. Esto es especialmente útil cuando se usa KeePassX en varios equipos y por lo tanto cambian los puntos de montaje del sistema de archivos. - + Save relative paths (bookmarks and last file) Guardar rutas relativas (marcadores y último archivo) @@ -3956,22 +3961,22 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.Iniciar bloqueado - + Lock workspace when minimizing the main window Bloquear el área de trabajo cuando se minimice la ventana principal - + Global Auto-Type Shortcut: Combinación de teclas para la Auto-escritura global: - + Custom Browser Command Navegador web personalizado - + Browse Navegar @@ -3981,27 +3986,27 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.Guardar la base de datos automáticamente al salir y al bloquear el área de trabajo. - + Show plain text passwords in: Mostrar las contraseñas con texto sin formato en: - + Database Key Dialog Diálogo de claves de la base de datos - + seconds segundos - + Lock database after inactivity of Bloquear la base de datos tras una inactividad de - + Use entries' title to match the window for Global Auto-Type Usar el título de las entradas para buscar la ventana correspondiente para la auto-escritura global @@ -4046,22 +4051,12 @@ Asegúrese de tener acceso para escritura en '~/.keepass'.Automáticamente guardar base de datos después de cada cambrio - - System Language - - - - - English - - - - + Language: Idioma: - + Author: Autor: @@ -4174,7 +4169,7 @@ from the drop-down list, or enter the window title manually: Translation - + $TRANSLATION_AUTHOR Jaroslaw Filiochowski, Marcos del Puerto @@ -4185,7 +4180,7 @@ from the drop-down list, or enter the window title manually: - + $LANGUAGE_NAME Insert your language name in the format: English (United States) diff --git a/src/translations/keepassx-fi_FI.ts b/src/translations/keepassx-fi_FI.ts index 2d8193e..f85fee9 100644 --- a/src/translations/keepassx-fi_FI.ts +++ b/src/translations/keepassx-fi_FI.ts @@ -202,7 +202,7 @@ lisenssin version 2 mukaisesti. Käyttäjätunnus - + Auto-Type Automaattikirjoitus @@ -461,20 +461,25 @@ Haluatko varmasti poistaa sen? CSettingsDlg - + Settings Asetukset - + Select a directory... Valitse kansio... - + Select an executable... Valitse suoritettava ohjelma... + + + System Language + Järjestelmäkieli + CalendarDialog @@ -1050,77 +1055,77 @@ p, li { white-space: pre-wrap; } FileErrors - + No error occurred. Virhettä ei tapahtunut. - + An error occurred while reading from the file. Tapahtui virhe luettaessa tiedostosta. - + An error occurred while writing to the file. Tapahtui virhe kirjoitettaessa tiedostoon. - + A fatal error occurred. Tapahtui kriittinen virhe. - + An resource error occurred. Tapahtui resurssivirhe. - + The file could not be opened. Tiedostoa ei voitu avata. - + The operation was aborted. Toiminto keskeytettiin. - + A timeout occurred. Tapahtui aikakatkaisu. - + An unspecified error occurred. Tapahtui määrittelemätön virhe. - + The file could not be removed. Tiedostoa ei voitu poistaa. - + The file could not be renamed. Tiedostoa ei voitu nimetä uudestaan. - + The position in the file could not be changed. Sijaintia tiedoston sisällä ei voitu muuttaa. - + The file could not be resized. Tiedoston kokoa ei voitu muuttaa. - + The file could not be accessed. Tiedostoon ei päästy käsiksi. - + The file could not be copied. Tiedostoa ei voitu kopioida. @@ -1479,12 +1484,12 @@ Avain on väärä tai tiedosto on vioittunut. Virheellinen ryhmäpuu. - + Key file is empty. Avaintiedosto on tyhjä. - + The database must contain at least one group. Tietokannan täytyy sisältää ainakin yksi ryhmä. @@ -1499,7 +1504,7 @@ Avain on väärä tai tiedosto on vioittunut. Twofish-algoritmia ei voitu alustaa. - + The database has been opened read-only. @@ -1507,22 +1512,22 @@ Avain on väärä tai tiedosto on vioittunut. Kdb3Database::EntryHandle - + Bytes Tavua - + KiB KiB - + MiB MiB - + GiB GiB @@ -1550,57 +1555,57 @@ Avain on väärä tai tiedosto on vioittunut. OK - + Title Nimi - + Username Käyttäjätunnus - + URL URL - + Password Salasana - + Comments Kommentit - + Expires Vanhenee - + Creation Luontipäivä - + Last Change Viimeksi muutettu - + Last Access Viimeksi käytetty - + Attachment Liite - + Group Ryhmä @@ -1941,12 +1946,12 @@ Haluatko tallentaa muutokset? Main - + Error Virhe - + File '%1' could not be found. Tiedostoa "%1" ei löytynyt. @@ -2320,91 +2325,91 @@ Haluatko tallentaa muutokset? PasswordDialog - + Enter Master Key Syötä pääsalasana - + Set Master Key Aseta pääsalasana - + Change Master Key Vaihda pääsalasanaa - + Database Key Tietokannan avain - + Last File Viimeisin tiedosto - + Select a Key File Valitse avaintiedosto - + All Files (*) Kaikki tiedostot (*) - + Key Files (*.key) Avaintiedostot (*.key) - + Please enter a Password or select a key file. Syötä salasana tai valitse avaintiedosto. - + Please enter a Password. Syötä salasana. - + Please provide a key file. Syötä avaintiedosto. - + %1: No such file or directory. %1: Tiedostoa tai kansiota ei löydy. - + The selected key file or directory is not readable. Valittu avaintiedosto tai kansio ei ole luettavissa. - + The given directory does not contain any key files. Annetussa kansiossa ei ole avaintiedostoja. - + The given directory contains more then one key files. Please specify the key file directly. Annetussa kansiossa on useampi kuin yksi avaintiedosto. Valitse avaintiedosto suoraan. - + %1: File is not readable. %1: Tiedosto ei ole luettavissa. - + Create Key File... Luo avaintiedosto... @@ -2719,62 +2724,62 @@ File is not readable. Turvallisuus - + Edit Entry Dialog Tietueen muokkausikkuna - + Alt+O Alt+O - + Clear clipboard after: Tyhjennä leikepöytä viiveellä: - + Lock workspace when minimizing the main window Lukitse työtila pienennettäessä pääikkuna - + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. Voit poistaa monia ohjelman ominaisuuksia tarpeidesi mukaan ja pitääksesi käyttöliittymän selkeänä. - + Bookmarks Kirjanmerkit - + Plug-Ins Lisäosat - + None Ei mitään - + Gnome Desktop Integration (Gtk 2.x) Gnome-työpöydän integrointi (Gtk 2.x) - + KDE 4 Desktop Integration KDE4-työpöydän integrointi - + You need to restart the program before the changes take effect. Ohjelma täytyy käynnistää uudestaan, jotta muutokset tulevat voimaan. - + Configure... Määrittele... @@ -2784,72 +2789,72 @@ File is not readable. Lisäasetukset - + Auto-Type Fine Tuning Automaattikirjoituksen hienosäätö - + Time between the activation of an auto-type action by the user and the first simulated key stroke. Aika automaattisen täydennyksen aktivoinnin ja ensimmäisen simuloidun näppäilyn välillä. - + ms ms - + Pre-Gap: Esitauko: - + Key Stroke Delay: Näppäinpainallusten viive: - + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. Viive simuloitujen näppäinpainallusten välillä. Kasvata tätä, jos automaattikirjoitus hukkaa satunnaisesti merkkejä. - + Custom Browser Command Oma selainkomento - + Browse Selaa - + Media Root: Liitospisteiden juurikansio: - + The directory where storage devices like CDs and memory sticks are normally mounted. Kansio, jonne taltiot, kuten CD-levyt ja muistitikut normaalisti liitetään. - + Browse... Selaa... - + 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. Ota tämä käyttöön, os haluat käyttää kirjanmerkkejä ja viimeksi avattuja tiedostoja riippumatta niiden absoluuttisesta polusta. Tämä en erityisen hyödyllistä käytettäessä ohjelmaa eri tietokoneissa ja liitospisteen vaihtuessa eri paikkoihin. - + Save relative paths (bookmarks and last file) Tallenna suhteelliset polut (kirjanmerkit ja viimeisin tiedosto) - + Global Auto-Type Shortcut: Automaattikirjoituksen pikanäppäin: @@ -2859,27 +2864,27 @@ File is not readable. Tallenna tietokanta automaattisesti suljettaessa ja lukittaessa työtila - + Show plain text passwords in: Näytä selväkieliset salasanat: - + Database Key Dialog Tietokanta-avaimen ikkuna - + seconds sekuntia - + Lock database after inactivity of Lukitse tietokanta sen oltua jouten - + Use entries' title to match the window for Global Auto-Type Käytä tietueen otsikkoa automaattitäydennyksen kohdeikkunan täsmäämiseen @@ -2926,20 +2931,20 @@ File is not readable. System Language - Järjestelmäkieli + Järjestelmäkieli English - Englanti + Englanti - + Language: Kieli: - + Author: Tekijä: @@ -3002,7 +3007,7 @@ from the drop-down list, or enter the window title manually: Translation - + $TRANSLATION_AUTHOR Ilkka Tuohela, Jussi Sainio @@ -3013,7 +3018,7 @@ from the drop-down list, or enter the window title manually: hile@iki.fi, - - + $LANGUAGE_NAME Insert your language name in the format: English (United States) Finnish (Finland) diff --git a/src/translations/keepassx-fr_FR.ts b/src/translations/keepassx-fr_FR.ts index 1cae8c7..5e0551f 100644 --- a/src/translations/keepassx-fr_FR.ts +++ b/src/translations/keepassx-fr_FR.ts @@ -346,7 +346,7 @@ Seulement une autorisée par entrée. Annuler - + Auto-Type Saisie Automatique @@ -1020,20 +1020,25 @@ Vérifiez vérifier vos permissions. CSettingsDlg - + Settings Préférences - + Select a directory... Sélectionner un répertoire.... - + Select an executable... Sélectionner un exécutable.... + + + System Language + Langue du Système + CalendarDialog @@ -1673,77 +1678,77 @@ p, li { white-space: pre-wrap; } FileErrors - + No error occurred. Aucune erreur. - + An error occurred while reading from the file. Une erreur est survenue lors de la lecture du fichier. - + An error occurred while writing to the file. Une erreur est survenue lors de l'écriture du fichier. - + A fatal error occurred. Une erreur fatale est survenue. - + An resource error occurred. Une erreur de ressource est survenue. - + The file could not be opened. Le fichier n'a pu être ouvert. - + The operation was aborted. L'opération a été annulée. - + A timeout occurred. Délai dépassé. - + An unspecified error occurred. Une erreur non spécifiée est survenue. - + The file could not be removed. Le fichier n'a pu être enlevé. - + The file could not be renamed. Le fichier n'a pu être renommé. - + The position in the file could not be changed. La position dans le fichier n'a pu être changée. - + The file could not be resized. Le fichier ne peut être redimensionné. - + The file could not be accessed. Le fichier n'est pas accessible. - + The file could not be copied. Le fichier n'a pu être copié. @@ -2162,12 +2167,12 @@ La clé est mauvaise ou le fichier est endommagé. Arborescence de groupe invalide. - + Key file is empty. Le fichier clé est vide. - + The database must contain at least one group. La base de données doit contenir au moins un groupe. @@ -2187,7 +2192,7 @@ La clé est mauvaise ou le fichier est endommagé. Impossible d'initialiser l'algorithme twofish. - + The database has been opened read-only. @@ -2195,22 +2200,22 @@ La clé est mauvaise ou le fichier est endommagé. Kdb3Database::EntryHandle - + Bytes Octets - + KiB kio - + MiB Mio - + GiB Gio @@ -2218,52 +2223,52 @@ 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 @@ -2278,7 +2283,7 @@ La clé est mauvaise ou le fichier est endommagé. Effacer ? - + Group Groupe @@ -2739,12 +2744,12 @@ Do you want to save the changes? Main - + Error Erreur - + File '%1' could not be found. Le fichier '%1' n'a pu être trouvé. @@ -3383,91 +3388,91 @@ Do you want to save the changes? PasswordDialog - + Enter Master Key Entrer la clé maitre - + Set Master Key Définir la clé maitre - + Change Master Key Changer la clé maitre - + Database Key Clé de la base de données - + Last File Dernier Fichier - + Select a Key File Selectionner un fichier clé - + All Files (*) Tous les Fichiers (*) - + Key Files (*.key) Fichiers clé (*.key) - + Please enter a Password or select a key file. Entrer un mot de passe ou sélectionner un fichier clé. - + Please enter a Password. Entrer un mot de passe. - + Please provide a key file. Sélectionner un fichier clé. - + %1: No such file or directory. %1 : Fichier ou répertoire inexistant. - + The selected key file or directory is not readable. Le fichier clé choisi n'est pas lisible. - + The given directory does not contain any key files. Le répertoire désigné ne contient aucun fichier clé. - + The given directory contains more then one key files. Please specify the key file directly. Le répertoire désigné contient plus d'un fichier clé. Pourriez-vous sélectionner le fichier clé désiré. - + %1: File is not readable. %1 : Fichier illisible. - + Create Key File... Créer le fichier clé... @@ -3955,7 +3960,7 @@ Make sure you have write access to '~/.keepass'. A&nnuler - + Clear clipboard after: Effacer le presse-papier après: @@ -3970,7 +3975,7 @@ Make sure you have write access to '~/.keepass'. A&fficher le mot de passe en clair par défaut - + Alt+O Alt+F @@ -4045,7 +4050,7 @@ Make sure you have write access to '~/.keepass'. Couleurs alternées pour les rangées - + Browse... Parcourir... @@ -4105,37 +4110,37 @@ Make sure you have write access to '~/.keepass'. Sécurité - + Edit Entry Dialog Dialogue de modification d'entrée - + Plug-Ins Greffons - + None Aucun - + Gnome Desktop Integration (Gtk 2.x) Intégration à Gnome (Gtk 2.x) - + KDE 4 Desktop Integration Intégration à KDE4 - + You need to restart the program before the changes take effect. Vous devez redémarrer le programme pour que les changements prennent effet. - + Configure... Configurer... @@ -4160,62 +4165,62 @@ Make sure you have write access to '~/.keepass'. Personnaliser la vue de détail de l'entrée... - + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. Vous pouvez désactiver plusieurs fonctions de KeePassX ici selon vos besoins pour conserver l'interface utilisateur claire. - + Bookmarks Signets - + Auto-Type Fine Tuning Réglage fin de la saisie automatique - + Time between the activation of an auto-type action by the user and the first simulated key stroke. Temps entre l'activation d'une action de saisie automatique par l'utilisateur et le première frappe de touche simulée. - + ms ms - + Pre-Gap: Pre-Gap : - + Key Stroke Delay: Délai de frappe des touches : - + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. Délai entre deux frappes de touches simulées. Augmenter le si la Saisie Automatique saute aléatoirement des caractères. - + The directory where storage devices like CDs and memory sticks are normally mounted. Le répertoire où sont normalement montés les périphériques tels que les CD et les clés USB. - + Media Root: Racine des Media : - + 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. Activer ceci si vous voulez utiliser vos signets et le dernier fichier ouvert indépendamment de leurs chemins absolus. Particulièrement utile en cas d'utilisation portable de KeePassX et par conséquent avec des points de montage variables. - + Save relative paths (bookmarks and last file) Enregistrert les chemins relatifs (signets et dernier fichier) @@ -4235,22 +4240,22 @@ Make sure you have write access to '~/.keepass'. Démarre verrouillé - + Lock workspace when minimizing the main window Verrouille l'espace de travail lors de la minimisation de la fenêtre - + Global Auto-Type Shortcut: Raccourci global de Saisie Automatique : - + Custom Browser Command Commande personnalisée du navigateur - + Browse Parcourir @@ -4260,27 +4265,27 @@ Make sure you have write access to '~/.keepass'. Sauvegarde automatique de la base de données à la sortie et au verrouillage de l'espace de travail - + Show plain text passwords in: Afficher les mots de passe en clair dans : - + Database Key Dialog Dialogue de clé de base de données - + seconds secondes - + Lock database after inactivity of Verrouille la base de données après une inactivité de - + Use entries' title to match the window for Global Auto-Type Utiliser le titre de l'entrée pour correspondre à la fenêtre globale de Saisie Automatique @@ -4327,20 +4332,20 @@ Make sure you have write access to '~/.keepass'. System Language - Langue du Système + Langue du Système English - Anglais + Anglais - + Language: Langue : - + Author: Auteur : @@ -4496,7 +4501,7 @@ ouverte dans le menu déroulant ou entrez le nom de la fenêtre manuellement : Translation - + $TRANSLATION_AUTHOR fat115 @@ -4508,7 +4513,7 @@ ouverte dans le menu déroulant ou entrez le nom de la fenêtre manuellement : - + $LANGUAGE_NAME Insert your language name in the format: English (United States) Français (France) diff --git a/src/translations/keepassx-gl_ES.ts b/src/translations/keepassx-gl_ES.ts index 3faa25b..1e79f54 100644 --- a/src/translations/keepassx-gl_ES.ts +++ b/src/translations/keepassx-gl_ES.ts @@ -228,7 +228,7 @@ Permitida só unha por entrada. AutoTypeDlg - + Auto-Type Tipo automático @@ -527,20 +527,25 @@ Are you sure? CSettingsDlg - + Select a directory... Seleccione un cartafol... - + Select an executable... Seleccione un executabel... - + Settings Preferencias + + + System Language + + CalendarDialog @@ -1124,77 +1129,77 @@ p, li { white-space: pre-wrap; } FileErrors - + A fatal error occurred. Ocorreu un erro fatal. - + An error occurred while reading from the file. Ocorreu un erro mentres se lía o ficheiro. - + An error occurred while writing to the file. Ocorreu un erro mentres se escribía no ficheiro. - + An resource error occurred. Ocorreu un erro no recurso. - + An unspecified error occurred. Ocorreu un erro inesperado. - + A timeout occurred. Produciuse un excedido de tempo. - + No error occurred. Non se produciu erro. - + The file could not be accessed. Non foi posible acceder ao ficheiro. - + The file could not be copied. Non foi posibel copiar o ficheiro. - + The file could not be opened. Non foi posibel abrir o ficheiro. - + The file could not be removed. Non foi posibel eliminar o ficheiro. - + The file could not be renamed. Non foi posibel renomear o ficheiro. - + The file could not be resized. Non foi posibel mudar o tamaño ao ficheiro. - + The operation was aborted. Abortouse a operación. - + The position in the file could not be changed. Non foi posibel mudar a posición no ficheiro. @@ -1548,12 +1553,12 @@ A chave é incorrecta ou está danada. O grupo da árbore non é valido. - + Key file is empty. O ficheiro chave está baleiro. - + The database must contain at least one group. A base de datos ten que ter polo menos un grupo. @@ -1588,7 +1593,7 @@ A chave é incorrecta ou está danada. - + The database has been opened read-only. @@ -1596,22 +1601,22 @@ A chave é incorrecta ou está danada. Kdb3Database::EntryHandle - + Bytes Bytes - + GiB GB - + KiB KB - + MiB MB @@ -1634,17 +1639,17 @@ A chave é incorrecta ou está danada. Ten que haber polo menos un grupo antes de engadir unha entrada. - + Attachment Anexo - + Comments Comentarios - + Creation Creación @@ -1659,22 +1664,22 @@ A chave é incorrecta ou está danada. Erro - + Expires Expira - + Group Grupo - + Last Access Último acceso - + Last Change Última modificación @@ -1684,22 +1689,22 @@ A chave é incorrecta ou está danada. Aceptar - + Password Contrasinal - + Title Título - + URL URL - + Username Nome de usuario @@ -2034,12 +2039,12 @@ Do you want to save the changes? Main - + Error Erro - + File '%1' could not be found. Non foi posibel atopar o ficheiro '%1'. @@ -2418,93 +2423,93 @@ Do you want to save the changes? PasswordDialog - + %1: File is not readable. %1: O ficheiro non puido ser lido. - + %1: No such file or directory. %1: Non se atopa o ficheiro ou directorio. - + All Files (*) Todos os ficheiros (*) - + Change Master Key Trocar chave mestra - + Create Key File... Crear ficheiro chave... - + Database Key Chave da base de datos - + Enter Master Key Introduza a chave mestra - + Key Files (*.key) Ficheiros chave (*.key) - + Last File Último ficheiro - + Please enter a Password. Introduza un contrasinal. - + Please enter a Password or select a key file. Introduza un contrasinal ou seleccione un ficheiro chave. - + Please provide a key file. Forneza un ficheiro chave. - + Select a Key File Seleccione un ficheiro chave - + Set Master Key Estableza a chave mestra - + The given directory contains more then one key files. Please specify the key file directly. O cartafol contén máis dun ficheiro de claves. Especifique un ficheiro de claves directamente. - + The given directory does not contain any key files. O cartafol fornecido non contén ningún ficheiro chave. - + The selected key file or directory is not readable. Non foi posibel ler o ficheiro ou directorio chave seleccionado. @@ -2712,7 +2717,7 @@ Especifique un ficheiro de claves directamente. Alt+H - + Alt+O Alt+O @@ -2737,7 +2742,7 @@ Especifique un ficheiro de claves directamente. Gardar automáticamente a base de datos ao saír e ao bloquear o espazo de traballo - + Auto-Type Fine Tuning Axuste fino de tipo automático @@ -2747,17 +2752,17 @@ Especifique un ficheiro de claves directamente. Cor de cartel - + Bookmarks Marcadores - + Browse Examinar - + Browse... Examinar... @@ -2772,7 +2777,7 @@ Especifique un ficheiro de claves directamente. Trocar... - + Clear clipboard after: Borrar portarretallos despois de: @@ -2792,12 +2797,12 @@ Especifique un ficheiro de claves directamente. Cor 2: - + Configure... Configurar... - + Custom Browser Command Comando personalizado do navegador @@ -2807,12 +2812,12 @@ Especifique un ficheiro de claves directamente. Personalizar visualización do detalle da entrada... - + Database Key Dialog Diálogo da chave da base de datos - + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. Prazo entre a simulación de dúas voltas de chave. Incrementar isto se o tipo automatico salta caracteres ao chou. @@ -2827,12 +2832,12 @@ Especifique un ficheiro de claves directamente. Non expandir ningún item - + Edit Entry Dialog Modificar diálogo de entrada - + 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. Active isto se quere usar seus marcadores e o ultimo ficheiro aberto, independentemente do camiño absoluto. Isto é especialmente util cando usa KeePassX de xeito portatil e por tanto hai variacións no punto de montaxe. @@ -2852,12 +2857,12 @@ Especifique un ficheiro de claves directamente. Xeral - + Global Auto-Type Shortcut: Atallo global do tipo automatico: - + Gnome Desktop Integration (Gtk 2.x) Integración co escritorio Gnome (Gtk 2.x) @@ -2867,27 +2872,27 @@ Especifique un ficheiro de claves directamente. Grupo de árbores no arranque: - + KDE 4 Desktop Integration Integración do escritorio KDE 4 - + Key Stroke Delay: Tempo de volta de chave: - + Lock database after inactivity of Bloquear base de datos despois dunha inactividade de - + Lock workspace when minimizing the main window Bloquear espazo de traballo ao minimizar a fiestra principal - + Media Root: Medios da raiz: @@ -2902,22 +2907,22 @@ Especifique un ficheiro de claves directamente. Minimizar ao área de notificación ao premer no botón de pechar da fiestra principal - + ms ms - + None Nada - + Plug-Ins Engadidos - + Pre-Gap: Volta inicial: @@ -2942,12 +2947,12 @@ Especifique un ficheiro de claves directamente. Gardar os cartafoles recentes dos cadros de diálogo de ficheiro - + Save relative paths (bookmarks and last file) Gardar camiños relativos (marcadores e ultimo ficheiro) - + seconds segundos @@ -2962,7 +2967,7 @@ Especifique un ficheiro de claves directamente. Preferencias - + Show plain text passwords in: Amosar contrasinais en texto plano en: @@ -2987,7 +2992,7 @@ Especifique un ficheiro de claves directamente. Cor de texto: - + The directory where storage devices like CDs and memory sticks are normally mounted. O cartafol onde normalmente se montan os dispositivos de almacenamento como CDs e tarxetas de memoria. @@ -2997,22 +3002,22 @@ Especifique un ficheiro de claves directamente. A integración de engadidos provee funcionalidades coma o uso dos cadros de diálogo nativos e caixas de mensaxe especificas do entorno do escritorio. - + Time between the activation of an auto-type action by the user and the first simulated key stroke. Tempo entre a activación dun tipo automático de acción feita polo usuario e a primeira volta de chave. - + Use entries' title to match the window for Global Auto-Type Usar entradas do título á altura da fiestra para tipos automáticos globais - + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. Pode desactivar varias características de KeePassX aquí, de acordo coas súas necesidades coa fin de manter a interface do usuario limpa. - + You need to restart the program before the changes take effect. Precisa reiniciar o programa para que teñan efecto as modificacións. @@ -3057,22 +3062,12 @@ Especifique un ficheiro de claves directamente. - - System Language - - - - - English - - - - + Language: - + Author: @@ -3135,7 +3130,7 @@ from the drop-down list, or enter the window title manually: Translation - + $TRANSLATION_AUTHOR damufo @@ -3146,7 +3141,7 @@ from the drop-down list, or enter the window title manually: proxecto@trasno.net - + $LANGUAGE_NAME Insert your language name in the format: English (United States) diff --git a/src/translations/keepassx-it_IT.ts b/src/translations/keepassx-it_IT.ts index b48cddd..fec4b9e 100644 --- a/src/translations/keepassx-it_IT.ts +++ b/src/translations/keepassx-it_IT.ts @@ -253,7 +253,7 @@ E' permessa solo una per voce. Nome utente - + Auto-Type Auto Digitazione @@ -527,20 +527,25 @@ Sei sicuro? CSettingsDlg - + Settings Impostazioni - + Select a directory... Seleziona una directory... - + Select an executable... Seleziona un eseguibile... + + + System Language + + CalendarDialog @@ -1124,77 +1129,77 @@ p, li { white-space: pre-wrap; } FileErrors - + No error occurred. Non si è verificato alcun errore. - + An error occurred while reading from the file. Si è verificato un errore durante la lettura del file. - + An error occurred while writing to the file. Si è verificato un errore durante la scrittura del file. - + A fatal error occurred. Si è verificato un errore fatale. - + An resource error occurred. Si è verificato un errore di risorsa. - + The file could not be opened. Impossibile aprire il file. - + The operation was aborted. L'operazione è stata terminata. - + A timeout occurred. Si è verificata una scadenza. - + An unspecified error occurred. Si è verificato un errore non specificato. - + The file could not be removed. Impossibile rimuovere il file. - + The file could not be renamed. Impossibile rinominare il file. - + The position in the file could not be changed. La posizione nel file non può essere modificata. - + The file could not be resized. Impossibile ridimensionare il file. - + The file could not be accessed. Impossibile accedere al file. - + The file could not be copied. Impossibile copiare il file. @@ -1568,12 +1573,12 @@ La chiave è errata oppure il file è danneggiato. Albero del gruppo non valido. - + Key file is empty. Il fIle chiave è vuoto. - + The database must contain at least one group. Il database deve contenere almeno un gruppo. @@ -1588,7 +1593,7 @@ La chiave è errata oppure il file è danneggiato. - + The database has been opened read-only. @@ -1596,22 +1601,22 @@ La chiave è errata oppure il file è danneggiato. Kdb3Database::EntryHandle - + Bytes Bytes - + KiB KB - + MiB MB - + GiB GB @@ -1639,57 +1644,57 @@ La chiave è errata oppure il file è danneggiato. OK - + Title Titolo - + Username Nome utente - + URL URL - + Password Password - + Comments Commenti - + Expires Scade - + Creation Creazione - + Last Change Ultima modifica - + Last Access Ultimo accesso - + Attachment Allegato - + Group Gruppo @@ -2034,12 +2039,12 @@ Do you want to save the changes? Main - + Error Errore - + File '%1' could not be found. Impossibile trovare il file '%1'. @@ -2418,93 +2423,93 @@ Do you want to save the changes? PasswordDialog - + Enter Master Key Inserisci la chiave principale - + Set Master Key Imposta la chiave principale - + Change Master Key Cambia chiave principale - + Database Key Chiave Database - + Last File Ultimo file - + Select a Key File Seleziona un file chiave - + All Files (*) Tutti i files (*) - + Key Files (*.key) File chiave (*.key) - + Please enter a Password or select a key file. Inserisci una password o seleziona un file chiave. - + Please enter a Password. Insersci una password. - + Please provide a key file. Fornisci un file chiave. - + %1: No such file or directory. %1: Nessun file o directory. - + The selected key file or directory is not readable. Il file chiave o la directory selezionata non è leggibile. - + The given directory does not contain any key files. La directory selezionata non contiene alcun file chiave. - + The given directory contains more then one key files. Please specify the key file directly. La directory selezionata contiene più di un file chiave. Specifica il file chiave direttamente. - + %1: File is not readable. %1: Il file non è leggibile. - + Create Key File... Crea un file chiave... @@ -2842,22 +2847,22 @@ Il file non è leggibile. Sicurezza - + Edit Entry Dialog Modifica finestra di dialogo della voce - + Alt+O Alt+O - + Clear clipboard after: Pulisci gli Appunti dopo: - + Lock workspace when minimizing the main window Blocca l'area di lavoro quando riduci a icona la finestra principale @@ -2867,12 +2872,12 @@ Il file non è leggibile. Caratteristiche - + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. Qui puoi disabilitare alcune caratteristiche di KeePassX a seconda delle tue necessità in modo da mantenere snella l'interfaccia utente. - + Bookmarks Segnalibri @@ -2882,32 +2887,32 @@ Il file non è leggibile. Integrazione con il Desktop - + Plug-Ins Plug-Ins - + None Nessuno - + Gnome Desktop Integration (Gtk 2.x) Integrazione con il Desktop di Gnome (Gtk 2.x) - + KDE 4 Desktop Integration Integrazione con il Desktop di KDE 4 - + You need to restart the program before the changes take effect. Devi riavviare il programma per rendere effettivi i cambiamenti. - + Configure... Configura... @@ -2917,72 +2922,72 @@ Il file non è leggibile. Avanzate - + Auto-Type Fine Tuning Regola in modo fine l'Auto Digitazione - + Time between the activation of an auto-type action by the user and the first simulated key stroke. Tempo tra l'attivazione di un'azione da parte dell'utente di Auto Digitazione e la pressione della prima chiave simulata. - + ms ms - + Pre-Gap: Differenza precedente: - + Key Stroke Delay: Ritardo pressione tasti: - + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. Ritardo tra due pressioni dei tasti simulati. Aumentalo se l'Auto Digitazione salta casualmente i caratteri. - + Custom Browser Command Personalizza il comando Sfoglia - + Browse Sfoglia - + Media Root: Radice dei media: - + The directory where storage devices like CDs and memory sticks are normally mounted. La directory dove le periferiche di salvataggio come CD e chiavette USB vengono montate di solito. - + Browse... Sfoglia... - + 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. Abilita questo se vuoi usare i segnalibri e l'ultimo file aperto indipendentemente dai loro percorsi assoluti. Questo è utile specialmente quando si usa KeePassX in modo portatile e perciò i punti di mount cambiano nel file system. - + Save relative paths (bookmarks and last file) Salva i percorsi relativi (segnalibri e ultimo file) - + Global Auto-Type Shortcut: Collegamento Auto Digitazione globale: @@ -2992,27 +2997,27 @@ Il file non è leggibile. Salva automaticamente il database all'uscita e blocca l'area di lavoro - + Show plain text passwords in: Mostra password in chiaro in: - + Database Key Dialog Finestra chiave database - + seconds secondi - + Lock database after inactivity of Blocca il database dopo inattività di - + Use entries' title to match the window for Global Auto-Type Utilizza i titoli della voce per far corrispondere la finestra di Auto Digitazione Globale @@ -3057,22 +3062,12 @@ Il file non è leggibile. - - System Language - - - - - English - - - - + Language: - + Author: @@ -3135,7 +3130,7 @@ from the drop-down list, or enter the window title manually: Translation - + $TRANSLATION_AUTHOR Diego Pierotto @@ -3146,7 +3141,7 @@ from the drop-down list, or enter the window title manually: ita.translations@tiscali.it - + $LANGUAGE_NAME Insert your language name in the format: English (United States) diff --git a/src/translations/keepassx-ja_JP.ts b/src/translations/keepassx-ja_JP.ts index aace61e..6dd628c 100644 --- a/src/translations/keepassx-ja_JP.ts +++ b/src/translations/keepassx-ja_JP.ts @@ -364,7 +364,7 @@ Allowed is only one per entry. ユーザー名 - + Auto-Type 自動入力 @@ -807,12 +807,12 @@ Please check your permissions. CSettingsDlg - + Settings 設定 - + Select a directory... ディレクトリの選択... @@ -822,10 +822,15 @@ Please check your permissions. エラー: %1 - + Select an executable... 実行ファイルの選択... + + + System Language + + CalendarDialog @@ -1459,77 +1464,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. ファイルはコピーできませんでした。 @@ -1923,12 +1928,12 @@ The key is wrong or the file is damaged. 不正なグループ ツリーです。 - + Key file is empty. キー ファイルは空です。 - + The database must contain at least one group. データベースは少なくとも 1 つのグループを含む必要があります。 @@ -1948,7 +1953,7 @@ The key is wrong or the file is damaged. - + The database has been opened read-only. @@ -1956,22 +1961,22 @@ The key is wrong or the file is damaged. Kdb3Database::EntryHandle - + Bytes バイト - + KiB KiB - + MiB MiB - + GiB GiB @@ -1979,52 +1984,52 @@ The key is wrong or the file is damaged. KeepassEntryView - + Title タイトル - + Username ユーザー名 - + URL URL - + Password パスワード - + Comments コメント - + Expires 満了 - + Creation 作成 - + Last Change 最終変更 - + Last Access 最終アクセス - + Attachment 添付 @@ -2044,7 +2049,7 @@ The key is wrong or the file is damaged. 削除しますか? - + Group グループ @@ -2493,12 +2498,12 @@ Do you want to save the changes? Main - + Error エラー - + File '%1' could not be found. ファイル '%1' は見つかりませんでした。 @@ -3102,90 +3107,90 @@ Do you want to save the changes? 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... @@ -3483,7 +3488,7 @@ File is not readable. 設定 - + Clear clipboard after: クリップボードをクリアする: @@ -3493,7 +3498,7 @@ File is not readable. 秒後 - + Alt+O Alt+O @@ -3548,7 +3553,7 @@ File is not readable. 交互の列の色 - + Browse... 参照... @@ -3618,7 +3623,7 @@ File is not readable. プレーン テキストでパスワードを表示する: - + Edit Entry Dialog [エントリの編集] ダイアログ @@ -3633,32 +3638,32 @@ File is not readable. デスクトップ統合 - + 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... 構成... @@ -3693,52 +3698,52 @@ File is not readable. 機能 - + 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: メディア ルート: @@ -3748,12 +3753,12 @@ File is not readable. システム既定 - + 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) 相対パス (ブックマークと最後のファイル) を保存する @@ -3773,22 +3778,22 @@ File is not readable. ロック済みで起動する - + Lock workspace when minimizing the main window メイン ウィンドウの最小化時にワークスペースをロックする - + Custom Browser Command カスタム ブラウザ コマンド - + Browse 参照 - + Global Auto-Type Shortcut: グローバル自動入力ショートカット: @@ -3803,27 +3808,27 @@ File is not readable. - + 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 @@ -3868,22 +3873,12 @@ File is not readable. - - System Language - - - - - English - - - - + Language: - + Author: @@ -3951,7 +3946,7 @@ from the drop-down list, or enter the window title manually: Translation - + $TRANSLATION_AUTHOR Nardog @@ -3962,7 +3957,7 @@ from the drop-down list, or enter the window title manually: http://nardog.takoweb.com - + $LANGUAGE_NAME Insert your language name in the format: English (United States) diff --git a/src/translations/keepassx-ru_RU.ts b/src/translations/keepassx-ru_RU.ts index 058c743..fadde4b 100644 --- a/src/translations/keepassx-ru_RU.ts +++ b/src/translations/keepassx-ru_RU.ts @@ -1,6 +1,5 @@ - AboutDialog @@ -2003,52 +2002,52 @@ The key is wrong or the file is damaged. KeepassEntryView - + Title Название - + Username Имя - + URL Ссылка - + Password Пароль - + Comments Комментарий - + Expires Окончание - + Creation Создание - + Last Change Последнее изменение - + Last Access Последний доступ - + Attachment Вложение @@ -2063,7 +2062,7 @@ The key is wrong or the file is damaged. Стереть? - + Group Группа @@ -2119,82 +2118,82 @@ The key is wrong or the file is damaged. KeepassMainWindow - + 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 Ошибка @@ -2204,7 +2203,7 @@ The key is wrong or the file is damaged. OK - + Save modified file? Сохранить изменения файла? @@ -2241,22 +2240,22 @@ to save the changes? <B>Группа: </B>%1 <B>Название: </B>%2 <B>Имя: </B>%3 <B>Ссылка: </B><a href=%4>%4</a> <B>Пароль: </B>%5 <B>Создано: </B>%6 <B>Изменено: </B>%7 <B>Доступ: </B>%8 <B>Окончание: </B>%9 - + Clone Entry Дублировать запись - + Delete Entry Удалить запись - + Clone Entries Дублировать записи - + Delete Entries Удалить записи @@ -2273,7 +2272,7 @@ to save the changes? Сохранить базу паролей как... - + Ready Готов @@ -2283,17 +2282,17 @@ to save the changes? [новый] - + Open Database... Открыть базу паролей... - + Loading Database... Загрузка базы паролей... - + Loading Failed Ошибка загрузки @@ -2318,7 +2317,7 @@ to save the changes? Неизвестная ошибка в PwDatabase::openDatabase() - + Ctrl+V Ctrl+V @@ -2333,142 +2332,142 @@ to save the changes? KeePassX - + Unknown error while loading database. Неизвестная ошибка при загруски базы данных. - + KeePass Databases (*.kdb) KeePass база паролей (*.kdb) - + All Files (*) Все файлы (*) - + Save Database... Сохранить базу паролей... - + 1 Month 1 месяц - + %1 Months %1 месяца - + 1 Year 1 год - + %1 Years %1 лет - + 1 Day 1 день - + %1 Days %1 дней - + less than 1 day меньше, чем один день - + Locked заблокировано - + Unlocked разблокированно - + Ctrl+L Ctrl+L - + Ctrl+Q 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+P - + Ctrl+X Ctrl+X - + Ctrl+I Ctrl+I - + Database locked База паролей заблокирована - + The database you are trying to open is locked. This means that either someone else has opened the file or KeePassX crashed last time it opened the database. @@ -2479,31 +2478,31 @@ Do you want to open it anyway? Продолжить открытие? - + The current file was modified. Do you want to save the changes? База паролей была изменена. Сохранить изменения? - + Couldn't remove database lock file. Не удалось удалить файл блокирования базы паролей. - + Open read-only Открыть только для чтения - + Couldn't create lock file. Opening the database read-only. Не удалось создать файл блокирования базы паролей. База паролей будет открыта только для чтения. Information - Информация + Информация @@ -2539,103 +2538,103 @@ The synchronization proceeds as following: Please, open a database first. - Для начала откройте пожалуйста базу паролей. + Для начала откройте пожалуйста базу паролей. Open Database to synchronize with... - Выбор базы паролей для синхронизации... + Выбор базы паролей для синхронизации... Can't synchronize with the own file. - База паролей уже открыта. Выберете другую базу паролей нельзя синхронизации. + База паролей уже открыта. Выберете другую базу паролей нельзя синхронизации. Error saving current file - Ошибка сохранения файла + Ошибка сохранения файла The current file was modified and must be saved before synchronization can proceed. Do you want to save the changes? - Базу паролей необходимо сохранить перед началом синхронизации. + Базу паролей необходимо сохранить перед началом синхронизации. Продолжить? Synchronization complete - Синхронизация завершена + Синхронизация завершена Synchronization successfully finished. - Синхронизация завершена. + Синхронизация завершена. Groups processed: - Групп обработано: + Групп обработано: Groups created: - Групп создано: + Групп создано: Groups synchronized: - Групп синхронизировано: + Групп синхронизировано: Groups deleted: - Групп стёрто: + Групп стёрто: Entries processed: - Записей обработано: + Записей обработано: Entries created: - Записей создано: + Записей создано: Entries synchronized: - Записей синхронизировано: + Записей синхронизировано: Entries deleted: - Записей стёрто: + Записей стёрто: Unknown error while saving database: - Неизвестная ошибка при сохранении базы паролей: + Неизвестная ошибка при сохранении базы паролей: The following error occurred while saving the database: - Ошибка при сохранении базы паролей: + Ошибка при сохранении базы паролей: Error: - Ошибка: + Ошибка: Close failed - Ошибка закрытия файла + Ошибка закрытия файла @@ -2659,7 +2658,7 @@ The synchronization proceeds as following: Please consider: - No conflicts resolving is possible - No stored icons synchronization is implemented yet - ВНИМАНИЕ! Синхронизация еще не протестирована в достаточной степени. + ВНИМАНИЕ! Синхронизация еще не протестирована в достаточной степени. ВНИМАНИЕ! Синхронизация может повредить одну или обе базы паролей. Пожалуйста, сделайте РЕЗЕРВНЫЕ КОПИИ баз паролей. @@ -2719,7 +2718,7 @@ Please consider: XML-файл KWallet (*.xml) - + Add New Group... Добавить новую группу... @@ -2864,7 +2863,7 @@ Please consider: Plain Text (*.txt) - + Hide Скрыть @@ -2899,7 +2898,7 @@ Please consider: 28x28 - + &View &Вид @@ -2924,7 +2923,7 @@ Please consider: &Правка - + E&xtras &Дополнительно @@ -2934,37 +2933,37 @@ Please consider: &Справка - + &New Database... Со&здать базу паролей... - + &Open Database... &Открыть базу паролей... - + &Close Database &Закрыть базу паролей - + &Save Database &Сохранить базу паролей - + Save Database &As... Сохранить базу паролей &как... - + &Database Settings... Н&астройки базы паролей... - + Change &Master Key... &Изменить основной пароль... @@ -2974,22 +2973,22 @@ Please consider: В&ыход - + &Settings... &Настройка... - + &About... &О программе... - + &KeePassX Handbook... &Руководство "KeePassX"... - + Recycle Bin... Мусорная корзина... @@ -2999,7 +2998,7 @@ Please consider: Группы - + &Lock Workspace &Заблокировать главное окно @@ -3009,229 +3008,229 @@ Please consider: &Закладки - + Toolbar &Icon Size Раз&мер значков панели инструментов - + &Columns &Столбцы - + &Manage Bookmarks... &Настроить закладки... - + &Quit В&ыход - + &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 &16x16 - + &22x22 &22x22 - + 2&8x28 2&8x28 - + &Password Generator... &Генератор паролей... - + &Group (search results only) &Группа (поиск в результатах предыдущего поиска) - + Show &Expired Entries... Показать записи с &истекшим сроком годности... - + &Add Bookmark... &Добавить закладку... - + Bookmark &this Database... &Добавить эту базу паролей в закладки... - + &Add New Subgroup... &Добавить новую подгруппу... - + Copy URL to Clipboard Скопировать ссылку в буфер обмена - + &Entries &Записи - + &Groups &Группы - + Sort groups Сортировать группы S&ynchronize Database... - &Синхронизировать базу паролей... + &Синхронизировать базу паролей... @@ -3592,7 +3591,7 @@ The key is wrong or the file is damaged. A&nhang - &Вложение + &Вложение @@ -3697,7 +3696,7 @@ The key is wrong or the file is damaged. Attachment - Вложение + Вложение @@ -3873,7 +3872,7 @@ The key is wrong or the file is damaged. Alt+Ö - Alt+O + Alt+O @@ -4367,5 +4366,3 @@ p, li { white-space: pre-wrap; } - - diff --git a/src/translations/keepassx-tr_TR.ts b/src/translations/keepassx-tr_TR.ts index 70577b8..970c099 100644 --- a/src/translations/keepassx-tr_TR.ts +++ b/src/translations/keepassx-tr_TR.ts @@ -202,7 +202,7 @@ ile dağıtılmaktadır. Kullanıcı Adı - + Auto-Type Otomatik-Tip @@ -461,20 +461,25 @@ Emin misiniz? CSettingsDlg - + Settings Ayarlar - + Select a directory... Bir dizin seçin... - + Select an executable... Bir çalıştırılabilir dosya seçin... + + + System Language + Sistem Dili + CalendarDialog @@ -1053,77 +1058,77 @@ p, li { white-space: pre-wrap; } FileErrors - + No error occurred. Hiç hata oluşmadı. - + An error occurred while reading from the file. Dosyadan okunurken bir hata oluştu. - + An error occurred while writing to the file. Dosyaya yazılırken bir hata oluştu. - + A fatal error occurred. Sonlandırıcı bir hata oluştu. - + An resource error occurred. Bir kaynak hatası oluştu. - + The file could not be opened. Dosya açılamadı. - + The operation was aborted. İşlem sonlandırıldı. - + A timeout occurred. Bir zaman aşımı oluştu. - + An unspecified error occurred. Belirtilmemiş hata oluştu. - + The file could not be removed. Dosya silinemedi. - + The file could not be renamed. Dosya yeniden adlandırılamadı. - + The position in the file could not be changed. Dosyanın içerisindeki konum değiştirilemedi. - + The file could not be resized. Dosya yeniden boyutlandırılamadı. - + The file could not be accessed. Dosyaya erişilemedi. - + The file could not be copied. Dosya kopyalanamadı. @@ -1482,12 +1487,12 @@ Anahtar yanlış ya da dosya bozulmuş. Geçersiz grup ağacı. - + Key file is empty. Anahtar dosyası boş. - + The database must contain at least one group. Veritabanı en az bir grup içermelidir. @@ -1502,7 +1507,7 @@ Anahtar yanlış ya da dosya bozulmuş. Twofish algoritması başlatılamadı. - + The database has been opened read-only. @@ -1510,22 +1515,22 @@ Anahtar yanlış ya da dosya bozulmuş. Kdb3Database::EntryHandle - + Bytes Bayt - + KiB KB - + MiB MB - + GiB GB @@ -1553,57 +1558,57 @@ Anahtar yanlış ya da dosya bozulmuş. TAMAM - + Title Başlık - + Username Kullanıcı Adı - + URL Adres - + Password Parola - + Comments Yorumlar - + Expires Süre Dolumu - + Creation Oluşturulma - + Last Change Son Değişiklik - + Last Access Son Erişim - + Attachment Eklenti - + Group Grup @@ -1942,12 +1947,12 @@ Değişiklikleri kaydetmek ister misiniz? Main - + Error Hata - + File '%1' could not be found. '%1' dosyası bulunamadı. @@ -2321,93 +2326,93 @@ Değişiklikleri kaydetmek ister misiniz? PasswordDialog - + Enter Master Key Ana Anahtarı Gir - + Set Master Key Ana Anahtarı Ayarla - + Change Master Key Ana Anahtarı Değiştir - + Database Key Veritabanı Anahtarı - + Last File Son Dosya - + Select a Key File Anahtar dosyasını Seç - + All Files (*) Tüm Dosyalar (*) - + Key Files (*.key) Key Dosyaları (*.key) - + Please enter a Password or select a key file. Lütfen gir parola girin ya da anahtar dosyası seçin. - + Please enter a Password. Lütfen bir parola girin. - + Please provide a key file. Lütfen bir key dosyası girin. - + %1: No such file or directory. %1: Böyle bir dosya ya da dizin yok. - + The selected key file or directory is not readable. Seçilen anahtar dosyası ya da dizin okunabilir değil. - + The given directory does not contain any key files. Verilen dizin bir anahtar dosyası içermiyor. - + The given directory contains more then one key files. Please specify the key file directly. Verilen dizin birden fazla anahtar dosyası içeriyor. Lütfen anahtar dosyasını belirtin. - + %1: File is not readable. %1: Dosya okunabilir değil. - + Create Key File... Anahtar Dosyası Oluştur... @@ -2722,62 +2727,62 @@ Dosya okunabilir değil. Güvenlik - + Edit Entry Dialog Girdi Düzenleme Penceresi - + Alt+O Alt+O - + Clear clipboard after: Bu süre geçince panoyu temizle: - + Lock workspace when minimizing the main window Ana pencereyi küçültürken çalışma alanını kilitle - + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. - + Bookmarks Yerimleri - + Plug-Ins Eklentiler - + None Hiçbiri - + Gnome Desktop Integration (Gtk 2.x) Gnome Masaüstü Bütünleşmesi (Gtk 2.x) - + KDE 4 Desktop Integration KDE4 Masaüstü Bütünleşmesi - + You need to restart the program before the changes take effect. Değişikliklerin etkin olabilmesi için uygulamayı yeniden başlatmanız gerekir. - + Configure... Yapılandır... @@ -2787,72 +2792,72 @@ Dosya okunabilir değil. Gelişmiş - + Auto-Type Fine Tuning Otomatik-Tip İyileştirmesi - + Time between the activation of an auto-type action by the user and the first simulated key stroke. - + ms ms - + Pre-Gap: Pre-Gap: - + Key Stroke Delay: Anahtar Gecikmesi: - + Delay between two simulated key strokes. Increase this if Auto-Type is randomly skipping characters. - + Custom Browser Command Özel Tarayıcı Komutu - + Browse Gözat - + Media Root: Ortam Kök Dizini: - + The directory where storage devices like CDs and memory sticks are normally mounted. CD ve bellek çubukları gibi depolama ortamlarının bağlandığı dizin. - + Browse... Gözat... - + 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) Değişken yolları kaydet (yer imleri ve son dosyalar) - + Global Auto-Type Shortcut: Genel Otomatik-Tip Kısayolu: @@ -2862,27 +2867,27 @@ Dosya okunabilir değil. Çıkışta veritabanını otomatik olarak kaydet ve çalışma alanını kilitle - + Show plain text passwords in: Düz metin parolaları böyle göster: - + Database Key Dialog Veritabanı Anahtarı Penceresi - + seconds saniye - + Lock database after inactivity of Şu kadar etkinlik olmazsa veritabanını kilitle - + Use entries' title to match the window for Global Auto-Type Genel Otomatik Tip için Pencereleri eşlemek amacıyla girdinin başlığını kullan @@ -2929,20 +2934,20 @@ Dosya okunabilir değil. System Language - Sistem Dili + Sistem Dili English - İngilizce + İngilizce - + Language: Dil: - + Author: Yazar: @@ -3005,7 +3010,7 @@ from the drop-down list, or enter the window title manually: Translation - + $TRANSLATION_AUTHOR Serdar Soytetir @@ -3016,7 +3021,7 @@ from the drop-down list, or enter the window title manually: tulliana@gmail.com - + $LANGUAGE_NAME Insert your language name in the format: English (United States) Türkçe diff --git a/src/translations/keepassx-xx_XX.ts b/src/translations/keepassx-xx_XX.ts index 1e16919..68a6f84 100644 --- a/src/translations/keepassx-xx_XX.ts +++ b/src/translations/keepassx-xx_XX.ts @@ -200,7 +200,7 @@ General Public License (GPL) version 2. - + Auto-Type @@ -457,20 +457,25 @@ Are you sure? CSettingsDlg - + Settings - + Select a directory... - + Select an executable... + + + System Language + + CalendarDialog @@ -1045,77 +1050,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. @@ -1471,12 +1476,12 @@ The key is wrong or the file is damaged. - + Key file is empty. - + The database must contain at least one group. @@ -1486,7 +1491,7 @@ The key is wrong or the file is damaged. - + The database has been opened read-only. @@ -1494,22 +1499,22 @@ The key is wrong or the file is damaged. Kdb3Database::EntryHandle - + Bytes - + KiB - + MiB - + GiB @@ -1537,57 +1542,57 @@ The key is wrong or the file is damaged. - + Title - + Username - + URL - + Password - + Comments - + Expires - + Creation - + Last Change - + Last Access - + Attachment - + Group @@ -1920,12 +1925,12 @@ Do you want to save the changes? Main - + Error - + File '%1' could not be found. @@ -2279,90 +2284,90 @@ Do you want to save the changes? 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... @@ -2677,62 +2682,62 @@ File is not readable. - + Edit Entry Dialog - + Alt+O - + Clear clipboard after: - + Lock workspace when minimizing the main window - + You can disable several features of KeePassX here according to your needs in order to keep the user interface slim. - + Bookmarks - + 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... @@ -2742,72 +2747,72 @@ File is not readable. - + 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: @@ -2817,27 +2822,27 @@ File is not readable. - + 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 @@ -2882,22 +2887,12 @@ File is not readable. - - System Language - - - - - English - - - - + Language: - + Author: @@ -2960,7 +2955,7 @@ from the drop-down list, or enter the window title manually: Translation - + $TRANSLATION_AUTHOR @@ -2971,7 +2966,7 @@ from the drop-down list, or enter the window title manually: - + $LANGUAGE_NAME Insert your language name in the format: English (United States)