mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-16 01:31:28 +00:00
Compare commits
28 Commits
1.4.7
...
1.4.11-rc1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ff80b4c61d | ||
|
|
295400cb97 | ||
|
|
e1a9a3d519 | ||
|
|
393628bf70 | ||
|
|
31dd78ee28 | ||
|
|
f0f3b97a4f | ||
|
|
e9f55da573 | ||
|
|
272115d2f7 | ||
|
|
95ae0ac9fd | ||
|
|
c2e1f8d7f7 | ||
|
|
8205e4dd5a | ||
|
|
e83aab9968 | ||
|
|
19222475ec | ||
|
|
a304b9a5c7 | ||
|
|
0037c12326 | ||
|
|
5908249325 | ||
|
|
debdf92cfc | ||
|
|
5944086510 | ||
|
|
a551663127 | ||
|
|
1cc0b0728d | ||
|
|
7e7d5e46d3 | ||
|
|
5625525b21 | ||
|
|
b8fa226163 | ||
|
|
2b44f0ee9f | ||
|
|
b1ea21809b | ||
|
|
8def0b2060 | ||
|
|
2f61964758 | ||
|
|
2668299131 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -12,6 +12,7 @@
|
||||
|
||||
# Maven #
|
||||
target/
|
||||
pom.xml.versionsBackup
|
||||
|
||||
# IntelliJ Settings Files (https://intellij-support.jetbrains.com/hc/en-us/articles/206544839-How-to-manage-projects-under-Version-Control-Systems) #
|
||||
.idea/**/workspace.xml
|
||||
|
||||
4
.idea/compiler.xml
generated
4
.idea/compiler.xml
generated
@@ -23,10 +23,10 @@
|
||||
<entry name="$MAVEN_REPOSITORY$/com/google/errorprone/javac-shaded/9-dev-r4023-3/javac-shaded-9-dev-r4023-3.jar" />
|
||||
<entry name="$MAVEN_REPOSITORY$/javax/annotation/jsr250-api/1.0/jsr250-api-1.0.jar" />
|
||||
</processorPath>
|
||||
<module name="keychain" />
|
||||
<module name="commons" />
|
||||
<module name="ui" />
|
||||
<module name="keychain" />
|
||||
<module name="launcher" />
|
||||
<module name="ui" />
|
||||
</profile>
|
||||
</annotationProcessing>
|
||||
<bytecodeTargetLevel>
|
||||
|
||||
10
.idea/runConfigurations/Cryptomator_Linux.xml
generated
Normal file
10
.idea/runConfigurations/Cryptomator_Linux.xml
generated
Normal file
@@ -0,0 +1,10 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="Cryptomator Linux" type="Application" factoryName="Application">
|
||||
<option name="MAIN_CLASS_NAME" value="org.cryptomator.launcher.Cryptomator" />
|
||||
<module name="launcher" />
|
||||
<option name="VM_PARAMETERS" value="-Djdk.gtk.version=2 -Duser.language=en -Dcryptomator.settingsPath="~/.config/Cryptomator/settings.json" -Dcryptomator.ipcPortPath="~/.config/Cryptomator/ipcPort.bin" -Dcryptomator.logDir="~/.local/share/Cryptomator/logs" -Dcryptomator.mountPointsDir="~/.local/share/Cryptomator/mnt" -Xss20m -Xmx512m" />
|
||||
<method v="2">
|
||||
<option name="Make" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
</component>
|
||||
@@ -1,3 +1,4 @@
|
||||
dist: xenial
|
||||
language: java
|
||||
sudo: false
|
||||
jdk:
|
||||
|
||||
@@ -46,7 +46,7 @@ For more information on the security details visit [cryptomator.org](https://cry
|
||||
|
||||
### Dependencies
|
||||
|
||||
* Java 10 (min. 10.0.1, we recommend to use the current version)
|
||||
* JDK 11 (we recommend to use the latest version)
|
||||
* Maven 3
|
||||
* Optional: OS-dependent build tools for native packaging (see [Windows](https://github.com/cryptomator/cryptomator-win), [OS X](https://github.com/cryptomator/cryptomator-osx), [Linux](https://github.com/cryptomator/builder-containers))
|
||||
|
||||
@@ -57,7 +57,7 @@ cd main
|
||||
mvn clean install -Prelease
|
||||
```
|
||||
|
||||
An executable jar file will be created inside `main/uber-jar/target`.
|
||||
This will build all the jars and bundle them together with their OS-specific dependencies under `main/buildkit/target`. This can now be used to build native packages.
|
||||
|
||||
## License
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>org.cryptomator</groupId>
|
||||
<artifactId>main</artifactId>
|
||||
<version>1.4.7</version>
|
||||
<version>1.4.11</version>
|
||||
</parent>
|
||||
<artifactId>buildkit</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>org.cryptomator</groupId>
|
||||
<artifactId>main</artifactId>
|
||||
<version>1.4.7</version>
|
||||
<version>1.4.11</version>
|
||||
</parent>
|
||||
<artifactId>commons</artifactId>
|
||||
<name>Cryptomator Commons</name>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>org.cryptomator</groupId>
|
||||
<artifactId>main</artifactId>
|
||||
<version>1.4.7</version>
|
||||
<version>1.4.11</version>
|
||||
</parent>
|
||||
<artifactId>keychain</artifactId>
|
||||
<name>System Keychain Access</name>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>org.cryptomator</groupId>
|
||||
<artifactId>main</artifactId>
|
||||
<version>1.4.7</version>
|
||||
<version>1.4.11</version>
|
||||
</parent>
|
||||
<artifactId>launcher</artifactId>
|
||||
<name>Cryptomator Launcher</name>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.cryptomator</groupId>
|
||||
<artifactId>main</artifactId>
|
||||
<version>1.4.7</version>
|
||||
<version>1.4.11</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>Cryptomator</name>
|
||||
|
||||
@@ -25,11 +25,11 @@
|
||||
|
||||
<!-- dependency versions -->
|
||||
<cryptomator.cryptolib.version>1.2.1</cryptomator.cryptolib.version>
|
||||
<cryptomator.cryptofs.version>1.8.0</cryptomator.cryptofs.version>
|
||||
<cryptomator.cryptofs.version>1.8.5</cryptomator.cryptofs.version>
|
||||
<cryptomator.jni.version>2.0.0</cryptomator.jni.version>
|
||||
<cryptomator.fuse.version>1.1.2</cryptomator.fuse.version>
|
||||
<cryptomator.dokany.version>1.1.6</cryptomator.dokany.version>
|
||||
<cryptomator.webdav.version>1.0.9</cryptomator.webdav.version>
|
||||
<cryptomator.dokany.version>1.1.8</cryptomator.dokany.version>
|
||||
<cryptomator.webdav.version>1.0.10</cryptomator.webdav.version>
|
||||
|
||||
<javafx.version>12</javafx.version>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<parent>
|
||||
<groupId>org.cryptomator</groupId>
|
||||
<artifactId>main</artifactId>
|
||||
<version>1.4.7</version>
|
||||
<version>1.4.11</version>
|
||||
</parent>
|
||||
<artifactId>ui</artifactId>
|
||||
<name>Cryptomator GUI</name>
|
||||
|
||||
@@ -249,6 +249,7 @@ public class SecPasswordField extends PasswordField {
|
||||
public void swipe() {
|
||||
swipe(content);
|
||||
length = 0;
|
||||
setText(null);
|
||||
}
|
||||
|
||||
private void swipe(char[] buffer) {
|
||||
|
||||
@@ -116,11 +116,11 @@ main.gracefulShutdown.dialog.content = Jeden nebo více trezorů je stále v pou
|
||||
main.gracefulShutdown.button.tryAgain = Zkusit znovu
|
||||
main.gracefulShutdown.button.forceShutdown = Vynutit vypnutí
|
||||
unlock.pendingMessage.unlocking = Odemykání trezoru…
|
||||
unlock.failedDialog.title = Unlock failed
|
||||
unlock.failedDialog.header = Unlock failed
|
||||
unlock.failedDialog.content.mountPathNonExisting = Mount point does not exist.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Mount point is not empty.
|
||||
unlock.label.useReadOnlyMode = Read-Only
|
||||
unlock.label.chooseMountPath = Choose empty directory…
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
unlock.failedDialog.title = Odemknutí se nezdařilo
|
||||
unlock.failedDialog.header = Odemknutí se nezdařilo
|
||||
unlock.failedDialog.content.mountPathNonExisting = Přípojný bod neexistuje.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Přípojný bod není prázdný.
|
||||
unlock.label.useReadOnlyMode = Pouze pro čtení
|
||||
unlock.label.chooseMountPath = Zvolte prázdnou složku…
|
||||
ctrl.secPasswordField.nonPrintableChars = Heslo obsahuje řídící znaky.\nDoporučení\: Odeberete je kvůli kompatibilitě s ostatními klienty.
|
||||
ctrl.secPasswordField.capsLocked = Je zapnutá klávesa Caps Lock.
|
||||
@@ -97,7 +97,7 @@ settings.webdav.port.label = WebDAV-Port
|
||||
settings.webdav.port.prompt = 0 \= automatische Auswahl
|
||||
settings.webdav.port.apply = Anwenden
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV URL Schema
|
||||
settings.volume.label = Laufwerkseinbindung *
|
||||
settings.volume.label = Laufwerkseinbindung
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Der Tresor wurde erfolgreich erstellt.
|
||||
|
||||
@@ -4,7 +4,6 @@ main.emptyListInstructions = Haga clic aquí para añadir una caja fuerte
|
||||
# should it be imperative?
|
||||
main.directoryList.contextMenu.remove = Eliminar de la lista
|
||||
main.directoryList.contextMenu.changePassword = Cambiar la contraseña
|
||||
# Fuzzy
|
||||
main.addDirectory.contextMenu.new = Crear una nueva caja fuerte
|
||||
main.addDirectory.contextMenu.open = Abrir una caja fuerte existente
|
||||
# welcome.fxml
|
||||
@@ -100,7 +99,7 @@ settings.webdav.port.label = Puerto WebDAV
|
||||
settings.webdav.port.prompt = 0 \= Elige automáticamente
|
||||
settings.webdav.port.apply = Aplicar
|
||||
settings.webdav.prefGvfsScheme.label = Esquema de WebDAV
|
||||
settings.volume.label = Método de montaje *
|
||||
settings.volume.label = Método de montaje
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = La caja fuerte fue creada exitosamente.
|
||||
@@ -117,11 +116,11 @@ main.gracefulShutdown.dialog.content = Una o más cajas fuertes están siendo ut
|
||||
main.gracefulShutdown.button.tryAgain = Intente de nuevo
|
||||
main.gracefulShutdown.button.forceShutdown = Forzar apagado
|
||||
unlock.pendingMessage.unlocking = Desbloqueando la caja fuerte...
|
||||
unlock.failedDialog.title = Unlock failed
|
||||
unlock.failedDialog.header = Unlock failed
|
||||
unlock.failedDialog.content.mountPathNonExisting = Mount point does not exist.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Mount point is not empty.
|
||||
unlock.label.useReadOnlyMode = Read-Only
|
||||
unlock.label.chooseMountPath = Choose empty directory…
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
unlock.failedDialog.title = Falló el desbloqueo
|
||||
unlock.failedDialog.header = Falló el desbloqueo
|
||||
unlock.failedDialog.content.mountPathNonExisting = El punto de montaje no existe.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = El punto de montaje no está vacío.
|
||||
unlock.label.useReadOnlyMode = Sólo lectura
|
||||
unlock.label.chooseMountPath = Elija un directorio vacío...
|
||||
ctrl.secPasswordField.nonPrintableChars = La contraseña contiene caracteres de control.\nRecomendación\: elimínelos para asegurar la compatibilidad con otros clientes.
|
||||
ctrl.secPasswordField.capsLocked = Las mayúsculas están activadas.
|
||||
124
main/ui/src/main/resources/localization/fr_BE.txt
Normal file
124
main/ui/src/main/resources/localization/fr_BE.txt
Normal file
@@ -0,0 +1,124 @@
|
||||
app.name = Cryptomateur
|
||||
# main.fxml
|
||||
main.emptyListInstructions = Cliquez ici pour ajouter un coffre-fort
|
||||
main.directoryList.contextMenu.remove = Retirer de la liste
|
||||
main.directoryList.contextMenu.changePassword = Modifier le mot de passe
|
||||
main.addDirectory.contextMenu.new = Créer un nouveau coffre-fort
|
||||
main.addDirectory.contextMenu.open = Ouvrir un coffre-fort existant
|
||||
# welcome.fxml
|
||||
welcome.checkForUpdates.label.currentlyChecking = Vérification des mise à jour en cours ...
|
||||
welcome.newVersionMessage = La version %1$s peut être téléchargée.\nCeci est %2$s.
|
||||
# initialize.fxml
|
||||
initialize.label.password = Mot de passe
|
||||
initialize.label.retypePassword = Resaisir le mot de passe
|
||||
initialize.button.ok = Créer un coffre-fort
|
||||
initialize.messageLabel.alreadyInitialized = Coffre-fort déjà initialisé
|
||||
initialize.messageLabel.initializationFailed = Incapable d'initialiser le coffre-fort. Voir le fichier journal pour plus de détails.
|
||||
# notfound.fxml
|
||||
notfound.label = Le coffre-fort n'a pu être trouvé. A t-il été déplacé ?
|
||||
# upgrade.fxml
|
||||
upgrade.button = Mise à jour coffre-fort
|
||||
upgrade.version3dropBundleExtension.msg = Ce coffre-fort doit être migrer vers un format plus récent. "%1$s" sera renommé en "%2$s".\nVeuillez vous assurer que la synchronisation soit terminé avant de continuer.
|
||||
upgrade.version3dropBundleExtension.err.alreadyExists = La migration automatique a échouée.\n"%s" existe déjà.
|
||||
# unlock.fxml
|
||||
unlock.label.password = Mot de passe
|
||||
unlock.label.mountName = Nom du lecteur
|
||||
unlock.label.winDriveLetter = Lettre du lecteur
|
||||
unlock.label.downloadsPageLink = Toutes les version de Cryptomateur
|
||||
unlock.label.advancedHeading = Options avancées
|
||||
unlock.button.unlock = Déverrouiller le coffre-fort
|
||||
unlock.button.advancedOptions.show = Plus d'options
|
||||
unlock.button.advancedOptions.hide = Moins d'options
|
||||
unlock.choicebox.winDriveLetter.auto = Assigner automatiquement
|
||||
unlock.errorMessage.wrongPassword = Mauvais mot de passe
|
||||
unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Coffre-fort non pris en charge. Ce coffre-fort a été créé avec une ancienne version de Cryptomateur.
|
||||
unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Coffre-fort non pris en charge. Ce coffre-fort a été créé avec une version plus récente de Cryptomateur.
|
||||
# change_password.fxml
|
||||
changePassword.label.oldPassword = Ancient mot de passe
|
||||
changePassword.label.newPassword = Nouveau mot de passe
|
||||
changePassword.label.retypePassword = Resaisir mot de passe
|
||||
changePassword.label.downloadsPageLink = Toutes les versions de Cryptomateur
|
||||
changePassword.button.change = Modifier mot de passe
|
||||
changePassword.errorMessage.wrongPassword = Mauvais mot de passe
|
||||
changePassword.errorMessage.decryptionFailed = Le déchiffrement a échoué
|
||||
# unlocked.fxml
|
||||
unlocked.button.lock = Verrouiller coffre-fort
|
||||
unlocked.moreOptions.reveal = Dévoiler le lecteur
|
||||
unlocked.label.revealFailed = La commande a échoué
|
||||
unlocked.label.unmountFailed = L'éjection du lecteur a échoué
|
||||
unlocked.label.statsEncrypted = chiffré
|
||||
unlocked.label.statsDecrypted = déchiffré
|
||||
unlocked.ioGraph.yAxis.label = Débit (MiB/s)
|
||||
# settings.fxml
|
||||
settings.version.label = Version %s
|
||||
settings.checkForUpdates.label = Rechercher les mises à jour
|
||||
# tray icon
|
||||
tray.menu.open = Ouvrir
|
||||
tray.menu.quit = Quitter
|
||||
tray.infoMsg.title = Toujours en cours
|
||||
tray.infoMsg.msg = Crytomateur est encore actif. Quitter en utilisant de la zone de notification.
|
||||
tray.infoMsg.msg.osx = Crytomateur est encore actif. Quitter en utilisant le menu de la barre d'icone.
|
||||
initialize.messageLabel.passwordStrength.0 = Très faible
|
||||
initialize.messageLabel.passwordStrength.1 = Faible
|
||||
initialize.messageLabel.passwordStrength.2 = Bon
|
||||
initialize.messageLabel.passwordStrength.3 = Fort
|
||||
initialize.messageLabel.passwordStrength.4 = Très fort
|
||||
initialize.label.doNotForget = IMPROTANT \: Si vous oubliez votre mot de passe, il n'y a aucun moyen de récupérer vos données.
|
||||
main.directoryList.remove.confirmation.title = Retirer le coffre-fort
|
||||
main.directoryList.remove.confirmation.header = Voulez-vous vraiment retirer le coffre-fort ?
|
||||
main.directoryList.remove.confirmation.content = Ce coffre-fort sera seulement retirer de la liste. Pour le supprimer définitivement, veuillez le supprimer de votre système de fichiers.
|
||||
upgrade.version3to4.msg = Ce coffre-fort doit être migrer vers un format plus récent.\nLe nom des répertoires chiffrés sera mis à jour.\nVeuillez vous assurer que la synchronisation soit terminé avant de continuer.
|
||||
upgrade.version3to4.err.io = La migration a échoué à cause d'un Exception E/S. Voir le fichier journal pour plus de détails.
|
||||
# upgrade.fxml
|
||||
upgrade.confirmation.label = Oui, je me suis assuré que la synchronisation est terminé
|
||||
unlock.label.savePassword = Sauvegarder le mot de passe
|
||||
unlock.errorMessage.unauthenticVersionMac = Incapable d'authentifier la version MAC.
|
||||
unlock.savePassword.delete.confirmation.title = Supprimer le mot de passe sauvegardé
|
||||
unlock.savePassword.delete.confirmation.header = Etes-vous certain de vouloir supprimer le mot de passe sauvegardé pour ce coffre-fort ?
|
||||
unlock.savePassword.delete.confirmation.content = Le mot de passe sauvegardé pour ce coffre-fort sera supprimé immédiatement de votre trousseau système. Si vous voulez sauvegarder votre mot de passe de nouveau, vous devez déverrouiller votre coffre-fort avec l’option « Sauvegarder mot de passe » activée.
|
||||
settings.debugMode.label = Mode débogage
|
||||
upgrade.version3dropBundleExtension.title = Vault Version 3 Upgrade (Drop Bundle Extension)
|
||||
upgrade.version3to4.title = Mise à jour de la version 3 à 4 du coffre-fort
|
||||
upgrade.version4to5.title = Mise à jour de la version 4 à 5 du coffre-fort
|
||||
upgrade.version4to5.msg = Ce coffre-fort doit être migrer vers un format plus récent.\nLes fichiers chiffrés seront mis à jour.\nVeuillez vous assurer que la synchronisation soit terminé avant de continuer.\n\nNote \: Lors du processus les dates de modification des fichiers seront modifiés à la date/heure courante.
|
||||
upgrade.version4to5.err.io = La migration a échoué à cause d'un Exception E/S. Voir le fichier journal pour plus de détails.
|
||||
unlock.label.revealAfterMount = Révéler le lecteur
|
||||
unlocked.lock.force.confirmation.title = Le vérouillage de %1$s a échoué
|
||||
unlocked.lock.force.confirmation.header = Voulez-vous forcer le vérouillage ?
|
||||
unlocked.lock.force.confirmation.content = Ceci est peut-être dû au fait que d'autres programmes sont encore en train d'accéder aux fichiers dans le coffre-fort ou à cause d'un autre problème.\n\nLes programmes qui accèdent encore aux fichiers peuvent ne pas fonctionner correctement et les données non écrites par ces programmes peuvent être perdus.
|
||||
unlock.label.unlockAfterStartup = Déverouillage automatique au lancement (Expérimantal)
|
||||
unlock.errorMessage.unlockFailed = Déverouillage échoué. Voir le fichier journal pour plus de détails.
|
||||
upgrade.version5toX.title = Mise à jour de la version du coffre-fort
|
||||
upgrade.version5toX.msg = Ce coffre-fort doit être migrer vers un format plus récent.\nVeuillez vous assurer que la synchronisation soit terminé avant de continuer.
|
||||
main.createVault.nonEmptyDir.title = La création du coffre-fort a échoué
|
||||
main.createVault.nonEmptyDir.header = Le répertoire choisi n'est pas vide
|
||||
main.createVault.nonEmptyDir.content = Le répertoire sélectionné contient déjà des fichiers (peut-être cachés). Un coffre-fort ne peut être créé que dans un répertoire vide.
|
||||
settings.webdav.port.label = Port WebDAV
|
||||
settings.webdav.port.prompt = 0 \= Coisir automatiquement
|
||||
settings.webdav.port.apply = Appliquer
|
||||
settings.webdav.prefGvfsScheme.label = Schema WebDAV
|
||||
settings.volume.label = Type de volume préféré
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Le coffre-fort a été créé avec succès.
|
||||
unlock.successLabel.passwordChanged = Mot de passe mis à jour avec succès.
|
||||
unlock.successLabel.upgraded = Cryptomateur a été mis à jour avec succès.
|
||||
unlock.label.useOwnMountPath = Utiliser point de montage personalisé
|
||||
welcome.askForUpdateCheck.dialog.title = Vérifier mise à jour
|
||||
welcome.askForUpdateCheck.dialog.header = Activer la vérification de mise à jour intégré ?
|
||||
welcome.askForUpdateCheck.dialog.content = Afin de vérifier les mises à jour, Crytomateur ira chercher la version courante sur les serveurs de Cryptomateur et affichera une indication si une version plus récente est disponible.\n\nNous reccommandons d'activer l'option de vérification des mises à jour afin de vous assurer de disposer de la version la plus récente de Cryptomateur avec tous les correctifs de sécurité installés. Si vous n'activez pas l'option de vérification des mises à jour, vous pouvez véridier et télécharger la version courante à partir de https\://cryptomator.org/downloads/.\n\nVous pouvez modifier cela à tout moment dans les paramètres.
|
||||
settings.volume.dokany = Dokany
|
||||
main.gracefulShutdown.dialog.title = Vérouillage de(s) coffre-fort(s) a échoué(s)
|
||||
main.gracefulShutdown.dialog.header = Coffre-fort(s) en cours d'utilisation
|
||||
main.gracefulShutdown.dialog.content = Un ou plusieurs coffre-forts sont en cours d'utilisation par d'autres programmes. Veuillez les fermer afin de permettre à Cryptomateur de se fermer correctement, puis essayez de nouveau.\n\nSi cela ne fonctionne pas, Cryptomateur peut se fermer de manière forcé, mais cela peut provoquer des pertes de données et n'est pas recommandé.
|
||||
main.gracefulShutdown.button.tryAgain = Essayez de nouveau
|
||||
main.gracefulShutdown.button.forceShutdown = Fermeture forcée
|
||||
unlock.pendingMessage.unlocking = Unlocking vault...
|
||||
unlock.failedDialog.title = Unlock failed
|
||||
unlock.failedDialog.header = Unlock failed
|
||||
unlock.failedDialog.content.mountPathNonExisting = Mount point does not exist.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Mount point is not empty.
|
||||
unlock.label.useReadOnlyMode = Read-Only
|
||||
unlock.label.chooseMountPath = Choose empty directory…
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
124
main/ui/src/main/resources/localization/fr_CA.txt
Normal file
124
main/ui/src/main/resources/localization/fr_CA.txt
Normal file
@@ -0,0 +1,124 @@
|
||||
app.name = Cryptomator
|
||||
# main.fxml
|
||||
main.emptyListInstructions = Cliquez ici pour ajouter un coffre-fort
|
||||
main.directoryList.contextMenu.remove = Retirer de la liste
|
||||
main.directoryList.contextMenu.changePassword = Changer le mot de passe
|
||||
main.addDirectory.contextMenu.new = Créer un nouveau coffre-fort
|
||||
main.addDirectory.contextMenu.open = Ouvrir le coffre-fort existant
|
||||
# welcome.fxml
|
||||
welcome.checkForUpdates.label.currentlyChecking = Vérification des mises à jour ...
|
||||
welcome.newVersionMessage = La version %1$s peut être téléchargée.\nC'est %2$s.
|
||||
# initialize.fxml
|
||||
initialize.label.password = Mot de passe
|
||||
initialize.label.retypePassword = Retaper le mot de passe
|
||||
initialize.button.ok = Créer un coffre-fort
|
||||
initialize.messageLabel.alreadyInitialized = Coffre-fort déjà initialisé
|
||||
initialize.messageLabel.initializationFailed = Impossible d'initialiser le coffre-fort. Voir le fichier journal pour plus de détails.
|
||||
# notfound.fxml
|
||||
notfound.label = Le coffre-fort n'a pu être trouvée. A-t-il été déplacé?
|
||||
# upgrade.fxml
|
||||
upgrade.button = Mise à niveau du coffre-fort
|
||||
upgrade.version3dropBundleExtension.msg = Ce coffre-fort doit être migré vers un nouveau format.\n"%1$s" sera renommé "%2$s".\nAssurez-vous que la synchronisation est terminée avant de continuer.
|
||||
upgrade.version3dropBundleExtension.err.alreadyExists = La migration automatique a échoué.\n"%s" existe déjà.
|
||||
# unlock.fxml
|
||||
unlock.label.password = Mot de passe
|
||||
unlock.label.mountName = Nom du lecteur
|
||||
unlock.label.winDriveLetter = Lettre du lecteur
|
||||
unlock.label.downloadsPageLink = Toutes les versions de Cryptomator
|
||||
unlock.label.advancedHeading = Options avancées
|
||||
unlock.button.unlock = Déverrouiller le coffre-fort
|
||||
unlock.button.advancedOptions.show = Plus d'options
|
||||
unlock.button.advancedOptions.hide = Moins d'options
|
||||
unlock.choicebox.winDriveLetter.auto = Attribuer automatiquement
|
||||
unlock.errorMessage.wrongPassword = Mauvais mot de passe
|
||||
unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Coffre-fort non pris en charge. Ce coffre-fort a été créé avec une version plus ancienne de Cryptomator.
|
||||
unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Coffre-fort non pris en charge. Ce coffre-fort a été créé avec une version plus récente de Cryptomator.
|
||||
# change_password.fxml
|
||||
changePassword.label.oldPassword = Ancien mot de passe
|
||||
changePassword.label.newPassword = Nouveau mot de passe
|
||||
changePassword.label.retypePassword = Retaper le mot de passe
|
||||
changePassword.label.downloadsPageLink = Toutes les versions de Cryptomator
|
||||
changePassword.button.change = Changer le mot de passe
|
||||
changePassword.errorMessage.wrongPassword = Mauvais mot de passe
|
||||
changePassword.errorMessage.decryptionFailed = Le déchiffrement a échoué
|
||||
# unlocked.fxml
|
||||
unlocked.button.lock = Barrer le Coffre-Fort
|
||||
unlocked.moreOptions.reveal = Monter le lecteur
|
||||
unlocked.label.revealFailed = La commande a échoué
|
||||
unlocked.label.unmountFailed = Éjection du disque en panne
|
||||
unlocked.label.statsEncrypted = crypté
|
||||
unlocked.label.statsDecrypted = déchiffré
|
||||
unlocked.ioGraph.yAxis.label = Débit (MiB / s)
|
||||
# settings.fxml
|
||||
settings.version.label = Version %s
|
||||
settings.checkForUpdates.label = Vérifier les mises à jour
|
||||
# tray icon
|
||||
tray.menu.open = Ouvrir
|
||||
tray.menu.quit = Quitter
|
||||
tray.infoMsg.title = Toujours en Exécution
|
||||
tray.infoMsg.msg = Cryptomator est toujours en vie. Quittez-le à partir de l'icône de la barre de menus.
|
||||
tray.infoMsg.msg.osx = Cryptomator est toujours en vie. Quittez-le à partir de l'icône de la barre de menus.
|
||||
initialize.messageLabel.passwordStrength.0 = Très faible
|
||||
initialize.messageLabel.passwordStrength.1 = Faible
|
||||
initialize.messageLabel.passwordStrength.2 = Juste
|
||||
initialize.messageLabel.passwordStrength.3 = Fort
|
||||
initialize.messageLabel.passwordStrength.4 = Très fort
|
||||
initialize.label.doNotForget = IMPORTANT\: Si vous oubliez votre mot de passe, il n’y a aucun moyen de récupérer vos données.
|
||||
main.directoryList.remove.confirmation.title = Supprimer le coffre-fort
|
||||
main.directoryList.remove.confirmation.header = Voulez-vous vraiment supprimer ce coffre-fort?
|
||||
main.directoryList.remove.confirmation.content = Le coffre-fort ne sera supprimé de la liste. Pour le supprimer définitivement, veuillez supprimer le coffre-fort de votre système de fichiers.
|
||||
upgrade.version3to4.msg = Ce coffre-fort doit être migré vers un nouveau format.\nLes noms de dossiers cryptés seront mis à jour.\nAssurez-vous que la synchronisation est terminée avant de continuer.
|
||||
upgrade.version3to4.err.io = La migration a échoué en raison d'une exception d'E / S. Voir le fichier journal pour plus de détails.
|
||||
# upgrade.fxml
|
||||
upgrade.confirmation.label = Oui, je me suis assuré que la synchronisation est terminée
|
||||
unlock.label.savePassword = Sauvegarder le mot de passe
|
||||
unlock.errorMessage.unauthenticVersionMac = Impossible d'authentifier la version MAC.
|
||||
unlock.savePassword.delete.confirmation.title = Supprimer le mot de passe enregistré
|
||||
unlock.savePassword.delete.confirmation.header = Voulez-vous vraiment supprimer le mot de passe enregistré de ce coffre-fort?
|
||||
unlock.savePassword.delete.confirmation.content = Le mot de passe enregistré de ce coffre-fort sera immédiatement supprimé de votre trousseau de clés système. Si vous souhaitez enregistrer votre mot de passe à nouveau, vous devez déverrouiller votre coffre-fort avec l'option "Enregistrer le mot de passe" activée.
|
||||
settings.debugMode.label = Mode débogage
|
||||
upgrade.version3dropBundleExtension.title = Mise à niveau de Vault Version 3 (Drop Bundle Extension)
|
||||
upgrade.version3to4.title = Mise à niveau de Vault Version 3 à 4
|
||||
upgrade.version4to5.title = Mise à niveau de Vault Version 4 à 5
|
||||
upgrade.version4to5.msg = Ce coffre-fort doit être migré vers un nouveau format.\nLes fichiers cryptés seront mis à jour.\nAssurez-vous que la synchronisation est terminée avant de continuer.\n\nRemarque\: La date de modification de tous les fichiers sera remplacée par la date / heure actuelle du processus.
|
||||
upgrade.version4to5.err.io = La migration a échoué en raison d'une exception d'E / S. Voir le fichier journal pour plus de détails.
|
||||
unlock.label.revealAfterMount = Montrer Lecteur
|
||||
unlocked.lock.force.confirmation.title = Le verrouillage de %1$s a échoué
|
||||
unlocked.lock.force.confirmation.header = Voulez-vous forcer le verrouillage?
|
||||
unlocked.lock.force.confirmation.content = Cela peut être dû au fait que d'autres programmes accèdent toujours aux fichiers du coffre-fort ou à un autre problème.\n\nLes programmes qui accèdent toujours aux fichiers risquent de ne pas fonctionner correctement et les données non écrites par ces programmes risquent d'être perdues.
|
||||
unlock.label.unlockAfterStartup = Auto-déverrouillage au démarrage (expérimental)
|
||||
unlock.errorMessage.unlockFailed = Déverrouillage a échoué. Voir le fichier journal pour plus de détails.
|
||||
upgrade.version5toX.title = Mise à niveau de la version du coffre-fort
|
||||
upgrade.version5toX.msg = Ce coffre-fort doit être migré vers un nouveau format.\nAssurez-vous que la synchronisation est terminée avant de continuer.
|
||||
main.createVault.nonEmptyDir.title = La création du coffre-fort a échoué
|
||||
main.createVault.nonEmptyDir.header = Le répertoire choisi n'est pas vide
|
||||
main.createVault.nonEmptyDir.content = Le répertoire sélectionné contient déjà des fichiers (éventuellement cachés). Un coffre-fort ne peut être créé que dans un répertoire vide.
|
||||
settings.webdav.port.label = Port WebDAV
|
||||
settings.webdav.port.prompt = 0 \= Choisir automatiquement
|
||||
settings.webdav.port.apply = Appliquer
|
||||
settings.webdav.prefGvfsScheme.label = Schéma WebDAV
|
||||
settings.volume.label = Type de volume préféré
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Le coffre-fort a été créé avec succès.
|
||||
unlock.successLabel.passwordChanged = Le mot de passe a été changé avec succès.
|
||||
unlock.successLabel.upgraded = Cryptomator a été mis à niveau avec succès.
|
||||
unlock.label.useOwnMountPath = Utiliser un point de montage personnalisé
|
||||
welcome.askForUpdateCheck.dialog.title = Vérification de la mise à jour
|
||||
welcome.askForUpdateCheck.dialog.header = Activer la vérification de mise à jour intégrée?
|
||||
welcome.askForUpdateCheck.dialog.content = Pour vérifier les mises à jour, Cryptomator récupérera la version actuelle des serveurs Cryptomator et vous montrera un indice si une version plus récente est disponible.\n\nNous vous recommandons d'activer la vérification de la mise à jour pour vous assurer de toujours avoir la dernière version de Cryptomator, avec tous les correctifs de sécurité, installée. Si vous n'activez pas la vérification de mise à jour, vous pouvez vérifier et télécharger la version actuelle à l'adresse https\://cryptomator.org/downloads/.\n\nVous pouvez modifier cela à tout moment depuis les paramètres.
|
||||
settings.volume.dokany = Dokany
|
||||
main.gracefulShutdown.dialog.title = Le verrouillage des coffres a échoué
|
||||
main.gracefulShutdown.dialog.header = Coffre en usage
|
||||
main.gracefulShutdown.dialog.content = Un ou plusieurs coffres sont encore utilisés par d'autres programmes. Veuillez les fermer pour permettre à Cryptomator de s’éteindre correctement, puis réessayez.\n\nSi cela ne fonctionne pas, Cryptomator peut s'arrêter de force, mais cela peut entraîner une perte de données et n'est pas recommandé.
|
||||
main.gracefulShutdown.button.tryAgain = Réessayer
|
||||
main.gracefulShutdown.button.forceShutdown = Forcer l'arrêt
|
||||
unlock.pendingMessage.unlocking = Unlocking vault...
|
||||
unlock.failedDialog.title = Unlock failed
|
||||
unlock.failedDialog.header = Unlock failed
|
||||
unlock.failedDialog.content.mountPathNonExisting = Mount point does not exist.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Mount point is not empty.
|
||||
unlock.label.useReadOnlyMode = Read-Only
|
||||
unlock.label.chooseMountPath = Choose empty directory…
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
124
main/ui/src/main/resources/localization/in.txt
Normal file
124
main/ui/src/main/resources/localization/in.txt
Normal file
@@ -0,0 +1,124 @@
|
||||
app.name = Cryptomator
|
||||
# main.fxml
|
||||
main.emptyListInstructions = Klik di sini untuk menambahkan brankas
|
||||
main.directoryList.contextMenu.remove = Hapus dari Daftar
|
||||
main.directoryList.contextMenu.changePassword = Ubah Kata Sandi
|
||||
main.addDirectory.contextMenu.new = Buat Brankas Baru
|
||||
main.addDirectory.contextMenu.open = Buka Brankas yang Ada
|
||||
# welcome.fxml
|
||||
welcome.checkForUpdates.label.currentlyChecking = Memeriksa Pembaruan...
|
||||
welcome.newVersionMessage = Versi %1$s dapat diunduh. Ini %2$s.
|
||||
# initialize.fxml
|
||||
initialize.label.password = Kata Sandi
|
||||
initialize.label.retypePassword = Ketik Ulang Kata Sandi
|
||||
initialize.button.ok = Buat Brankas
|
||||
initialize.messageLabel.alreadyInitialized = Brankas sudah dilakukan inisialisasi.
|
||||
initialize.messageLabel.initializationFailed = Tidak dapat melakukan inisialisasi brankas. Lihat berkas log untuk detailnya.
|
||||
# notfound.fxml
|
||||
notfound.label = Brankas tidak dapat ditemukan. Apakah sudah dipindahkan?
|
||||
# upgrade.fxml
|
||||
upgrade.button = Tingkatkan Brankas
|
||||
upgrade.version3dropBundleExtension.msg = Brankas ini perlu dimigrasi ke format baru.\n"%1$s" akan diubah namanya menjadi "%2$s".\nPastikan sinkronisasi telah selesai sebelum melanjutkan.
|
||||
upgrade.version3dropBundleExtension.err.alreadyExists = Migrasi otomatis gagal.\n"%s" sudah ada.
|
||||
# unlock.fxml
|
||||
unlock.label.password = Kata Sandi
|
||||
unlock.label.mountName = Nama Drive
|
||||
unlock.label.winDriveLetter = Abjad Drive
|
||||
unlock.label.downloadsPageLink = Semua versi Cryptomator
|
||||
unlock.label.advancedHeading = Opsi Lanjutan
|
||||
unlock.button.unlock = Buka Brankas
|
||||
unlock.button.advancedOptions.show = Lebih Banyak Opsi
|
||||
unlock.button.advancedOptions.hide = Lebih Sedikit Opsi
|
||||
unlock.choicebox.winDriveLetter.auto = Tetapkan secara otomatis
|
||||
unlock.errorMessage.wrongPassword = Kata sandi salah
|
||||
unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Brankas tidak didukung. Brankas ini dibuat dengan Cryptomator versi lama.
|
||||
unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Brankas tidak didukung. Brankas ini dibuat dengan Cryptomator versi baru.
|
||||
# change_password.fxml
|
||||
changePassword.label.oldPassword = Kata Sandi Lama
|
||||
changePassword.label.newPassword = Kata Sandi Baru
|
||||
changePassword.label.retypePassword = Ketik Ulang Kata Sandi
|
||||
changePassword.label.downloadsPageLink = Semua versi Cryptomator
|
||||
changePassword.button.change = Ubah Kata Sandi
|
||||
changePassword.errorMessage.wrongPassword = Kata sandi salah
|
||||
changePassword.errorMessage.decryptionFailed = Dekripsi gagal
|
||||
# unlocked.fxml
|
||||
unlocked.button.lock = Kunci Brankas
|
||||
unlocked.moreOptions.reveal = Tampilkan Drive
|
||||
unlocked.label.revealFailed = Perintah gagal
|
||||
unlocked.label.unmountFailed = Gagal melepaskan drive
|
||||
unlocked.label.statsEncrypted = terenkripsi
|
||||
unlocked.label.statsDecrypted = terdekripsi
|
||||
unlocked.ioGraph.yAxis.label = Lebar Pita Aktual (MiB/s)\n
|
||||
# settings.fxml
|
||||
settings.version.label = Versi %s
|
||||
settings.checkForUpdates.label = Periksa Pembaruan
|
||||
# tray icon
|
||||
tray.menu.open = Buka
|
||||
tray.menu.quit = Hentikan
|
||||
tray.infoMsg.title = Masih Berjalan
|
||||
tray.infoMsg.msg = Cryptomator masih aktif. Hentikan melalui ikon di baki sistem.
|
||||
tray.infoMsg.msg.osx = Cryptomator masih aktif. Hentikan melalui ikon di bilah menu.
|
||||
initialize.messageLabel.passwordStrength.0 = Sangat lemah
|
||||
initialize.messageLabel.passwordStrength.1 = Lemah
|
||||
initialize.messageLabel.passwordStrength.2 = Sedang
|
||||
initialize.messageLabel.passwordStrength.3 = Kuat
|
||||
initialize.messageLabel.passwordStrength.4 = Sangat kuat
|
||||
initialize.label.doNotForget = PENTING\: Jika Anda lupa kata sandi, data Anda tidak akan dapat dipulihkan.
|
||||
main.directoryList.remove.confirmation.title = Hapus Brankas
|
||||
main.directoryList.remove.confirmation.header = Anda yakin ingin menghapus brankas ini?
|
||||
main.directoryList.remove.confirmation.content = Brankas hanya akan dihapus dari daftar. Untuk menghapusnya secara permanen, silakan menghapus brankas dari sistem berkas Anda.
|
||||
upgrade.version3to4.msg = Brankas ini perlu dimigrasi ke format baru.\nNama folder yang dienkripsi akan diperbarui.\nPastikan bahwa sinkronisasi telah selesai sebelum melanjutkan.
|
||||
upgrade.version3to4.err.io = Migrasi gagal karena IOException. Lihat berkas log untuk detailnya.
|
||||
# upgrade.fxml
|
||||
upgrade.confirmation.label = Ya, saya pastikan bahwa sinkronisasi telah selesai
|
||||
unlock.label.savePassword = Simpan Kata Sandi
|
||||
unlock.errorMessage.unauthenticVersionMac = Tidak dapat mengautentikasi versi MAC.
|
||||
unlock.savePassword.delete.confirmation.title = Hapus Kata Sandi Tersimpan
|
||||
unlock.savePassword.delete.confirmation.header = Anda yakin ingin menghapus kata sandi tersimpan untuk brankas ini?
|
||||
unlock.savePassword.delete.confirmation.content = Kata sandi tersimpan untuk brankas ini akan segera dihapus dari rantai kunci sistem Anda. Jika Anda ingin menyimpan kata sandi lagi, Anda harus membuka berkas Anda dengan mengaktifkan opsi "Simpan Kata Sandi".
|
||||
settings.debugMode.label = Mode Pengawakutuan
|
||||
upgrade.version3dropBundleExtension.title = Peningkatan Brankas Versi 3 (Ekstensi Bundel Drop)
|
||||
upgrade.version3to4.title = Peningkatan Brankas Versi 3 ke 4
|
||||
upgrade.version4to5.title = Peningkatan Brankas Versi 4 ke 5
|
||||
upgrade.version4to5.msg = Brankas ini perlu dimigrasi ke format baru.\nBerkas yang dienkripsi akan diperbarui.\nPastikan bahwa sinkronisasi telah selesai sebelum melanjutkan.\n\nCatatan\: Tanggal modifikasi semua berkas akan diubah ke tanggal/waktu aktual dalam prosesnya.
|
||||
upgrade.version4to5.err.io = Migrasi gagal karena IOException. Lihat berkas log untuk detailnya.
|
||||
unlock.label.revealAfterMount = Tampilkan Drive
|
||||
unlocked.lock.force.confirmation.title = Gagal mengunci %1$s\n
|
||||
unlocked.lock.force.confirmation.header = Anda ingin memaksakan penguncian?
|
||||
unlocked.lock.force.confirmation.content = Ini mungkin dikarenakan program lain masih mengakses berkas di dalam brankas atau juga karena masalah lainnya.\n\nProgram yang masih mengakses berkas mungkin tidak berfungsi dengan semestinya, dan data yang belum ditulis oleh program tersebut kemungkinan hilang.
|
||||
unlock.label.unlockAfterStartup = Buka Otomatis saat Mulai (Eksperimental)
|
||||
unlock.errorMessage.unlockFailed = Gagal membuka. Lihat berkas log untuk detailnya.
|
||||
upgrade.version5toX.title = Peningkatan Versi Brankas
|
||||
upgrade.version5toX.msg = Brankas ini perlu dimigrasi ke format baru.\nPastikan bahwa sinkronisasi telah selesai sebelum melanjutkan.
|
||||
main.createVault.nonEmptyDir.title = Gagal membuat brankas
|
||||
main.createVault.nonEmptyDir.header = Direktori yang dipilih tidak kosong
|
||||
main.createVault.nonEmptyDir.content = Direktori yang dipilih sudah berisi berkas (mungkin disembunyikan). Brankas hanya dapat dibuat di direktori kosong.
|
||||
settings.webdav.port.label = Porta WebDAV
|
||||
settings.webdav.port.prompt = 0 \= Pilih secara otomatis
|
||||
settings.webdav.port.apply = Terapkan
|
||||
settings.webdav.prefGvfsScheme.label = Skema WebDAV
|
||||
settings.volume.label = Jenis Volume yang diutamakan
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Brankas berhasil dibuat.
|
||||
unlock.successLabel.passwordChanged = Kata sandi berhasil diubah.
|
||||
unlock.successLabel.upgraded = Cryptomator berhasil ditingkatkan.
|
||||
unlock.label.useOwnMountPath = Gunakan Titik Kait Kustom
|
||||
welcome.askForUpdateCheck.dialog.title = Pemeriksaan pembaruan
|
||||
welcome.askForUpdateCheck.dialog.header = Aktifkan pemeriksaan pembaruan terintegrasi?
|
||||
welcome.askForUpdateCheck.dialog.content = Disarankan\: Aktifkan pemeriksaan pembaruan untuk memastikan bahwa Anda selalu menginstal Cryptomator versi terbaru dengan segala tambalan keamanan.\n\nAnda dapat mengubahnya kapan pun dari dalam pengaturan.
|
||||
settings.volume.dokany = Dokany
|
||||
main.gracefulShutdown.dialog.title = Gagal mengunci berkas
|
||||
main.gracefulShutdown.dialog.header = Brankas yang digunakan
|
||||
main.gracefulShutdown.dialog.content = Satu atau beberapa brankas masih digunakan oleh program lain. Silakan tutup semuanya agar Cryptomator dapat dimatikan dengan benar, kemudian coba lagi.\n\nCryptomator dapat dimatikan dengan paksa jika tidak berhasil. Namun, hal ini tidak disarankan karena data bisa hilang.
|
||||
main.gracefulShutdown.button.tryAgain = Coba lagi
|
||||
main.gracefulShutdown.button.forceShutdown = Matikan paksa
|
||||
unlock.pendingMessage.unlocking = Membuka brankas...
|
||||
unlock.failedDialog.title = Gagal membuka
|
||||
unlock.failedDialog.header = Gagal membuka
|
||||
unlock.failedDialog.content.mountPathNonExisting = Titik kait tidak ada.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Titik kait tidak kosong.
|
||||
unlock.label.useReadOnlyMode = Hanya-Baca
|
||||
unlock.label.chooseMountPath = Pilih direktori kosong...
|
||||
ctrl.secPasswordField.nonPrintableChars = Kata sandi mengandung karakter kontrol.\nSaran\: Hapus karakter itu untuk memastikan kompatibilitas dengan klien lain.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock diaktifkan.
|
||||
@@ -97,7 +97,7 @@ settings.webdav.port.label = WebDAV Port
|
||||
settings.webdav.port.prompt = 0 \= Scelta automatica
|
||||
settings.webdav.port.apply = Applica
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV Scheme
|
||||
settings.volume.label = Mount-Methode *
|
||||
settings.volume.label = Mount-Methode
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Vaul creato con successo.
|
||||
|
||||
@@ -91,13 +91,13 @@ unlock.errorMessage.unlockFailed = 施錠に失敗しました。詳細をログ
|
||||
upgrade.version5toX.title = 金庫のバージョンをアップグレード
|
||||
upgrade.version5toX.msg = この金庫を新しいバージョンに移行する必要があります。\n進行する前に同期が完了していることをご確認ください。
|
||||
main.createVault.nonEmptyDir.title = 金庫の作成が失敗しました
|
||||
main.createVault.nonEmptyDir.header = 空ではないディレクトリが選択されました
|
||||
main.createVault.nonEmptyDir.content = 選択されたディレクトリが既にファイルを含んでいます(隠れている可能性があります)。金庫は空のディレクトのみに作れます。
|
||||
main.createVault.nonEmptyDir.header = 選択したディレクトリが空ではありません
|
||||
main.createVault.nonEmptyDir.content = 選択したディレクトリには、既にファイルがあります (非表示になっている可能性があります)。金庫は空のディレクトリにのみ作成可能です。
|
||||
settings.webdav.port.label = WebDAV ポート
|
||||
settings.webdav.port.prompt = 0 \= 自動的に選択
|
||||
settings.webdav.port.apply = 適用
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV スキーム
|
||||
settings.volume.label = マウント方法 *
|
||||
settings.volume.label = マウント方法
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = 金庫が正常に作成されました。
|
||||
@@ -106,19 +106,19 @@ unlock.successLabel.upgraded = Cryptomator が正常にアップグレードさ
|
||||
unlock.label.useOwnMountPath = カスタムマウントポイントを使う
|
||||
welcome.askForUpdateCheck.dialog.title = アップデート確認
|
||||
welcome.askForUpdateCheck.dialog.header = 統合アップデート確認を有効にしますか?
|
||||
welcome.askForUpdateCheck.dialog.content = おすすめ\: アップデート確認を有効にして、常にすべてのセキュリティパッチが適用されたCryptomatorを維持してください。\n設定はいつでも変えられます。
|
||||
welcome.askForUpdateCheck.dialog.content = 推奨事項\: 更新プログラムのチェックを有効にして、常にすべてのセキュリティ パッチが適応された Cryptomator の最新バージョンを利用してください。\n\nこの設定はいつでも設定から変更できます。
|
||||
settings.volume.dokany = Dokany
|
||||
main.gracefulShutdown.dialog.title = 金庫のロックに失敗しました。
|
||||
main.gracefulShutdown.dialog.header = 金庫が使用中です。
|
||||
main.gracefulShutdown.dialog.content = 金庫が複数のプログラムによって使用されています。Cryptomatorが正しく終了できるようにプログラムを閉じてから、もう一度やり直してください。\nこれでうまくいかない場合、Cryptomatorを強制的に終了できますが、データの損失が発生しかねないためお勧めできません。
|
||||
main.gracefulShutdown.dialog.content = 金庫が複数のプログラムによって使用されています。Cryptomator を正常に終了できるようにプログラムを閉じてから、もう一度やり直してください。\n\n閉じなくても Cryptomator を強制的に終了することはできますが、データの損失を発生しかねないためお勧めできません。
|
||||
main.gracefulShutdown.button.tryAgain = やり直す
|
||||
main.gracefulShutdown.button.forceShutdown = 強制終了
|
||||
unlock.pendingMessage.unlocking = 金庫を施錠中...
|
||||
unlock.failedDialog.title = 施錠に失敗しました
|
||||
unlock.failedDialog.header = 施錠に失敗しました
|
||||
unlock.pendingMessage.unlocking = 金庫を解錠しています...
|
||||
unlock.failedDialog.title = 解錠に失敗しました
|
||||
unlock.failedDialog.header = 解錠に失敗しました
|
||||
unlock.failedDialog.content.mountPathNonExisting = マウントポイントが存在しません。
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Mount point is not empty.
|
||||
unlock.label.useReadOnlyMode = Read-Only
|
||||
unlock.label.chooseMountPath = Choose empty directory…
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = マウントポイントが空ではありません。
|
||||
unlock.label.useReadOnlyMode = 読み取り専用
|
||||
unlock.label.chooseMountPath = 空のディレクトリを選択...
|
||||
ctrl.secPasswordField.nonPrintableChars = パスワードに制御文字が含まれています。\n推奨事項\: 他のクライアントとの互換性のために、制御文字は削除してください。
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock が有効です。
|
||||
@@ -97,7 +97,7 @@ settings.webdav.port.label = WebDAV 포트
|
||||
settings.webdav.port.prompt = 0 \= 자동으로 선택
|
||||
settings.webdav.port.apply = 적용
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV 스킴
|
||||
settings.volume.label = 마운트-방법 *
|
||||
settings.volume.label = 마운트-방법
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = 보관함이 성공적으로 생성되었습니다.
|
||||
@@ -118,7 +118,7 @@ unlock.failedDialog.title = 잠금 해제 실패
|
||||
unlock.failedDialog.header = 잠금 해제 실패
|
||||
unlock.failedDialog.content.mountPathNonExisting = 마운트 지점이 존재하지 않습니다.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = 마운트 지점이 비어있지 않습니다.
|
||||
unlock.label.useReadOnlyMode = Read-Only
|
||||
unlock.label.chooseMountPath = Choose empty directory…
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
unlock.label.useReadOnlyMode = 읽기 전용
|
||||
unlock.label.chooseMountPath = 빈 디렉토리 선택
|
||||
ctrl.secPasswordField.nonPrintableChars = 패스워드에 특수문자가 포함되어 있습니다.\n권장사항 \: 다른 클라이언트와의 호환성을 보증하기 위해 해당하는 문자를 제거하시기 바랍니다.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock 키가 활성화 되어있습니다.
|
||||
@@ -13,7 +13,7 @@ initialize.label.password = Parole
|
||||
initialize.label.retypePassword = Atkārto paroli
|
||||
initialize.button.ok = Izveidot glabātuvi
|
||||
initialize.messageLabel.alreadyInitialized = Glabātuve jau ir inicializēta
|
||||
initialize.messageLabel.initializationFailed = Nevarēja inicializēt glabātuvi. Sīkākai informācijai skati žurnālu.
|
||||
initialize.messageLabel.initializationFailed = Nevarēja inicializēt glabātuvi. Sīkāku informāciju skaties žurnālā.
|
||||
# notfound.fxml
|
||||
notfound.label = Nevar atrast glabātuvi. Vai tā ir pārvietota?
|
||||
# upgrade.fxml
|
||||
@@ -69,7 +69,7 @@ main.directoryList.remove.confirmation.title = Noņemt glabātuvi
|
||||
main.directoryList.remove.confirmation.header = Vai tiešām vēlie noņemt šo glabātuvi?
|
||||
main.directoryList.remove.confirmation.content = Glabātuve tiks noņemta tikai no saraksta. Lai to dzēstu pilnībā, lūdzu nodzēs to no datņu sistēmas.
|
||||
upgrade.version3to4.msg = Šī glabātuve ir jāmigrē uz jaunāku formāta versiju. Sifrētie mapju nosaukumi tiks atjaunināti. Pirms palaišanas lūdzu pārliecinies, ka ir pabeigusies sinhronizācija.
|
||||
upgrade.version3to4.err.io = Migrācija neizdevās dēļ I/O izņēmuma. Sīkākai informācijai skati žurnālu.
|
||||
upgrade.version3to4.err.io = Migrācija neizdevās dēļ I/O izņēmuma. Sīkāku informāciju skaties žurnālā.
|
||||
# upgrade.fxml
|
||||
upgrade.confirmation.label = Jā, esmu pārliecinājies, ka sinhronizācija ir pabeigta.
|
||||
unlock.label.savePassword = Saglabāt paroli
|
||||
@@ -82,44 +82,44 @@ upgrade.version3dropBundleExtension.title = Glabātuves 3 versijas atjauninājum
|
||||
upgrade.version3to4.title = Glabātuves versijas 3 uz 4 atjauninājums
|
||||
upgrade.version4to5.title = Glabātuves versijas 4 uz 5 atjauninājums
|
||||
upgrade.version4to5.msg = Šo glabātuvi nepieciešams migrēt uz jaunāku versiju.\nŠifrētās datnes tiks atjauninātas.\nPirms apstiprini, pārliecinies, ka ir beigusies sinhronizācija.\n\nPiezīme\: Visām datnēm modificēšanas datums tiks izmainīts uz šodienas datumu.
|
||||
upgrade.version4to5.err.io = Migrācijas kļīda dēļ I/O izņēmuma. Sīkāku informāciju skaties žurnālā.
|
||||
unlock.label.revealAfterMount = Reveal Drive
|
||||
unlocked.lock.force.confirmation.title = Locking of %1$s failed
|
||||
unlocked.lock.force.confirmation.header = Do you want to force locking?
|
||||
unlocked.lock.force.confirmation.content = This may be because other programs are still accessing files in the vault or because some other problem occurred.\n\nPrograms still accessing the files may not work correctly and data not already written by those programs may be lost.
|
||||
unlock.label.unlockAfterStartup = Auto-Unlock on Start (Experimental)
|
||||
unlock.errorMessage.unlockFailed = Unlock failed. See log file for details.
|
||||
upgrade.version5toX.title = Vault Version Upgrade
|
||||
upgrade.version5toX.msg = This vault needs to be migrated to a newer format.\nPlease make sure synchronization has finished before proceeding.
|
||||
main.createVault.nonEmptyDir.title = Creating vault failed
|
||||
main.createVault.nonEmptyDir.header = Chosen directory is not empty
|
||||
main.createVault.nonEmptyDir.content = The selected directory already contains files (possibly hidden). A vault can only be created in an empty directory.
|
||||
settings.webdav.port.label = WebDAV Port
|
||||
settings.webdav.port.prompt = 0 \= Choose automatically
|
||||
settings.webdav.port.apply = Apply
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV Scheme
|
||||
settings.volume.label = Preferred Volume Type
|
||||
upgrade.version4to5.err.io = Migrācijas kļūda dēļ I/O izņēmuma. Sīkāku informāciju skaties žurnālā.
|
||||
unlock.label.revealAfterMount = Atklāt disku
|
||||
unlocked.lock.force.confirmation.title = %1$s aizslēgšana neizdevās
|
||||
unlocked.lock.force.confirmation.header = Vai jūs vēlaties piespiest aizslēgšanu?
|
||||
unlocked.lock.force.confirmation.content = Tas varētu notikt, jo citas programmas joprojām izmanto glabātuves datnes vai arī ir kādas citas problēmas.\n\nProgrammas, kuras turpina izmantot datnes var nedarboties korekti un dati, kas nav ierakstīti glabātuvē, var tikt pazaudēti.
|
||||
unlock.label.unlockAfterStartup = Automātiski atslēgt pie startēšanas (eksperimentāls)
|
||||
unlock.errorMessage.unlockFailed = Atslēgšana neizdevās. Sīkāku informāciju skaties žurnālā.
|
||||
upgrade.version5toX.title = Glabātuves versijas atjaunināšana
|
||||
upgrade.version5toX.msg = Šo glabātuvi nepieciešams migrēt uz jaunāku versiju.\nLūdzu pārliecinieties, ka ir pabeigts sinhronizācijas process.
|
||||
main.createVault.nonEmptyDir.title = Glabātuves izveide neizdevās
|
||||
main.createVault.nonEmptyDir.header = Izvēlētā mape nav tukša
|
||||
main.createVault.nonEmptyDir.content = Izvēlētā mape jau satur datnes (iespējams paslēptas). Glabātuve var tikt izveidota tikai tukšā mapē.
|
||||
settings.webdav.port.label = WebDAV ports
|
||||
settings.webdav.port.prompt = 0 \= izvēlās automātiski
|
||||
settings.webdav.port.apply = Pielietot
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV shēma
|
||||
settings.volume.label = Vēlamais sējuma tips
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Vault was successfully created.
|
||||
unlock.successLabel.passwordChanged = Password was successfully changed.
|
||||
unlock.successLabel.upgraded = Vault was successfully upgraded.
|
||||
unlock.label.useOwnMountPath = Use Custom Mount Point
|
||||
welcome.askForUpdateCheck.dialog.title = Update check
|
||||
welcome.askForUpdateCheck.dialog.header = Enable the integrated update check?
|
||||
welcome.askForUpdateCheck.dialog.content = Recommended\: Enable the update check to always be sure you have the newest version of Cryptomator, with all security patches, installed.\n\nYou can change this from within the settings at any time.
|
||||
unlock.successLabel.vaultCreated = Glabātuve tika veiksmīgi izveidota.
|
||||
unlock.successLabel.passwordChanged = Parole tika veiksmīgi nomainīta.
|
||||
unlock.successLabel.upgraded = Glabātuve tika veiksmīgi atjaunināta.
|
||||
unlock.label.useOwnMountPath = Izmantot citu montēšanas vietu
|
||||
welcome.askForUpdateCheck.dialog.title = Atjauninājuma pārbaude
|
||||
welcome.askForUpdateCheck.dialog.header = Ieslēgt integrēto atjauninājumu pārbaudi?
|
||||
welcome.askForUpdateCheck.dialog.content = Rekomendācija\: Ieslēdziet atjauninājumu pārbaudi, lai vienmēr esiet drošs, ka instalēta jaunākā Cryptomator versija ar visiem drošības ielāpiem.
|
||||
settings.volume.dokany = Dokany
|
||||
main.gracefulShutdown.dialog.title = Locking vault(s) failed
|
||||
main.gracefulShutdown.dialog.header = Vault(s) in use
|
||||
main.gracefulShutdown.dialog.content = One or more vaults are still in use by other programs. Please close them to allow Cryptomator to shut down properly, then try again.\n\nIf this doesn't work, Cryptomator can shut down forcefully, but this can incur data loss and is not recommended.
|
||||
main.gracefulShutdown.button.tryAgain = Try Again
|
||||
main.gracefulShutdown.button.forceShutdown = Force Shutdown
|
||||
unlock.pendingMessage.unlocking = Unlocking vault...
|
||||
unlock.failedDialog.title = Unlock failed
|
||||
unlock.failedDialog.header = Unlock failed
|
||||
unlock.failedDialog.content.mountPathNonExisting = Mount point does not exist.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Mount point is not empty.
|
||||
unlock.label.useReadOnlyMode = Read-Only
|
||||
unlock.label.chooseMountPath = Choose empty directory…
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
main.gracefulShutdown.dialog.title = Glabātuve(s) aizslēgšana neizdevās
|
||||
main.gracefulShutdown.dialog.header = Izmantotā(s) glabātuve(s)
|
||||
main.gracefulShutdown.dialog.content = Vienu vai vairākas glabātuves joprojām izmanto citas programmas. Lūdzu, aizveriet tās, lai ļautu Cryptomator pareizi aizvērties, tad mēģiniet vēlreiz.\n\nJa tas nedarbojas, Cryptomator var piespiedu aizvērt, taču tas var izraisīt datu zudumu un nav ieteicams.
|
||||
main.gracefulShutdown.button.tryAgain = Mēģini vēlreiz
|
||||
main.gracefulShutdown.button.forceShutdown = Piespiest izslēgšanu
|
||||
unlock.pendingMessage.unlocking = Atslēdz glabātuvi...
|
||||
unlock.failedDialog.title = Atslēgšana neizdevās
|
||||
unlock.failedDialog.header = Atslēgšana neizdevās
|
||||
unlock.failedDialog.content.mountPathNonExisting = Montēšanas vieta neeksistē.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Montēšanas vieta nav tukša.
|
||||
unlock.label.useReadOnlyMode = Tikai lasīt
|
||||
unlock.label.chooseMountPath = Izvēlieties tukšu mapi...
|
||||
ctrl.secPasswordField.nonPrintableChars = Parole satur kontroles rakstzīmes.\nRekomentācija\: Noņemiet tās, lai nodrošinātu saderību ar citiem klientiem.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock ir aktivizēts.
|
||||
@@ -97,7 +97,7 @@ settings.webdav.port.label = WebDAV Porta
|
||||
settings.webdav.port.prompt = 0 \= Escolher automaticamente
|
||||
settings.webdav.port.apply = Aplicar
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV Esquema
|
||||
settings.volume.label = Método de Montagem *
|
||||
settings.volume.label = Método de Montagem
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Cofre foi criado com sucesso.
|
||||
|
||||
@@ -65,8 +65,8 @@ tray.infoMsg.msg.osx = Cryptomator всё ещё работает. Выйдит
|
||||
initialize.messageLabel.passwordStrength.0 = Очень слабый
|
||||
initialize.messageLabel.passwordStrength.1 = Слабый
|
||||
initialize.messageLabel.passwordStrength.2 = Приемлемый
|
||||
initialize.messageLabel.passwordStrength.3 = Стойкий
|
||||
initialize.messageLabel.passwordStrength.4 = Очень стойкий
|
||||
initialize.messageLabel.passwordStrength.3 = Сложный
|
||||
initialize.messageLabel.passwordStrength.4 = Очень сложный
|
||||
initialize.label.doNotForget = ВАЖНО\: Если вы забудете свой пароль, то восстановить данные будет невозможно.
|
||||
main.directoryList.remove.confirmation.title = Удаление хранилища
|
||||
main.directoryList.remove.confirmation.header = Вы действительно хотите удалить это хранилище?
|
||||
@@ -104,7 +104,7 @@ settings.webdav.port.label = Порт WebDAV
|
||||
settings.webdav.port.prompt = 0 \= автовыбор
|
||||
settings.webdav.port.apply = Применить
|
||||
settings.webdav.prefGvfsScheme.label = Схема WebDAV
|
||||
settings.volume.label = Метод монтирования*
|
||||
settings.volume.label = Метод монтирования
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Хранилище успешно создано.
|
||||
@@ -120,12 +120,12 @@ main.gracefulShutdown.dialog.header = Используемые хранилищ
|
||||
main.gracefulShutdown.dialog.content = Одно или несколько хранилищ всё ещё используются другими программами. Закройте их, чтобы Cryptomator мог корректно завершить работу, и повторите попытку.\n\nЕсли это не поможет, Cryptomator может завершить работу принудительно, но с риском потери данных, и потому это не рекомендуется.
|
||||
main.gracefulShutdown.button.tryAgain = Попробовать снова
|
||||
main.gracefulShutdown.button.forceShutdown = Принудительно завершить работу
|
||||
unlock.pendingMessage.unlocking = Открываем хранилеще
|
||||
unlock.pendingMessage.unlocking = Открываем хранилище...
|
||||
unlock.failedDialog.title = Разблокировка не удалась
|
||||
unlock.failedDialog.header = Разблокировка не удалась\n
|
||||
unlock.failedDialog.content.mountPathNonExisting = Точка монтирования не существует
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Точка монтирования не пуста
|
||||
unlock.label.useReadOnlyMode = Read-Only
|
||||
unlock.label.chooseMountPath = Choose empty directory…
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
unlock.failedDialog.header = Разблокировка не удалась
|
||||
unlock.failedDialog.content.mountPathNonExisting = Точка монтирования не существует.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Точка монтирования не пуста.
|
||||
unlock.label.useReadOnlyMode = Только для чтения
|
||||
unlock.label.chooseMountPath = Выберите пустую папку...
|
||||
ctrl.secPasswordField.nonPrintableChars = Пароль содержит управляющие символы.\nРекомендация\: Удалите их для совместимости с другими платформами.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock включен.
|
||||
@@ -1,6 +1,6 @@
|
||||
# Copyright (c) 2016 The Cryptomator Contributors
|
||||
# This file is licensed under the terms of the MIT license.
|
||||
# See the LICENSE.txt file for more info.
|
||||
# Copyright (c) 2016 The Cryptomator Contributors
|
||||
# # This file is licensed under the terms of the MIT license.
|
||||
# # See the LICENSE.txt file for more info.
|
||||
app.name = Cryptomator
|
||||
# main.fxml
|
||||
main.emptyListInstructions = Pridať trezor
|
||||
|
||||
124
main/ui/src/main/resources/localization/sv.txt
Normal file
124
main/ui/src/main/resources/localization/sv.txt
Normal file
@@ -0,0 +1,124 @@
|
||||
app.name = Cryptomator
|
||||
# main.fxml
|
||||
main.emptyListInstructions = Klicka här för att lägga till ett valv
|
||||
main.directoryList.contextMenu.remove = Ta bort från lista
|
||||
main.directoryList.contextMenu.changePassword = Ändra lösenord
|
||||
main.addDirectory.contextMenu.new = Skapa nytt valv
|
||||
main.addDirectory.contextMenu.open = Öppna befintligt valv
|
||||
# welcome.fxml
|
||||
welcome.checkForUpdates.label.currentlyChecking = Söker efter uppdateringar...
|
||||
welcome.newVersionMessage = Version %1$s kan hämtas.\nDetta är %2$s.
|
||||
# initialize.fxml
|
||||
initialize.label.password = Lösenord
|
||||
initialize.label.retypePassword = Upprepa lösenord
|
||||
initialize.button.ok = Skapa valv
|
||||
initialize.messageLabel.alreadyInitialized = Valv redan initialiserat
|
||||
initialize.messageLabel.initializationFailed = Kunde inte initiera valvet. Se loggfilen för detaljer.
|
||||
# notfound.fxml
|
||||
notfound.label = Valvet kunde inte hittas. Har det flyttats?
|
||||
# upgrade.fxml
|
||||
upgrade.button = Uppgradera valv
|
||||
upgrade.version3dropBundleExtension.msg = Detta valv måste migreras till ett nyare format.\n"%1$s" kommer att ändra namn till "%2$s".\nSe till att synkroniseringen är klar innan du fortsätter.
|
||||
upgrade.version3dropBundleExtension.err.alreadyExists = Automatisk migrering misslyckades.\n"%s" finns redan.
|
||||
# unlock.fxml
|
||||
unlock.label.password = Lösenord
|
||||
unlock.label.mountName = Enhetsnamn
|
||||
unlock.label.winDriveLetter = Enhetsbokstav
|
||||
unlock.label.downloadsPageLink = Alla Cryptomator versioner
|
||||
unlock.label.advancedHeading = Avancerade inställningar
|
||||
unlock.button.unlock = Lås upp valv
|
||||
unlock.button.advancedOptions.show = Fler inställningar
|
||||
unlock.button.advancedOptions.hide = Färre inställningar
|
||||
unlock.choicebox.winDriveLetter.auto = Tilldela automatiskt
|
||||
unlock.errorMessage.wrongPassword = Fel lösenord
|
||||
unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Valvet stöds inte. Detta valv har skapats med en äldre version av Cryptomator.
|
||||
unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Valvet stöds inte. Detta valv har skapats med en nyare version av Cryptomator.
|
||||
# change_password.fxml
|
||||
changePassword.label.oldPassword = Gammalt lösenord
|
||||
changePassword.label.newPassword = Nytt lösenord
|
||||
changePassword.label.retypePassword = Upprepa lösenord
|
||||
changePassword.label.downloadsPageLink = Alla Cryptomator versioner
|
||||
changePassword.button.change = Ändra lösenord
|
||||
changePassword.errorMessage.wrongPassword = Fel lösenord
|
||||
changePassword.errorMessage.decryptionFailed = Dekryptering misslyckades
|
||||
# unlocked.fxml
|
||||
unlocked.button.lock = Lås valv
|
||||
unlocked.moreOptions.reveal = Visa enheten
|
||||
unlocked.label.revealFailed = Operationen misslyckades
|
||||
unlocked.label.unmountFailed = Utmatning av enhet misslyckades
|
||||
unlocked.label.statsEncrypted = krypterad
|
||||
unlocked.label.statsDecrypted = dekrypterad
|
||||
unlocked.ioGraph.yAxis.label = Genomströmning (MiB/s)
|
||||
# settings.fxml
|
||||
settings.version.label = Version %s
|
||||
settings.checkForUpdates.label = Sök efter uppdateringar
|
||||
# tray icon
|
||||
tray.menu.open = Öppna
|
||||
tray.menu.quit = Stäng
|
||||
tray.infoMsg.title = Fortfarande aktiv
|
||||
tray.infoMsg.msg = Cryptomator är fortfarande aktiv. Avsluta det Avsluta det från verktygsfältsikonen.
|
||||
tray.infoMsg.msg.osx = Cryptomator är fortfarande aktiv. Avsluta det Avsluta det från menyfältsikonen.
|
||||
initialize.messageLabel.passwordStrength.0 = Mycket svagt
|
||||
initialize.messageLabel.passwordStrength.1 = Svagt
|
||||
initialize.messageLabel.passwordStrength.2 = Ganska bra
|
||||
initialize.messageLabel.passwordStrength.3 = Starkt
|
||||
initialize.messageLabel.passwordStrength.4 = Mycket starkt
|
||||
initialize.label.doNotForget = VIKTIGT\: Om du glömmer ditt lösenord kan du inte återställa din data.
|
||||
main.directoryList.remove.confirmation.title = Ta bort valv
|
||||
main.directoryList.remove.confirmation.header = Vill du verkligen ta bort det här valvet?
|
||||
main.directoryList.remove.confirmation.content = Valvet kommer endast att tas bort från listan. Ta bort valvet från ditt filsystem för att permanent radera det.
|
||||
upgrade.version3to4.msg = Denna valv måste migreras till ett nyare format.\nKrypterade mappnamn uppdateras.\nSe till att synkroniseringen är klar innan du fortsätter.
|
||||
upgrade.version3to4.err.io = Migrationen misslyckades på grund av ett I/O-undantag. Se loggfilen för detaljer.
|
||||
# upgrade.fxml
|
||||
upgrade.confirmation.label = Ja, jag har säkerställt att synkroniseringen är klar
|
||||
unlock.label.savePassword = Spara lösenord
|
||||
unlock.errorMessage.unauthenticVersionMac = Kunde inte verifiera MAC-versionen
|
||||
unlock.savePassword.delete.confirmation.title = Ta bort sparat lösenord
|
||||
unlock.savePassword.delete.confirmation.header = Vill du verkligen ta bort det sparade lösenordet för det här valvet?
|
||||
unlock.savePassword.delete.confirmation.content = Det sparade lösenordet för detta valv raderas omedelbart från systemnyckelringen. Om du vill spara ditt lösenord igen måste du låsa upp ditt valv med alternativet "Spara lösenord" aktiverat.
|
||||
settings.debugMode.label = Felsökningsläge
|
||||
upgrade.version3dropBundleExtension.title = Valv version 3-uppgradering (Bundle tillägget borttaget)
|
||||
upgrade.version3to4.title = Valv version 3 till 4 uppgradering
|
||||
upgrade.version4to5.title = Valv version 4 till 5 uppgradering
|
||||
upgrade.version4to5.msg = Detta valv måste migreras till ett nyare format.\nKrypterade filer uppdateras.\nSe till att synkroniseringen är klar innan du fortsätter.\n\nObs\! Ändringsdatum för alla filer ändras till aktuellt datum/tid i processen.
|
||||
upgrade.version4to5.err.io = Migreringen misslyckades på grund av ett I/O-undantag. Se loggfilen för detaljer.
|
||||
unlock.label.revealAfterMount = Avslöja enheten
|
||||
unlocked.lock.force.confirmation.title = Låsning av %1$s misslyckades
|
||||
unlocked.lock.force.confirmation.header = Vill du tvinga låsning?
|
||||
unlocked.lock.force.confirmation.content = Det kan bero på att andra program fortfarande har åtkomst till filer i valvet eller på att något annat problem uppstod. Program som fortfarande kommer åt filerna kanske inte fungerar korrekt och data som inte redan skrivits av dessa program kan gå förlorade.
|
||||
unlock.label.unlockAfterStartup = Automatisk upplåsning vid start (experimentell)
|
||||
unlock.errorMessage.unlockFailed = Upplåsningen misslyckades. Se loggfilen för mer information.
|
||||
upgrade.version5toX.title = Versionsuppgradering av valv
|
||||
upgrade.version5toX.msg = Detta valv måste migreras till ett nyare format.\nSe till att synkroniseringen är klar innan du fortsätter.
|
||||
main.createVault.nonEmptyDir.title = Valv skapande misslyckades
|
||||
main.createVault.nonEmptyDir.header = Vald mapp är inte tom
|
||||
main.createVault.nonEmptyDir.content = Den valda katalogen innehåller redan filer (eventuellt dolda). Ett valv kan bara skapas i en tom katalog.
|
||||
settings.webdav.port.label = WebDAV-port
|
||||
settings.webdav.port.prompt = 0 \= Välj automatiskt
|
||||
settings.webdav.port.apply = Tillämpa
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV-schema
|
||||
settings.volume.label = Önskad volymtyp
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Valv skapades.
|
||||
unlock.successLabel.passwordChanged = Lösenordet ändrades.
|
||||
unlock.successLabel.upgraded = Cryptomator uppdaterades
|
||||
unlock.label.useOwnMountPath = Använd anpassad monteringspunkt
|
||||
welcome.askForUpdateCheck.dialog.title = Uppdateringskontroll
|
||||
welcome.askForUpdateCheck.dialog.header = Aktivera den integrerade uppdateringskontrollen?
|
||||
welcome.askForUpdateCheck.dialog.content = För att söka efter uppdateringar hämtar Cryptomator den aktuella versionen från Cryptomator-servrarna och visar en ledtråd till dig om en nyare version är tillgänglig.\n\nVi rekommenderar att du aktiverar uppdateringskontrollen för att alltid vara säker på att du har den senaste versionen av Cryptomator, med alla säkerhetsåtgärder, installerad. Om du inte aktiverar uppdateringskontrollen kan du kontrollera och hämta den aktuella versionen från https\://cryptomator.org/downloads/.\n\nDu kan ändra detta när som helst inifrån inställningarna.
|
||||
settings.volume.dokany = Dokany
|
||||
main.gracefulShutdown.dialog.title = Valvlåsning misslyckades
|
||||
main.gracefulShutdown.dialog.header = Valv som används
|
||||
main.gracefulShutdown.dialog.content = Ett eller flera valv används fortfarande av andra program. Stäng dem för att tillåta Cryptomator att stänga av ordentligt och försök sedan igen.\n\nOm detta inte fungerar kan Cryptomator tvingas att stängas, men det kan medföra dataförlust och rekommenderas inte.
|
||||
main.gracefulShutdown.button.tryAgain = Försök igen
|
||||
main.gracefulShutdown.button.forceShutdown = Tvinga avstängning
|
||||
unlock.pendingMessage.unlocking = Låser upp valv...
|
||||
unlock.failedDialog.title = Valvet kunde inte låsas upp
|
||||
unlock.failedDialog.header = Upplåsningen misslyckades
|
||||
unlock.failedDialog.content.mountPathNonExisting = Monteringspunkten finns inte.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Monteringspunkten är inte tom.
|
||||
unlock.label.useReadOnlyMode = Skrivskyddad
|
||||
unlock.label.chooseMountPath = Välj tom mapp…
|
||||
ctrl.secPasswordField.nonPrintableChars = Lösenordet innehåller kontrolltecken.\nRekommendation\: Ta bort dem för att säkerställa kompatibilitet med andra klienter.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock är aktiverat.
|
||||
@@ -1,49 +1,49 @@
|
||||
app.name = Cryptomator
|
||||
# main.fxml
|
||||
main.emptyListInstructions = Kasa eklemek için tıkla
|
||||
main.emptyListInstructions = Kasa eklemek için buraya tıkla
|
||||
main.directoryList.contextMenu.remove = Listeden sil
|
||||
main.directoryList.contextMenu.changePassword = Şifreyi değiştir
|
||||
main.addDirectory.contextMenu.new = Yeni bir kasa yarat
|
||||
main.addDirectory.contextMenu.open = Var olan kasayı aç
|
||||
main.directoryList.contextMenu.changePassword = Şifreyi Değiştir
|
||||
main.addDirectory.contextMenu.new = Yeni Bir Kasa Oluştur
|
||||
main.addDirectory.contextMenu.open = Var Olan Kasayı Aç
|
||||
# welcome.fxml
|
||||
welcome.checkForUpdates.label.currentlyChecking = Güncellemeler kontrol ediliyor...
|
||||
welcome.newVersionMessage = Sürüm %1$s indirilebilir.\nŞu anki sürüm\: %2$s
|
||||
# initialize.fxml
|
||||
initialize.label.password = Şifre
|
||||
initialize.label.retypePassword = Şifre (tekrar)
|
||||
initialize.button.ok = Kasa oluştur
|
||||
initialize.messageLabel.alreadyInitialized = Kasa çoktan başlatıldı
|
||||
initialize.messageLabel.initializationFailed = Kasa başlatılamadı. Detaylar için log dosyasına bakın.
|
||||
initialize.button.ok = Kasa Oluştur
|
||||
initialize.messageLabel.alreadyInitialized = Kasa zaten başlatıldı
|
||||
initialize.messageLabel.initializationFailed = Kasa başlatılamadı. Detaylar için günlük dosyasına bakın.
|
||||
# notfound.fxml
|
||||
notfound.label = Kasa bulunamadı. Yeri değişmiş olabilir mi ?
|
||||
# upgrade.fxml
|
||||
upgrade.button = Kasayı yükselt.
|
||||
upgrade.button = Kasayı Yükselt
|
||||
upgrade.version3dropBundleExtension.msg = Bu kasanın yeni formata geçirilmesi gerekmekte. "%1$s" ismi "%2$s" olarak değiştirilecek. Devam etmeden önce senkronizasyonun bittiğine emin olun.
|
||||
upgrade.version3dropBundleExtension.err.alreadyExists = Otomatik format değiştirme sırasında hata. "%s" zaten bulunmakta.
|
||||
upgrade.version3dropBundleExtension.err.alreadyExists = Otomatik taşıma sırasında hata oluştu. "%s" zaten bulunmakta.
|
||||
# unlock.fxml
|
||||
unlock.label.password = Şifre
|
||||
unlock.label.mountName = Sürücü ismi
|
||||
unlock.label.winDriveLetter = Sürücü konumu
|
||||
unlock.label.mountName = Sürücü Adı
|
||||
unlock.label.winDriveLetter = Sürücü Konumu
|
||||
unlock.label.downloadsPageLink = Tüm Cryptomator sürümleri
|
||||
unlock.label.advancedHeading = Gelişmiş seçenekler
|
||||
unlock.button.unlock = Kasayı aç
|
||||
unlock.button.advancedOptions.show = Daha fazla seçenek
|
||||
unlock.button.advancedOptions.hide = Daha az seçenek
|
||||
unlock.label.advancedHeading = Gelişmiş Seçenekler
|
||||
unlock.button.unlock = Kasayı Aç
|
||||
unlock.button.advancedOptions.show = Daha Fazla Seçenek
|
||||
unlock.button.advancedOptions.hide = Daha Az Seçenek
|
||||
unlock.choicebox.winDriveLetter.auto = Otomatik ata
|
||||
unlock.errorMessage.wrongPassword = Yanlış şifre
|
||||
unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Desteklenmeyen kasa. Bu kasa daha eski bir Cryptomator sürümü ile oluşturulmuş.
|
||||
unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Desteklenmeyen kasa. Bu kasa daha yeni bir Cryptomator sürümü ile oluşturulmuş.
|
||||
# change_password.fxml
|
||||
changePassword.label.oldPassword = Eski şifre
|
||||
changePassword.label.newPassword = Yeni şifre
|
||||
changePassword.label.retypePassword = Yeni şifre (tekrar)
|
||||
changePassword.label.oldPassword = Eski Şifre
|
||||
changePassword.label.newPassword = Yeni Şifre
|
||||
changePassword.label.retypePassword = Yeni Şifre (tekrar)
|
||||
changePassword.label.downloadsPageLink = Tüm Cryptomator sürümleri
|
||||
changePassword.button.change = Şifreyi değiştir
|
||||
changePassword.button.change = Şifreyi Değiştir
|
||||
changePassword.errorMessage.wrongPassword = Yanlış şifre
|
||||
changePassword.errorMessage.decryptionFailed = Şifre çözme başarısız
|
||||
# unlocked.fxml
|
||||
unlocked.button.lock = Kasayı kilitle
|
||||
unlocked.moreOptions.reveal = Sürücüyü göster
|
||||
unlocked.button.lock = Kasayı Kilitle
|
||||
unlocked.moreOptions.reveal = Sürücüyü Göster
|
||||
unlocked.label.revealFailed = Komut başarısız
|
||||
unlocked.label.unmountFailed = Sürücü çıkarma başarısız
|
||||
unlocked.label.statsEncrypted = şifrelenmiş
|
||||
@@ -55,7 +55,7 @@ settings.checkForUpdates.label = Güncellemeleri denetle
|
||||
# tray icon
|
||||
tray.menu.open = Aç
|
||||
tray.menu.quit = Çıkış
|
||||
tray.infoMsg.title = Hala çalışıyor
|
||||
tray.infoMsg.title = Hala Çalışıyor
|
||||
tray.infoMsg.msg = Cryptomator hala çalışıyor. Bildirim simgesi ile çıkış yapın.
|
||||
tray.infoMsg.msg.osx = Cryptomator hala çalışıyor. Menü bar simgesi ile çıkış yapın.
|
||||
initialize.messageLabel.passwordStrength.0 = Çok zayıf
|
||||
@@ -68,57 +68,57 @@ main.directoryList.remove.confirmation.title = Kasayı Sil
|
||||
main.directoryList.remove.confirmation.header = Kasayı silmek istediğinize emin misiniz ?
|
||||
main.directoryList.remove.confirmation.content = Kasa yalnızca listeden silinecek. Tamamen silmek için dosya sisteminizden dosyaları elle siliniz.
|
||||
upgrade.version3to4.msg = Bu kasanın yeni formata geçirilmesi gerekmekte. Şifreli klasör isimleri güncellenecek. Devam etmeden önce senkronizasyonun bittiğine emin olun.
|
||||
upgrade.version3to4.err.io = Format değiştirme işlemi I/O Hatası dolayısı ile başarısız oldu. Detaylar için log dosyasına bakın
|
||||
upgrade.version3to4.err.io = Format değiştirme işlemi G/Ç Hatası dolayısı ile başarısız oldu. Detaylar için günlük dosyasına bakın
|
||||
# upgrade.fxml
|
||||
upgrade.confirmation.label = Yes, I've made sure that synchronization has finished
|
||||
unlock.label.savePassword = Save Password
|
||||
unlock.errorMessage.unauthenticVersionMac = Could not authenticate version MAC.
|
||||
unlock.savePassword.delete.confirmation.title = Delete Saved Password
|
||||
unlock.savePassword.delete.confirmation.header = Do you really want to delete the saved password of this vault?
|
||||
unlock.savePassword.delete.confirmation.content = The saved password of this vault will be immediately deleted from your system keychain. If you'd like to save your password again, you'd have to unlock your vault with the "Save Password" option enabled.
|
||||
settings.debugMode.label = Debug Mode
|
||||
upgrade.version3dropBundleExtension.title = Vault Version 3 Upgrade (Drop Bundle Extension)
|
||||
upgrade.version3to4.title = Vault Version 3 to 4 Upgrade
|
||||
upgrade.version4to5.title = Vault Version 4 to 5 Upgrade
|
||||
upgrade.version4to5.msg = This vault needs to be migrated to a newer format.\nEncrypted files will be updated.\nPlease make sure synchronization has finished before proceeding.\n\nNote\: Modification date of all files will be changed to the current date/time in the process.
|
||||
upgrade.version4to5.err.io = Migration failed due to an I/O Exception. See log file for details.
|
||||
unlock.label.revealAfterMount = Reveal Drive
|
||||
unlocked.lock.force.confirmation.title = Locking of %1$s failed
|
||||
unlocked.lock.force.confirmation.header = Do you want to force locking?
|
||||
unlocked.lock.force.confirmation.content = This may be because other programs are still accessing files in the vault or because some other problem occurred.\n\nPrograms still accessing the files may not work correctly and data not already written by those programs may be lost.
|
||||
unlock.label.unlockAfterStartup = Auto-Unlock on Start (Experimental)
|
||||
unlock.errorMessage.unlockFailed = Unlock failed. See log file for details.
|
||||
upgrade.version5toX.title = Vault Version Upgrade
|
||||
upgrade.version5toX.msg = This vault needs to be migrated to a newer format.\nPlease make sure synchronization has finished before proceeding.
|
||||
main.createVault.nonEmptyDir.title = Creating vault failed
|
||||
main.createVault.nonEmptyDir.header = Chosen directory is not empty
|
||||
main.createVault.nonEmptyDir.content = The selected directory already contains files (possibly hidden). A vault can only be created in an empty directory.
|
||||
settings.webdav.port.label = WebDAV Port
|
||||
settings.webdav.port.prompt = 0 \= Choose automatically
|
||||
settings.webdav.port.apply = Apply
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV Scheme
|
||||
settings.volume.label = Preferred Volume Type
|
||||
upgrade.confirmation.label = Evet, senkronizasyonun bittiğine eminim
|
||||
unlock.label.savePassword = Şifreyi Kaydet
|
||||
unlock.errorMessage.unauthenticVersionMac = MAC versiyonu doğrulanamadı
|
||||
unlock.savePassword.delete.confirmation.title = Kayıtlı Şifreyi Sil
|
||||
unlock.savePassword.delete.confirmation.header = Bu kasanın şifresini gerçekten silmek istiyor musun?
|
||||
unlock.savePassword.delete.confirmation.content = Bu kasa için kayıtlı şifre sisteminizden silindi. Eğer şifrenizi tekrar kaydetmek isterseniz, kasanızın şifresini açarken "Şifreyi Kaydet" seçeneğini aktif edebilirsiniz.
|
||||
settings.debugMode.label = Hata Ayıklama Modu
|
||||
upgrade.version3dropBundleExtension.title = Kasa Sürüm 3 Yükseltmesi (Bundle Uzantısı Kaldırıldı)
|
||||
upgrade.version3to4.title = Kasa Sürüm 3'ten 4'e Yükseltmesi
|
||||
upgrade.version4to5.title = Kasa Sürüm 4'ten 5'e Yükseltmesi\n
|
||||
upgrade.version4to5.msg = Bu kasanın daha yeni formata geçirilmesi gerekiyor.\nŞifrelenmiş dosyalar güncellenebilir.\nLütfen bu işlemden önce senkronizasyonun bittiğine emin olun.\n\nNot\: Tüm dosyalar için değiştirme tarihi şuan ki işlem tarihi olacak.
|
||||
upgrade.version4to5.err.io = Yeni formata geçilirken G/Ç Hatası oluştu. Detaylar için günlük dosyasına bakın.
|
||||
unlock.label.revealAfterMount = Sürücüyü Göster
|
||||
unlocked.lock.force.confirmation.title = Kilitlemenin %1$s sırasında hata oluştu.
|
||||
unlocked.lock.force.confirmation.header = Zorla kilitlemek istiyor musun?
|
||||
unlocked.lock.force.confirmation.content = Bunun nedeni, diğer programların kasadaki dosyalara hala erişiyor olmaları veya başka bir sorun oluşması olabilir.\n\nHala dosyalara erişen programlar düzgün çalışmayabilir ve bu programlar tarafından henüz yazılmamış veriler kaybolabilir.\n
|
||||
unlock.label.unlockAfterStartup = Başlangıçta Otomatik Kilit Aç (Deneysel)
|
||||
unlock.errorMessage.unlockFailed = Kilit açma hatalı. Detaylar için günlük dosyasına bakın.
|
||||
upgrade.version5toX.title = Kasa Versiyonu Yükseltme
|
||||
upgrade.version5toX.msg = Bu kasanın daha yeni formata geçirilmesi gerekiyor.\nŞifrelenmiş dosyalar güncellenebilir.\nLütfen bu işlemden önce senkronizasyonun bittiğine emin olun.
|
||||
main.createVault.nonEmptyDir.title = Kasa oluşturma hatası
|
||||
main.createVault.nonEmptyDir.header = Seçtiğiniz klasör boş değil
|
||||
main.createVault.nonEmptyDir.content = Seçtiğiniz klasör hali hazırda başka dosyalar içeriyor (gizli olabilir). Yeni bir kasa sadece boş klasör içerisine oluşturulabilir.
|
||||
settings.webdav.port.label = WebDAV Portu
|
||||
settings.webdav.port.prompt = 0 \= Otomatik Seç
|
||||
settings.webdav.port.apply = Uygula
|
||||
settings.webdav.prefGvfsScheme.label = WebDAV Şeması
|
||||
settings.volume.label = Tercih Edilen Bölüm Türü
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Vault was successfully created.
|
||||
unlock.successLabel.passwordChanged = Password was successfully changed.
|
||||
unlock.successLabel.upgraded = Vault was successfully upgraded.
|
||||
unlock.label.useOwnMountPath = Use Custom Mount Point
|
||||
welcome.askForUpdateCheck.dialog.title = Update check
|
||||
welcome.askForUpdateCheck.dialog.header = Enable the integrated update check?
|
||||
welcome.askForUpdateCheck.dialog.content = Recommended\: Enable the update check to always be sure you have the newest version of Cryptomator, with all security patches, installed.\n\nYou can change this from within the settings at any time.
|
||||
unlock.successLabel.vaultCreated = Kasa başarıyla oluşturuldu.
|
||||
unlock.successLabel.passwordChanged = Şifre başarıyla değiştirildi.
|
||||
unlock.successLabel.upgraded = Kasa başarıyla yükseltildi.
|
||||
unlock.label.useOwnMountPath = Özel Bağlantı Noktası Kullan
|
||||
welcome.askForUpdateCheck.dialog.title = Güncelleme kontrolü
|
||||
welcome.askForUpdateCheck.dialog.header = Entegre güncelleme kontrolü etkinleştirilsin mi?
|
||||
welcome.askForUpdateCheck.dialog.content = Önerilen\: Yüklü tüm güvenlik yamalarıyla birlikte en yeni Cryptomator sürümüne sahip olduğunuzdan emin olmak için güncelleme kontrolünü etkinleştirin.\n\nBunu istediğiniz zaman ayarların içinden değiştirebilirsiniz.
|
||||
settings.volume.dokany = Dokany
|
||||
main.gracefulShutdown.dialog.title = Locking vault(s) failed
|
||||
main.gracefulShutdown.dialog.header = Vault(s) in use
|
||||
main.gracefulShutdown.dialog.content = One or more vaults are still in use by other programs. Please close them to allow Cryptomator to shut down properly, then try again.\n\nIf this doesn't work, Cryptomator can shut down forcefully, but this can incur data loss and is not recommended.
|
||||
main.gracefulShutdown.button.tryAgain = Try Again
|
||||
main.gracefulShutdown.button.forceShutdown = Force Shutdown
|
||||
unlock.pendingMessage.unlocking = Unlocking vault...
|
||||
unlock.failedDialog.title = Unlock failed
|
||||
unlock.failedDialog.header = Unlock failed
|
||||
unlock.failedDialog.content.mountPathNonExisting = Mount point does not exist.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Mount point is not empty.
|
||||
unlock.label.useReadOnlyMode = Read-Only
|
||||
unlock.label.chooseMountPath = Choose empty directory…
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
main.gracefulShutdown.dialog.title = Kasa(lar) kilitlenemedi
|
||||
main.gracefulShutdown.dialog.header = Kasa(lar) kullanımda
|
||||
main.gracefulShutdown.dialog.content = Bir veya daha fazla kasa hala başka programlar tarafından kullanılıyor. Lütfen Cryptomator'ın düzgün bir şekilde kapanmasını sağlamak için kapatın, ardından tekrar deneyin.\n\nBu işe yaramazsa, Cryptomator zorla kapatılabilir, ancak bu veri kaybına neden olabilir ve önerilmemektedir.
|
||||
main.gracefulShutdown.button.tryAgain = Tekrar Dene
|
||||
main.gracefulShutdown.button.forceShutdown = Zorla Kapat
|
||||
unlock.pendingMessage.unlocking = Kasa kilidi açılıyor...
|
||||
unlock.failedDialog.title = Kilitleme hatalı
|
||||
unlock.failedDialog.header = Kilitleme hatalı
|
||||
unlock.failedDialog.content.mountPathNonExisting = Bağlantı noktası mevcut değil.
|
||||
unlock.failedDialog.content.mountPathNotEmpty = Bağlantı noktası boş değil.
|
||||
unlock.label.useReadOnlyMode = Salt Okunur
|
||||
unlock.label.chooseMountPath = Boş klasör seçin...
|
||||
ctrl.secPasswordField.nonPrintableChars = Parola kontrol karakterlerini içeriyor.\nÖneri\: Diğer cihazlara uyumluluğu sağlamak için bunları kaldırın.
|
||||
ctrl.secPasswordField.capsLocked = Büyük Harf etkin.
|
||||
@@ -97,7 +97,7 @@ settings.webdav.port.label = Порт WebDAV
|
||||
settings.webdav.port.prompt = 0 \= автовибір
|
||||
settings.webdav.port.apply = Застосувати
|
||||
settings.webdav.prefGvfsScheme.label = Схема WebDAV\n
|
||||
settings.volume.label = Метод монтування*
|
||||
settings.volume.label = Метод монтування
|
||||
settings.volume.webdav = WebDAV
|
||||
settings.volume.fuse = FUSE
|
||||
unlock.successLabel.vaultCreated = Сховище успішно створено.
|
||||
|
||||
@@ -121,5 +121,5 @@ unlock.failedDialog.content.mountPathNonExisting = 挂载点不存在。
|
||||
unlock.failedDialog.content.mountPathNotEmpty = 挂载点非空。
|
||||
unlock.label.useReadOnlyMode = 只读
|
||||
unlock.label.chooseMountPath = 选择空目录...
|
||||
ctrl.secPasswordField.nonPrintableChars = Password contains control characters.\nRecommendation\: Remove them to ensure compatibility with other clients.
|
||||
ctrl.secPasswordField.capsLocked = Caps Lock is activated.
|
||||
ctrl.secPasswordField.nonPrintableChars = 密码包含控制字符。\n建议\:删除它们,以确保与其他客户机兼容。
|
||||
ctrl.secPasswordField.capsLocked = 大写锁定被激活
|
||||
@@ -31,8 +31,9 @@ public class LocalizationTest {
|
||||
private static final Logger LOG = LoggerFactory.getLogger(LocalizationTest.class);
|
||||
private static final String RESOURCE_FOLDER_PATH = "/localization/";
|
||||
private static final String REF_FILE_NAME = "en.txt";
|
||||
private static final String[] LANG_FILE_NAMES = {"ar.txt", "bg.txt", "ca.txt", "cs.txt", "da.txt", "de.txt", "es.txt", "fr.txt", "hu.txt", "it.txt", "ja.txt", //
|
||||
"ko.txt", "lv.txt", "nl.txt", "pl.txt", "pt.txt", "pt_BR.txt", "ru.txt", "sk.txt", "th.txt", "tr.txt", "uk.txt", "zh_HK.txt", "zh_TW.txt", "zh.txt"};
|
||||
private static final String[] LANG_FILE_NAMES = {"ar.txt", "bg.txt", "ca.txt", "cs.txt", "da.txt", "de.txt", "es.txt", "fr.txt", "fr_BE.txt", "fr_CA.txt", "hu.txt", //
|
||||
"in.txt", "it.txt", "ja.txt", "ko.txt", "lv.txt", "nl.txt", "pl.txt", "pt.txt", "pt_BR.txt", "ru.txt", "sk.txt", "sv.txt", "th.txt", "tr.txt", "uk.txt", //
|
||||
"zh_HK.txt", "zh_TW.txt", "zh.txt"};
|
||||
|
||||
/*
|
||||
* @see Formatter
|
||||
|
||||
Reference in New Issue
Block a user