From 33b30d4312e80775c02919b6b1ffe8ee21a9285a Mon Sep 17 00:00:00 2001 From: Evan Su <48808396+HACKERALERT@users.noreply.github.com> Date: Fri, 24 Sep 2021 20:29:22 -0400 Subject: [PATCH] Prepare for v1.18 --- build/Linux/snap/gui/picocrypt.desktop | 2 +- build/Linux/snapcraft.yaml | 2 +- src/README.md | 9 +- src/{resources => }/font.ttf | Bin src/go.mod | 24 +- src/go.sum | 24 +- src/{resources => }/icon.png | Bin src/{resources => }/sdelete64.exe | Bin src/{resources => }/strings.json | 1788 ++++++++++++------------ 9 files changed, 929 insertions(+), 920 deletions(-) rename src/{resources => }/font.ttf (100%) rename src/{resources => }/icon.png (100%) rename src/{resources => }/sdelete64.exe (100%) rename src/{resources => }/strings.json (96%) diff --git a/build/Linux/snap/gui/picocrypt.desktop b/build/Linux/snap/gui/picocrypt.desktop index 7d74d3f..a7454b8 100644 --- a/build/Linux/snap/gui/picocrypt.desktop +++ b/build/Linux/snap/gui/picocrypt.desktop @@ -1,5 +1,5 @@ [Desktop Entry] -Version=1.17 +Version=1.18 Encoding=UTF-8 Type=Application Terminal=false diff --git a/build/Linux/snapcraft.yaml b/build/Linux/snapcraft.yaml index f0f1b20..e7fe8d4 100644 --- a/build/Linux/snapcraft.yaml +++ b/build/Linux/snapcraft.yaml @@ -1,7 +1,7 @@ name: picocrypt summary: A very small, very simple, yet very secure encryption tool. description: Picocrypt is a very small, very simple, yet very secure encryption tool that you can use to protect your files, generate checksums, shred files, and much more. It's designed to be the go-to tool for encryption, with a focus on security, simplicity, and reliability. Picocrypt uses the secure XChaCha20 cipher and the SHA3 hash function to provide a high level of security, even from three-letter agencies like the NSA. It's designed for maximal security, making absolutely no compromises security-wise, and is built with Go's standard x/crypto modules. Your privacy and security is under attack. Take it back with confidence by protecting your files with Picocrypt. -version: "1.17" +version: "1.18" confinement: strict base: core20 grade: stable diff --git a/src/README.md b/src/README.md index 01da563..d98d759 100644 --- a/src/README.md +++ b/src/README.md @@ -18,17 +18,14 @@ If you don't have Go installed, download the corresponding installer for Go from # 3. Get the Source Files Download the source files as a zip from the homepage or `git clone` this repository. -# 4. Get Resources -Place all the files in the `resources` directory above into the same directory as `Picocrypt.go`. - -# 5. If You're Not on Windows... +# 4. If You're Not on Windows... Windows requires a couple of extra lines to hide the command prompt window that shows when shredding a file. If you're not on Windows, however, you'll need to delete all occurrences of this line: `cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow:true}`. You'll also need to remove the import of `syscall`. -# 6. Build From Source +# 5. Build From Source Finally, build Picocrypt from source: - Windows: go build -ldflags "-s -w -H=windowsgui -extldflags=-static" Picocrypt.go - macOS: go build -ldflags "-s -w" Picocrypt.go - Linux: go build -ldflags "-s -w" Picocrypt.go -# 7. Done! +# 6. Done! You should now see a compiled executable (`Picocrypt.exe`/`Picocrypt`) in your directory. You can run it by double-clicking or executing it in your terminal. That wasn't too hard, right? Enjoy! diff --git a/src/resources/font.ttf b/src/font.ttf similarity index 100% rename from src/resources/font.ttf rename to src/font.ttf diff --git a/src/go.mod b/src/go.mod index c0ccb39..ec8c8ea 100644 --- a/src/go.mod +++ b/src/go.mod @@ -3,23 +3,25 @@ module Picocrypt go 1.17 require ( - github.com/AllenDang/giu v0.5.7-0.20210904143054-08afc1517839 // indirect + github.com/AllenDang/giu v0.5.7-0.20210920064036-77748a6babb3 + github.com/HACKERALERT/clipboard v0.1.5-0.20210716140604-61d96bf4fc94 + github.com/HACKERALERT/dialog v0.0.0-20210716143851-223edea1d840 + github.com/HACKERALERT/infectious v0.0.0-20210829223857-06884e85204c + github.com/HACKERALERT/serpent v0.0.0-20210716182301-293b29869c66 + github.com/HACKERALERT/zxcvbn-go v0.0.0-20210730224720-b29e9dba62c2 + golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 +) + +require ( github.com/AllenDang/go-findfont v0.0.0-20200702051237-9f180485aeb8 // indirect - github.com/AllenDang/imgui-go v1.12.1-0.20210831132008-ff26a21b4e5b // indirect - github.com/HACKERALERT/browser v0.0.0-20210829223838-6f2b13590b20 // indirect - github.com/HACKERALERT/clipboard v0.1.5-0.20210716140604-61d96bf4fc94 // indirect - github.com/HACKERALERT/dialog v0.0.0-20210716143851-223edea1d840 // indirect - github.com/HACKERALERT/infectious v0.0.0-20210829223857-06884e85204c // indirect + github.com/AllenDang/imgui-go v1.12.1-0.20210916075753-db3bb226396e // indirect github.com/HACKERALERT/jibber_jabber v0.0.0-20210819210536-54a4d27b5376 // indirect - github.com/HACKERALERT/serpent v0.0.0-20210716182301-293b29869c66 // indirect github.com/HACKERALERT/w32 v0.0.0-20210716142531-faa7189c4abf // indirect - github.com/HACKERALERT/zxcvbn-go v0.0.0-20210730224720-b29e9dba62c2 // indirect github.com/faiface/mainthread v0.0.0-20171120011319-8b78f0a41ae3 // indirect - github.com/go-gl/gl v0.0.0-20210813123233-e4099ee2221f // indirect + github.com/go-gl/gl v0.0.0-20210905235341-f7a045908259 // indirect github.com/go-gl/glfw/v3.3/glfw v0.0.0-20210727001814-0db043d8d5be // indirect github.com/go-resty/resty/v2 v2.6.0 // indirect github.com/sahilm/fuzzy v0.1.0 // indirect - golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect - golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect + golang.org/x/sys v0.0.0-20210917161153-d61c044b1678 // indirect ) diff --git a/src/go.sum b/src/go.sum index 56469cf..03cd9f0 100644 --- a/src/go.sum +++ b/src/go.sum @@ -1,11 +1,12 @@ -github.com/AllenDang/giu v0.5.7-0.20210904143054-08afc1517839 h1:3tTCT7+9S+Q/Esl5DOIDcXMOyyUW62pYs60xXXsaVUA= -github.com/AllenDang/giu v0.5.7-0.20210904143054-08afc1517839/go.mod h1:ttkQexsIpTMZ9ijPYCaONF66wawCB7UdE2SBJRyR5Ac= +github.com/AllenDang/giu v0.5.7-0.20210915113640-ecd581cd8aa7 h1:jwjQZr3d48X1RS7e97D9ZekXxcZd9cPaZVo5us28aXI= +github.com/AllenDang/giu v0.5.7-0.20210915113640-ecd581cd8aa7/go.mod h1:ttkQexsIpTMZ9ijPYCaONF66wawCB7UdE2SBJRyR5Ac= +github.com/AllenDang/giu v0.5.7-0.20210920064036-77748a6babb3 h1:r4xGphMX8PIW406u//q1KxHaLM+/46T494K1XNGpeUU= +github.com/AllenDang/giu v0.5.7-0.20210920064036-77748a6babb3/go.mod h1:CPJ1DLb80wRX7jUSHYS873LOoNQ9NtNKgVrKuVfUrJY= github.com/AllenDang/go-findfont v0.0.0-20200702051237-9f180485aeb8 h1:dKZMqib/yUDoCFigmz2agG8geZ/e3iRq304/KJXqKyw= github.com/AllenDang/go-findfont v0.0.0-20200702051237-9f180485aeb8/go.mod h1:b4uuDd0s6KRIPa84cEEchdQ9ICh7K0OryZHbSzMca9k= -github.com/AllenDang/imgui-go v1.12.1-0.20210831132008-ff26a21b4e5b h1:aAEt1yvpQTPSO+j8ZUyZFcituppBw5XAzyohqDKhyjw= github.com/AllenDang/imgui-go v1.12.1-0.20210831132008-ff26a21b4e5b/go.mod h1:2jS7bvvG+PejKdNu4eg2UYqx7Ky8IXGAhxOfjq9qTNk= -github.com/HACKERALERT/browser v0.0.0-20210829223838-6f2b13590b20 h1:SBU4w+Ox1w7B3tkDIW9MM+82H1mPnnBsigk4+K7d/os= -github.com/HACKERALERT/browser v0.0.0-20210829223838-6f2b13590b20/go.mod h1:a6mhuuWgHoHBtFZMlvCumNQZE8Y9K0HawuxREW/RA9Q= +github.com/AllenDang/imgui-go v1.12.1-0.20210916075753-db3bb226396e h1:r9zYcwf5dHYsB3PxlxJ0JkEpVKLXxLgoJbigXbCGeMY= +github.com/AllenDang/imgui-go v1.12.1-0.20210916075753-db3bb226396e/go.mod h1:2jS7bvvG+PejKdNu4eg2UYqx7Ky8IXGAhxOfjq9qTNk= github.com/HACKERALERT/clipboard v0.1.5-0.20210716140604-61d96bf4fc94 h1:FNwFtZlPggOVFxx1IvUtBfCGZBR7OMhsmXygJAVHkzg= github.com/HACKERALERT/clipboard v0.1.5-0.20210716140604-61d96bf4fc94/go.mod h1:kkjR9AGvIlIUJdjd/CBL1VfQvyPDE5kL31rAzY/r0s4= github.com/HACKERALERT/dialog v0.0.0-20210716143851-223edea1d840 h1:7He527vRG3S8tVQHu+ZGl4cJ46JhjDk4/Iu1PevcE+Q= @@ -24,39 +25,48 @@ github.com/HACKERALERT/w32 v0.0.0-20210716142531-faa7189c4abf h1:L25UAtgOR6GC0Tr github.com/HACKERALERT/w32 v0.0.0-20210716142531-faa7189c4abf/go.mod h1:S+3Ad2AEm5MhhuHJeAaXUmyAXON0qFDxcP/Chw8q7+Y= github.com/HACKERALERT/zxcvbn-go v0.0.0-20210730224720-b29e9dba62c2 h1:ryB0ethwMkSWCvM13WxfiQixg5SVEi4hdtb/xjjGxow= github.com/HACKERALERT/zxcvbn-go v0.0.0-20210730224720-b29e9dba62c2/go.mod h1:emvFNr4j36gZqrSNuvJg1MUcAkoASfqBcLud/aypJOE= +github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/faiface/mainthread v0.0.0-20171120011319-8b78f0a41ae3 h1:baVdMKlASEHrj19iqjARrPbaRisD7EuZEVJj6ZMLl1Q= github.com/faiface/mainthread v0.0.0-20171120011319-8b78f0a41ae3/go.mod h1:VEPNJUlxl5KdWjDvz6Q1l+rJlxF2i6xqDeGuGAxa87M= github.com/go-gl/gl v0.0.0-20210315015930-ae072cafe09d/go.mod h1:482civXOzJJCPzJ4ZOX/pwvXBWSnzD4OKMdH4ClKGbk= -github.com/go-gl/gl v0.0.0-20210813123233-e4099ee2221f h1:s0O46d8fPwk9kU4k1jj76wBquMVETx7uveQD9MCIQoU= github.com/go-gl/gl v0.0.0-20210813123233-e4099ee2221f/go.mod h1:wjpnOv6ONl2SuJSxqCPVaPZibGFdSci9HFocT9qtVYM= +github.com/go-gl/gl v0.0.0-20210905235341-f7a045908259 h1:8q7+xl2D2qHPLTII1t4vSMNP2VKwDcn+Avf2WXvdB1A= +github.com/go-gl/gl v0.0.0-20210905235341-f7a045908259/go.mod h1:wjpnOv6ONl2SuJSxqCPVaPZibGFdSci9HFocT9qtVYM= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20210727001814-0db043d8d5be h1:vEIVIuBApEBQTEJt19GfhoU+zFSV+sNTa9E9FdnRYfk= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20210727001814-0db043d8d5be/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-resty/resty/v2 v2.3.0/go.mod h1:UpN9CgLZNsv4e9XG50UU8xdI0F43UQ4HmxLBDwaroHU= github.com/go-resty/resty/v2 v2.6.0 h1:joIR5PNLM2EFqqESUjCMGXrWmXNHEU9CEiK813oKYS4= github.com/go-resty/resty/v2 v2.6.0/go.mod h1:PwvJS6hvaPkjtjNg9ph+VrSD92bi5Zq73w/BIH7cC3Q= +github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/sahilm/fuzzy v0.1.0 h1:FzWGaw2Opqyu+794ZQ9SYifWv2EIXpwP4q8dY1kDAwI= github.com/sahilm/fuzzy v0.1.0/go.mod h1:VFvziUEIMCrT6A6tw2RFIXPXXmzXbOsSHF0DOI8ZK9Y= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 h1:HWj/xjIHfjYU5nVXpTM0s39J9CbLn7Cc5a7IC5rwsMQ= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 h1:4nGaVu0QrbjT/AK2PRLuQfQuh6DJve+pELhqTdAj3x0= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf h1:2ucpDCmfkl8Bd/FsLtiD653Wf96cW37s+iGx93zsu4k= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210917161153-d61c044b1678 h1:J27LZFQBFoihqXoegpscI10HpjZ7B5WQLLKL2FZXQKw= +golang.org/x/sys v0.0.0-20210917161153-d61c044b1678/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/src/resources/icon.png b/src/icon.png similarity index 100% rename from src/resources/icon.png rename to src/icon.png diff --git a/src/resources/sdelete64.exe b/src/sdelete64.exe similarity index 100% rename from src/resources/sdelete64.exe rename to src/sdelete64.exe diff --git a/src/resources/strings.json b/src/strings.json similarity index 96% rename from src/resources/strings.json rename to src/strings.json index 937a779..43a5737 100644 --- a/src/resources/strings.json +++ b/src/strings.json @@ -1,894 +1,894 @@ -{ - "de":[ - "Deutsch", - "Ziehe Dateien oder Ordner per Drag & Drop in dieses Fenster.", - "oder", - "Bereit.", - "Anzeigen", - "Eine Schlüsseldatei verwenden", - "Metadaten (optional):", - "Verschlüsselung", - "Passwort generieren:", - "Länge: ", - "Großbuchstaben", - "Kleinbuchstaben", - "Nummern", - "Symbole", - "In die Zwischenablage kopieren", - "Abbruch", - "Generieren", - "Warnung:", - "Ausgabe bereits vorhanden. Überschreiben?", - "Nein", - "Ja", - "Löschen", - "Ausgabe speichern als:", - "Auswählen", - "Passwort:", - "Einsetzen", - "Ausblenden", - "Passwort bestätigen:", - "Erweiterte Optionen:", - "Temporäre Dateien vernichten (kann bei großen Dateien langsam sein)", - "Schneller Modus (etwas unsicherer)", - "Paranoia Modus (äußerst sicher, aber langsamer)", - "Codierung mit Reed-Solomon zur Vermeidung von Verfälschungen (langsam)", - "Aufteilung der Ausgabe in Abschnitte:", - "Behalten des entschlüsselten Outputs, auch wenn er beschädigt oder verändert ist", - "Noch keine Dateien ausgewählt.", - "Passwörter stimmen nicht überein.", - "Bitte wähle eine Schlüsseldatei.", - "Prüfsumme", - "Schalte die Hashes, die du erzeugen möchtest, um und lege eine Datei hier ab.", - "Validiere eine Prüfsumme:", - "Fortschritt:", - "Schredder", - "Datei(en) oder Ordner hier ablegen, um sie zu schreddern.", - "Anzahl der Durchläufe: Nicht unterstützt unter macOS", - "Anzahl der Durchläufe:", - "Infos", - "Picocrypt %s, erstellt von Evan Su (https://evansu.cc/).", - "Veröffentlicht unter einer GNU GPL v3 Lizenz.", - "Ein herzliches Dankeschön an alle unten aufgeführten Personen.", - "Patrons:", - "Spender:", - "Übersetzer:", - "Sonstige:", - "1 Ordner ausgewählt.", - "Verschlüsselt", - " (wird entschlüsselt)", - "Metadaten (schreibgeschützt):", - " (wird wieder zusammengeführt und entschlüsselt)", - "Bitte verwende Picocrypt v1.13, um diese Datei zu entschlüsseln..", - "Dies scheint kein Picocrypt-Volumen zu sein.", - "Metadaten sind beschädigt.", - "Eingabedatei ist beschädigt und kann nicht entschlüsselt werden.", - "Schlüsseldatei auswählen", - " (wird verschlüsselt)", - "%d Dateien ausgewählt.", - "%d Ordner ausgewählt.", - "1 Datei und %d Ordner ausgewählt.", - "%d Dateien und 1 Ordner ausgewählt.", - "1 Datei und 1 Ordner ausgewählt.", - "%d Dateien und %d Verzeichnisse ausgewählt.", - "Startet...", - "Dateien zusammenführen ...", - "Vorgang vom Benutzer abgebrochen.", - "Datei wieder zusammenführen...", - "Die Gesamtgröße überschreitet 256 GiB, die Obergrenze von XChaCha20", - "Werte generieren...", - "Werte lesen...", - "Der Header ist beschädigt und die Eingabedatei kann nicht entschlüsselt werden.", - "Schlüssel ableiten...", - "Vorgang vom Benutzer abgebrochen.", - "Das angegebene Passwort ist falsch.", - "Die verwendete Schlüsseldatei ist falsch.", - "Die Eingabedatei ist zu beschädigt, um sie zu entschlüsseln.", - "Ausführen mit %.2f MB/s (Verbleibend: %s)", - "Datei aufteilen...", - "Schreddern temporärer Dateien...", - "Die Eingabedatei ist beschädigt und/oder verändert. Sei bitte vorsichtig.", - "Abgeschlossen.", - "Die Eingabedatei ist entweder beschädigt oder absichtlich verändert.", - "Berechnung...", - "Schreddern...", - "Löschen der Eingabedatei(en) nach der Entschlüsselung", - "Kopieren", - "Bitte verwende Picocrypt v1.16, um diese Datei zu entschlüsseln.", - "Eine neuere Version ist verfügbar.", - "Start" - ], - "en":[ - "English", - "Drag and drop file(s) and folder(s) into this window.", - "or", - "Ready.", - "Show", - "Keyfile", - "Metadata (optional):", - "Encryption", - "Generate password:", - "Length:", - "Uppercase", - "Lowercase", - "Numbers", - "Symbols", - "Copy to clipboard", - "Cancel", - "Generate", - "Warning:", - "Output already exists. Overwrite?", - "No", - "Yes", - "Clear", - "Save output as:", - "Choose", - "Password:", - "Paste", - "Hide", - "Confirm password:", - "Advanced options:", - "Shred temporary files", - "Use fast mode", - "Use paranoid mode", - "Encode with Reed-Solomon", - "Split output into chunks of", - "Keep decrypted output even if it's corrupted or modified", - "No files selected yet.", - "Passwords don't match.", - "Please select a keyfile.", - "Checksum", - "Toggle the hashes you would like to generate and drop a file here.", - "Validate a checksum:", - "Progress:", - "Shredder", - "Drop file(s) and folder(s) here to shred them.", - "Number of passes: Not supported on macOS", - "Number of passes:", - "About", - "Picocrypt %s, created by Evan Su (https://evansu.cc/).", - "Released under a GNU GPL v3 License.", - "A warm thank you to all the people listed below.", - "Patrons:", - "Donators:", - "Translators:", - "Other:", - "1 folder selected.", - "Encrypted", - " (will decrypt)", - "Metadata (read-only):", - " (will recombine and decrypt)", - "Please use Picocrypt v1.13 to decrypt this file.", - "This doesn't seem to be a Picocrypt volume.", - "Metadata is corrupted.", - "Input file is corrupt and cannot be decrypted.", - "Select keyfile", - " (will encrypt)", - "%d files selected.", - "%d folders selected.", - "1 file and %d folders selected.", - "%d files and 1 folder selected.", - "1 file and 1 folder selected.", - "%d files and %d folders selected.", - "Starting...", - "Combining files...", - "Operation cancelled by user.", - "Recombining file...", - "Total size is larger than 256 GiB, XChaCha20's limit.", - "Generating values...", - "Reading values...", - "The header is corrupt and the input file cannot be decrypted.", - "Deriving key...", - "Operation cancelled by user.", - "The provided password is incorrect.", - "The provided keyfile is incorrect.", - "The input file is too corrupted to decrypt.", - "Working at %.2f MB/s (ETA: %s)", - "Splitting file...", - "Shredding temporary files...", - "The input file is corrupted and/or modified. Please be careful.", - "Completed.", - "The input file is either corrupted or intentionally modified.", - "Calculating...", - "Shredding...", - - "Delete the input file(s) after decryption", - "Copy", - "Please use Picocrypt v1.16 to decrypt this file.", - "A newer version is available.", - "Start" - ], - "es":[ - "Español", - "Pinche y arrastre archivos y carpetas a esta ventana.", - "o", - "Listo", - "Mostrar", - "Utilizar un archivo de claves", - "Metadatos (opcional):", - "Encriptación", - "Generar contraseña:", - "Longitud:", - "Mayúsculas", - "Minúsculas", - "Números", - "Símbolos", - "Copiar al portapapeles", - "Cancelar", - "Generar", - "Advertencia:", - "Ya existe un resultado. ¿Desea sobreescribirlo?", - "No", - "Si", - "Limpiar", - "Guardar resultado como:", - "Elegir", - "Contraseña:", - "Pegar", - "Ocultar", - "Confirmar contraseña:", - "Opciones avanzadas:", - "Triturar archivos temporales (puede tomar un tiempo para archivos grandes)", - "Modo rápido (algo menos seguro)", - "Modo paranoico (muy seguro, pero más lento)", - "Codificar con Reed-Solomon para prevenir corrupción (lento)", - "Dividir resultado en secciones de:", - "Conservar el resultado desencriptado aunque se haya corrompido o haya sido modificado", - "Aún no hay archivos seleccionados", - "Las contraseñas no coinciden.", - "Por favor seleccione un archivo de claves.", - "Suma de comprobación", - "Seleccione los hashes que desea generar y arrastre un archivo aquí.", - "Validar una suma de comprobación:", - "Progreso:", - "Triturador", - "Arrastre archivos o carpetas aquí para triturarlos.", - "Cantidad de pasadas: No soportado en macOS", - "Cantidad de pasadas:", - "Acerca de", - "Picocrypt %s, creado por Evan Su (https://evansu.cc/).", - "Liberado bajo una licencia GNU GPL v3.", - "Mi sincero agradecimiento a todos los mencionados a continuación.", - "Patrons:", - "Contribuyentes:", - "Traductores:", - "Otros:", - "1 carpeta seleccionada.", - "Encriptado", - " (desencriptará)", - "Metadatos (sólo lectura):", - " (recombinará y desencriptará)", - "Por favor utilice Picocrypt v1.13 para desencriptar este archivo.", - "Éste no parece ser un volumen Picocrypt.", - "Los metadatos están corrompidos.", - "El archivo de origen está corrompido y no puede ser desencriptado.", - "Seleccione un archivo de claves", - " (encriptará)", - "%d archivos seleccionados.", - "%d carpetas seleccionadas.", - "1 archivo y %d carpetas seleccionados.", - "%d archivos y 1 carpeta selecccionados.", - "1 archivo y 1 carpeta seleccionados.", - "%d archivos y %d carpetas seleccionados.", - "Comenzando...", - "Combinando archivos...", - "La operación fue cancelada por el usuario.", - "Recombinando archivo...", - "El tamaño total es mayor a 256 GiB, límite de XChaCha20.", - "Generando valores...", - "Leyendo valores...", - "El encabezado está corrompido y el archivo de origen no puede ser desencriptado.", - "Derivando clave...", - "Operación cancelada por el usuario.", - "La contraseña es incorrecta.", - "El archivo de claves es incorrecto.", - "El archivo de origen está demasiado corrompido como para ser desencriptado.", - "Trabajando a %.2f MB/s (Tiempo estimado: %s)", - "Dividiendo el archivo...", - "Triturando archivos temporales...", - "El archivo de origen está corrompido y/o ha sido modificado. Por favor, proceda con cuidado.", - "Finalizado.", - "El archivo de origen está corrompido o fue modificado intencionalmente.", - "Calculando...", - "Triturando...", - "Eliminar los archivos de entrada después del descifrado", - "Dupdo", - "Por favor utilice Picocrypt v1.16 para desencriptar este archivo.", - "Una nueva versión está disponible.", - "Comienzo" - ], - "fr":[ - "French", - "Drag and drop file(s) or folder(s) into this window.", - "or", - "Ready.", - "Show", - "Use a keyfile", - "Metadata (optional):", - "Encryption", - "Generate password:", - "Length: ", - "Uppercase", - "Lowercase", - "Numbers", - "Symbols", - "Copy to clipboard", - "Cancel", - "Generate", - "Warning:", - "Output already exists. Overwrite?", - "No", - "Yes", - "Clear", - "Save output as:", - "Choose", - "Password:", - "Paste", - "Hide", - "Confirm password:", - "Advanced options:", - "Shred temporary files (can be slow for large files)", - "Fast mode (slightly less secure)", - "Paranoid mode (extremely secure, but slower)", - "Encode with Reed-Solomon to prevent corruption (slow)", - "Split output into chunks of", - "Keep decrypted output even if it's corrupted or modified", - "No files selected yet.", - "Passwords don't match.", - "Please select a keyfile.", - "Checksum", - "Toggle the hashes you would like to generate and drop a file here.", - "Validate a checksum:", - "Progress:", - "Shredder", - "Drop file(s) or folder(s) here to shred them.", - "Number of passes: Not supported on macOS", - "Number of passes:", - "About", - "Picocrypt %s, created by Evan Su (https://evansu.cc/).", - "Released under a GNU GPL v3 License.", - "A warm thank you to all the people listed below.", - "Patrons:", - "Donators:", - "Translators:", - "Other:", - "1 folder selected.", - "Encrypted", - " (will decrypt)", - "Metadata (read-only):", - " (will recombine and decrypt)", - "Please use Picocrypt v1.13 to decrypt this file.", - "This doesn't seem to be a Picocrypt volume.", - "Metadata is corrupted.", - "Input file is corrupt and cannot be decrypted.", - "Select keyfile", - " (will encrypt)", - "%d files selected.", - "%d folders selected.", - "1 file and %d folders selected.", - "%d files and 1 folder selected.", - "1 file and 1 folder selected.", - "%d files and %d folders selected.", - "Starting...", - "Combining files...", - "Operation cancelled by user.", - "Recombining file...", - "Total size is larger than 256 GiB, XChaCha20's limit.", - "Generating values...", - "Reading values...", - "The header is corrupt and the input file cannot be decrypted.", - "Deriving key...", - "Operation cancelled by user.", - "The provided password is incorrect.", - "The provided keyfile is incorrect.", - "The input file is too corrupted to decrypt.", - "Working at %.2f MB/s (ETA: %s)", - "Splitting file...", - "Shredding temporary files...", - "The input file is corrupted and/or modified. Please be careful.", - "Completed.", - "The input file is either corrupted or intentionally modified.", - "Calculating...", - "Shredding...", - "Delete the input file(s) after decryption", - "Copy", - "Please use Picocrypt v1.16 to decrypt this file.", - "A newer version is available.", - "Start" - ], - "nl":[ - "Dutch", - "Drag and drop file(s) or folder(s) into this window.", - "or", - "Ready.", - "Show", - "Use a keyfile", - "Metadata (optional):", - "Encryption", - "Generate password:", - "Length: ", - "Uppercase", - "Lowercase", - "Numbers", - "Symbols", - "Copy to clipboard", - "Cancel", - "Generate", - "Warning:", - "Output already exists. Overwrite?", - "No", - "Yes", - "Clear", - "Save output as:", - "Choose", - "Password:", - "Paste", - "Hide", - "Confirm password:", - "Advanced options:", - "Shred temporary files (can be slow for large files)", - "Fast mode (slightly less secure)", - "Paranoid mode (extremely secure, but slower)", - "Encode with Reed-Solomon to prevent corruption (slow)", - "Split output into chunks of", - "Keep decrypted output even if it's corrupted or modified", - "No files selected yet.", - "Passwords don't match.", - "Please select a keyfile.", - "Checksum", - "Toggle the hashes you would like to generate and drop a file here.", - "Validate a checksum:", - "Progress:", - "Shredder", - "Drop file(s) or folder(s) here to shred them.", - "Number of passes: Not supported on macOS", - "Number of passes:", - "About", - "Picocrypt %s, created by Evan Su (https://evansu.cc/).", - "Released under a GNU GPL v3 License.", - "A warm thank you to all the people listed below.", - "Patrons:", - "Donators:", - "Translators:", - "Other:", - "1 folder selected.", - "Encrypted", - " (will decrypt)", - "Metadata (read-only):", - " (will recombine and decrypt)", - "Please use Picocrypt v1.13 to decrypt this file.", - "This doesn't seem to be a Picocrypt volume.", - "Metadata is corrupted.", - "Input file is corrupt and cannot be decrypted.", - "Select keyfile", - " (will encrypt)", - "%d files selected.", - "%d folders selected.", - "1 file and %d folders selected.", - "%d files and 1 folder selected.", - "1 file and 1 folder selected.", - "%d files and %d folders selected.", - "Starting...", - "Combining files...", - "Operation cancelled by user.", - "Recombining file...", - "Total size is larger than 256 GiB, XChaCha20's limit.", - "Generating values...", - "Reading values...", - "The header is corrupt and the input file cannot be decrypted.", - "Deriving key...", - "Operation cancelled by user.", - "The provided password is incorrect.", - "The provided keyfile is incorrect.", - "The input file is too corrupted to decrypt.", - "Working at %.2f MB/s (ETA: %s)", - "Splitting file...", - "Shredding temporary files...", - "The input file is corrupted and/or modified. Please be careful.", - "Completed.", - "The input file is either corrupted or intentionally modified.", - "Calculating...", - "Shredding...", - "Delete the input file(s) after decryption", - "Copy", - "Please use Picocrypt v1.16 to decrypt this file.", - "A newer version is available.", - "Start" - ], - "np":[ - "Nepalese", - "Drag and drop file(s) and folder(s) into this window.", - "or", - "Ready.", - "Show", - "Use a keyfile", - "Metadata (optional):", - "Encryption", - "Generate password:", - "Length: ", - "Uppercase", - "Lowercase", - "Numbers", - "Symbols", - "Copy to clipboard", - "Cancel", - "Generate", - "Warning:", - "Output already exists. Overwrite?", - "No", - "Yes", - "Clear", - "Save output as:", - "Choose", - "Password:", - "Paste", - "Hide", - "Confirm password:", - "Advanced options:", - "Shred temporary files (can be slow for large files)", - "Fast mode (slightly less secure)", - "Paranoid mode (extremely secure, but slower)", - "Encode with Reed-Solomon to prevent corruption (slow)", - "Split output into chunks of", - "Keep decrypted output even if it's corrupted or modified", - "No files selected yet.", - "Passwords don't match.", - "Please select a keyfile.", - "Checksum", - "Toggle the hashes you would like to generate and drop a file here.", - "Validate a checksum:", - "Progress:", - "Shredder", - "Drop file(s) or folder(s) here to shred them.", - "Number of passes: Not supported on macOS", - "Number of passes:", - "About", - "Picocrypt %s, created by Evan Su (https://evansu.cc/).", - "Released under a GNU GPL v3 License.", - "A warm thank you to all the people listed below.", - "Patrons:", - "Donators:", - "Translators:", - "Other:", - "1 folder selected.", - "Encrypted", - " (will decrypt)", - "Metadata (read-only):", - " (will recombine and decrypt)", - "Please use Picocrypt v1.13 to decrypt this file.", - "This doesn't seem to be a Picocrypt volume.", - "Metadata is corrupted.", - "Input file is corrupt and cannot be decrypted.", - "Select keyfile", - " (will encrypt)", - "%d files selected.", - "%d folders selected.", - "1 file and %d folders selected.", - "%d files and 1 folder selected.", - "1 file and 1 folder selected.", - "%d files and %d folders selected.", - "Starting...", - "Combining files...", - "Operation cancelled by user.", - "Recombining file...", - "Total size is larger than 256 GiB, XChaCha20's limit.", - "Generating values...", - "Reading values...", - "The header is corrupt and the input file cannot be decrypted.", - "Deriving key...", - "Operation cancelled by user.", - "The provided password is incorrect.", - "The provided keyfile is incorrect.", - "The input file is too corrupted to decrypt.", - "Working at %.2f MB/s (ETA: %s)", - "Splitting file...", - "Shredding temporary files...", - "The input file is corrupted and/or modified. Please be careful.", - "Completed.", - "The input file is either corrupted or intentionally modified.", - "Calculating...", - "Shredding...", - "Delete the input file(s) after decryption", - "Copy", - "Please use Picocrypt v1.16 to decrypt this file.", - "A newer version is available.", - "Start" - ], - "pt-BR":[ - "Português brasileiro", - "Arraste e solte arquivos ou pastas nesta janela.", - "ou", - "Pronto.", - "Mostrar", - "Arquivo-chave", - "Metadados (opcional):", - "Criptografia", - "Gerar senha:", - "Tamanho: ", - "Maiúsculas", - "Minúsculas", - "Números", - "Símbolos", - "Copiar para a área de transferência", - "Cancelar", - "Gerar", - "Aviso:", - "Local de destino já existe. Sobrescrever?", - "Não", - "Sim", - "Limpar", - "Salvar saída como:", - "Escolher", - "Senha:", - "Colar", - "Ocultar", - "Confirme a senha:", - "Opções avançadas:", - "Triturar arquivos temporários", - "Usar modo rápido", - "Usar modo paranoico", - "Codificar com Reed-Solomon", - "Dividir saída em pedaços de", - "Manter a saída desencriptada mesmo se estiver corrompida ou modificada", - "Nenhum arquivo selecionado.", - "Senhas não correspondem.", - "Por favor, selecione um arquivo-chave.", - "Checksum", - "Marque os hashes que você quer gerar e solte um arquivo aqui.", - "Validar um checksum:", - "Progresso:", - "Triturador", - "Solte arquivos ou pastas aqui para triturá-los.", - "Número de passagens: Não suportado no macOS", - "Número de passagens:", - "Sobre", - "Picocrypt %s, criado por Evan Su (https://evansu.cc/).", - "Lançado sob a licença GNU GPL v3.", - "Calorosos agradecimentos a todos listados abaixo.", - "Patrons:", - "Doadores:", - "Tradutores:", - "Outros:", - "1 pasta selecionada.", - "Encriptado", - " (será desencriptado)", - "Metadados (somente leitura):", - " (será recombinado e desencriptado)", - "Por favor, use o Picocrypt v1.13 para desencriptar este arquivo.", - "Isso não parece ser um volume Picocrypt.", - "Os metadados estão corrompidos.", - "O arquivo de entrada está corrompido e não pode ser desencriptado.", - "Selecionar arquivo-chave", - " (será encriptado)", - "%d arquivos selecionados.", - "%d pastas selecionadas.", - "1 arquivo e %d pastas selecionados.", - "%d arquivos e 1 pasta selecionados.", - "1 arquivo e 1 pasta selecionados.", - "%d arquivos e %d pastas selecionados.", - "Iniciando...", - "Combinando arquivos...", - "Operação cancelada pelo usuário.", - "Recombinando arquivo...", - "Tamanho total é maior que 256 GiB, o limite do XChaCha20.", - "Gerando valores...", - "Lendo values...", - "O cabeçalho está corrompido e o arquivo de entrada não pode ser desencriptado.", - "Derivando chave...", - "Operação cancelada pelo usuário.", - "A senha fornecida está incorreta.", - "O arquivo-chave fornecido está incorreto.", - "O arquivo de entrada está corrompido demais para desencriptar.", - "Trabalhando a %.2f MB/s (ETA: %s)", - "Dividindo arquivo...", - "Triturando arquivos temporários...", - "O arquivo de entrada está corrompido e/ou modificado. Por favor, tenha cuidado.", - "Completo.", - "O arquivo de entrada está corrompido ou intencionalmente modificado.", - "Calculando...", - "Triturando...", - "Excluir o(s) arquivo(s) de entrada após a desencriptação", - "Copiar", - "Por favor, use o Picocrypt v1.16 para desencriptar este arquivo.", - "Uma versão mais nova está disponível.", - "Começar" - ], - "tr":[ - "Türkçe", - "Dosya veya klasörleri bu pencereye sürükleyin.", - "ya da", - "Hazır.", - "Göster", - "Anahtar Dosya", - "Üstveri (opsiyonel):", - "Şifreleme", - "Şifre üret:", - "Uzunluk:", - "Büyük harf", - "Küçük harf", - "Numaralar", - "Semboller", - "Panoya kopyala", - "İptal", - "Üret", - "Uyarı:", - "Çıktı dosyası zaten mevcut. Üzerine yazılsın mı?", - "Hayır", - "Evet", - "Temizle", - "Çıktıyı farklı kaydet:", - "Seçiniz", - "Parola:", - "Yapıştır", - "Gizle", - "Parolayı onayla:", - "Gelişmiş ayarlar:", - "Geçici dosyaları öğüt", - "Hızlı yöntem", - "Paranoyak yöntem", - "Reed-Solomon ile şifrele", - "Çıktı dosyasını parçalara böl", - "Çıktı dosyasını değiştirilmiş yahut bozulmuş olsa dahi silme.", - "Henüz dosya seçilmedi.", - "Parolalar eşleşmiyor", - "Lütfen bir anahtar dosya seçin.", - "Sağlama Toplamı", - "Oluşturulmasını istediğiniz sağlamaları işaretleyin ve bir dosya bırakın.", - "Bir sağlama toplamını doğrulayın:", - "İlerleme:", - "Öğütücü", - "Öğütmek istediğiniz dosya veya klasörleri bu pencereye sürükleyin.", - "Geçiş sayısı: macOS'te desteklenmemektedir", - "Geçiş sayısı:", - "Hakkında", - "Picocrypt %s, Yapımcı: Evan Su (https://evansu.cc/).", - "GNU GPL v3 Lisansı altında yayınlanmıştır.", - "Aşağıda listelenmiş olan herkese içtenlikle teşekkür ederim.", - "Patronlar:", - "Bağışta bulunanlar:", - "Tercümanlar:", - "Diğer:", - "1 klasör seçildi.", - "Şİfrelendi", - " (Deşifre edilecek)", - "Üstveri (salt-okunur):", - " (Yeniden birleştirilip deşifre edilecek)", - "Bu dosyayı deşifre edebilmek için lütfen Picocrypt v1.13 kullanın.", - "Bu bir Picocrypt bölümü gibi görünmüyor.", - "Üstveri bozulmuş.", - "Girdi dosyası bozulmuş ve deşifre edilemez durumda.", - "Anahtar dosya seçin", - " (şifrelenecek)", - "%d dosya seçildi.", - "%d klasör seçildi.", - "1 dosya ve %d klasör seçildi.", - "%d dosya ve 1 klasör seçildi.", - "1 dosya ve 1 klasör seçildi.", - "%d dosya ve %d klasör seçildi.", - "Başlatılıyor...", - "Dosyalar kaynaştırılıyor", - "İşlem kullanıcı tarafından iptal edildi.", - "Dosyalar tekrar bir araya getiriliyor...", - "Toplam dosya boyutu XChaCha20'nin sınırı olan 256 GiB'tan büyük", - "Değerler üretiliyor...", - "Değerler okunuyor...", - "Üstbilgi bozuk ve girdi dosyası deşifre edilemez.", - "Anahtar üretiliyor...", - "Operasyon kullancıı tarafından iptal edildi.", - "Yazılan parola yanlış.", - "Temin edilen anahtar dosyası yanlış.", - "Girdi dosyası deşifre edilemeyecek kadar bozulmuş.", - "%.2f MB/s hızda çalışıyor (Tahmini Bitiş Zamanı: %s)", - "Dosya bölünüyor...", - "Geçici dosyalar öğütülüyor...", - "Girdi dosyası bozulmuş ve/veya değiştirilmiş. Lütfen dikkatli olun.", - "Tamamlandı.", - "Girdi dosaysı ya bozulmuş ya da bilerek değişiklik yapılmış.", - "Hesaplanıyor...", - "Öğütülüyor...", - "Şifre çözme işleminden sonra girdi dosyalarını sil.", - "Kopyala", - "Bu dosyayı deşifre edebilmek için lütfen Picocrypt v1.16 kullanın.", - "Daha yeni bir sürüm mevcut.", - "Başlat" - ], - "lt":[ - "Lietuvių", - "Tempkite failus ir aplankus į šį langą", - "Arba", - "Pasiruošęs.", - "Rodyti", - "Rakto failas", - "Metaduomenys (neprivaloma):", - "Šifravimas", - "Generuoti slaptažodį:", - "Ilgis:", - "Didžiosios raidės", - "Mažosios raidės", - "Skaičiai", - "Simboliai", - "Kopijuoti į iškarpinę", - "Atšaukti", - "Generuoti", - "Įspėjimas:", - "Tokia išvestis jau egzistuoja. Perrašyti?", - "Ne", - "Taip", - "Išvalyti", - "Įrašyti išvestį kaip:", - "Pasirinkti", - "Slaptažodis:", - "Įklijuoti", - "Slėpti", - "Patvirtinti slaptažodį:", - "Išplėstiniai nustatymai:", - "Smulkinti laikinus failus (dėl didesnių failų dydžių sparta gali sumažėti)", - "Greitasis režimas (ne toks saugus)", - "Paranojinis režimas (labai saugus, tačiau lėtesnis", - "Koduoti su Reed-Solomon", - "Padalyti išvestį į dalis po", - "Saugoti iššifruotą išvestį, nors ji buvo sugandinta arba pakeista", - "Jokie failai nepasirinkti.", - "Slaptažodžiai nesutampa.", - "Prašome pasirinkti rakto failą.", - "Kontrolinė suma", - "Pasirinkite, kurias maišos funkcijas norėsite generuoti ir nutempkite failą čia.", - "Patvirtinti kontrolinę sumą:", - "Progresas:", - "Smulkintuvas", - "Tampkite failus čia jų susmulkinimui.", - "Leidimų skaičius: nepalaikoma macOS", - "Leidimų skaičius:", - "Apie", - "Picocrypt %s, yra sukurtas Evan Su (https://evansu.cc/).", - "Išleistas pagal GNU GPL v3 licenciją.", - "Nuoširdžiai ačiū visiems apačioje išvardytiems žmonėms.", - "Patrionai:", - "Finansiniai rėmėjai:", - "Vertėjai:", - "Kiti:", - "Pasirinktas 1 aplankas.", - "Užšifruotas", - "(bus iššifruotas)", - "Metaduomenys (tik skaitomi):", - "(bus naujai sujungtas ir iššifruotas)", - "Prašome naudoti Picocrypt v1.13 šio failo iššifravimui.", - "Tai nėra Picocrypt tomas.", - "Metaduomenys yra sugadinti.", - "Įvesties failas yra sugadintas ir negali būti iššifruotas.", - "Pasirinkti rakto failą", - "(bus užšifruotas)", - "%d pasirinkti failai.", - "%d pasirinkti aplankai.", - "Pasirinktas 1 failas ir %d aplankai.", - "Pasirinkti %d failai ir 1 aplankas.", - "Pasirinktas 1 failas ir 1 aplankas.", - "Pasirinkti %d failai ir %d aplankai.", - "Pradedama...", - "Sujungiami failai...", - "Operacija atšaukta vartotojo.", - "Naujai jungiamas failas...", - "Visas dydis yra didesnis nei 256 GiB, XChaCha20 limitas.", - "Generuojamos vertės...", - "Skaitomos vertės...", - "Antraštė yra sugadinta ir įvesties failas negali būti iššifruotas.", - "Išvedamas raktas...", - "Operacija atšaukta vartotojo.", - "Pateiktas slaptažodis yra neteisingas.", - "Pateiktas rakto failas yra neteisingas.", - "Įvesties failas nebetinkamas iššifravimui.", - "Dirba %.2f MB/s sparta (Numatomas trukmė: %s)", - "Failas skaidomas...", - "Smulkinami laikini failai...", - "Įvesties failas yra sugadintas ir/arba pakeistas, būkite atsargūs.", - "Atlikta.", - "Įvesties failas yra sugadintas arba tyčia pakeistas.", - "Skaičiuojama...", - "Smulkinama...", - "Ištrinti įvesties failą(-us) po iššifravimo", - "Kopijuoti", - "Prašome naudoti Picocrypt v1.16 šio failo iššifravimui.", - "Galima naujesnė versija.", - "Pradėti" - ] -} +{ + "de":[ + "Deutsch", + "Ziehe Dateien oder Ordner per Drag & Drop in dieses Fenster.", + "oder", + "Bereit.", + "Anzeigen", + "Eine Schlüsseldatei verwenden", + "Metadaten (optional):", + "Verschlüsselung", + "Passwort generieren:", + "Länge: ", + "Großbuchstaben", + "Kleinbuchstaben", + "Nummern", + "Symbole", + "In die Zwischenablage kopieren", + "Abbruch", + "Generieren", + "Warnung:", + "Ausgabe bereits vorhanden. Überschreiben?", + "Nein", + "Ja", + "Löschen", + "Ausgabe speichern als:", + "Auswählen", + "Passwort:", + "Einsetzen", + "Ausblenden", + "Passwort bestätigen:", + "Erweiterte Optionen:", + "Temporäre Dateien vernichten (kann bei großen Dateien langsam sein)", + "Schneller Modus (etwas unsicherer)", + "Paranoia Modus (äußerst sicher, aber langsamer)", + "Codierung mit Reed-Solomon zur Vermeidung von Verfälschungen (langsam)", + "Aufteilung der Ausgabe in Abschnitte:", + "Behalten des entschlüsselten Outputs, auch wenn er beschädigt oder verändert ist", + "Noch keine Dateien ausgewählt.", + "Passwörter stimmen nicht überein.", + "Bitte wähle eine Schlüsseldatei.", + "Prüfsumme", + "Schalte die Hashes, die du erzeugen möchtest, um und lege eine Datei hier ab.", + "Validiere eine Prüfsumme:", + "Fortschritt:", + "Schredder", + "Datei(en) oder Ordner hier ablegen, um sie zu schreddern.", + "Anzahl der Durchläufe: Nicht unterstützt unter macOS", + "Anzahl der Durchläufe:", + "Infos", + "Picocrypt %s, erstellt von Evan Su (https://evansu.cc/).", + "Veröffentlicht unter einer GNU GPL v3 Lizenz.", + "Ein herzliches Dankeschön an alle unten aufgeführten Personen.", + "Patrons:", + "Spender:", + "Übersetzer:", + "Sonstige:", + "1 Ordner ausgewählt.", + "Verschlüsselt", + " (wird entschlüsselt)", + "Metadaten (schreibgeschützt):", + " (wird wieder zusammengeführt und entschlüsselt)", + "Bitte verwende Picocrypt v1.13, um diese Datei zu entschlüsseln..", + "Dies scheint kein Picocrypt-Volumen zu sein.", + "Metadaten sind beschädigt.", + "Eingabedatei ist beschädigt und kann nicht entschlüsselt werden.", + "Schlüsseldatei auswählen", + " (wird verschlüsselt)", + "%d Dateien ausgewählt.", + "%d Ordner ausgewählt.", + "1 Datei und %d Ordner ausgewählt.", + "%d Dateien und 1 Ordner ausgewählt.", + "1 Datei und 1 Ordner ausgewählt.", + "%d Dateien und %d Verzeichnisse ausgewählt.", + "Startet...", + "Dateien zusammenführen ...", + "Vorgang vom Benutzer abgebrochen.", + "Datei wieder zusammenführen...", + "Die Gesamtgröße überschreitet 256 GiB, die Obergrenze von XChaCha20", + "Werte generieren...", + "Werte lesen...", + "Der Header ist beschädigt und die Eingabedatei kann nicht entschlüsselt werden.", + "Schlüssel ableiten...", + "Vorgang vom Benutzer abgebrochen.", + "Das angegebene Passwort ist falsch.", + "Die verwendete Schlüsseldatei ist falsch.", + "Die Eingabedatei ist zu beschädigt, um sie zu entschlüsseln.", + "Ausführen mit %.2f MB/s (Verbleibend: %s)", + "Datei aufteilen...", + "Schreddern temporärer Dateien...", + "Die Eingabedatei ist beschädigt und/oder verändert. Sei bitte vorsichtig.", + "Abgeschlossen.", + "Die Eingabedatei ist entweder beschädigt oder absichtlich verändert.", + "Berechnung...", + "Schreddern...", + "Löschen der Eingabedatei(en) nach der Entschlüsselung", + "Kopieren", + "Bitte verwende Picocrypt v1.16, um diese Datei zu entschlüsseln.", + "Eine neuere Version ist verfügbar.", + "Start" + ], + "en":[ + "English", + "Drag and drop file(s) and folder(s) into this window.", + "or", + "Ready.", + "Show", + "Keyfile", + "Metadata (optional):", + "Encryption", + "Generate password:", + "Length:", + "Uppercase", + "Lowercase", + "Numbers", + "Symbols", + "Copy to clipboard", + "Cancel", + "Generate", + "Warning:", + "Output already exists. Overwrite?", + "No", + "Yes", + "Clear", + "Save output as:", + "Choose", + "Password:", + "Paste", + "Hide", + "Confirm password:", + "Advanced options:", + "Shred temporary files", + "Use fast mode", + "Use paranoid mode", + "Encode with Reed-Solomon", + "Split output into chunks of", + "Keep decrypted output even if it's corrupted or modified", + "No files selected yet.", + "Passwords don't match.", + "Please select a keyfile.", + "Checksum", + "Toggle the hashes you would like to generate and drop a file here.", + "Validate a checksum:", + "Progress:", + "Shredder", + "Drop file(s) and folder(s) here to shred them.", + "Number of passes: Not supported on macOS", + "Number of passes:", + "About", + "Picocrypt %s, created by Evan Su (https://evansu.cc/).", + "Released under a GNU GPL v3 License.", + "A warm thank you to all the people listed below.", + "Patrons:", + "Donators:", + "Translators:", + "Other:", + "1 folder selected.", + "Encrypted", + " (will decrypt)", + "Metadata (read-only):", + " (will recombine and decrypt)", + "Please use Picocrypt v1.13 to decrypt this file.", + "This doesn't seem to be a Picocrypt volume.", + "Metadata is corrupted.", + "Input file is corrupt and cannot be decrypted.", + "Select keyfile", + " (will encrypt)", + "%d files selected.", + "%d folders selected.", + "1 file and %d folders selected.", + "%d files and 1 folder selected.", + "1 file and 1 folder selected.", + "%d files and %d folders selected.", + "Starting...", + "Combining files...", + "Operation cancelled by user.", + "Recombining file...", + "Total size is larger than 256 GiB, XChaCha20's limit.", + "Generating values...", + "Reading values...", + "The header is corrupt and the input file cannot be decrypted.", + "Deriving key...", + "Operation cancelled by user.", + "The provided password is incorrect.", + "The provided keyfile is incorrect.", + "The input file is too corrupted to decrypt.", + "Working at %.2f MB/s (ETA: %s)", + "Splitting file...", + "Shredding temporary files...", + "The input file is corrupted and/or modified. Please be careful.", + "Completed.", + "The input file is either corrupted or intentionally modified.", + "Calculating...", + "Shredding...", + + "Delete the input file(s) after decryption", + "Copy", + "Please use Picocrypt v1.16 to decrypt this file.", + "A newer version is available.", + "Start" + ], + "es":[ + "Español", + "Pinche y arrastre archivos y carpetas a esta ventana.", + "o", + "Listo", + "Mostrar", + "Utilizar un archivo de claves", + "Metadatos (opcional):", + "Encriptación", + "Generar contraseña:", + "Longitud:", + "Mayúsculas", + "Minúsculas", + "Números", + "Símbolos", + "Copiar al portapapeles", + "Cancelar", + "Generar", + "Advertencia:", + "Ya existe un resultado. ¿Desea sobreescribirlo?", + "No", + "Si", + "Limpiar", + "Guardar resultado como:", + "Elegir", + "Contraseña:", + "Pegar", + "Ocultar", + "Confirmar contraseña:", + "Opciones avanzadas:", + "Triturar archivos temporales (puede tomar un tiempo para archivos grandes)", + "Modo rápido (algo menos seguro)", + "Modo paranoico (muy seguro, pero más lento)", + "Codificar con Reed-Solomon para prevenir corrupción (lento)", + "Dividir resultado en secciones de:", + "Conservar el resultado desencriptado aunque se haya corrompido o haya sido modificado", + "Aún no hay archivos seleccionados", + "Las contraseñas no coinciden.", + "Por favor seleccione un archivo de claves.", + "Suma de comprobación", + "Seleccione los hashes que desea generar y arrastre un archivo aquí.", + "Validar una suma de comprobación:", + "Progreso:", + "Triturador", + "Arrastre archivos o carpetas aquí para triturarlos.", + "Cantidad de pasadas: No soportado en macOS", + "Cantidad de pasadas:", + "Acerca de", + "Picocrypt %s, creado por Evan Su (https://evansu.cc/).", + "Liberado bajo una licencia GNU GPL v3.", + "Mi sincero agradecimiento a todos los mencionados a continuación.", + "Patrons:", + "Contribuyentes:", + "Traductores:", + "Otros:", + "1 carpeta seleccionada.", + "Encriptado", + " (desencriptará)", + "Metadatos (sólo lectura):", + " (recombinará y desencriptará)", + "Por favor utilice Picocrypt v1.13 para desencriptar este archivo.", + "Éste no parece ser un volumen Picocrypt.", + "Los metadatos están corrompidos.", + "El archivo de origen está corrompido y no puede ser desencriptado.", + "Seleccione un archivo de claves", + " (encriptará)", + "%d archivos seleccionados.", + "%d carpetas seleccionadas.", + "1 archivo y %d carpetas seleccionados.", + "%d archivos y 1 carpeta selecccionados.", + "1 archivo y 1 carpeta seleccionados.", + "%d archivos y %d carpetas seleccionados.", + "Comenzando...", + "Combinando archivos...", + "La operación fue cancelada por el usuario.", + "Recombinando archivo...", + "El tamaño total es mayor a 256 GiB, límite de XChaCha20.", + "Generando valores...", + "Leyendo valores...", + "El encabezado está corrompido y el archivo de origen no puede ser desencriptado.", + "Derivando clave...", + "Operación cancelada por el usuario.", + "La contraseña es incorrecta.", + "El archivo de claves es incorrecto.", + "El archivo de origen está demasiado corrompido como para ser desencriptado.", + "Trabajando a %.2f MB/s (Tiempo estimado: %s)", + "Dividiendo el archivo...", + "Triturando archivos temporales...", + "El archivo de origen está corrompido y/o ha sido modificado. Por favor, proceda con cuidado.", + "Finalizado.", + "El archivo de origen está corrompido o fue modificado intencionalmente.", + "Calculando...", + "Triturando...", + "Eliminar los archivos de entrada después del descifrado", + "Dupdo", + "Por favor utilice Picocrypt v1.16 para desencriptar este archivo.", + "Una nueva versión está disponible.", + "Comienzo" + ], + "fr":[ + "French", + "Drag and drop file(s) or folder(s) into this window.", + "or", + "Ready.", + "Show", + "Use a keyfile", + "Metadata (optional):", + "Encryption", + "Generate password:", + "Length: ", + "Uppercase", + "Lowercase", + "Numbers", + "Symbols", + "Copy to clipboard", + "Cancel", + "Generate", + "Warning:", + "Output already exists. Overwrite?", + "No", + "Yes", + "Clear", + "Save output as:", + "Choose", + "Password:", + "Paste", + "Hide", + "Confirm password:", + "Advanced options:", + "Shred temporary files (can be slow for large files)", + "Fast mode (slightly less secure)", + "Paranoid mode (extremely secure, but slower)", + "Encode with Reed-Solomon to prevent corruption (slow)", + "Split output into chunks of", + "Keep decrypted output even if it's corrupted or modified", + "No files selected yet.", + "Passwords don't match.", + "Please select a keyfile.", + "Checksum", + "Toggle the hashes you would like to generate and drop a file here.", + "Validate a checksum:", + "Progress:", + "Shredder", + "Drop file(s) or folder(s) here to shred them.", + "Number of passes: Not supported on macOS", + "Number of passes:", + "About", + "Picocrypt %s, created by Evan Su (https://evansu.cc/).", + "Released under a GNU GPL v3 License.", + "A warm thank you to all the people listed below.", + "Patrons:", + "Donators:", + "Translators:", + "Other:", + "1 folder selected.", + "Encrypted", + " (will decrypt)", + "Metadata (read-only):", + " (will recombine and decrypt)", + "Please use Picocrypt v1.13 to decrypt this file.", + "This doesn't seem to be a Picocrypt volume.", + "Metadata is corrupted.", + "Input file is corrupt and cannot be decrypted.", + "Select keyfile", + " (will encrypt)", + "%d files selected.", + "%d folders selected.", + "1 file and %d folders selected.", + "%d files and 1 folder selected.", + "1 file and 1 folder selected.", + "%d files and %d folders selected.", + "Starting...", + "Combining files...", + "Operation cancelled by user.", + "Recombining file...", + "Total size is larger than 256 GiB, XChaCha20's limit.", + "Generating values...", + "Reading values...", + "The header is corrupt and the input file cannot be decrypted.", + "Deriving key...", + "Operation cancelled by user.", + "The provided password is incorrect.", + "The provided keyfile is incorrect.", + "The input file is too corrupted to decrypt.", + "Working at %.2f MB/s (ETA: %s)", + "Splitting file...", + "Shredding temporary files...", + "The input file is corrupted and/or modified. Please be careful.", + "Completed.", + "The input file is either corrupted or intentionally modified.", + "Calculating...", + "Shredding...", + "Delete the input file(s) after decryption", + "Copy", + "Please use Picocrypt v1.16 to decrypt this file.", + "A newer version is available.", + "Start" + ], + "nl":[ + "Dutch", + "Drag and drop file(s) or folder(s) into this window.", + "or", + "Ready.", + "Show", + "Use a keyfile", + "Metadata (optional):", + "Encryption", + "Generate password:", + "Length: ", + "Uppercase", + "Lowercase", + "Numbers", + "Symbols", + "Copy to clipboard", + "Cancel", + "Generate", + "Warning:", + "Output already exists. Overwrite?", + "No", + "Yes", + "Clear", + "Save output as:", + "Choose", + "Password:", + "Paste", + "Hide", + "Confirm password:", + "Advanced options:", + "Shred temporary files (can be slow for large files)", + "Fast mode (slightly less secure)", + "Paranoid mode (extremely secure, but slower)", + "Encode with Reed-Solomon to prevent corruption (slow)", + "Split output into chunks of", + "Keep decrypted output even if it's corrupted or modified", + "No files selected yet.", + "Passwords don't match.", + "Please select a keyfile.", + "Checksum", + "Toggle the hashes you would like to generate and drop a file here.", + "Validate a checksum:", + "Progress:", + "Shredder", + "Drop file(s) or folder(s) here to shred them.", + "Number of passes: Not supported on macOS", + "Number of passes:", + "About", + "Picocrypt %s, created by Evan Su (https://evansu.cc/).", + "Released under a GNU GPL v3 License.", + "A warm thank you to all the people listed below.", + "Patrons:", + "Donators:", + "Translators:", + "Other:", + "1 folder selected.", + "Encrypted", + " (will decrypt)", + "Metadata (read-only):", + " (will recombine and decrypt)", + "Please use Picocrypt v1.13 to decrypt this file.", + "This doesn't seem to be a Picocrypt volume.", + "Metadata is corrupted.", + "Input file is corrupt and cannot be decrypted.", + "Select keyfile", + " (will encrypt)", + "%d files selected.", + "%d folders selected.", + "1 file and %d folders selected.", + "%d files and 1 folder selected.", + "1 file and 1 folder selected.", + "%d files and %d folders selected.", + "Starting...", + "Combining files...", + "Operation cancelled by user.", + "Recombining file...", + "Total size is larger than 256 GiB, XChaCha20's limit.", + "Generating values...", + "Reading values...", + "The header is corrupt and the input file cannot be decrypted.", + "Deriving key...", + "Operation cancelled by user.", + "The provided password is incorrect.", + "The provided keyfile is incorrect.", + "The input file is too corrupted to decrypt.", + "Working at %.2f MB/s (ETA: %s)", + "Splitting file...", + "Shredding temporary files...", + "The input file is corrupted and/or modified. Please be careful.", + "Completed.", + "The input file is either corrupted or intentionally modified.", + "Calculating...", + "Shredding...", + "Delete the input file(s) after decryption", + "Copy", + "Please use Picocrypt v1.16 to decrypt this file.", + "A newer version is available.", + "Start" + ], + "np":[ + "Nepalese", + "Drag and drop file(s) and folder(s) into this window.", + "or", + "Ready.", + "Show", + "Use a keyfile", + "Metadata (optional):", + "Encryption", + "Generate password:", + "Length: ", + "Uppercase", + "Lowercase", + "Numbers", + "Symbols", + "Copy to clipboard", + "Cancel", + "Generate", + "Warning:", + "Output already exists. Overwrite?", + "No", + "Yes", + "Clear", + "Save output as:", + "Choose", + "Password:", + "Paste", + "Hide", + "Confirm password:", + "Advanced options:", + "Shred temporary files (can be slow for large files)", + "Fast mode (slightly less secure)", + "Paranoid mode (extremely secure, but slower)", + "Encode with Reed-Solomon to prevent corruption (slow)", + "Split output into chunks of", + "Keep decrypted output even if it's corrupted or modified", + "No files selected yet.", + "Passwords don't match.", + "Please select a keyfile.", + "Checksum", + "Toggle the hashes you would like to generate and drop a file here.", + "Validate a checksum:", + "Progress:", + "Shredder", + "Drop file(s) or folder(s) here to shred them.", + "Number of passes: Not supported on macOS", + "Number of passes:", + "About", + "Picocrypt %s, created by Evan Su (https://evansu.cc/).", + "Released under a GNU GPL v3 License.", + "A warm thank you to all the people listed below.", + "Patrons:", + "Donators:", + "Translators:", + "Other:", + "1 folder selected.", + "Encrypted", + " (will decrypt)", + "Metadata (read-only):", + " (will recombine and decrypt)", + "Please use Picocrypt v1.13 to decrypt this file.", + "This doesn't seem to be a Picocrypt volume.", + "Metadata is corrupted.", + "Input file is corrupt and cannot be decrypted.", + "Select keyfile", + " (will encrypt)", + "%d files selected.", + "%d folders selected.", + "1 file and %d folders selected.", + "%d files and 1 folder selected.", + "1 file and 1 folder selected.", + "%d files and %d folders selected.", + "Starting...", + "Combining files...", + "Operation cancelled by user.", + "Recombining file...", + "Total size is larger than 256 GiB, XChaCha20's limit.", + "Generating values...", + "Reading values...", + "The header is corrupt and the input file cannot be decrypted.", + "Deriving key...", + "Operation cancelled by user.", + "The provided password is incorrect.", + "The provided keyfile is incorrect.", + "The input file is too corrupted to decrypt.", + "Working at %.2f MB/s (ETA: %s)", + "Splitting file...", + "Shredding temporary files...", + "The input file is corrupted and/or modified. Please be careful.", + "Completed.", + "The input file is either corrupted or intentionally modified.", + "Calculating...", + "Shredding...", + "Delete the input file(s) after decryption", + "Copy", + "Please use Picocrypt v1.16 to decrypt this file.", + "A newer version is available.", + "Start" + ], + "pt-BR":[ + "Português brasileiro", + "Arraste e solte arquivos ou pastas nesta janela.", + "ou", + "Pronto.", + "Mostrar", + "Arquivo-chave", + "Metadados (opcional):", + "Criptografia", + "Gerar senha:", + "Tamanho: ", + "Maiúsculas", + "Minúsculas", + "Números", + "Símbolos", + "Copiar para a área de transferência", + "Cancelar", + "Gerar", + "Aviso:", + "Local de destino já existe. Sobrescrever?", + "Não", + "Sim", + "Limpar", + "Salvar saída como:", + "Escolher", + "Senha:", + "Colar", + "Ocultar", + "Confirme a senha:", + "Opções avançadas:", + "Triturar arquivos temporários", + "Usar modo rápido", + "Usar modo paranoico", + "Codificar com Reed-Solomon", + "Dividir saída em pedaços de", + "Manter a saída desencriptada mesmo se estiver corrompida ou modificada", + "Nenhum arquivo selecionado.", + "Senhas não correspondem.", + "Por favor, selecione um arquivo-chave.", + "Checksum", + "Marque os hashes que você quer gerar e solte um arquivo aqui.", + "Validar um checksum:", + "Progresso:", + "Triturador", + "Solte arquivos ou pastas aqui para triturá-los.", + "Número de passagens: Não suportado no macOS", + "Número de passagens:", + "Sobre", + "Picocrypt %s, criado por Evan Su (https://evansu.cc/).", + "Lançado sob a licença GNU GPL v3.", + "Calorosos agradecimentos a todos listados abaixo.", + "Patrons:", + "Doadores:", + "Tradutores:", + "Outros:", + "1 pasta selecionada.", + "Encriptado", + " (será desencriptado)", + "Metadados (somente leitura):", + " (será recombinado e desencriptado)", + "Por favor, use o Picocrypt v1.13 para desencriptar este arquivo.", + "Isso não parece ser um volume Picocrypt.", + "Os metadados estão corrompidos.", + "O arquivo de entrada está corrompido e não pode ser desencriptado.", + "Selecionar arquivo-chave", + " (será encriptado)", + "%d arquivos selecionados.", + "%d pastas selecionadas.", + "1 arquivo e %d pastas selecionados.", + "%d arquivos e 1 pasta selecionados.", + "1 arquivo e 1 pasta selecionados.", + "%d arquivos e %d pastas selecionados.", + "Iniciando...", + "Combinando arquivos...", + "Operação cancelada pelo usuário.", + "Recombinando arquivo...", + "Tamanho total é maior que 256 GiB, o limite do XChaCha20.", + "Gerando valores...", + "Lendo values...", + "O cabeçalho está corrompido e o arquivo de entrada não pode ser desencriptado.", + "Derivando chave...", + "Operação cancelada pelo usuário.", + "A senha fornecida está incorreta.", + "O arquivo-chave fornecido está incorreto.", + "O arquivo de entrada está corrompido demais para desencriptar.", + "Trabalhando a %.2f MB/s (ETA: %s)", + "Dividindo arquivo...", + "Triturando arquivos temporários...", + "O arquivo de entrada está corrompido e/ou modificado. Por favor, tenha cuidado.", + "Completo.", + "O arquivo de entrada está corrompido ou intencionalmente modificado.", + "Calculando...", + "Triturando...", + "Excluir o(s) arquivo(s) de entrada após a desencriptação", + "Copiar", + "Por favor, use o Picocrypt v1.16 para desencriptar este arquivo.", + "Uma versão mais nova está disponível.", + "Começar" + ], + "tr":[ + "Türkçe", + "Dosya veya klasörleri bu pencereye sürükleyin.", + "ya da", + "Hazır.", + "Göster", + "Anahtar Dosya", + "Üstveri (opsiyonel):", + "Şifreleme", + "Şifre üret:", + "Uzunluk:", + "Büyük harf", + "Küçük harf", + "Numaralar", + "Semboller", + "Panoya kopyala", + "İptal", + "Üret", + "Uyarı:", + "Çıktı dosyası zaten mevcut. Üzerine yazılsın mı?", + "Hayır", + "Evet", + "Temizle", + "Çıktıyı farklı kaydet:", + "Seçiniz", + "Parola:", + "Yapıştır", + "Gizle", + "Parolayı onayla:", + "Gelişmiş ayarlar:", + "Geçici dosyaları öğüt", + "Hızlı yöntem", + "Paranoyak yöntem", + "Reed-Solomon ile şifrele", + "Çıktı dosyasını parçalara böl", + "Çıktı dosyasını değiştirilmiş yahut bozulmuş olsa dahi silme.", + "Henüz dosya seçilmedi.", + "Parolalar eşleşmiyor", + "Lütfen bir anahtar dosya seçin.", + "Sağlama Toplamı", + "Oluşturulmasını istediğiniz sağlamaları işaretleyin ve bir dosya bırakın.", + "Bir sağlama toplamını doğrulayın:", + "İlerleme:", + "Öğütücü", + "Öğütmek istediğiniz dosya veya klasörleri bu pencereye sürükleyin.", + "Geçiş sayısı: macOS'te desteklenmemektedir", + "Geçiş sayısı:", + "Hakkında", + "Picocrypt %s, Yapımcı: Evan Su (https://evansu.cc/).", + "GNU GPL v3 Lisansı altında yayınlanmıştır.", + "Aşağıda listelenmiş olan herkese içtenlikle teşekkür ederim.", + "Patronlar:", + "Bağışta bulunanlar:", + "Tercümanlar:", + "Diğer:", + "1 klasör seçildi.", + "Şİfrelendi", + " (Deşifre edilecek)", + "Üstveri (salt-okunur):", + " (Yeniden birleştirilip deşifre edilecek)", + "Bu dosyayı deşifre edebilmek için lütfen Picocrypt v1.13 kullanın.", + "Bu bir Picocrypt bölümü gibi görünmüyor.", + "Üstveri bozulmuş.", + "Girdi dosyası bozulmuş ve deşifre edilemez durumda.", + "Anahtar dosya seçin", + " (şifrelenecek)", + "%d dosya seçildi.", + "%d klasör seçildi.", + "1 dosya ve %d klasör seçildi.", + "%d dosya ve 1 klasör seçildi.", + "1 dosya ve 1 klasör seçildi.", + "%d dosya ve %d klasör seçildi.", + "Başlatılıyor...", + "Dosyalar kaynaştırılıyor", + "İşlem kullanıcı tarafından iptal edildi.", + "Dosyalar tekrar bir araya getiriliyor...", + "Toplam dosya boyutu XChaCha20'nin sınırı olan 256 GiB'tan büyük", + "Değerler üretiliyor...", + "Değerler okunuyor...", + "Üstbilgi bozuk ve girdi dosyası deşifre edilemez.", + "Anahtar üretiliyor...", + "Operasyon kullancıı tarafından iptal edildi.", + "Yazılan parola yanlış.", + "Temin edilen anahtar dosyası yanlış.", + "Girdi dosyası deşifre edilemeyecek kadar bozulmuş.", + "%.2f MB/s hızda çalışıyor (Tahmini Bitiş Zamanı: %s)", + "Dosya bölünüyor...", + "Geçici dosyalar öğütülüyor...", + "Girdi dosyası bozulmuş ve/veya değiştirilmiş. Lütfen dikkatli olun.", + "Tamamlandı.", + "Girdi dosaysı ya bozulmuş ya da bilerek değişiklik yapılmış.", + "Hesaplanıyor...", + "Öğütülüyor...", + "Şifre çözme işleminden sonra girdi dosyalarını sil.", + "Kopyala", + "Bu dosyayı deşifre edebilmek için lütfen Picocrypt v1.16 kullanın.", + "Daha yeni bir sürüm mevcut.", + "Başlat" + ], + "lt":[ + "Lietuvių", + "Tempkite failus ir aplankus į šį langą", + "Arba", + "Pasiruošęs.", + "Rodyti", + "Rakto failas", + "Metaduomenys (neprivaloma):", + "Šifravimas", + "Generuoti slaptažodį:", + "Ilgis:", + "Didžiosios raidės", + "Mažosios raidės", + "Skaičiai", + "Simboliai", + "Kopijuoti į iškarpinę", + "Atšaukti", + "Generuoti", + "Įspėjimas:", + "Tokia išvestis jau egzistuoja. Perrašyti?", + "Ne", + "Taip", + "Išvalyti", + "Įrašyti išvestį kaip:", + "Pasirinkti", + "Slaptažodis:", + "Įklijuoti", + "Slėpti", + "Patvirtinti slaptažodį:", + "Išplėstiniai nustatymai:", + "Smulkinti laikinus failus (dėl didesnių failų dydžių sparta gali sumažėti)", + "Greitasis režimas (ne toks saugus)", + "Paranojinis režimas (labai saugus, tačiau lėtesnis", + "Koduoti su Reed-Solomon", + "Padalyti išvestį į dalis po", + "Saugoti iššifruotą išvestį, nors ji buvo sugandinta arba pakeista", + "Jokie failai nepasirinkti.", + "Slaptažodžiai nesutampa.", + "Prašome pasirinkti rakto failą.", + "Kontrolinė suma", + "Pasirinkite, kurias maišos funkcijas norėsite generuoti ir nutempkite failą čia.", + "Patvirtinti kontrolinę sumą:", + "Progresas:", + "Smulkintuvas", + "Tampkite failus čia jų susmulkinimui.", + "Leidimų skaičius: nepalaikoma macOS", + "Leidimų skaičius:", + "Apie", + "Picocrypt %s, yra sukurtas Evan Su (https://evansu.cc/).", + "Išleistas pagal GNU GPL v3 licenciją.", + "Nuoširdžiai ačiū visiems apačioje išvardytiems žmonėms.", + "Patrionai:", + "Finansiniai rėmėjai:", + "Vertėjai:", + "Kiti:", + "Pasirinktas 1 aplankas.", + "Užšifruotas", + "(bus iššifruotas)", + "Metaduomenys (tik skaitomi):", + "(bus naujai sujungtas ir iššifruotas)", + "Prašome naudoti Picocrypt v1.13 šio failo iššifravimui.", + "Tai nėra Picocrypt tomas.", + "Metaduomenys yra sugadinti.", + "Įvesties failas yra sugadintas ir negali būti iššifruotas.", + "Pasirinkti rakto failą", + "(bus užšifruotas)", + "%d pasirinkti failai.", + "%d pasirinkti aplankai.", + "Pasirinktas 1 failas ir %d aplankai.", + "Pasirinkti %d failai ir 1 aplankas.", + "Pasirinktas 1 failas ir 1 aplankas.", + "Pasirinkti %d failai ir %d aplankai.", + "Pradedama...", + "Sujungiami failai...", + "Operacija atšaukta vartotojo.", + "Naujai jungiamas failas...", + "Visas dydis yra didesnis nei 256 GiB, XChaCha20 limitas.", + "Generuojamos vertės...", + "Skaitomos vertės...", + "Antraštė yra sugadinta ir įvesties failas negali būti iššifruotas.", + "Išvedamas raktas...", + "Operacija atšaukta vartotojo.", + "Pateiktas slaptažodis yra neteisingas.", + "Pateiktas rakto failas yra neteisingas.", + "Įvesties failas nebetinkamas iššifravimui.", + "Dirba %.2f MB/s sparta (Numatomas trukmė: %s)", + "Failas skaidomas...", + "Smulkinami laikini failai...", + "Įvesties failas yra sugadintas ir/arba pakeistas, būkite atsargūs.", + "Atlikta.", + "Įvesties failas yra sugadintas arba tyčia pakeistas.", + "Skaičiuojama...", + "Smulkinama...", + "Ištrinti įvesties failą(-us) po iššifravimo", + "Kopijuoti", + "Prašome naudoti Picocrypt v1.16 šio failo iššifravimui.", + "Galima naujesnė versija.", + "Pradėti" + ] +}