aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-02-19 17:28:06 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2012-02-19 17:28:06 +0000
commitcc966de2e9f6781e2073ee9538bf97609a4aa20f (patch)
tree79cf294cbb4ebf1383d5394466d8fa481333d3c7
parentalso disable close action, when no tab is opened and little cleanup (diff)
downloadgpg4usb-cc966de2e9f6781e2073ee9538bf97609a4aa20f.tar.gz
gpg4usb-cc966de2e9f6781e2073ee9538bf97609a4aa20f.zip
show/hide steganography menu after closing settings
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@813 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r--mainwindow.cpp20
-rw-r--r--release/ts/gpg4usb_de.ts196
-rw-r--r--release/ts/gpg4usb_en.ts196
-rw-r--r--release/ts/gpg4usb_my.ts196
-rw-r--r--release/ts/gpg4usb_pt_BR.ts196
-rw-r--r--release/ts/gpg4usb_ru.ts196
-rw-r--r--release/ts/gpg4usb_vi.ts196
7 files changed, 604 insertions, 592 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
index 63a1a16..84da541 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -455,10 +455,13 @@ void MainWindow::createMenus()
importKeyMenu->addAction(keyMgmt->importKeyFromKeyServerAct);
keyMenu->addAction(openKeyManagementAct);
- if(settings.value("advanced/steganography").toBool()) {
- steganoMenu = menuBar()->addMenu(tr("&Steganography"));
- steganoMenu->addAction(cutPgpHeaderAct);
- steganoMenu->addAction(addPgpHeaderAct);
+ steganoMenu = menuBar()->addMenu(tr("&Steganography"));
+ steganoMenu->addAction(cutPgpHeaderAct);
+ steganoMenu->addAction(addPgpHeaderAct);
+
+ // Hide menu, when steganography menu is disabled in settings
+ if(!settings.value("advanced/steganography").toBool()) {
+ this->menuBar()->removeAction(steganoMenu->menuAction());
}
viewMenu = menuBar()->addMenu(tr("&View"));
@@ -927,6 +930,7 @@ void MainWindow::openSettingsDialog()
importButton->setToolButtonStyle(buttonStyle);
fileEncButton->setToolButtonStyle(buttonStyle);
+ // Mime-settings
if(settings.value("mime/parseMime").toBool()) {
createAttachmentDock();
} else if(attachmentDockCreated) {
@@ -940,6 +944,14 @@ void MainWindow::openSettingsDialog()
qApp->exit(RESTART_CODE);
}
}
+
+ // steganography hide/show
+ if(!settings.value("advanced/steganography").toBool()) {
+ this->menuBar()->removeAction(steganoMenu->menuAction());
+ } else {
+ this->menuBar()->insertAction(viewMenu->menuAction(), steganoMenu->menuAction());
+ }
+
}
void MainWindow::cleanDoubleLinebreaks()
diff --git a/release/ts/gpg4usb_de.ts b/release/ts/gpg4usb_de.ts
index 7f7fe57..34109bc 100644
--- a/release/ts/gpg4usb_de.ts
+++ b/release/ts/gpg4usb_de.ts
@@ -1781,488 +1781,488 @@ Beschleunugen(z.B. Internet-surfen, Musik hören, ...)</translation>
<context>
<name>MainWindow</name>
<message>
- <location filename="../../mainwindow.cpp" line="154"/>
+ <location filename="../../mainwindow.cpp" line="152"/>
<source>&amp;New</source>
<translation>&amp;Neu</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="160"/>
+ <location filename="../../mainwindow.cpp" line="158"/>
<source>Open a new file</source>
<translation>Öffne eine neue Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="163"/>
+ <location filename="../../mainwindow.cpp" line="161"/>
<source>&amp;Open...</source>
<translation>Ö&amp;ffnen...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="166"/>
+ <location filename="../../mainwindow.cpp" line="164"/>
<source>Open an existing file</source>
<translation>Öffen Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="169"/>
+ <location filename="../../mainwindow.cpp" line="167"/>
<source>&amp;Save</source>
<translation>&amp;Speichern</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="172"/>
+ <location filename="../../mainwindow.cpp" line="170"/>
<source>Save the current File</source>
<translation>Speichere Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="175"/>
+ <location filename="../../mainwindow.cpp" line="173"/>
<source>Save &amp;As</source>
<translation>Speichern &amp;unter</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="178"/>
+ <location filename="../../mainwindow.cpp" line="176"/>
<source>Save the current File as...</source>
<translation>Speichere aktuelle Datei als....</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="181"/>
+ <location filename="../../mainwindow.cpp" line="179"/>
<source>&amp;Print</source>
<translation>&amp;Drucken</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="184"/>
+ <location filename="../../mainwindow.cpp" line="182"/>
<source>Print Document</source>
<translation>Drucken</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="187"/>
- <location filename="../../mainwindow.cpp" line="602"/>
+ <location filename="../../mainwindow.cpp" line="185"/>
+ <location filename="../../mainwindow.cpp" line="640"/>
<source>&amp;Close</source>
<translation>&amp;Schliessen</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="189"/>
+ <location filename="../../mainwindow.cpp" line="187"/>
<source>Close file</source>
<translation>Schliesse die Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="192"/>
+ <location filename="../../mainwindow.cpp" line="190"/>
<source>&amp;Quit</source>
<translation>&amp;Beenden</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="195"/>
+ <location filename="../../mainwindow.cpp" line="193"/>
<source>Quit Program</source>
<translation>Beende das Programm</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="200"/>
+ <location filename="../../mainwindow.cpp" line="198"/>
<source>&amp;Undo</source>
<translation>&amp;Rückgängig</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="202"/>
+ <location filename="../../mainwindow.cpp" line="200"/>
<source>Undo Last Edit Action</source>
<translation>Mache die letzte Aktion rückgängig</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="205"/>
+ <location filename="../../mainwindow.cpp" line="203"/>
<source>&amp;Redo</source>
<translation>&amp;Wiederherstellen</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="207"/>
+ <location filename="../../mainwindow.cpp" line="205"/>
<source>Redo Last Edit Action</source>
<translation>Stelle die letzte Editieraktion wieder her</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="210"/>
+ <location filename="../../mainwindow.cpp" line="208"/>
<source>Zoom In</source>
<translation>Hereinzoomen</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="214"/>
+ <location filename="../../mainwindow.cpp" line="212"/>
<source>Zoom Out</source>
<translation>Herauszoomen</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="218"/>
+ <location filename="../../mainwindow.cpp" line="216"/>
<source>&amp;Paste</source>
<translation>E&amp;infügen</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="221"/>
+ <location filename="../../mainwindow.cpp" line="219"/>
<source>Paste Text From Clipboard</source>
<translation>Füge Text aus der Zwischenablage ein</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="224"/>
+ <location filename="../../mainwindow.cpp" line="222"/>
<source>Cu&amp;t</source>
<translation>&amp;Ausschneiden</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="227"/>
+ <location filename="../../mainwindow.cpp" line="225"/>
<source>Cut the current selection&apos;s contents to the clipboard</source>
<translation>aktuelle Auswahl ausschneiden und in Zwischenablage einfügen</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="231"/>
+ <location filename="../../mainwindow.cpp" line="229"/>
<source>&amp;Copy</source>
<translation>&amp;Kopieren</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="234"/>
+ <location filename="../../mainwindow.cpp" line="232"/>
<source>Copy the current selection&apos;s contents to the clipboard</source>
<translation>aktuelle Auswahl in Zwischenablage kopieren</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="238"/>
+ <location filename="../../mainwindow.cpp" line="236"/>
<source>&amp;Quote</source>
<translation>&amp;Kommentiere</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="240"/>
+ <location filename="../../mainwindow.cpp" line="238"/>
<source>Quote whole text</source>
<translation>Kommentiere den gesamten Text</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="243"/>
+ <location filename="../../mainwindow.cpp" line="241"/>
<source>Select &amp;All</source>
<translation>Alles &amp;markieren</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="246"/>
+ <location filename="../../mainwindow.cpp" line="244"/>
<source>Select the whole text</source>
<translation>Den ganzen Text markieren</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="249"/>
+ <location filename="../../mainwindow.cpp" line="247"/>
<source>Remove &amp;spacing</source>
<translation>Entferne &amp;Zeilenumbrüche</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="252"/>
+ <location filename="../../mainwindow.cpp" line="250"/>
<source>Remove double linebreaks, e.g. in pasted text from webmailer</source>
<translation>Entferne doppelte Zeilenumbrüche, z.B. bei eingefügtem Text aus einem Webmailer</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="255"/>
+ <location filename="../../mainwindow.cpp" line="253"/>
<source>Se&amp;ttings</source>
<translation>Ei&amp;nstellungen</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="256"/>
+ <location filename="../../mainwindow.cpp" line="254"/>
<source>Open settings dialog</source>
<translation>Öffne den Einstellungsdialog</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="262"/>
+ <location filename="../../mainwindow.cpp" line="260"/>
<source>&amp;Encrypt</source>
<translation>&amp;Verschlüsseln</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="265"/>
+ <location filename="../../mainwindow.cpp" line="263"/>
<source>Encrypt Message</source>
<translation>Verschlüssele den Text</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="268"/>
+ <location filename="../../mainwindow.cpp" line="266"/>
<source>&amp;Decrypt</source>
<translation>&amp;Entschlüsseln</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="271"/>
+ <location filename="../../mainwindow.cpp" line="269"/>
<source>Decrypt Message</source>
<translation>Entschlüssele den Text</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="274"/>
+ <location filename="../../mainwindow.cpp" line="272"/>
<source>&amp;File Encryption</source>
<translation>&amp;Datei Verschlüsselung</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="276"/>
+ <location filename="../../mainwindow.cpp" line="274"/>
<source>Encrypt/Decrypt File</source>
<translation>Ver-/Entschlüssele Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="282"/>
+ <location filename="../../mainwindow.cpp" line="280"/>
<source>&amp;Encrypt File</source>
<translation>&amp;Verschlüssele Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="284"/>
+ <location filename="../../mainwindow.cpp" line="282"/>
<source>Encrypt File</source>
<translation>Verschlüssele Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="287"/>
+ <location filename="../../mainwindow.cpp" line="285"/>
<source>&amp;Decrypt File</source>
<translation>&amp;Entschlüssele Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="289"/>
+ <location filename="../../mainwindow.cpp" line="287"/>
<source>Decrypt File</source>
<translation>Entschlüssele Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="292"/>
+ <location filename="../../mainwindow.cpp" line="290"/>
<source>&amp;Sign</source>
<translation>&amp;Signiere</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="295"/>
+ <location filename="../../mainwindow.cpp" line="293"/>
<source>Sign Message</source>
<translation>Signiere die Nachricht</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="298"/>
+ <location filename="../../mainwindow.cpp" line="296"/>
<source>&amp;Verify</source>
<translation>&amp;Verifiziere</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="301"/>
+ <location filename="../../mainwindow.cpp" line="299"/>
<source>Verify Message</source>
<translation>Verifiziere die Nachricht</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="307"/>
+ <location filename="../../mainwindow.cpp" line="305"/>
<source>&amp;Editor</source>
<translation>&amp;Editor</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="309"/>
+ <location filename="../../mainwindow.cpp" line="307"/>
<source>Import New Key From Editor</source>
<translation>Importiere einen neuen Schlüssel aus dem Textfeld</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="312"/>
+ <location filename="../../mainwindow.cpp" line="310"/>
<source>Manage &amp;keys</source>
<translation>Schlüssel&amp;verwaltung</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="314"/>
+ <location filename="../../mainwindow.cpp" line="312"/>
<source>Open Keymanagement</source>
<translation>Öffne die Schlüsselverwaltung</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="319"/>
+ <location filename="../../mainwindow.cpp" line="317"/>
<source>&amp;About</source>
<translation>&amp;Info</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="321"/>
+ <location filename="../../mainwindow.cpp" line="319"/>
<source>Show the application&apos;s About box</source>
<translation>Zeige die Information über die Anwendung</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="324"/>
+ <location filename="../../mainwindow.cpp" line="322"/>
<source>Integrated Help</source>
<translation>Integrierte Hilfe</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="325"/>
+ <location filename="../../mainwindow.cpp" line="323"/>
<source>Open integrated Help</source>
<translation>Öffne die integrierte Hilfe</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="328"/>
+ <location filename="../../mainwindow.cpp" line="326"/>
<source>Online &amp;Tutorials</source>
<translation>Online &amp;Hilfe</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="329"/>
+ <location filename="../../mainwindow.cpp" line="327"/>
<source>Open Online Tutorials</source>
<translation>Öffne die Online Hilfe</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="332"/>
+ <location filename="../../mainwindow.cpp" line="330"/>
<source>Translate gpg4usb</source>
<translation>Übersetze gpg4usb</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="333"/>
+ <location filename="../../mainwindow.cpp" line="331"/>
<source>Translate gpg4usb yourself</source>
<translation>Übersetze gpg4usb selbst</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="336"/>
+ <location filename="../../mainwindow.cpp" line="334"/>
<source>Open &amp;Wizard</source>
<translation>Öffne &amp;Assistenten</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="337"/>
+ <location filename="../../mainwindow.cpp" line="335"/>
<source>Open the wizard</source>
<translation>Öffne Assistenten für erste Schritte</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="342"/>
+ <location filename="../../mainwindow.cpp" line="340"/>
<source>Append Selected Key(s) To Text</source>
<translation>Hänge die ausgewählten Schlüssel an den Text an</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="343"/>
+ <location filename="../../mainwindow.cpp" line="341"/>
<source>Append The Selected Keys To Text in Editor</source>
<translation>Hänge den gewählten Schhlüssel an den Text im Editor an</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="346"/>
+ <location filename="../../mainwindow.cpp" line="344"/>
<source>Copy EMail-address</source>
<translation>Kopiere EMail-Adresse</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="347"/>
+ <location filename="../../mainwindow.cpp" line="345"/>
<source>Copy selected EMailaddress to clipboard</source>
<translation>Kopiere die ausgewählten EMail-Adresse in die Zwischenablage</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="351"/>
+ <location filename="../../mainwindow.cpp" line="349"/>
<source>Show Keydetails</source>
<translation>Eigenschaften anzeigen</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="352"/>
+ <location filename="../../mainwindow.cpp" line="350"/>
<source>Show Details for this Key</source>
<translation>Details zu diesem Schlüssel anzeigen</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="370"/>
+ <location filename="../../mainwindow.cpp" line="410"/>
<source>&amp;File</source>
<translation>&amp;Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="382"/>
+ <location filename="../../mainwindow.cpp" line="422"/>
<source>&amp;Edit</source>
<translation>&amp;Bearbeiten</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="398"/>
+ <location filename="../../mainwindow.cpp" line="438"/>
<source>&amp;Crypt</source>
<translation>&amp;Crypt</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="408"/>
+ <location filename="../../mainwindow.cpp" line="448"/>
<source>&amp;Keys</source>
<translation>Sch&amp;lüssel</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="409"/>
+ <location filename="../../mainwindow.cpp" line="449"/>
<source>&amp;Import Key From...</source>
<translation>&amp;Importiere Schlüssel aus...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="419"/>
+ <location filename="../../mainwindow.cpp" line="458"/>
<source>&amp;Steganography</source>
<translation>&amp;Steganografie</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="420"/>
+ <location filename="../../mainwindow.cpp" line="365"/>
<source>Remove PGP Header</source>
<translation>Entferne PGP Header</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="422"/>
+ <location filename="../../mainwindow.cpp" line="368"/>
<source>Add PGP Header</source>
<translation>Füge PGP Header hinzu</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="428"/>
+ <location filename="../../mainwindow.cpp" line="467"/>
<source>&amp;View</source>
<translation>&amp;Ansicht</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="430"/>
+ <location filename="../../mainwindow.cpp" line="469"/>
<source>&amp;Help</source>
<translation>&amp;Hilfe</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="443"/>
+ <location filename="../../mainwindow.cpp" line="482"/>
<source>File</source>
<translation>Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="451"/>
+ <location filename="../../mainwindow.cpp" line="490"/>
<source>Crypt</source>
<translation>Crypt</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="460"/>
+ <location filename="../../mainwindow.cpp" line="499"/>
<source>Key</source>
<translation>Schlüssel</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="465"/>
+ <location filename="../../mainwindow.cpp" line="504"/>
<source>Edit</source>
<translation>Bearbeiten</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="472"/>
+ <location filename="../../mainwindow.cpp" line="511"/>
<source>Special edit</source>
<translation>Spezial Bearbeiten</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="483"/>
+ <location filename="../../mainwindow.cpp" line="522"/>
<source>Import key from...</source>
<translation>Importiere Schlüssel aus...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="484"/>
+ <location filename="../../mainwindow.cpp" line="523"/>
<source>Import key</source>
<translation>Importiere Schlüssel</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="495"/>
+ <location filename="../../mainwindow.cpp" line="534"/>
<source>Encrypt or decrypt File</source>
<translation>Verschlüssele oder entschlüssele Datei</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="496"/>
+ <location filename="../../mainwindow.cpp" line="535"/>
<source>File..</source>
<translation>Datei..</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="514"/>
+ <location filename="../../mainwindow.cpp" line="553"/>
<source>Ready</source>
<translation>Fertig</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="522"/>
+ <location filename="../../mainwindow.cpp" line="561"/>
<source>Encrypt for:</source>
<translation>Verschlüssele für:</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="541"/>
+ <location filename="../../mainwindow.cpp" line="580"/>
<source>Attached files:</source>
<translation>Angehängte Dateien:</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="582"/>
+ <location filename="../../mainwindow.cpp" line="620"/>
<source>About </source>
<translation>Über</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="585"/>
+ <location filename="../../mainwindow.cpp" line="623"/>
<source>&lt;center&gt;This application allows simple encryption &lt;br&gt;and decryption of text messages or files.&lt;br&gt;It&apos;s licensed under the GPL v3&lt;br&gt;&lt;br&gt;&lt;b&gt;Developer:&lt;/b&gt;&lt;br&gt;Bene, Heimer, Juergen, Nils, Ubbo&lt;br&gt;&lt;br&gt;&lt;b&gt;Translation:&lt;/b&gt;&lt;br&gt;Viriato/Phol (es), &lt;br&gt;Serse (it), Russell (my),&lt;br&gt;Alessandro (pt_br), Kirill (ru), Tom (vi)&lt;br&gt;&lt;br&gt;If you have any questions or suggestions have a look&lt;br/&gt;at our &lt;a href=&quot;http://gpg4usb.cpunk.de/contact.php&quot;&gt;contact page&lt;/a&gt; or send a mail to our&lt;br/&gt; mailing list at &lt;a href=&quot;mailto:[email protected]&quot;&gt;[email protected]&lt;/a&gt;.</source>
<translation>&lt;center&gt;Diese Anwendung erlaubt es, auf einfache &lt;br&gt;Art Texte und Dateien zu ver- und entschlüsseln. &lt;br&gt;Sie steht unter der GPL v3.0&lt;br&gt;&lt;br&gt;&lt;b&gt;Entwickler:&lt;/b&gt;&lt;br&gt;Bene, Heimer, Juergen, Nils, Ubbo&lt;br&gt;&lt;br&gt;&lt;b&gt;Übersetzung:&lt;/b&gt;&lt;br&gt;Viriato/Phol (es), &lt;br&gt;Serse (it), Russell (my),&lt;br&gt;Alessandro (pt_br), Kirill (ru), Tom (vi) &lt;br&gt;&lt;br&gt;Falls sie Fragen und/oder Vorschläge haben,&lt;br&gt;schauen Sie auf unsere&lt;br&gt;&lt;a href=&quot;http://gpg4usb.cpunk.de/contact.php&quot;&gt;Kontaktseite&lt;/a&gt; &lt;br&gt;oder senden Sie eine Email an unsere Mailingliste&lt;br&gt;unter &lt;a href=&quot;mailto:[email protected]&quot;&gt;[email protected]&lt;/a&gt;.</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="597"/>
+ <location filename="../../mainwindow.cpp" line="635"/>
<source>&lt;br&gt;&lt;br&gt; Built with Qt </source>
<translation>&lt;br&gt;&lt;br&gt;Erstellt mit Qt </translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="598"/>
+ <location filename="../../mainwindow.cpp" line="636"/>
<source> and GPGME </source>
<translation> und GPGME </translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="703"/>
+ <location filename="../../mainwindow.cpp" line="741"/>
<source>There is one unencrypted file in attachment folder</source>
<translation>Es gibt unverschlüsselte Dateien im Attachment Ordner</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source>There are </source>
<translation>Es gibt</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source> unencrypted files in attachment folder</source>
<translation>unverschlüsselte Dateien im Attachment Ordner</translation>
</message>
diff --git a/release/ts/gpg4usb_en.ts b/release/ts/gpg4usb_en.ts
index 63ef0c2..c9003d4 100644
--- a/release/ts/gpg4usb_en.ts
+++ b/release/ts/gpg4usb_en.ts
@@ -1147,488 +1147,488 @@ Weak -&gt; Strong</source>
<context>
<name>MainWindow</name>
<message>
- <location filename="../../mainwindow.cpp" line="154"/>
+ <location filename="../../mainwindow.cpp" line="152"/>
<source>&amp;New</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="160"/>
+ <location filename="../../mainwindow.cpp" line="158"/>
<source>Open a new file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="163"/>
+ <location filename="../../mainwindow.cpp" line="161"/>
<source>&amp;Open...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="166"/>
+ <location filename="../../mainwindow.cpp" line="164"/>
<source>Open an existing file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="169"/>
+ <location filename="../../mainwindow.cpp" line="167"/>
<source>&amp;Save</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="172"/>
+ <location filename="../../mainwindow.cpp" line="170"/>
<source>Save the current File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="175"/>
+ <location filename="../../mainwindow.cpp" line="173"/>
<source>Save &amp;As</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="178"/>
+ <location filename="../../mainwindow.cpp" line="176"/>
<source>Save the current File as...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="181"/>
+ <location filename="../../mainwindow.cpp" line="179"/>
<source>&amp;Print</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="184"/>
+ <location filename="../../mainwindow.cpp" line="182"/>
<source>Print Document</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="187"/>
- <location filename="../../mainwindow.cpp" line="602"/>
+ <location filename="../../mainwindow.cpp" line="185"/>
+ <location filename="../../mainwindow.cpp" line="640"/>
<source>&amp;Close</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="189"/>
+ <location filename="../../mainwindow.cpp" line="187"/>
<source>Close file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="192"/>
+ <location filename="../../mainwindow.cpp" line="190"/>
<source>&amp;Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="195"/>
+ <location filename="../../mainwindow.cpp" line="193"/>
<source>Quit Program</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="200"/>
+ <location filename="../../mainwindow.cpp" line="198"/>
<source>&amp;Undo</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="202"/>
+ <location filename="../../mainwindow.cpp" line="200"/>
<source>Undo Last Edit Action</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="205"/>
+ <location filename="../../mainwindow.cpp" line="203"/>
<source>&amp;Redo</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="207"/>
+ <location filename="../../mainwindow.cpp" line="205"/>
<source>Redo Last Edit Action</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="210"/>
+ <location filename="../../mainwindow.cpp" line="208"/>
<source>Zoom In</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="214"/>
+ <location filename="../../mainwindow.cpp" line="212"/>
<source>Zoom Out</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="218"/>
+ <location filename="../../mainwindow.cpp" line="216"/>
<source>&amp;Paste</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="221"/>
+ <location filename="../../mainwindow.cpp" line="219"/>
<source>Paste Text From Clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="224"/>
+ <location filename="../../mainwindow.cpp" line="222"/>
<source>Cu&amp;t</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="227"/>
+ <location filename="../../mainwindow.cpp" line="225"/>
<source>Cut the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="231"/>
+ <location filename="../../mainwindow.cpp" line="229"/>
<source>&amp;Copy</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="234"/>
+ <location filename="../../mainwindow.cpp" line="232"/>
<source>Copy the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="238"/>
+ <location filename="../../mainwindow.cpp" line="236"/>
<source>&amp;Quote</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="240"/>
+ <location filename="../../mainwindow.cpp" line="238"/>
<source>Quote whole text</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="243"/>
+ <location filename="../../mainwindow.cpp" line="241"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="246"/>
+ <location filename="../../mainwindow.cpp" line="244"/>
<source>Select the whole text</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="249"/>
+ <location filename="../../mainwindow.cpp" line="247"/>
<source>Remove &amp;spacing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="252"/>
+ <location filename="../../mainwindow.cpp" line="250"/>
<source>Remove double linebreaks, e.g. in pasted text from webmailer</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="255"/>
+ <location filename="../../mainwindow.cpp" line="253"/>
<source>Se&amp;ttings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="256"/>
+ <location filename="../../mainwindow.cpp" line="254"/>
<source>Open settings dialog</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="262"/>
+ <location filename="../../mainwindow.cpp" line="260"/>
<source>&amp;Encrypt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="265"/>
+ <location filename="../../mainwindow.cpp" line="263"/>
<source>Encrypt Message</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="268"/>
+ <location filename="../../mainwindow.cpp" line="266"/>
<source>&amp;Decrypt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="271"/>
+ <location filename="../../mainwindow.cpp" line="269"/>
<source>Decrypt Message</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="274"/>
+ <location filename="../../mainwindow.cpp" line="272"/>
<source>&amp;File Encryption</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="276"/>
+ <location filename="../../mainwindow.cpp" line="274"/>
<source>Encrypt/Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="282"/>
+ <location filename="../../mainwindow.cpp" line="280"/>
<source>&amp;Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="284"/>
+ <location filename="../../mainwindow.cpp" line="282"/>
<source>Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="287"/>
+ <location filename="../../mainwindow.cpp" line="285"/>
<source>&amp;Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="289"/>
+ <location filename="../../mainwindow.cpp" line="287"/>
<source>Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="292"/>
+ <location filename="../../mainwindow.cpp" line="290"/>
<source>&amp;Sign</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="295"/>
+ <location filename="../../mainwindow.cpp" line="293"/>
<source>Sign Message</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="298"/>
+ <location filename="../../mainwindow.cpp" line="296"/>
<source>&amp;Verify</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="301"/>
+ <location filename="../../mainwindow.cpp" line="299"/>
<source>Verify Message</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="307"/>
+ <location filename="../../mainwindow.cpp" line="305"/>
<source>&amp;Editor</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="309"/>
+ <location filename="../../mainwindow.cpp" line="307"/>
<source>Import New Key From Editor</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="312"/>
+ <location filename="../../mainwindow.cpp" line="310"/>
<source>Manage &amp;keys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="314"/>
+ <location filename="../../mainwindow.cpp" line="312"/>
<source>Open Keymanagement</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="319"/>
+ <location filename="../../mainwindow.cpp" line="317"/>
<source>&amp;About</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="321"/>
+ <location filename="../../mainwindow.cpp" line="319"/>
<source>Show the application&apos;s About box</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="324"/>
+ <location filename="../../mainwindow.cpp" line="322"/>
<source>Integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="325"/>
+ <location filename="../../mainwindow.cpp" line="323"/>
<source>Open integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="328"/>
+ <location filename="../../mainwindow.cpp" line="326"/>
<source>Online &amp;Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="329"/>
+ <location filename="../../mainwindow.cpp" line="327"/>
<source>Open Online Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="332"/>
+ <location filename="../../mainwindow.cpp" line="330"/>
<source>Translate gpg4usb</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="333"/>
+ <location filename="../../mainwindow.cpp" line="331"/>
<source>Translate gpg4usb yourself</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="336"/>
+ <location filename="../../mainwindow.cpp" line="334"/>
<source>Open &amp;Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="337"/>
+ <location filename="../../mainwindow.cpp" line="335"/>
<source>Open the wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="342"/>
+ <location filename="../../mainwindow.cpp" line="340"/>
<source>Append Selected Key(s) To Text</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="343"/>
+ <location filename="../../mainwindow.cpp" line="341"/>
<source>Append The Selected Keys To Text in Editor</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="346"/>
+ <location filename="../../mainwindow.cpp" line="344"/>
<source>Copy EMail-address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="347"/>
+ <location filename="../../mainwindow.cpp" line="345"/>
<source>Copy selected EMailaddress to clipboard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="351"/>
+ <location filename="../../mainwindow.cpp" line="349"/>
<source>Show Keydetails</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="352"/>
+ <location filename="../../mainwindow.cpp" line="350"/>
<source>Show Details for this Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="370"/>
+ <location filename="../../mainwindow.cpp" line="410"/>
<source>&amp;File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="382"/>
+ <location filename="../../mainwindow.cpp" line="422"/>
<source>&amp;Edit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="398"/>
+ <location filename="../../mainwindow.cpp" line="438"/>
<source>&amp;Crypt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="408"/>
+ <location filename="../../mainwindow.cpp" line="448"/>
<source>&amp;Keys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="409"/>
+ <location filename="../../mainwindow.cpp" line="449"/>
<source>&amp;Import Key From...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="419"/>
+ <location filename="../../mainwindow.cpp" line="458"/>
<source>&amp;Steganography</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="420"/>
+ <location filename="../../mainwindow.cpp" line="365"/>
<source>Remove PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="422"/>
+ <location filename="../../mainwindow.cpp" line="368"/>
<source>Add PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="428"/>
+ <location filename="../../mainwindow.cpp" line="467"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="430"/>
+ <location filename="../../mainwindow.cpp" line="469"/>
<source>&amp;Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="443"/>
+ <location filename="../../mainwindow.cpp" line="482"/>
<source>File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="451"/>
+ <location filename="../../mainwindow.cpp" line="490"/>
<source>Crypt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="460"/>
+ <location filename="../../mainwindow.cpp" line="499"/>
<source>Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="465"/>
+ <location filename="../../mainwindow.cpp" line="504"/>
<source>Edit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="472"/>
+ <location filename="../../mainwindow.cpp" line="511"/>
<source>Special edit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="483"/>
+ <location filename="../../mainwindow.cpp" line="522"/>
<source>Import key from...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="484"/>
+ <location filename="../../mainwindow.cpp" line="523"/>
<source>Import key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="495"/>
+ <location filename="../../mainwindow.cpp" line="534"/>
<source>Encrypt or decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="496"/>
+ <location filename="../../mainwindow.cpp" line="535"/>
<source>File..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="514"/>
+ <location filename="../../mainwindow.cpp" line="553"/>
<source>Ready</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="522"/>
+ <location filename="../../mainwindow.cpp" line="561"/>
<source>Encrypt for:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="541"/>
+ <location filename="../../mainwindow.cpp" line="580"/>
<source>Attached files:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="582"/>
+ <location filename="../../mainwindow.cpp" line="620"/>
<source>About </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="585"/>
+ <location filename="../../mainwindow.cpp" line="623"/>
<source>&lt;center&gt;This application allows simple encryption &lt;br&gt;and decryption of text messages or files.&lt;br&gt;It&apos;s licensed under the GPL v3&lt;br&gt;&lt;br&gt;&lt;b&gt;Developer:&lt;/b&gt;&lt;br&gt;Bene, Heimer, Juergen, Nils, Ubbo&lt;br&gt;&lt;br&gt;&lt;b&gt;Translation:&lt;/b&gt;&lt;br&gt;Viriato/Phol (es), &lt;br&gt;Serse (it), Russell (my),&lt;br&gt;Alessandro (pt_br), Kirill (ru), Tom (vi)&lt;br&gt;&lt;br&gt;If you have any questions or suggestions have a look&lt;br/&gt;at our &lt;a href=&quot;http://gpg4usb.cpunk.de/contact.php&quot;&gt;contact page&lt;/a&gt; or send a mail to our&lt;br/&gt; mailing list at &lt;a href=&quot;mailto:[email protected]&quot;&gt;[email protected]&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="597"/>
+ <location filename="../../mainwindow.cpp" line="635"/>
<source>&lt;br&gt;&lt;br&gt; Built with Qt </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="598"/>
+ <location filename="../../mainwindow.cpp" line="636"/>
<source> and GPGME </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="703"/>
+ <location filename="../../mainwindow.cpp" line="741"/>
<source>There is one unencrypted file in attachment folder</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source>There are </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source> unencrypted files in attachment folder</source>
<translation type="unfinished"></translation>
</message>
diff --git a/release/ts/gpg4usb_my.ts b/release/ts/gpg4usb_my.ts
index 4c52a11..0931dd7 100644
--- a/release/ts/gpg4usb_my.ts
+++ b/release/ts/gpg4usb_my.ts
@@ -1621,488 +1621,488 @@ Weak -&gt; Strong</source>
<context>
<name>MainWindow</name>
<message>
- <location filename="../../mainwindow.cpp" line="154"/>
+ <location filename="../../mainwindow.cpp" line="152"/>
<source>&amp;New</source>
<translation type="unfinished">အသစ်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="160"/>
+ <location filename="../../mainwindow.cpp" line="158"/>
<source>Open a new file</source>
<translation type="unfinished">ဖိုင်အသစ် ဖွင့်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="163"/>
+ <location filename="../../mainwindow.cpp" line="161"/>
<source>&amp;Open...</source>
<translation type="unfinished">ဖွင့်ရန်...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="166"/>
+ <location filename="../../mainwindow.cpp" line="164"/>
<source>Open an existing file</source>
<translation type="unfinished">ရှိပြီးသား ဖိုင်ကို ဖွင့်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="169"/>
+ <location filename="../../mainwindow.cpp" line="167"/>
<source>&amp;Save</source>
<translation type="unfinished">သိမ်းဆည်းရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="172"/>
+ <location filename="../../mainwindow.cpp" line="170"/>
<source>Save the current File</source>
<translation type="unfinished">လက်ရှိ ဖိုင်ကို သိမ်းဆည်းရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="175"/>
+ <location filename="../../mainwindow.cpp" line="173"/>
<source>Save &amp;As</source>
<translation type="unfinished">သိမ်းဆည်းမဲ့ ပုံစံ</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="178"/>
+ <location filename="../../mainwindow.cpp" line="176"/>
<source>Save the current File as...</source>
<translation type="unfinished">လက်ရှိ ဖိုင်ကို သိမ်းဆည်းမဲ့ ပုံစံ...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="181"/>
+ <location filename="../../mainwindow.cpp" line="179"/>
<source>&amp;Print</source>
<translation type="unfinished">ပရင့်ထုတ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="184"/>
+ <location filename="../../mainwindow.cpp" line="182"/>
<source>Print Document</source>
<translation type="unfinished">မှတ်တမ်းမှတ်ရာကို ပရင့်ထုတ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="187"/>
- <location filename="../../mainwindow.cpp" line="602"/>
+ <location filename="../../mainwindow.cpp" line="185"/>
+ <location filename="../../mainwindow.cpp" line="640"/>
<source>&amp;Close</source>
<translation type="unfinished">ပိတ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="189"/>
+ <location filename="../../mainwindow.cpp" line="187"/>
<source>Close file</source>
<translation type="unfinished">ဖိုင်ကို ပိတ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="192"/>
+ <location filename="../../mainwindow.cpp" line="190"/>
<source>&amp;Quit</source>
<translation type="unfinished">ပိတ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="195"/>
+ <location filename="../../mainwindow.cpp" line="193"/>
<source>Quit Program</source>
<translation type="unfinished">ပရိုဂရမ်ကို ပိတ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="200"/>
+ <location filename="../../mainwindow.cpp" line="198"/>
<source>&amp;Undo</source>
<translation type="unfinished">ပြန်ပြင်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="202"/>
+ <location filename="../../mainwindow.cpp" line="200"/>
<source>Undo Last Edit Action</source>
<translation type="unfinished">နောက်ဆုံး တည်းဖြတ်မှုကို ပြန်ပြင်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="205"/>
+ <location filename="../../mainwindow.cpp" line="203"/>
<source>&amp;Redo</source>
<translation type="unfinished">ပြန်​ဖြည်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="207"/>
+ <location filename="../../mainwindow.cpp" line="205"/>
<source>Redo Last Edit Action</source>
<translation type="unfinished">နောက်ဆုံး လုပ်ဆောင်ချက်ကို ပြန်ဖြည်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="210"/>
+ <location filename="../../mainwindow.cpp" line="208"/>
<source>Zoom In</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="214"/>
+ <location filename="../../mainwindow.cpp" line="212"/>
<source>Zoom Out</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="218"/>
+ <location filename="../../mainwindow.cpp" line="216"/>
<source>&amp;Paste</source>
<translation type="unfinished">ပွားရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="221"/>
+ <location filename="../../mainwindow.cpp" line="219"/>
<source>Paste Text From Clipboard</source>
<translation type="unfinished">Clipboard ထဲက စာသားကို ပွားရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="224"/>
+ <location filename="../../mainwindow.cpp" line="222"/>
<source>Cu&amp;t</source>
<translation type="unfinished">ဖြတ်ထုတ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="227"/>
+ <location filename="../../mainwindow.cpp" line="225"/>
<source>Cut the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished">လက်ရှိ ရွေးချယ်ထားတဲ့ အကြောင်းအရာကို clipboard ထဲကို ဖြတ်ယူရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="231"/>
+ <location filename="../../mainwindow.cpp" line="229"/>
<source>&amp;Copy</source>
<translation type="unfinished">ကော်ပီကူးရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="234"/>
+ <location filename="../../mainwindow.cpp" line="232"/>
<source>Copy the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished">လက်ရှိ ရွေးချယ်ထားတဲ့ အကြောင်းအရာများကို clipboard ထဲ ကော်ပီကူးရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="238"/>
+ <location filename="../../mainwindow.cpp" line="236"/>
<source>&amp;Quote</source>
<translation type="unfinished">ကိုးကားရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="240"/>
+ <location filename="../../mainwindow.cpp" line="238"/>
<source>Quote whole text</source>
<translation type="unfinished">စာသား တခုလုံးကို ကိုးကားရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="243"/>
+ <location filename="../../mainwindow.cpp" line="241"/>
<source>Select &amp;All</source>
<translation type="unfinished">အားလုံးကို ရွေးချယ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="246"/>
+ <location filename="../../mainwindow.cpp" line="244"/>
<source>Select the whole text</source>
<translation type="unfinished">စာသား တခုလုံးကို ရွေးချယ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="249"/>
+ <location filename="../../mainwindow.cpp" line="247"/>
<source>Remove &amp;spacing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="252"/>
+ <location filename="../../mainwindow.cpp" line="250"/>
<source>Remove double linebreaks, e.g. in pasted text from webmailer</source>
<translation type="unfinished">နှစ်ထပ် မျဉ်းကြောင်းကို ဖယ်ရှားရန်၊ ဥပမာ - webmailer ကနေ ပွားယူလိုက်တဲ့ စာသားထဲမှ</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="255"/>
+ <location filename="../../mainwindow.cpp" line="253"/>
<source>Se&amp;ttings</source>
<translation type="unfinished">ချိန်ညှိချက်များ</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="256"/>
+ <location filename="../../mainwindow.cpp" line="254"/>
<source>Open settings dialog</source>
<translation type="unfinished">settings dialog ကို ဖွင့်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="262"/>
+ <location filename="../../mainwindow.cpp" line="260"/>
<source>&amp;Encrypt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="265"/>
+ <location filename="../../mainwindow.cpp" line="263"/>
<source>Encrypt Message</source>
<translation type="unfinished">ပေးစာကို စာဝှက်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="268"/>
+ <location filename="../../mainwindow.cpp" line="266"/>
<source>&amp;Decrypt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="271"/>
+ <location filename="../../mainwindow.cpp" line="269"/>
<source>Decrypt Message</source>
<translation type="unfinished">ပေးစာကို စာဝှက်ဖြည်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="274"/>
+ <location filename="../../mainwindow.cpp" line="272"/>
<source>&amp;File Encryption</source>
<translation type="unfinished">ဖိုင်ကို စာဝှက်ခြင်း</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="276"/>
+ <location filename="../../mainwindow.cpp" line="274"/>
<source>Encrypt/Decrypt File</source>
<translation type="unfinished">ဖိုင်ကို စာဝှက်ရန်/စာဝှက်ဖြည်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="282"/>
+ <location filename="../../mainwindow.cpp" line="280"/>
<source>&amp;Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="284"/>
+ <location filename="../../mainwindow.cpp" line="282"/>
<source>Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="287"/>
+ <location filename="../../mainwindow.cpp" line="285"/>
<source>&amp;Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="289"/>
+ <location filename="../../mainwindow.cpp" line="287"/>
<source>Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="292"/>
+ <location filename="../../mainwindow.cpp" line="290"/>
<source>&amp;Sign</source>
<translation type="unfinished">လက်မှတ်ရေးထိုးရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="295"/>
+ <location filename="../../mainwindow.cpp" line="293"/>
<source>Sign Message</source>
<translation type="unfinished">ပေးစာကို လက်မှတ်ရေးထိုးရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="298"/>
+ <location filename="../../mainwindow.cpp" line="296"/>
<source>&amp;Verify</source>
<translation type="unfinished">အတည်ပြုရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="301"/>
+ <location filename="../../mainwindow.cpp" line="299"/>
<source>Verify Message</source>
<translation type="unfinished">ပေးစာကို အတည်ပြုရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="307"/>
+ <location filename="../../mainwindow.cpp" line="305"/>
<source>&amp;Editor</source>
<translation type="unfinished">အယ်ဒီတာ</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="309"/>
+ <location filename="../../mainwindow.cpp" line="307"/>
<source>Import New Key From Editor</source>
<translation type="unfinished">ကီး အသစ်ကို အယ်ဒီတာကနေ တင်သွင်းရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="312"/>
+ <location filename="../../mainwindow.cpp" line="310"/>
<source>Manage &amp;keys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="314"/>
+ <location filename="../../mainwindow.cpp" line="312"/>
<source>Open Keymanagement</source>
<translation type="unfinished">Keymanagement ကို ဖွင့်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="319"/>
+ <location filename="../../mainwindow.cpp" line="317"/>
<source>&amp;About</source>
<translation type="unfinished">အကြောင်းအရာ</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="321"/>
+ <location filename="../../mainwindow.cpp" line="319"/>
<source>Show the application&apos;s About box</source>
<translation type="unfinished">ဒီလုပ်ငန်းသုံး ဆော့ဗ်ဝဲရဲ့ အကြောင်းအရာ ဇယားကို ဖေါ်ပြရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="324"/>
+ <location filename="../../mainwindow.cpp" line="322"/>
<source>Integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="325"/>
+ <location filename="../../mainwindow.cpp" line="323"/>
<source>Open integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="328"/>
+ <location filename="../../mainwindow.cpp" line="326"/>
<source>Online &amp;Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="329"/>
+ <location filename="../../mainwindow.cpp" line="327"/>
<source>Open Online Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="332"/>
+ <location filename="../../mainwindow.cpp" line="330"/>
<source>Translate gpg4usb</source>
<translation type="unfinished">gpg4usb ကို ဘာသာပြန်ဆိုရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="333"/>
+ <location filename="../../mainwindow.cpp" line="331"/>
<source>Translate gpg4usb yourself</source>
<translation type="unfinished">gpg4usb ကို ကိုယ်တိုင် ဘာသာပြန်ဆိုရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="336"/>
+ <location filename="../../mainwindow.cpp" line="334"/>
<source>Open &amp;Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="337"/>
+ <location filename="../../mainwindow.cpp" line="335"/>
<source>Open the wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="342"/>
+ <location filename="../../mainwindow.cpp" line="340"/>
<source>Append Selected Key(s) To Text</source>
<translation type="unfinished">ရွေးချယ်ထားတဲ့ ကီး(များ)ကို စာသားနဲ့ ပူးတွဲပေးရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="343"/>
+ <location filename="../../mainwindow.cpp" line="341"/>
<source>Append The Selected Keys To Text in Editor</source>
<translation type="unfinished">ရွေးချယ်ထားတဲ့ ကီးများကို အယ်ဒီတာထဲမှာ စာသားနဲ့ ပူးတွဲပေးရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="346"/>
+ <location filename="../../mainwindow.cpp" line="344"/>
<source>Copy EMail-address</source>
<translation type="unfinished">အီးမေးလ် လိပ်စာကို ကော်ပီကူးရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="347"/>
+ <location filename="../../mainwindow.cpp" line="345"/>
<source>Copy selected EMailaddress to clipboard</source>
<translation type="unfinished">အီးမေးလ် လိပ်စာကို clipboard မှာ ကော်ပီကူးရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="351"/>
+ <location filename="../../mainwindow.cpp" line="349"/>
<source>Show Keydetails</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="352"/>
+ <location filename="../../mainwindow.cpp" line="350"/>
<source>Show Details for this Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="370"/>
+ <location filename="../../mainwindow.cpp" line="410"/>
<source>&amp;File</source>
<translation type="unfinished">ဖိုင်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="382"/>
+ <location filename="../../mainwindow.cpp" line="422"/>
<source>&amp;Edit</source>
<translation type="unfinished">တည်းဖြတ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="398"/>
+ <location filename="../../mainwindow.cpp" line="438"/>
<source>&amp;Crypt</source>
<translation type="unfinished">စာဝှက်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="408"/>
+ <location filename="../../mainwindow.cpp" line="448"/>
<source>&amp;Keys</source>
<translation type="unfinished">ကီး</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="409"/>
+ <location filename="../../mainwindow.cpp" line="449"/>
<source>&amp;Import Key From...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="419"/>
+ <location filename="../../mainwindow.cpp" line="458"/>
<source>&amp;Steganography</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="420"/>
+ <location filename="../../mainwindow.cpp" line="365"/>
<source>Remove PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="422"/>
+ <location filename="../../mainwindow.cpp" line="368"/>
<source>Add PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="428"/>
+ <location filename="../../mainwindow.cpp" line="467"/>
<source>&amp;View</source>
<translation type="unfinished">ကြည့်ရှုရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="430"/>
+ <location filename="../../mainwindow.cpp" line="469"/>
<source>&amp;Help</source>
<translation type="unfinished">အကူအညီ</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="443"/>
+ <location filename="../../mainwindow.cpp" line="482"/>
<source>File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="451"/>
+ <location filename="../../mainwindow.cpp" line="490"/>
<source>Crypt</source>
<translation type="unfinished">စာဝှက်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="460"/>
+ <location filename="../../mainwindow.cpp" line="499"/>
<source>Key</source>
<translation type="unfinished">ကီး</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="465"/>
+ <location filename="../../mainwindow.cpp" line="504"/>
<source>Edit</source>
<translation type="unfinished">တည်းဖြတ်ရန်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="472"/>
+ <location filename="../../mainwindow.cpp" line="511"/>
<source>Special edit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="483"/>
+ <location filename="../../mainwindow.cpp" line="522"/>
<source>Import key from...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="484"/>
+ <location filename="../../mainwindow.cpp" line="523"/>
<source>Import key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="495"/>
+ <location filename="../../mainwindow.cpp" line="534"/>
<source>Encrypt or decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="496"/>
+ <location filename="../../mainwindow.cpp" line="535"/>
<source>File..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="514"/>
+ <location filename="../../mainwindow.cpp" line="553"/>
<source>Ready</source>
<translation type="unfinished">အဆင်သင့်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="522"/>
+ <location filename="../../mainwindow.cpp" line="561"/>
<source>Encrypt for:</source>
<translation type="unfinished">စာဝှက်မဲ့အချက် -</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="541"/>
+ <location filename="../../mainwindow.cpp" line="580"/>
<source>Attached files:</source>
<translation type="unfinished">ပူးတွဲထားတဲ့ ဖိုင်များ -</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="582"/>
+ <location filename="../../mainwindow.cpp" line="620"/>
<source>About </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="585"/>
+ <location filename="../../mainwindow.cpp" line="623"/>
<source>&lt;center&gt;This application allows simple encryption &lt;br&gt;and decryption of text messages or files.&lt;br&gt;It&apos;s licensed under the GPL v3&lt;br&gt;&lt;br&gt;&lt;b&gt;Developer:&lt;/b&gt;&lt;br&gt;Bene, Heimer, Juergen, Nils, Ubbo&lt;br&gt;&lt;br&gt;&lt;b&gt;Translation:&lt;/b&gt;&lt;br&gt;Viriato/Phol (es), &lt;br&gt;Serse (it), Russell (my),&lt;br&gt;Alessandro (pt_br), Kirill (ru), Tom (vi)&lt;br&gt;&lt;br&gt;If you have any questions or suggestions have a look&lt;br/&gt;at our &lt;a href=&quot;http://gpg4usb.cpunk.de/contact.php&quot;&gt;contact page&lt;/a&gt; or send a mail to our&lt;br/&gt; mailing list at &lt;a href=&quot;mailto:[email protected]&quot;&gt;[email protected]&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="597"/>
+ <location filename="../../mainwindow.cpp" line="635"/>
<source>&lt;br&gt;&lt;br&gt; Built with Qt </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="598"/>
+ <location filename="../../mainwindow.cpp" line="636"/>
<source> and GPGME </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="703"/>
+ <location filename="../../mainwindow.cpp" line="741"/>
<source>There is one unencrypted file in attachment folder</source>
<translation type="unfinished">ပူးတွဲထားတဲ့ ဖိုင်ထဲမှာ စာဝှက်မထားတဲ့ ဖိုင်တခု ရှိတယ်</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source>There are </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source> unencrypted files in attachment folder</source>
<translation type="unfinished"></translation>
</message>
diff --git a/release/ts/gpg4usb_pt_BR.ts b/release/ts/gpg4usb_pt_BR.ts
index e486889..9ce9ec4 100644
--- a/release/ts/gpg4usb_pt_BR.ts
+++ b/release/ts/gpg4usb_pt_BR.ts
@@ -1795,218 +1795,218 @@ Fraca -&gt; Forte</translation>
<context>
<name>MainWindow</name>
<message>
- <location filename="../../mainwindow.cpp" line="154"/>
+ <location filename="../../mainwindow.cpp" line="152"/>
<source>&amp;New</source>
<translation type="unfinished">&amp;Novo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="160"/>
+ <location filename="../../mainwindow.cpp" line="158"/>
<source>Open a new file</source>
<translation type="unfinished">Abrir um novo arquivo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="163"/>
+ <location filename="../../mainwindow.cpp" line="161"/>
<source>&amp;Open...</source>
<translation type="unfinished">&amp;Abrir...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="166"/>
+ <location filename="../../mainwindow.cpp" line="164"/>
<source>Open an existing file</source>
<translation type="unfinished">Abrir um arquivo existente</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="169"/>
+ <location filename="../../mainwindow.cpp" line="167"/>
<source>&amp;Save</source>
<translation type="unfinished">&amp;Salvar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="172"/>
+ <location filename="../../mainwindow.cpp" line="170"/>
<source>Save the current File</source>
<translation type="unfinished">Salvar o arquivo atual</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="175"/>
+ <location filename="../../mainwindow.cpp" line="173"/>
<source>Save &amp;As</source>
<translation type="unfinished">Salvar Co&amp;mo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="178"/>
+ <location filename="../../mainwindow.cpp" line="176"/>
<source>Save the current File as...</source>
<translation type="unfinished">Salvar o arquivo atual como...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="181"/>
+ <location filename="../../mainwindow.cpp" line="179"/>
<source>&amp;Print</source>
<translation type="unfinished">&amp;Imprimir</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="184"/>
+ <location filename="../../mainwindow.cpp" line="182"/>
<source>Print Document</source>
<translation type="unfinished">Imprimir Documento</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="187"/>
- <location filename="../../mainwindow.cpp" line="602"/>
+ <location filename="../../mainwindow.cpp" line="185"/>
+ <location filename="../../mainwindow.cpp" line="640"/>
<source>&amp;Close</source>
<translation type="unfinished">&amp;Fechar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="189"/>
+ <location filename="../../mainwindow.cpp" line="187"/>
<source>Close file</source>
<translation type="unfinished">Fechar o arquivo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="192"/>
+ <location filename="../../mainwindow.cpp" line="190"/>
<source>&amp;Quit</source>
<translation type="unfinished">Sai&amp;r</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="195"/>
+ <location filename="../../mainwindow.cpp" line="193"/>
<source>Quit Program</source>
<translation type="unfinished">Sair</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="200"/>
+ <location filename="../../mainwindow.cpp" line="198"/>
<source>&amp;Undo</source>
<translation type="unfinished">&amp;Desfazer</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="202"/>
+ <location filename="../../mainwindow.cpp" line="200"/>
<source>Undo Last Edit Action</source>
<translation type="unfinished">Desfazer Última Edição</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="205"/>
+ <location filename="../../mainwindow.cpp" line="203"/>
<source>&amp;Redo</source>
<translation type="unfinished">&amp;Repetir</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="207"/>
+ <location filename="../../mainwindow.cpp" line="205"/>
<source>Redo Last Edit Action</source>
<translation type="unfinished">Repete a última ação de edição</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="210"/>
+ <location filename="../../mainwindow.cpp" line="208"/>
<source>Zoom In</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="214"/>
+ <location filename="../../mainwindow.cpp" line="212"/>
<source>Zoom Out</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="218"/>
+ <location filename="../../mainwindow.cpp" line="216"/>
<source>&amp;Paste</source>
<translation type="unfinished">&amp;Colar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="221"/>
+ <location filename="../../mainwindow.cpp" line="219"/>
<source>Paste Text From Clipboard</source>
<translation type="unfinished">Colar Texto da Área de Transferência</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="224"/>
+ <location filename="../../mainwindow.cpp" line="222"/>
<source>Cu&amp;t</source>
<translation type="unfinished">&amp;Recortar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="227"/>
+ <location filename="../../mainwindow.cpp" line="225"/>
<source>Cut the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished">Recortar a seleção atual para a Área de Transferência</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="231"/>
+ <location filename="../../mainwindow.cpp" line="229"/>
<source>&amp;Copy</source>
<translation type="unfinished">&amp;Copiar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="234"/>
+ <location filename="../../mainwindow.cpp" line="232"/>
<source>Copy the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished">Copiar a seleção para a área de transferência</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="238"/>
+ <location filename="../../mainwindow.cpp" line="236"/>
<source>&amp;Quote</source>
<translation type="unfinished">&amp;Destacar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="240"/>
+ <location filename="../../mainwindow.cpp" line="238"/>
<source>Quote whole text</source>
<translation type="unfinished">Destacar todo o texto</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="243"/>
+ <location filename="../../mainwindow.cpp" line="241"/>
<source>Select &amp;All</source>
<translation type="unfinished">Selecionar &amp;Tudo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="246"/>
+ <location filename="../../mainwindow.cpp" line="244"/>
<source>Select the whole text</source>
<translation type="unfinished">Selecionar todo texto</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="249"/>
+ <location filename="../../mainwindow.cpp" line="247"/>
<source>Remove &amp;spacing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="312"/>
+ <location filename="../../mainwindow.cpp" line="310"/>
<source>Manage &amp;keys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="324"/>
+ <location filename="../../mainwindow.cpp" line="322"/>
<source>Integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="325"/>
+ <location filename="../../mainwindow.cpp" line="323"/>
<source>Open integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="328"/>
+ <location filename="../../mainwindow.cpp" line="326"/>
<source>Online &amp;Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="329"/>
+ <location filename="../../mainwindow.cpp" line="327"/>
<source>Open Online Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="483"/>
+ <location filename="../../mainwindow.cpp" line="522"/>
<source>Import key from...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="484"/>
+ <location filename="../../mainwindow.cpp" line="523"/>
<source>Import key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="495"/>
+ <location filename="../../mainwindow.cpp" line="534"/>
<source>Encrypt or decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="496"/>
+ <location filename="../../mainwindow.cpp" line="535"/>
<source>File..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="585"/>
+ <location filename="../../mainwindow.cpp" line="623"/>
<source>&lt;center&gt;This application allows simple encryption &lt;br&gt;and decryption of text messages or files.&lt;br&gt;It&apos;s licensed under the GPL v3&lt;br&gt;&lt;br&gt;&lt;b&gt;Developer:&lt;/b&gt;&lt;br&gt;Bene, Heimer, Juergen, Nils, Ubbo&lt;br&gt;&lt;br&gt;&lt;b&gt;Translation:&lt;/b&gt;&lt;br&gt;Viriato/Phol (es), &lt;br&gt;Serse (it), Russell (my),&lt;br&gt;Alessandro (pt_br), Kirill (ru), Tom (vi)&lt;br&gt;&lt;br&gt;If you have any questions or suggestions have a look&lt;br/&gt;at our &lt;a href=&quot;http://gpg4usb.cpunk.de/contact.php&quot;&gt;contact page&lt;/a&gt; or send a mail to our&lt;br/&gt; mailing list at &lt;a href=&quot;mailto:[email protected]&quot;&gt;[email protected]&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="597"/>
+ <location filename="../../mainwindow.cpp" line="635"/>
<source>&lt;br&gt;&lt;br&gt; Built with Qt </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="598"/>
+ <location filename="../../mainwindow.cpp" line="636"/>
<source> and GPGME </source>
<translation type="unfinished"></translation>
</message>
@@ -2015,97 +2015,97 @@ Fraca -&gt; Forte</translation>
<translation type="obsolete">Remover quebras de linha &amp;duplicadas</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="252"/>
+ <location filename="../../mainwindow.cpp" line="250"/>
<source>Remove double linebreaks, e.g. in pasted text from webmailer</source>
<translation type="unfinished">Remover quebras de linha duplicadas, como ocorre quando colamos o texto do webmail</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="255"/>
+ <location filename="../../mainwindow.cpp" line="253"/>
<source>Se&amp;ttings</source>
<translation type="unfinished">Con&amp;figurações</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="256"/>
+ <location filename="../../mainwindow.cpp" line="254"/>
<source>Open settings dialog</source>
<translation type="unfinished">Abrir janela de configurações</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="262"/>
+ <location filename="../../mainwindow.cpp" line="260"/>
<source>&amp;Encrypt</source>
<translation type="unfinished">&amp;Encriptar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="265"/>
+ <location filename="../../mainwindow.cpp" line="263"/>
<source>Encrypt Message</source>
<translation type="unfinished">Encriptar Mensagem</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="268"/>
+ <location filename="../../mainwindow.cpp" line="266"/>
<source>&amp;Decrypt</source>
<translation type="unfinished">&amp;Decriptar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="271"/>
+ <location filename="../../mainwindow.cpp" line="269"/>
<source>Decrypt Message</source>
<translation type="unfinished">Decriptar Mensagem</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="274"/>
+ <location filename="../../mainwindow.cpp" line="272"/>
<source>&amp;File Encryption</source>
<translation type="unfinished">Encriptar &amp;Arquivo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="276"/>
+ <location filename="../../mainwindow.cpp" line="274"/>
<source>Encrypt/Decrypt File</source>
<translation type="unfinished">Encriptar/Decriptar Arquivo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="282"/>
+ <location filename="../../mainwindow.cpp" line="280"/>
<source>&amp;Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="284"/>
+ <location filename="../../mainwindow.cpp" line="282"/>
<source>Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="287"/>
+ <location filename="../../mainwindow.cpp" line="285"/>
<source>&amp;Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="289"/>
+ <location filename="../../mainwindow.cpp" line="287"/>
<source>Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="292"/>
+ <location filename="../../mainwindow.cpp" line="290"/>
<source>&amp;Sign</source>
<translation type="unfinished">&amp;Assinar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="295"/>
+ <location filename="../../mainwindow.cpp" line="293"/>
<source>Sign Message</source>
<translation type="unfinished">Assinar Mensagem</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="298"/>
+ <location filename="../../mainwindow.cpp" line="296"/>
<source>&amp;Verify</source>
<translation type="unfinished">&amp;Verificar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="301"/>
+ <location filename="../../mainwindow.cpp" line="299"/>
<source>Verify Message</source>
<translation type="unfinished">Verificar a Mensagem</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="307"/>
+ <location filename="../../mainwindow.cpp" line="305"/>
<source>&amp;Editor</source>
<translation type="unfinished">&amp;Editor</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="309"/>
+ <location filename="../../mainwindow.cpp" line="307"/>
<source>Import New Key From Editor</source>
<translation type="unfinished">Importar Nova Chave do Editor</translation>
</message>
@@ -2114,7 +2114,7 @@ Fraca -&gt; Forte</translation>
<translation type="obsolete">Gerenciador de Chaves</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="314"/>
+ <location filename="../../mainwindow.cpp" line="312"/>
<source>Open Keymanagement</source>
<translation type="unfinished">Abrir Gerenciador de Chaves</translation>
</message>
@@ -2127,12 +2127,12 @@ Fraca -&gt; Forte</translation>
<translation type="obsolete">Abrir Diálogo de Importação de Nova Chave</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="319"/>
+ <location filename="../../mainwindow.cpp" line="317"/>
<source>&amp;About</source>
<translation type="unfinished">&amp;Sobre</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="321"/>
+ <location filename="../../mainwindow.cpp" line="319"/>
<source>Show the application&apos;s About box</source>
<translation type="unfinished">Exibe a janela &apos;sobre&apos;</translation>
</message>
@@ -2145,147 +2145,147 @@ Fraca -&gt; Forte</translation>
<translation type="obsolete">Abrir Tutorial Online</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="332"/>
+ <location filename="../../mainwindow.cpp" line="330"/>
<source>Translate gpg4usb</source>
<translation type="unfinished">Traduzir gpg4usb</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="333"/>
+ <location filename="../../mainwindow.cpp" line="331"/>
<source>Translate gpg4usb yourself</source>
<translation type="unfinished">Traduza o gpg4usb você mesmo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="336"/>
+ <location filename="../../mainwindow.cpp" line="334"/>
<source>Open &amp;Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="337"/>
+ <location filename="../../mainwindow.cpp" line="335"/>
<source>Open the wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="342"/>
+ <location filename="../../mainwindow.cpp" line="340"/>
<source>Append Selected Key(s) To Text</source>
<translation type="unfinished">Anexar Chaves Selecionadas ao Texto</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="343"/>
+ <location filename="../../mainwindow.cpp" line="341"/>
<source>Append The Selected Keys To Text in Editor</source>
<translation type="unfinished">Anexar Chaves Selecionadas ao Texto no Editor</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="346"/>
+ <location filename="../../mainwindow.cpp" line="344"/>
<source>Copy EMail-address</source>
<translation type="unfinished">Copiar o endereço de EMail</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="347"/>
+ <location filename="../../mainwindow.cpp" line="345"/>
<source>Copy selected EMailaddress to clipboard</source>
<translation type="unfinished">Copiar o endereço de EMail selecionado para a área de transferência</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="351"/>
+ <location filename="../../mainwindow.cpp" line="349"/>
<source>Show Keydetails</source>
<translation type="unfinished">Exibir detalhes da chave</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="352"/>
+ <location filename="../../mainwindow.cpp" line="350"/>
<source>Show Details for this Key</source>
<translation type="unfinished">Exibir Detalhes da Chave</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="370"/>
+ <location filename="../../mainwindow.cpp" line="410"/>
<source>&amp;File</source>
<translation type="unfinished">&amp;Arquivo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="382"/>
+ <location filename="../../mainwindow.cpp" line="422"/>
<source>&amp;Edit</source>
<translation type="unfinished">E&amp;ditar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="398"/>
+ <location filename="../../mainwindow.cpp" line="438"/>
<source>&amp;Crypt</source>
<translation type="unfinished">&amp;Encriptar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="408"/>
+ <location filename="../../mainwindow.cpp" line="448"/>
<source>&amp;Keys</source>
<translation type="unfinished">&amp;Chaves</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="409"/>
+ <location filename="../../mainwindow.cpp" line="449"/>
<source>&amp;Import Key From...</source>
<translation type="unfinished">&amp;Importar Chave de...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="419"/>
+ <location filename="../../mainwindow.cpp" line="458"/>
<source>&amp;Steganography</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="420"/>
+ <location filename="../../mainwindow.cpp" line="365"/>
<source>Remove PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="422"/>
+ <location filename="../../mainwindow.cpp" line="368"/>
<source>Add PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="428"/>
+ <location filename="../../mainwindow.cpp" line="467"/>
<source>&amp;View</source>
<translation type="unfinished">E&amp;xibir</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="430"/>
+ <location filename="../../mainwindow.cpp" line="469"/>
<source>&amp;Help</source>
<translation type="unfinished">A&amp;juda</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="443"/>
+ <location filename="../../mainwindow.cpp" line="482"/>
<source>File</source>
<translation type="unfinished">Arquivo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="451"/>
+ <location filename="../../mainwindow.cpp" line="490"/>
<source>Crypt</source>
<translation type="unfinished">Encriptar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="460"/>
+ <location filename="../../mainwindow.cpp" line="499"/>
<source>Key</source>
<translation type="unfinished">Chave</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="465"/>
+ <location filename="../../mainwindow.cpp" line="504"/>
<source>Edit</source>
<translation type="unfinished">Editar</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="472"/>
+ <location filename="../../mainwindow.cpp" line="511"/>
<source>Special edit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="514"/>
+ <location filename="../../mainwindow.cpp" line="553"/>
<source>Ready</source>
<translation type="unfinished">Pronto</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="522"/>
+ <location filename="../../mainwindow.cpp" line="561"/>
<source>Encrypt for:</source>
<translation type="unfinished">Encriptar para:</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="541"/>
+ <location filename="../../mainwindow.cpp" line="580"/>
<source>Attached files:</source>
<translation type="unfinished">Arquivos anexos:</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="582"/>
+ <location filename="../../mainwindow.cpp" line="620"/>
<source>About </source>
<translation type="unfinished">Sobre </translation>
</message>
@@ -2294,17 +2294,17 @@ Fraca -&gt; Forte</translation>
<translation type="obsolete">&lt;center&gt;Esse programa permite a encriptação e decriptação&lt;br&gt;simplificada de mensagens de texto ou arquivos.&lt;br&gt;E é liberado sob a licença GPL v3&lt;br&gt;&lt;br&gt;&lt;b&gt;Desenvolvedores:&lt;/b&gt;&lt;br&gt;Bene, Heimer, Juergen, Nils, Ubbo&lt;br&gt;&lt;br&gt;&lt;b&gt;Tradução:&lt;/b&gt;&lt;br&gt;Alessandro (pt_br), Kirill (ru), Viriato (es), Serse (it)&lt;br&gt;&lt;br&gt;Caso tenha alguma dúvida ou sugestão dê uma olhada &lt;br/&gt;na nossa &lt;a href=&quot;http://gpg4usb.cpunk.de/contact.php&quot;&gt;página de contato&lt;/a&gt; ou envie um email&lt;br/&gt; para &lt;a href=&quot;mailto:[email protected]&quot;&gt;[email protected]&lt;/a&gt;.</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="703"/>
+ <location filename="../../mainwindow.cpp" line="741"/>
<source>There is one unencrypted file in attachment folder</source>
<translation type="unfinished">Há um arquivo não decriptado na pasta de anexos</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source>There are </source>
<translation type="unfinished">Existem </translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source> unencrypted files in attachment folder</source>
<translation type="unfinished"> arquivos não decriptados na pasta de anexos</translation>
</message>
diff --git a/release/ts/gpg4usb_ru.ts b/release/ts/gpg4usb_ru.ts
index ee900ec..13191c1 100644
--- a/release/ts/gpg4usb_ru.ts
+++ b/release/ts/gpg4usb_ru.ts
@@ -1695,488 +1695,488 @@ Weak -&gt; Strong</source>
<context>
<name>MainWindow</name>
<message>
- <location filename="../../mainwindow.cpp" line="154"/>
+ <location filename="../../mainwindow.cpp" line="152"/>
<source>&amp;New</source>
<translation type="unfinished">&amp;Создать</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="160"/>
+ <location filename="../../mainwindow.cpp" line="158"/>
<source>Open a new file</source>
<translation type="unfinished">Открыть новый файл</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="163"/>
+ <location filename="../../mainwindow.cpp" line="161"/>
<source>&amp;Open...</source>
<translation type="unfinished">&amp;Открыть...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="166"/>
+ <location filename="../../mainwindow.cpp" line="164"/>
<source>Open an existing file</source>
<translation type="unfinished">Открать существующий файл</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="169"/>
+ <location filename="../../mainwindow.cpp" line="167"/>
<source>&amp;Save</source>
<translation type="unfinished">&amp;Сохранить</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="172"/>
+ <location filename="../../mainwindow.cpp" line="170"/>
<source>Save the current File</source>
<translation type="unfinished">Сохранить файл</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="175"/>
+ <location filename="../../mainwindow.cpp" line="173"/>
<source>Save &amp;As</source>
<translation type="unfinished">Сохранить &amp;как</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="178"/>
+ <location filename="../../mainwindow.cpp" line="176"/>
<source>Save the current File as...</source>
<translation type="unfinished">Сохранить файл как...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="181"/>
+ <location filename="../../mainwindow.cpp" line="179"/>
<source>&amp;Print</source>
<translation type="unfinished">&amp;Печать</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="184"/>
+ <location filename="../../mainwindow.cpp" line="182"/>
<source>Print Document</source>
<translation type="unfinished">Печать</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="187"/>
- <location filename="../../mainwindow.cpp" line="602"/>
+ <location filename="../../mainwindow.cpp" line="185"/>
+ <location filename="../../mainwindow.cpp" line="640"/>
<source>&amp;Close</source>
<translation type="unfinished">&amp;Закрыть</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="189"/>
+ <location filename="../../mainwindow.cpp" line="187"/>
<source>Close file</source>
<translation type="unfinished">Закрыть файл</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="192"/>
+ <location filename="../../mainwindow.cpp" line="190"/>
<source>&amp;Quit</source>
<translation type="unfinished">Вы&amp;йти</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="195"/>
+ <location filename="../../mainwindow.cpp" line="193"/>
<source>Quit Program</source>
<translation type="unfinished">Завершить программу</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="200"/>
+ <location filename="../../mainwindow.cpp" line="198"/>
<source>&amp;Undo</source>
<translation type="unfinished">&amp;Отменить</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="202"/>
+ <location filename="../../mainwindow.cpp" line="200"/>
<source>Undo Last Edit Action</source>
<translation type="unfinished">Отменить последнее действие</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="205"/>
+ <location filename="../../mainwindow.cpp" line="203"/>
<source>&amp;Redo</source>
<translation type="unfinished">&amp;Вернуть отмену</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="207"/>
+ <location filename="../../mainwindow.cpp" line="205"/>
<source>Redo Last Edit Action</source>
<translation type="unfinished">Вернуть последнее изменение</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="210"/>
+ <location filename="../../mainwindow.cpp" line="208"/>
<source>Zoom In</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="214"/>
+ <location filename="../../mainwindow.cpp" line="212"/>
<source>Zoom Out</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="218"/>
+ <location filename="../../mainwindow.cpp" line="216"/>
<source>&amp;Paste</source>
<translation type="unfinished">&amp;Вставить</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="221"/>
+ <location filename="../../mainwindow.cpp" line="219"/>
<source>Paste Text From Clipboard</source>
<translation type="unfinished">Вставить текст из Буфера Обмена</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="224"/>
+ <location filename="../../mainwindow.cpp" line="222"/>
<source>Cu&amp;t</source>
<translation type="unfinished">&amp;Вырезать</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="227"/>
+ <location filename="../../mainwindow.cpp" line="225"/>
<source>Cut the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished">Вырезать выделенные элементы в Буфер Обмена</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="231"/>
+ <location filename="../../mainwindow.cpp" line="229"/>
<source>&amp;Copy</source>
<translation type="unfinished">&amp;Копировать</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="234"/>
+ <location filename="../../mainwindow.cpp" line="232"/>
<source>Copy the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished">Копировать выделенные элементы в Буфер Обмена</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="238"/>
+ <location filename="../../mainwindow.cpp" line="236"/>
<source>&amp;Quote</source>
<translation type="unfinished">&amp;Цитировать</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="240"/>
+ <location filename="../../mainwindow.cpp" line="238"/>
<source>Quote whole text</source>
<translation type="unfinished">Цитировать весь текст</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="243"/>
+ <location filename="../../mainwindow.cpp" line="241"/>
<source>Select &amp;All</source>
<translation type="unfinished">В&amp;ыделить всё</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="246"/>
+ <location filename="../../mainwindow.cpp" line="244"/>
<source>Select the whole text</source>
<translation type="unfinished">Выделить весь текст</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="249"/>
+ <location filename="../../mainwindow.cpp" line="247"/>
<source>Remove &amp;spacing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="252"/>
+ <location filename="../../mainwindow.cpp" line="250"/>
<source>Remove double linebreaks, e.g. in pasted text from webmailer</source>
<translation type="unfinished">Удалить двойной перенос строк, например в тексте, вставленном из браузера</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="255"/>
+ <location filename="../../mainwindow.cpp" line="253"/>
<source>Se&amp;ttings</source>
<translation type="unfinished">&amp;Настройки</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="256"/>
+ <location filename="../../mainwindow.cpp" line="254"/>
<source>Open settings dialog</source>
<translation type="unfinished">Открыть окно настроек</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="262"/>
+ <location filename="../../mainwindow.cpp" line="260"/>
<source>&amp;Encrypt</source>
<translation type="unfinished">З&amp;ашифровать</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="265"/>
+ <location filename="../../mainwindow.cpp" line="263"/>
<source>Encrypt Message</source>
<translation type="unfinished">Зашифровать текст</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="268"/>
+ <location filename="../../mainwindow.cpp" line="266"/>
<source>&amp;Decrypt</source>
<translation type="unfinished">Расшифро&amp;вать</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="271"/>
+ <location filename="../../mainwindow.cpp" line="269"/>
<source>Decrypt Message</source>
<translation type="unfinished">Расшифровать текст</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="274"/>
+ <location filename="../../mainwindow.cpp" line="272"/>
<source>&amp;File Encryption</source>
<translation type="unfinished">Шифрование &amp;файлов</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="276"/>
+ <location filename="../../mainwindow.cpp" line="274"/>
<source>Encrypt/Decrypt File</source>
<translation type="unfinished">Зашифровать/Расшифровать файл</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="282"/>
+ <location filename="../../mainwindow.cpp" line="280"/>
<source>&amp;Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="284"/>
+ <location filename="../../mainwindow.cpp" line="282"/>
<source>Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="287"/>
+ <location filename="../../mainwindow.cpp" line="285"/>
<source>&amp;Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="289"/>
+ <location filename="../../mainwindow.cpp" line="287"/>
<source>Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="292"/>
+ <location filename="../../mainwindow.cpp" line="290"/>
<source>&amp;Sign</source>
<translation type="unfinished">&amp;Подписать</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="295"/>
+ <location filename="../../mainwindow.cpp" line="293"/>
<source>Sign Message</source>
<translation type="unfinished">Подписать сообщение</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="298"/>
+ <location filename="../../mainwindow.cpp" line="296"/>
<source>&amp;Verify</source>
<translation type="unfinished">&amp;Проверить</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="301"/>
+ <location filename="../../mainwindow.cpp" line="299"/>
<source>Verify Message</source>
<translation type="unfinished">Проверить сообщение</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="307"/>
+ <location filename="../../mainwindow.cpp" line="305"/>
<source>&amp;Editor</source>
<translation type="unfinished">Окна &amp;редактора</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="309"/>
+ <location filename="../../mainwindow.cpp" line="307"/>
<source>Import New Key From Editor</source>
<translation type="unfinished">Импорт нового ключа из редактора</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="312"/>
+ <location filename="../../mainwindow.cpp" line="310"/>
<source>Manage &amp;keys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="314"/>
+ <location filename="../../mainwindow.cpp" line="312"/>
<source>Open Keymanagement</source>
<translation type="unfinished">Открыть Менеджер ключей</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="319"/>
+ <location filename="../../mainwindow.cpp" line="317"/>
<source>&amp;About</source>
<translation type="unfinished">&amp;О программе</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="321"/>
+ <location filename="../../mainwindow.cpp" line="319"/>
<source>Show the application&apos;s About box</source>
<translation type="unfinished">Показать инфо о программе</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="324"/>
+ <location filename="../../mainwindow.cpp" line="322"/>
<source>Integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="325"/>
+ <location filename="../../mainwindow.cpp" line="323"/>
<source>Open integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="328"/>
+ <location filename="../../mainwindow.cpp" line="326"/>
<source>Online &amp;Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="329"/>
+ <location filename="../../mainwindow.cpp" line="327"/>
<source>Open Online Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="332"/>
+ <location filename="../../mainwindow.cpp" line="330"/>
<source>Translate gpg4usb</source>
<translation type="unfinished">Перевести gpg4usb</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="333"/>
+ <location filename="../../mainwindow.cpp" line="331"/>
<source>Translate gpg4usb yourself</source>
<translation type="unfinished">Самостоятельно перевести gpg4usb</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="336"/>
+ <location filename="../../mainwindow.cpp" line="334"/>
<source>Open &amp;Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="337"/>
+ <location filename="../../mainwindow.cpp" line="335"/>
<source>Open the wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="342"/>
+ <location filename="../../mainwindow.cpp" line="340"/>
<source>Append Selected Key(s) To Text</source>
<translation type="unfinished">Добавить выбранн. ключ(и) к тексту</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="343"/>
+ <location filename="../../mainwindow.cpp" line="341"/>
<source>Append The Selected Keys To Text in Editor</source>
<translation type="unfinished">Добавить выбранный ключ к тексту в редакторе</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="346"/>
+ <location filename="../../mainwindow.cpp" line="344"/>
<source>Copy EMail-address</source>
<translation type="unfinished">Копировать адрес eMail</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="347"/>
+ <location filename="../../mainwindow.cpp" line="345"/>
<source>Copy selected EMailaddress to clipboard</source>
<translation type="unfinished">Копировать выбранный адрес eMail в Буфер Обмена</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="351"/>
+ <location filename="../../mainwindow.cpp" line="349"/>
<source>Show Keydetails</source>
<translation type="unfinished">Показать свойства ключа</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="352"/>
+ <location filename="../../mainwindow.cpp" line="350"/>
<source>Show Details for this Key</source>
<translation type="unfinished">Показать детали для этого ключа</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="370"/>
+ <location filename="../../mainwindow.cpp" line="410"/>
<source>&amp;File</source>
<translation type="unfinished">Ф&amp;айл</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="382"/>
+ <location filename="../../mainwindow.cpp" line="422"/>
<source>&amp;Edit</source>
<translation type="unfinished">&amp;Правка</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="398"/>
+ <location filename="../../mainwindow.cpp" line="438"/>
<source>&amp;Crypt</source>
<translation type="unfinished">&amp;Шифрование</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="408"/>
+ <location filename="../../mainwindow.cpp" line="448"/>
<source>&amp;Keys</source>
<translation type="unfinished">&amp;Ключи</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="409"/>
+ <location filename="../../mainwindow.cpp" line="449"/>
<source>&amp;Import Key From...</source>
<translation type="unfinished">&amp;Импорт ключа из...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="419"/>
+ <location filename="../../mainwindow.cpp" line="458"/>
<source>&amp;Steganography</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="420"/>
+ <location filename="../../mainwindow.cpp" line="365"/>
<source>Remove PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="422"/>
+ <location filename="../../mainwindow.cpp" line="368"/>
<source>Add PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="428"/>
+ <location filename="../../mainwindow.cpp" line="467"/>
<source>&amp;View</source>
<translation type="unfinished">&amp;Вид</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="430"/>
+ <location filename="../../mainwindow.cpp" line="469"/>
<source>&amp;Help</source>
<translation type="unfinished">&amp;Справка</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="443"/>
+ <location filename="../../mainwindow.cpp" line="482"/>
<source>File</source>
<translation type="unfinished">Файл</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="451"/>
+ <location filename="../../mainwindow.cpp" line="490"/>
<source>Crypt</source>
<translation type="unfinished">Шифрование</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="460"/>
+ <location filename="../../mainwindow.cpp" line="499"/>
<source>Key</source>
<translation type="unfinished">Ключ</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="465"/>
+ <location filename="../../mainwindow.cpp" line="504"/>
<source>Edit</source>
<translation type="unfinished">Правка</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="472"/>
+ <location filename="../../mainwindow.cpp" line="511"/>
<source>Special edit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="483"/>
+ <location filename="../../mainwindow.cpp" line="522"/>
<source>Import key from...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="484"/>
+ <location filename="../../mainwindow.cpp" line="523"/>
<source>Import key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="495"/>
+ <location filename="../../mainwindow.cpp" line="534"/>
<source>Encrypt or decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="496"/>
+ <location filename="../../mainwindow.cpp" line="535"/>
<source>File..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="514"/>
+ <location filename="../../mainwindow.cpp" line="553"/>
<source>Ready</source>
<translation type="unfinished">Готово</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="522"/>
+ <location filename="../../mainwindow.cpp" line="561"/>
<source>Encrypt for:</source>
<translation type="unfinished"> Зашифровать для:</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="541"/>
+ <location filename="../../mainwindow.cpp" line="580"/>
<source>Attached files:</source>
<translation type="unfinished">Прикреплённые файлы:</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="582"/>
+ <location filename="../../mainwindow.cpp" line="620"/>
<source>About </source>
<translation type="unfinished">О программе </translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="585"/>
+ <location filename="../../mainwindow.cpp" line="623"/>
<source>&lt;center&gt;This application allows simple encryption &lt;br&gt;and decryption of text messages or files.&lt;br&gt;It&apos;s licensed under the GPL v3&lt;br&gt;&lt;br&gt;&lt;b&gt;Developer:&lt;/b&gt;&lt;br&gt;Bene, Heimer, Juergen, Nils, Ubbo&lt;br&gt;&lt;br&gt;&lt;b&gt;Translation:&lt;/b&gt;&lt;br&gt;Viriato/Phol (es), &lt;br&gt;Serse (it), Russell (my),&lt;br&gt;Alessandro (pt_br), Kirill (ru), Tom (vi)&lt;br&gt;&lt;br&gt;If you have any questions or suggestions have a look&lt;br/&gt;at our &lt;a href=&quot;http://gpg4usb.cpunk.de/contact.php&quot;&gt;contact page&lt;/a&gt; or send a mail to our&lt;br/&gt; mailing list at &lt;a href=&quot;mailto:[email protected]&quot;&gt;[email protected]&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="597"/>
+ <location filename="../../mainwindow.cpp" line="635"/>
<source>&lt;br&gt;&lt;br&gt; Built with Qt </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="598"/>
+ <location filename="../../mainwindow.cpp" line="636"/>
<source> and GPGME </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="703"/>
+ <location filename="../../mainwindow.cpp" line="741"/>
<source>There is one unencrypted file in attachment folder</source>
<translation type="unfinished">Имеется один незашифрованный файл в папке вложений</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source>There are </source>
<translation type="unfinished">Имеются</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source> unencrypted files in attachment folder</source>
<translation type="unfinished">незашифрованные файлы в папке вложений</translation>
</message>
diff --git a/release/ts/gpg4usb_vi.ts b/release/ts/gpg4usb_vi.ts
index 63b63a7..25d1a59 100644
--- a/release/ts/gpg4usb_vi.ts
+++ b/release/ts/gpg4usb_vi.ts
@@ -1606,488 +1606,488 @@ Yếu -&gt; Mạnh</translation>
<context>
<name>MainWindow</name>
<message>
- <location filename="../../mainwindow.cpp" line="154"/>
+ <location filename="../../mainwindow.cpp" line="152"/>
<source>&amp;New</source>
<translation type="unfinished">&amp;Tạo mới</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="160"/>
+ <location filename="../../mainwindow.cpp" line="158"/>
<source>Open a new file</source>
<translation type="unfinished">Mở một tệp mới</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="163"/>
+ <location filename="../../mainwindow.cpp" line="161"/>
<source>&amp;Open...</source>
<translation type="unfinished">&amp;Mở...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="166"/>
+ <location filename="../../mainwindow.cpp" line="164"/>
<source>Open an existing file</source>
<translation type="unfinished">Mở tệp đã tồn tại</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="169"/>
+ <location filename="../../mainwindow.cpp" line="167"/>
<source>&amp;Save</source>
<translation type="unfinished">&amp;Lưu</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="172"/>
+ <location filename="../../mainwindow.cpp" line="170"/>
<source>Save the current File</source>
<translation type="unfinished">Lưu Tệp hiện hành</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="175"/>
+ <location filename="../../mainwindow.cpp" line="173"/>
<source>Save &amp;As</source>
<translation type="unfinished">Lưu &amp;như</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="178"/>
+ <location filename="../../mainwindow.cpp" line="176"/>
<source>Save the current File as...</source>
<translation type="unfinished">Lưu Tệp hiện hành như...</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="181"/>
+ <location filename="../../mainwindow.cpp" line="179"/>
<source>&amp;Print</source>
<translation type="unfinished">&amp;In</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="184"/>
+ <location filename="../../mainwindow.cpp" line="182"/>
<source>Print Document</source>
<translation type="unfinished">In Tài liệu</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="187"/>
- <location filename="../../mainwindow.cpp" line="602"/>
+ <location filename="../../mainwindow.cpp" line="185"/>
+ <location filename="../../mainwindow.cpp" line="640"/>
<source>&amp;Close</source>
<translation type="unfinished">&amp;Đóng</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="189"/>
+ <location filename="../../mainwindow.cpp" line="187"/>
<source>Close file</source>
<translation type="unfinished">Đóng tệp</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="192"/>
+ <location filename="../../mainwindow.cpp" line="190"/>
<source>&amp;Quit</source>
<translation type="unfinished">&amp;Thoát</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="195"/>
+ <location filename="../../mainwindow.cpp" line="193"/>
<source>Quit Program</source>
<translation type="unfinished">Thoát Chương trình</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="200"/>
+ <location filename="../../mainwindow.cpp" line="198"/>
<source>&amp;Undo</source>
<translation type="unfinished">&amp;Hoàn tác</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="202"/>
+ <location filename="../../mainwindow.cpp" line="200"/>
<source>Undo Last Edit Action</source>
<translation type="unfinished">Hoàn tác Thao tác Soạn thảo Sau cùng</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="205"/>
+ <location filename="../../mainwindow.cpp" line="203"/>
<source>&amp;Redo</source>
<translation type="unfinished">&amp;Hủy hoàn tác</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="207"/>
+ <location filename="../../mainwindow.cpp" line="205"/>
<source>Redo Last Edit Action</source>
<translation type="unfinished">Thực hiện lại Thao tác Soạn thảo Sau cùng</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="210"/>
+ <location filename="../../mainwindow.cpp" line="208"/>
<source>Zoom In</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="214"/>
+ <location filename="../../mainwindow.cpp" line="212"/>
<source>Zoom Out</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="218"/>
+ <location filename="../../mainwindow.cpp" line="216"/>
<source>&amp;Paste</source>
<translation type="unfinished">&amp;Dán</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="221"/>
+ <location filename="../../mainwindow.cpp" line="219"/>
<source>Paste Text From Clipboard</source>
<translation type="unfinished">Chép Văn bản từ Clipboard</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="224"/>
+ <location filename="../../mainwindow.cpp" line="222"/>
<source>Cu&amp;t</source>
<translation type="unfinished">Cắ&amp;t</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="227"/>
+ <location filename="../../mainwindow.cpp" line="225"/>
<source>Cut the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished">Cắt và sao nội dung được chọn vào clipboard</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="231"/>
+ <location filename="../../mainwindow.cpp" line="229"/>
<source>&amp;Copy</source>
<translation type="unfinished">&amp;Sao chép</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="234"/>
+ <location filename="../../mainwindow.cpp" line="232"/>
<source>Copy the current selection&apos;s contents to the clipboard</source>
<translation type="unfinished">Chép nội dung được chọn vào clipboard</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="238"/>
+ <location filename="../../mainwindow.cpp" line="236"/>
<source>&amp;Quote</source>
<translation type="unfinished">&amp;Trích dẫn</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="240"/>
+ <location filename="../../mainwindow.cpp" line="238"/>
<source>Quote whole text</source>
<translation type="unfinished">Trích dẫn toàn bộ đoạn văn bản</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="243"/>
+ <location filename="../../mainwindow.cpp" line="241"/>
<source>Select &amp;All</source>
<translation type="unfinished">Chọn &amp;Toàn bộ</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="246"/>
+ <location filename="../../mainwindow.cpp" line="244"/>
<source>Select the whole text</source>
<translation type="unfinished">Chọn toàn bộ đoạn văn bản</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="249"/>
+ <location filename="../../mainwindow.cpp" line="247"/>
<source>Remove &amp;spacing</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="252"/>
+ <location filename="../../mainwindow.cpp" line="250"/>
<source>Remove double linebreaks, e.g. in pasted text from webmailer</source>
<translation type="unfinished">Bỏ dấu cách dòng kép, ví dụ trong các đoạn văn bản sao chép từ thư từ trang web</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="255"/>
+ <location filename="../../mainwindow.cpp" line="253"/>
<source>Se&amp;ttings</source>
<translation type="unfinished">Thiế&amp;t đặt</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="256"/>
+ <location filename="../../mainwindow.cpp" line="254"/>
<source>Open settings dialog</source>
<translation type="unfinished">Mở hộp thoại thiết đặt</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="262"/>
+ <location filename="../../mainwindow.cpp" line="260"/>
<source>&amp;Encrypt</source>
<translation type="unfinished">&amp;Mã hóa</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="265"/>
+ <location filename="../../mainwindow.cpp" line="263"/>
<source>Encrypt Message</source>
<translation type="unfinished">Mã hóa Tin nhắn</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="268"/>
+ <location filename="../../mainwindow.cpp" line="266"/>
<source>&amp;Decrypt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="271"/>
+ <location filename="../../mainwindow.cpp" line="269"/>
<source>Decrypt Message</source>
<translation type="unfinished">Giải mã Tin nhắn</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="274"/>
+ <location filename="../../mainwindow.cpp" line="272"/>
<source>&amp;File Encryption</source>
<translation type="unfinished">&amp;Mã hóa Tệp</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="276"/>
+ <location filename="../../mainwindow.cpp" line="274"/>
<source>Encrypt/Decrypt File</source>
<translation type="unfinished">Mã hóa/Giải mã Tệp</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="282"/>
+ <location filename="../../mainwindow.cpp" line="280"/>
<source>&amp;Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="284"/>
+ <location filename="../../mainwindow.cpp" line="282"/>
<source>Encrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="287"/>
+ <location filename="../../mainwindow.cpp" line="285"/>
<source>&amp;Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="289"/>
+ <location filename="../../mainwindow.cpp" line="287"/>
<source>Decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="292"/>
+ <location filename="../../mainwindow.cpp" line="290"/>
<source>&amp;Sign</source>
<translation type="unfinished">&amp;Ký số</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="295"/>
+ <location filename="../../mainwindow.cpp" line="293"/>
<source>Sign Message</source>
<translation type="unfinished">Ký Tin nhắn</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="298"/>
+ <location filename="../../mainwindow.cpp" line="296"/>
<source>&amp;Verify</source>
<translation type="unfinished">&amp;Kiểm tra</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="301"/>
+ <location filename="../../mainwindow.cpp" line="299"/>
<source>Verify Message</source>
<translation type="unfinished">Kiểm tra Tin nhắn</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="307"/>
+ <location filename="../../mainwindow.cpp" line="305"/>
<source>&amp;Editor</source>
<translation type="unfinished">&amp;Trình soạn thảo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="309"/>
+ <location filename="../../mainwindow.cpp" line="307"/>
<source>Import New Key From Editor</source>
<translation type="unfinished">Nhập Khóa Mới Từ Trình Soạn Thảo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="312"/>
+ <location filename="../../mainwindow.cpp" line="310"/>
<source>Manage &amp;keys</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="314"/>
+ <location filename="../../mainwindow.cpp" line="312"/>
<source>Open Keymanagement</source>
<translation type="unfinished">Mở Trình Quản lý Khóa</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="319"/>
+ <location filename="../../mainwindow.cpp" line="317"/>
<source>&amp;About</source>
<translation type="unfinished">&amp;Thông tin</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="321"/>
+ <location filename="../../mainwindow.cpp" line="319"/>
<source>Show the application&apos;s About box</source>
<translation type="unfinished">Hiện hộp Thông tin Ứng dụng</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="324"/>
+ <location filename="../../mainwindow.cpp" line="322"/>
<source>Integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="325"/>
+ <location filename="../../mainwindow.cpp" line="323"/>
<source>Open integrated Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="328"/>
+ <location filename="../../mainwindow.cpp" line="326"/>
<source>Online &amp;Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="329"/>
+ <location filename="../../mainwindow.cpp" line="327"/>
<source>Open Online Tutorials</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="332"/>
+ <location filename="../../mainwindow.cpp" line="330"/>
<source>Translate gpg4usb</source>
<translation type="unfinished">Chuyển ngữ cho gpg4usb</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="333"/>
+ <location filename="../../mainwindow.cpp" line="331"/>
<source>Translate gpg4usb yourself</source>
<translation type="unfinished">Bạn hãy dịch gpg4usb sang ngôn ngữ khác</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="336"/>
+ <location filename="../../mainwindow.cpp" line="334"/>
<source>Open &amp;Wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="337"/>
+ <location filename="../../mainwindow.cpp" line="335"/>
<source>Open the wizard</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="342"/>
+ <location filename="../../mainwindow.cpp" line="340"/>
<source>Append Selected Key(s) To Text</source>
<translation type="unfinished">Nối tiếp Khóa Được Chọn vào Văn bản</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="343"/>
+ <location filename="../../mainwindow.cpp" line="341"/>
<source>Append The Selected Keys To Text in Editor</source>
<translation type="unfinished">Nối tiếp Khóa Được Chọn Vào Văn bản trong Trình Soạn Thảo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="346"/>
+ <location filename="../../mainwindow.cpp" line="344"/>
<source>Copy EMail-address</source>
<translation type="unfinished">Chép Địa chỉ EMail</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="347"/>
+ <location filename="../../mainwindow.cpp" line="345"/>
<source>Copy selected EMailaddress to clipboard</source>
<translation type="unfinished">Chép Địa chỉ Email được chọn vào clipboard</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="351"/>
+ <location filename="../../mainwindow.cpp" line="349"/>
<source>Show Keydetails</source>
<translation type="unfinished">Hiển thị thông tin Khóa</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="352"/>
+ <location filename="../../mainwindow.cpp" line="350"/>
<source>Show Details for this Key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="370"/>
+ <location filename="../../mainwindow.cpp" line="410"/>
<source>&amp;File</source>
<translation type="unfinished">&amp;Tệp</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="382"/>
+ <location filename="../../mainwindow.cpp" line="422"/>
<source>&amp;Edit</source>
<translation type="unfinished">&amp;Soạn thảo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="398"/>
+ <location filename="../../mainwindow.cpp" line="438"/>
<source>&amp;Crypt</source>
<translation type="unfinished">&amp;Mã hóa</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="408"/>
+ <location filename="../../mainwindow.cpp" line="448"/>
<source>&amp;Keys</source>
<translation type="unfinished">&amp;Khóa mã hóa</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="409"/>
+ <location filename="../../mainwindow.cpp" line="449"/>
<source>&amp;Import Key From...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="419"/>
+ <location filename="../../mainwindow.cpp" line="458"/>
<source>&amp;Steganography</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="420"/>
+ <location filename="../../mainwindow.cpp" line="365"/>
<source>Remove PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="422"/>
+ <location filename="../../mainwindow.cpp" line="368"/>
<source>Add PGP Header</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="428"/>
+ <location filename="../../mainwindow.cpp" line="467"/>
<source>&amp;View</source>
<translation type="unfinished">&amp;Hiển thị</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="430"/>
+ <location filename="../../mainwindow.cpp" line="469"/>
<source>&amp;Help</source>
<translation type="unfinished">&amp;Trợ giúp</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="443"/>
+ <location filename="../../mainwindow.cpp" line="482"/>
<source>File</source>
<translation type="unfinished">Tệp</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="451"/>
+ <location filename="../../mainwindow.cpp" line="490"/>
<source>Crypt</source>
<translation type="unfinished">Mã hóa</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="460"/>
+ <location filename="../../mainwindow.cpp" line="499"/>
<source>Key</source>
<translation type="unfinished">Khóa</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="465"/>
+ <location filename="../../mainwindow.cpp" line="504"/>
<source>Edit</source>
<translation type="unfinished">Soạn thảo</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="472"/>
+ <location filename="../../mainwindow.cpp" line="511"/>
<source>Special edit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="483"/>
+ <location filename="../../mainwindow.cpp" line="522"/>
<source>Import key from...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="484"/>
+ <location filename="../../mainwindow.cpp" line="523"/>
<source>Import key</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="495"/>
+ <location filename="../../mainwindow.cpp" line="534"/>
<source>Encrypt or decrypt File</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="496"/>
+ <location filename="../../mainwindow.cpp" line="535"/>
<source>File..</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="514"/>
+ <location filename="../../mainwindow.cpp" line="553"/>
<source>Ready</source>
<translation type="unfinished">Sẵn sàng</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="522"/>
+ <location filename="../../mainwindow.cpp" line="561"/>
<source>Encrypt for:</source>
<translation type="unfinished">Mã hóa cho:</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="541"/>
+ <location filename="../../mainwindow.cpp" line="580"/>
<source>Attached files:</source>
<translation type="unfinished">Các tệp đính kèm:</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="582"/>
+ <location filename="../../mainwindow.cpp" line="620"/>
<source>About </source>
<translation type="unfinished">Thông tin</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="585"/>
+ <location filename="../../mainwindow.cpp" line="623"/>
<source>&lt;center&gt;This application allows simple encryption &lt;br&gt;and decryption of text messages or files.&lt;br&gt;It&apos;s licensed under the GPL v3&lt;br&gt;&lt;br&gt;&lt;b&gt;Developer:&lt;/b&gt;&lt;br&gt;Bene, Heimer, Juergen, Nils, Ubbo&lt;br&gt;&lt;br&gt;&lt;b&gt;Translation:&lt;/b&gt;&lt;br&gt;Viriato/Phol (es), &lt;br&gt;Serse (it), Russell (my),&lt;br&gt;Alessandro (pt_br), Kirill (ru), Tom (vi)&lt;br&gt;&lt;br&gt;If you have any questions or suggestions have a look&lt;br/&gt;at our &lt;a href=&quot;http://gpg4usb.cpunk.de/contact.php&quot;&gt;contact page&lt;/a&gt; or send a mail to our&lt;br/&gt; mailing list at &lt;a href=&quot;mailto:[email protected]&quot;&gt;[email protected]&lt;/a&gt;.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="597"/>
+ <location filename="../../mainwindow.cpp" line="635"/>
<source>&lt;br&gt;&lt;br&gt; Built with Qt </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="598"/>
+ <location filename="../../mainwindow.cpp" line="636"/>
<source> and GPGME </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="703"/>
+ <location filename="../../mainwindow.cpp" line="741"/>
<source>There is one unencrypted file in attachment folder</source>
<translation type="unfinished">Có một tệp không được mã hóa trong phần đính kèm</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source>There are </source>
<translation type="unfinished">Có</translation>
</message>
<message>
- <location filename="../../mainwindow.cpp" line="705"/>
+ <location filename="../../mainwindow.cpp" line="743"/>
<source> unencrypted files in attachment folder</source>
<translation type="unfinished">các tệp không được mã hóa trong phần đính kèm</translation>
</message>