From 158eb4150f5ca065910c749d7c2b26a8404f6204 Mon Sep 17 00:00:00 2001 From: nils Date: Sun, 16 May 2010 10:30:22 +0000 Subject: repaired shortcuts and made the most of them OS conform (in Linux other than in windows) git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@341 34ebc366-c3a9-4b3c-9f84-69acf7962910 --- gpgwin.cpp | 22 ++++--- release/ts/gpg4usb_de.qm | Bin 17714 -> 17608 bytes release/ts/gpg4usb_de.ts | 144 +++++++++++++++++++++--------------------- release/ts/gpg4usb_en.ts | 148 +++++++++++++++++++++----------------------- release/ts/gpg4usb_es.qm | Bin 15010 -> 14904 bytes release/ts/gpg4usb_es.ts | 144 +++++++++++++++++++++--------------------- release/ts/gpg4usb_fr.qm | Bin 9901 -> 9819 bytes release/ts/gpg4usb_fr.ts | 148 +++++++++++++++++++++----------------------- release/ts/gpg4usb_pt_BR.qm | Bin 15018 -> 14912 bytes release/ts/gpg4usb_pt_BR.ts | 144 +++++++++++++++++++++--------------------- release/ts/gpg4usb_ru.qm | Bin 14613 -> 14531 bytes release/ts/gpg4usb_ru.ts | 148 +++++++++++++++++++++----------------------- 12 files changed, 432 insertions(+), 466 deletions(-) diff --git a/gpgwin.cpp b/gpgwin.cpp index cc643ea..006826e 100644 --- a/gpgwin.cpp +++ b/gpgwin.cpp @@ -104,29 +104,30 @@ void GpgWin::createActions() */ openAct = new QAction(tr("&Open..."), this); openAct->setIcon(QIcon(iconPath + "fileopen.png")); - openAct->setShortcut("Ctrl+O"); + openAct->setShortcut(QKeySequence::Open); openAct->setToolTip(tr("Open an existing file")); connect(openAct, SIGNAL(triggered()), this, SLOT(open())); saveAct = new QAction(tr("&Save"), this); saveAct->setIcon(QIcon(iconPath + "filesave.png")); - saveAct->setShortcut("Ctrl+S"); + saveAct->setShortcut(QKeySequence::Save); saveAct->setToolTip(tr("Save the current File")); connect(saveAct, SIGNAL(triggered()), this, SLOT(save())); saveAsAct = new QAction(tr("Save &As"), this); saveAsAct->setIcon(QIcon(iconPath + "filesaveas.png")); + saveAsAct->setShortcut(QKeySequence::SaveAs); saveAsAct->setToolTip(tr("Save the current File as...")); connect(saveAsAct, SIGNAL(triggered()), this, SLOT(saveAs())); printAct = new QAction(tr("&Print"), this); printAct->setIcon(QIcon(iconPath + "fileprint.png")); - printAct->setShortcut("Ctrl+P"); + printAct->setShortcut(QKeySequence::Print); printAct->setToolTip(tr("Print Document")); connect(printAct, SIGNAL(triggered()), this, SLOT(print())); quitAct = new QAction(tr("&Quit"), this); - quitAct->setShortcut("Ctrl+Q"); + quitAct->setShortcut(QKeySequence::Quit); quitAct->setIcon(QIcon(iconPath + "exit.png")); quitAct->setToolTip(tr("Quit Program")); connect(quitAct, SIGNAL(triggered()), this, SLOT(close())); @@ -135,45 +136,46 @@ void GpgWin::createActions() */ pasteAct = new QAction(tr("&Paste"), this); pasteAct->setIcon(QIcon(iconPath + "button_paste.png")); - pasteAct->setShortcut("Ctrl+V"); + pasteAct->setShortcut(QKeySequence::Paste); pasteAct->setToolTip(tr("Paste Text From Clipboard")); connect(pasteAct, SIGNAL(triggered()), edit, SLOT(paste())); cutAct = new QAction(tr("Cu&t"), this); cutAct->setIcon(QIcon(iconPath + "button_cut.png")); - cutAct->setShortcut("Ctrl+X"); + cutAct->setShortcut(QKeySequence::Cut); cutAct->setToolTip(tr("Cut the current selection's contents to the " "clipboard")); connect(cutAct, SIGNAL(triggered()), edit, SLOT(cut())); copyAct = new QAction(tr("&Copy"), this); copyAct->setIcon(QIcon(iconPath + "button_copy.png")); - copyAct->setShortcut("Ctrl+C"); + copyAct->setShortcut(QKeySequence::Copy); copyAct->setToolTip(tr("Copy the current selection's contents to the " "clipboard")); connect(copyAct, SIGNAL(triggered()), edit, SLOT(copy())); selectallAct = new QAction(tr("Select &All"), this); selectallAct->setIcon(QIcon(iconPath + "edit.png")); - selectallAct->setShortcut("Ctrl+A"); + selectallAct->setShortcut(QKeySequence::SelectAll); selectallAct->setToolTip(tr("Select the whole text")); connect(selectallAct, SIGNAL(triggered()), edit, SLOT(selectAll())); openSettingsAct = new QAction(tr("Se&ttings"), this); openSettingsAct->setToolTip(tr("Open settings dialog")); + openSettingsAct->setShortcut(QKeySequence::Preferences); connect(openSettingsAct, SIGNAL(triggered()), this, SLOT(openSettingsDialog())); /** Crypt Menu */ encryptAct = new QAction(tr("&Encrypt"), this); encryptAct->setIcon(QIcon(iconPath + "encrypted.png")); - encryptAct->setShortcut(tr("Ctrl+E")); + encryptAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_E)); encryptAct->setToolTip(tr("Encrypt Message")); connect(encryptAct, SIGNAL(triggered()), this, SLOT(encrypt())); decryptAct = new QAction(tr("&Decrypt"), this); decryptAct->setIcon(QIcon(iconPath + "decrypted.png")); - decryptAct->setShortcut(tr("Ctrl+D")); + decryptAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_D)); decryptAct->setToolTip(tr("Decrypt Message")); connect(decryptAct, SIGNAL(triggered()), this, SLOT(decrypt())); diff --git a/release/ts/gpg4usb_de.qm b/release/ts/gpg4usb_de.qm index df6b67a..ecf1430 100644 Binary files a/release/ts/gpg4usb_de.qm and b/release/ts/gpg4usb_de.qm differ diff --git a/release/ts/gpg4usb_de.ts b/release/ts/gpg4usb_de.ts index 49c075b..6367f9d 100644 --- a/release/ts/gpg4usb_de.ts +++ b/release/ts/gpg4usb_de.ts @@ -181,12 +181,12 @@ Strg+A - + Save the current File as... Speichere aktuelle Datei als.... - + &Print &Drucken @@ -195,12 +195,12 @@ Strg+P - + Print Document Drucken - + &Quit &Beenden @@ -209,12 +209,12 @@ Strg+Q - + Quit Program Beende das Programm - + &Paste E&infügen @@ -223,12 +223,12 @@ Strg+V - + Paste Text From Clipboard Füge Text aus der Zwischenablage ein - + Cu&t &Ausschneiden @@ -237,12 +237,12 @@ Strg+X - + Cut the current selection's contents to the clipboard aktuelle Auswahl ausschneiden und in Zwischenablage einfügen - + &Copy &Kopieren @@ -251,225 +251,223 @@ Strg+C - + Copy the current selection's contents to the clipboard aktuelle Auswahl in Zwischenablage kopieren - + Select &All Alles &markieren - + Select the whole text Den ganzen Text markieren - + Open settings dialog Öffne den Einstellungsdialog - + &Encrypt &Verschlüsseln - Ctrl+E - Strg+E + Ctrl+E - + Encrypt Message Verschlüssele den Text - + &Decrypt &Entschlüsseln - Ctrl+D - Strg+D + Ctrl+D - + Decrypt Message Entschlüssele den Text - + Import New Key From File Importiere einen neuen Schlüssel aus Datei - + Import New Key From Editor Importiere einen neuen Schlüssel aus dem Textfeld - + &About &Info - + Show the application's About box Zeige die Information über die Anwendung - - - + + + &File &Datei - + &Edit &Bearbeiten - + &Help &Hilfe - + File Datei - + Edit Bearbeiten - + Se&ttings Ei&nstellungen - + &File Encryption Datei Verschlüsselung &Datei Verschlüsselung - + Encrypt/Decrypt File Ver-/Entschlüssele Datei - + Key Management Schlüsselverwaltung - + Open Keymanagement Öffne die Schlüsselverwaltung - + Open Import New Key Dialog Öffne den Schlüsselimport Dialog - + Append Selected Key(s) To Text Hänge die ausgewählten Schlüssel an den Text an - + Append The Selected Keys To Text in Editor Hänge den gewählten Schhlüssel an den Text im Editor an - + &Keys Sch&lüssel - + &Import Key From... &Importiere Schlüssel aus... - + &View &Ansicht - + Key Schlüssel - - + + Ready Fertig - + Encrypt for: Verschlüssele für: - + Attached files: - - + + Application Anwendung - + Cannot read file %1: %2. Kann Datei nicht lesen %1: %2. - + File loaded Datei geladen - + %1[*] - %2 - + The document has been modified. Do you want to save your changes? Die Datei würde verändert. Möchten Sie die Änderung speichern? - + Cannot write file %1: %2. Kann Datei nicht lesen %1: %2. - + Saved '%1' %1 gespeichert - + <center>This Application allows you to do simple<br>encryption/decryption of your text-message or file.<br>It's licensed under the GPL v2.0<br><br><b>Developer:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Translation:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru), Viriato (es)<br><br>If you have any questions and/or<br>suggestions, contact us at<br>gpg4usb at cpunk.de</a><br><br>or feel free to meet us in our xmpp-channel:<br>gpg4usb at conference.jabber.ccc.de</center> <center>Diese Anwendung ermöglicht einfaches<br>Ver- und Entschlüsseln von Texten und Dateien.<br>Sie steht unter der GPL v2.0<br><br><b>Entwickler:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Übersetzung:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru), Viriato (es)<br><br>Falls Sie irgendwelche Fragen und/oder <br>Vorschläge haben, kontaktieren Sie uns über<br>gpg4usb at cpunk.de</a><br><br>oder treffen sie uns einfach in unserem XMPP-Channel:<br>gpg4usb at conference.jabber.ccc.de</center> - + Open Key Öffne Datei @@ -478,45 +476,45 @@ Do you want to save your changes? <center>Diese Anwendung erlaubt das einfache<br> Ver-und Entschlüsseln von Texten und Dateien.<br>Die Anwendung ist lizensiert unter der GPL v2.0<br><br><b>Entwickler:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Übersetzung:</b><br>Kirill (ru), Alessandro (pt)<br><br>Falls sie Fragen oder Anregungen haben,<br> kontaktieren sie uns unter gpg4usb at cpunk.de</a><br><br>oder treffen sie uns in unserem XMPP-Channel:<br>gpg4usb at conference.jabber.ccc.de</center> - + couldn't open file: Konnte Datei nicht öffnen: - - + + &Editor &Editor - - + + &Clipboard &Zwischenablage - + Import New Key From Clipboard Importiere neuen Schlüssel aus der Zwischenablage - - + + Import Key Schlüsselimport - + &Crypt &Crypt - + Crypt Crypt - + About Über @@ -525,17 +523,17 @@ Do you want to save your changes? <center>Diese Anwendung ermöglicht einfaches<br>Ver- und Entschlüsseln von Texten und Dateien.<br>Sie steht unter der GPL v2.0<br><br><b>Entwickler:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Übersetzung:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru), Viriato (es)<br><br>Falls Sie irgendwelche Fragen und/oder <br>Vorschläge haben, kontaktieren Sie uns über<br>gpg4usb at cpunk.de</a><br><br>oder treffen sie uns einfach in unserem XMPP-Channel:<br>gpg4usb at conference.jabber.ccc.de</center> - + Key Files Schlüssel Dateien - + All Files Alle Dateien - + Import Key From... Impoertiere neuen Schlüssel aus... diff --git a/release/ts/gpg4usb_en.ts b/release/ts/gpg4usb_en.ts index ac5f0b1..3babccf 100644 --- a/release/ts/gpg4usb_en.ts +++ b/release/ts/gpg4usb_en.ts @@ -132,332 +132,322 @@ - + Save the current File as... - + &Print - + Print Document - + &Quit - + Quit Program - + &Paste - + Paste Text From Clipboard - + Cu&t - + Cut the current selection's contents to the clipboard - + &Copy - + Copy the current selection's contents to the clipboard - + Select &All - + Select the whole text - + Open settings dialog - - - &Encrypt - - - Ctrl+E + &Encrypt - + Encrypt Message - - - &Decrypt - - - Ctrl+D + &Decrypt - + Decrypt Message - + &File Encryption - + Encrypt/Decrypt File - + Import New Key From File - + Import New Key From Editor - + Key Management - + Open Keymanagement - + Open Import New Key Dialog - + &About - + Show the application's About box - - - + + + &File - + &Edit - + &Help - + File - + Append Selected Key(s) To Text - + Se&ttings - + Append The Selected Keys To Text in Editor - + &Keys - + &Import Key From... - + &View - - + + Ready - + Encrypt for: - + Attached files: - - + + Application - + Cannot read file %1: %2. - + File loaded - + %1[*] - %2 - + The document has been modified. Do you want to save your changes? - + Cannot write file %1: %2. - + Saved '%1' - + Open Key - + Key Files - + All Files - + couldn't open file: - - + + &Editor - - + + &Clipboard - + Import New Key From Clipboard - - + + Import Key - + &Crypt - + Crypt - + Key - + Edit - + About - + <center>This Application allows you to do simple<br>encryption/decryption of your text-message or file.<br>It's licensed under the GPL v2.0<br><br><b>Developer:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Translation:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru), Viriato (es)<br><br>If you have any questions and/or<br>suggestions, contact us at<br>gpg4usb at cpunk.de</a><br><br>or feel free to meet us in our xmpp-channel:<br>gpg4usb at conference.jabber.ccc.de</center> - + Import Key From... diff --git a/release/ts/gpg4usb_es.qm b/release/ts/gpg4usb_es.qm index 1bf272f..bb2cf38 100644 Binary files a/release/ts/gpg4usb_es.qm and b/release/ts/gpg4usb_es.qm differ diff --git a/release/ts/gpg4usb_es.ts b/release/ts/gpg4usb_es.ts index e685dc4..f98b293 100644 --- a/release/ts/gpg4usb_es.ts +++ b/release/ts/gpg4usb_es.ts @@ -145,12 +145,12 @@ Guardar &Como - + Save the current File as... Guardar el Archivo actual como... - + &Print &Imprimir @@ -159,12 +159,12 @@ Crtl+P - + Print Document Imprimir Documento - + &Quit &Salir @@ -173,12 +173,12 @@ Crtl+Q - + Quit Program Salir del Programa - + &Paste &Pegar @@ -187,12 +187,12 @@ Crtl+V - + Paste Text From Clipboard Pegar Texto desde Portapapeles - + Cu&t Corta&r @@ -201,12 +201,12 @@ Crtl+X - + Cut the current selection's contents to the clipboard Cortar contenido seleccion actual al portapapeles - + &Copy &Copiar @@ -215,12 +215,12 @@ Crtl+C - + Copy the current selection's contents to the clipboard Copiar contenido seleccion actual al portapapeles - + Select &All Seleccionar &Todo @@ -229,250 +229,248 @@ Crtl+A - + Select the whole text Seleccionar todo el texto - + Se&ttings Con&figuracion - + Open settings dialog Abrir dialogo configuracion - + &Encrypt &Cifrar - Ctrl+E - Crtl+E + Crtl+E - + Encrypt Message Cifrar Mensaje - + &Decrypt &Descifrar - Ctrl+D - Crtl+D + Crtl+D - + Decrypt Message Descifrar Mensaje - + &File Encryption &Cifrado Archivo - + Encrypt/Decrypt File Cifrar / Descifrar Archivo - - - + + + &File &Archivo - + Import New Key From File Importar Nueva Llave Desde Archivo - - + + &Editor &Editor - + Import New Key From Editor Importar Nueva Llave Desde Editor - - + + &Clipboard &Portapapeles - + Import New Key From Clipboard Importar Nueva Llave Desde Portapapeles - + Key Management Administar Llaves - + Open Keymanagement Abrir Administrar Llaves - - + + Import Key Importar Llave - + Open Import New Key Dialog Abrir Dialogo Importar Nueva Llave - + &About &Acerca de - + Show the application's About box Mostrar caja Acerca de programa - + Append Selected Key(s) To Text Adjuntar Llave(s) Seleccionadas Al Texto - + Append The Selected Keys To Text in Editor Adjuntar Llaves Seleccionadas Al Texto en Editor - + &Edit &Editar - + &Crypt &Cifrar - + &Keys &Llaves - + &Import Key From... &Importar Llave Desde... - + &View &Ver - + &Help &Ayuda - + Crypt Cifrar - + Key Llave - + Edit Editar - - + + Ready Listo - + Encrypt for: Cifrar para: - + Attached files: - - + + Application Programa - + Cannot read file %1: %2. No puedo leer archivo %1: %2. - + File loaded Archivo cargado - + %1[*] - %2 %1[*] - %2 - + The document has been modified. Do you want to save your changes? El documento ha sido modificado. Quiere usted guardar los cambios? - + File Archivo - + Cannot write file %1: %2. No puedo escribir archivo %1: %2. - + Saved '%1' Guardado '%1' - + About Acerca de' - + <center>This Application allows you to do simple<br>encryption/decryption of your text-message or file.<br>It's licensed under the GPL v2.0<br><br><b>Developer:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Translation:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru), Viriato (es)<br><br>If you have any questions and/or<br>suggestions, contact us at<br>gpg4usb at cpunk.de</a><br><br>or feel free to meet us in our xmpp-channel:<br>gpg4usb at conference.jabber.ccc.de</center> @@ -481,27 +479,27 @@ Quiere usted guardar los cambios? <center>Este Programa le permite hacer un facil<br>cifrado/descifrado de sus mensajes de texto o archivos.<br>Esta licenciado bajo el GPL v2.0<br><br><b>Programadores:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Traduccion:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru), Viriato13 (es)<br><br>Si usted tiene alguna pregunta y/ o <br>sugerencia, contacte con nosotros en<br>gpg4usb en cpunk.de</a><br><br>o puede encontrarnos en nuestro xmpp-channel:<br>gpg4usb en conference.jabber.ccc.de</center> - + Open Key Abrir Llave - + Key Files Archivos de Llaves - + All Files Todos Archivos - + couldn't open file: no se pudo abrir el archivo: - + Import Key From... Importar Llave Desde... diff --git a/release/ts/gpg4usb_fr.qm b/release/ts/gpg4usb_fr.qm index fb4c7cd..07be41c 100644 Binary files a/release/ts/gpg4usb_fr.qm and b/release/ts/gpg4usb_fr.qm differ diff --git a/release/ts/gpg4usb_fr.ts b/release/ts/gpg4usb_fr.ts index b19d6ca..ef52ee3 100644 --- a/release/ts/gpg4usb_fr.ts +++ b/release/ts/gpg4usb_fr.ts @@ -144,309 +144,299 @@ Enregistrer &sous - + Save the current File as... Enregistrer le fichier en cours sous... - + &Print &Imprimer - + Print Document Imprimer fichier - + &Quit &Fermer - + Quit Program Fermer programme - + &Paste &Coller - + Paste Text From Clipboard Coller depuis le presse-papiers - + Cu&t Cou&per - + Cut the current selection's contents to the clipboard Couper et ajouter dans le presse papiers - + &Copy &Copier - + Copy the current selection's contents to the clipboard Copier et ajouter dans le presse papiers - + Select &All Selectionner &tout - + Select the whole text Selectionner tout le texte - + Se&ttings - + Open settings dialog - + &Encrypt &Crypter - - Ctrl+E - - - - + Encrypt Message Crypter message - + &Decrypt &Decrypter - - Ctrl+D - - - - + Decrypt Message Decrypter message - + &File Encryption Cryptage du &fichier - + Encrypt/Decrypt File Crypter/Decrypter fichier - - - + + + &File &Fichier - + Import New Key From File Importer nouvelle cle depuis le fichier - - + + &Editor &Editeur - + Import New Key From Editor Importer nouvelle cle depuis l'editeur - - + + &Clipboard &Presse papiers - + Import New Key From Clipboard Importer nouvelle cle depuis le presse papiers - + Key Management gestion des cles - + Open Keymanagement Ouvrir le gestionaire des cles - - + + Import Key Importer cles - + Open Import New Key Dialog Ouvrir la fenetre d'import de nouvelle cle - + Crypt Crypt-Toolbar - + Key - + Edit - + Attached files: - + <center>This Application allows you to do simple<br>encryption/decryption of your text-message or file.<br>It's licensed under the GPL v2.0<br><br><b>Developer:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Translation:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru), Viriato (es)<br><br>If you have any questions and/or<br>suggestions, contact us at<br>gpg4usb at cpunk.de</a><br><br>or feel free to meet us in our xmpp-channel:<br>gpg4usb at conference.jabber.ccc.de</center> - + &About &A propos - + Show the application's About box Afficher la fenetre d'information - + Append Selected Key(s) To Text joindre les cles selectionees au texte - + Append The Selected Keys To Text in Editor joindre les cles selectionees au texte dans l'editeur - + &Edit bla - + &Crypt &Crypter - + &Keys &Cles - + &Import Key From... &Importer une cle depuis... - + &View &Affichage - + &Help &Aide - - + + Ready - + Encrypt for: - - + + Application - + Cannot read file %1: %2. - + File loaded - + %1[*] - %2 - + The document has been modified. Do you want to save your changes? Le document a ete modifie. Voulez-vous enregistrer les modifications? - + File Fichier - + Cannot write file %1: %2. Fichier protege en ecriture %1: %2. - + Saved '%1' Fichiers enregistres '%1' - + About A propos @@ -455,27 +445,27 @@ Do you want to save your changes? <center>Cette application vous permet de crypter ou decrypter<br> simplement votre texte-message ou fichier.<br> Logiciel libre v2.0<br> <b>Developpeurs:</b> Bene, Heimer, Juergen, Nils, Ubbo<br><br><b> Traduction:</b><br>Kirill (ru), Axel (fr)<br><br> Si vous avez questions ou propositions, <br>contactez nous sur notre email <br>gpgusb at cpunk.de</a> ou par xmpp-chat <br>gpg4usb at conference.jabber.ccc.de</center> - + Open Key - + Key Files Fichiers des cles - + All Files - + couldn't open file: Fichier non-ouvrable: - + Import Key From... diff --git a/release/ts/gpg4usb_pt_BR.qm b/release/ts/gpg4usb_pt_BR.qm index a0cee1b..9d2cdec 100644 Binary files a/release/ts/gpg4usb_pt_BR.qm and b/release/ts/gpg4usb_pt_BR.qm differ diff --git a/release/ts/gpg4usb_pt_BR.ts b/release/ts/gpg4usb_pt_BR.ts index 6e860e5..0b6bc1b 100644 --- a/release/ts/gpg4usb_pt_BR.ts +++ b/release/ts/gpg4usb_pt_BR.ts @@ -153,12 +153,12 @@ Ctrl+M - + Save the current File as... Salvar o arquivo atual como... - + &Print &Imprimir @@ -167,12 +167,12 @@ Ctrl+I - + Print Document Imprimir Documento - + &Quit Sai&r @@ -181,12 +181,12 @@ Ctrl+R - + Quit Program Sair - + &Paste i used this without accelerator & to avoid confusion with windows native paste (ctrl+v) Colar @@ -196,12 +196,12 @@ Ctrl+V - + Paste Text From Clipboard Colar Texto da Área de Transferência - + Cu&t i used this without accelerator & to avoid confusion with native windows cut ctrl+x Recortar @@ -211,12 +211,12 @@ Ctrl+X - + Cut the current selection's contents to the clipboard Recortar a seleção atual para a Área de Transferência - + &Copy &Copiar @@ -225,102 +225,100 @@ Ctrl+C - + Copy the current selection's contents to the clipboard Copiar a seleção para a área de transferência - + Select &All Selecionar &Tudo - + Select the whole text Selecionar o texto completo - + Se&ttings Con&figurações - + Open settings dialog Abre janela de configurações - + &Encrypt &Encriptar - Ctrl+E - Ctrl+E + Ctrl+E - + Encrypt Message Encriptar Mensagem - + &Decrypt &Decriptar - Ctrl+D - Ctrl+D + Ctrl+D - + Decrypt Message Decriptar Mensagem - + &File Encryption Encriptar &Arquivo - + Encrypt/Decrypt File Encriptar/Decriptar Arquivo - + Import New Key From File Importar Nova Chave do Arquivo - + Import New Key From Editor Importar Nova Chave do Editor - + Key Management Gerenciar Chaves - + Open Keymanagement Abrir Gerenciador de Chaves - + Open Import New Key Dialog Abrir Diálogo de Importação de Nova Chave - + &About &Sobre - + Show the application's About box Exibe a caixa 'sobre' @@ -329,115 +327,115 @@ <center>Esse programa serve para encriptar e<br>decriptar mensagens de texto ou arquivos.<br>E é liberado sob a licença GPL v2.0<br><br><b>Desenvolvedores:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Tradução:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru)<br><br>Caso tenha dúvidas e/ou sugestões,<br>envie uma mensagem para<br>gpg4usb at cpunk.de</a><br><br>ou nos encontre no nosso canal xmpp:<br>gpg4usb at conference.jabber.ccc.de</center> - - - + + + &File &Arquivo - + &Edit E&ditar - + &Help A&juda - + File Arquivo - + Edit Editar - + Append Selected Key(s) To Text Anexar Chaves Marcadas no Texto - + Append The Selected Keys To Text in Editor Anexar Chaves Marcadas no Texto do Editor - + &Keys &Chaves - + &Import Key From... - + &View E&xibir - + Key Chave - - + + Ready Pronto - + Encrypt for: Encriptar para: - + Attached files: - - + + Application Aplicação - + Cannot read file %1: %2. Não leu o arquivo %1: %2. - + File loaded Arquivo carregado - + %1[*] - %2 %1[*] - %2 - + The document has been modified. Do you want to save your changes? O documento foi alterado. Deseja salvar as alterações? - + Cannot write file %1: %2. Não escreveu o arquivo %1: %2. - + Saved '%1' i used inverse order because its more natural speak in this way '%1' salvo. @@ -447,70 +445,70 @@ Deseja salvar as alterações? <center> Este aplicativo permite a encriptação/decriptação<br>simplificada das suas mensagens de texto ou arquivos.<br>E é liberado sob licença GPL-V2.0<br><br>Desenvolvedores:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Tradução:</b><br>Krill(ru)<br>Alessandro Benevenuto (pt-br)<br><br>Caso tenha dúvidas e/ou sugestões, entre em<br>contatoatravés de gpg4usb at cpunk.de</a><br><br>ou no canal xmpp<br>gpg4usb at conference.jabber.ccc.de</center> - + Open Key Abrir a Chave - + Key Files Arquivos de Chaves - + All Files Todos os Arquivos - + couldn't open file: Não pode abrir o arquivo: - - + + &Editor &Editor - - + + &Clipboard Área de &Transferência - + Import New Key From Clipboard Importar Nova Chave da Área de Transferência - - + + Import Key Importar Chave - + &Crypt &Encriptar - + Crypt Encriptar - + About Sobre - + <center>This Application allows you to do simple<br>encryption/decryption of your text-message or file.<br>It's licensed under the GPL v2.0<br><br><b>Developer:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Translation:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru), Viriato (es)<br><br>If you have any questions and/or<br>suggestions, contact us at<br>gpg4usb at cpunk.de</a><br><br>or feel free to meet us in our xmpp-channel:<br>gpg4usb at conference.jabber.ccc.de</center> - + Import Key From... Importar Chave de... diff --git a/release/ts/gpg4usb_ru.qm b/release/ts/gpg4usb_ru.qm index 586f244..8bc6b1f 100644 Binary files a/release/ts/gpg4usb_ru.qm and b/release/ts/gpg4usb_ru.qm differ diff --git a/release/ts/gpg4usb_ru.ts b/release/ts/gpg4usb_ru.ts index dd9cc48..bce64f4 100644 --- a/release/ts/gpg4usb_ru.ts +++ b/release/ts/gpg4usb_ru.ts @@ -145,335 +145,325 @@ Сохранить &как - + Save the current File as... Сохранить файл как... - + &Print &Печать - + Print Document Печать - + &Quit Вы&йти - + Quit Program Завершить программу - + &Paste &Вставить - + Paste Text From Clipboard Вставить текст из Буфера Обмена - + Cu&t &Вырезать - + Cut the current selection's contents to the clipboard Вырезать выделенные элементы в Буфер Обмена - + &Copy &Копировать - + Copy the current selection's contents to the clipboard Копировать выделенные элементы в Буфер Обмена - + Select &All В&ыделить всё - + Select the whole text Выделить весь текст - + Open settings dialog Открыть окно настроек - + &Encrypt З&ашифровать - - Ctrl+E - - - - + Encrypt Message Зашифровать текст - + &Decrypt Расшифро&вать - - Ctrl+D - - - - + Decrypt Message Расшифровать текст - + Import New Key From File Импорт нового ключа из файла - + Import New Key From Editor Импорт нового ключа из редактора - + &About &О программе - + Show the application's About box Показать инфо о программе - - - + + + &File Ф&айл - + &Edit &Правка - + &Help &Справка - + File Файл - + Edit Правка - + Se&ttings &Настройки - + &File Encryption Шифрование &файлов - + Encrypt/Decrypt File За-/Расшифровать файл - + Key Management Менеджер ключей - + Open Keymanagement Открыть Менеджер ключей - + Open Import New Key Dialog Открыть окно импорта ключей - + Append Selected Key(s) To Text Добавить выбранн. ключ(и) к тексту - + Append The Selected Keys To Text in Editor Добавить выбранный ключ к тексту в редакторе - + &Keys &Ключи - + &Import Key From... &Импорт ключа из... - + &View &Вид - + Key Ключ - - + + Ready Готово - + Encrypt for: Зашифровать для: - + Attached files: - - + + Application Приложение - + Cannot read file %1: %2. Не удалось прочесть файл %1: %2. - + File loaded Файл загружен - + %1[*] - %2 - + The document has been modified. Do you want to save your changes? Документ был редактирован. Сохранить изменения? - + Cannot write file %1: %2. Не удалось записать файл %1: %2. - + Saved '%1' "%1" сохранён - + <center>This Application allows you to do simple<br>encryption/decryption of your text-message or file.<br>It's licensed under the GPL v2.0<br><br><b>Developer:</b><br>Bene, Heimer, Juergen, Nils, Ubbo<br><br><b>Translation:</b><br>Alessandro (pt_br), Alex (fr), Kirill (ru), Viriato (es)<br><br>If you have any questions and/or<br>suggestions, contact us at<br>gpg4usb at cpunk.de</a><br><br>or feel free to meet us in our xmpp-channel:<br>gpg4usb at conference.jabber.ccc.de</center> - + Open Key Открыть ключ - + couldn't open file: Не удалось открыть файл: - - + + &Editor Окна &редактора - - + + &Clipboard &Буфера Обмена - + Import New Key From Clipboard Импорт нового ключа из Буфера Обмена - - + + Import Key Импорт ключа - + &Crypt &Шифрование - + Crypt Шифрование - + About О программе - + Key Files Файлы ключей - + All Files - + Import Key From... Импорт ключа из... -- cgit v1.2.3