Explorar o código

support for UTF-8 localization files

Sebastian Stenzel %!s(int64=9) %!d(string=hai) anos
pai
achega
be2b63ab2a

+ 46 - 3
main/ui/src/main/java/org/cryptomator/ui/settings/Localization.java

@@ -1,27 +1,70 @@
 package org.cryptomator.ui.settings;
 
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.Reader;
+import java.io.UncheckedIOException;
+import java.nio.charset.StandardCharsets;
+import java.util.Collection;
+import java.util.Collections;
 import java.util.Enumeration;
+import java.util.Locale;
+import java.util.Objects;
+import java.util.PropertyResourceBundle;
 import java.util.ResourceBundle;
 
 import javax.inject.Inject;
 import javax.inject.Singleton;
 
+import org.apache.commons.collections4.CollectionUtils;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
 @Singleton
 public class Localization extends ResourceBundle {
 
+	private static final Logger LOG = LoggerFactory.getLogger(Localization.class);
+
+	private static final String LOCALIZATION_DEFAULT_FILE = "/localization/en.txt";
+	private static final String LOCALIZATION_FILENAME_FMT = "/localization/%s.txt";
+	private static final String LOCALIZATION_FILE = String.format(LOCALIZATION_FILENAME_FMT, Locale.getDefault().getLanguage());
+
+	private final ResourceBundle fallback;
+	private final ResourceBundle localized;
+
 	@Inject
 	public Localization() {
-		this.parent = ResourceBundle.getBundle("localization");
+		try (InputStream in = getClass().getResourceAsStream(LOCALIZATION_DEFAULT_FILE)) {
+			Objects.requireNonNull(in);
+			Reader reader = new InputStreamReader(in, StandardCharsets.UTF_8);
+			this.fallback = new PropertyResourceBundle(reader);
+			LOG.info("Loaded localization from {}", LOCALIZATION_FILE);
+		} catch (IOException e) {
+			throw new UncheckedIOException(e);
+		}
+
+		try (InputStream in = getClass().getResourceAsStream(LOCALIZATION_FILE)) {
+			if (in != null) {
+				Reader reader = new InputStreamReader(in, StandardCharsets.UTF_8);
+				this.localized = new PropertyResourceBundle(reader);
+			} else {
+				this.localized = this.fallback;
+			}
+		} catch (IOException e) {
+			throw new UncheckedIOException(e);
+		}
 	}
 
 	@Override
 	protected Object handleGetObject(String key) {
-		return parent.getObject(key);
+		return localized.containsKey(key) ? localized.getObject(key) : fallback.getObject(key);
 	}
 
 	@Override
 	public Enumeration<String> getKeys() {
-		return parent.getKeys();
+		Collection<String> keys = CollectionUtils.union(localized.keySet(), fallback.keySet());
+		return Collections.enumeration(keys);
 	}
 
 }

+ 27 - 27
main/ui/src/main/resources/localization_de.properties

@@ -1,7 +1,7 @@
 # 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.
-# 
+#
 # Contributors:
 #     Markus Kreusch
 #     Michael Schmetter
@@ -10,17 +10,17 @@
 
 app.name = Cryptomator
 # main.fxml
-main.emptyListInstructions = Klicken Sie hier, um neue Tresore hinzuzufügen
+main.emptyListInstructions = Klicken Sie hier, um neue Tresore hinzuzufügen
 main.directoryList.contextMenu.remove = Aus Liste entfernen
-main.directoryList.contextMenu.changePassword = Passwort ändern
+main.directoryList.contextMenu.changePassword = Passwort ändern
 main.addDirectory.contextMenu.new = Tresor erstellen
-main.addDirectory.contextMenu.open = Tresor öffnen
+main.addDirectory.contextMenu.open = Tresor öffnen
 # welcome.fxml
-welcome.checkForUpdates.label.currentlyChecking = Auf Updates prüfen...
+welcome.checkForUpdates.label.currentlyChecking = Auf Updates prüfen...
 welcome.newVersionMessage = Version %s kann heruntergeladen werden. Aktuelle Version %s.
 # initialize.fxml
 initialize.label.password = Passwort
-initialize.label.retypePassword = Passwort bestätigen
+initialize.label.retypePassword = Passwort bestätigen
 initialize.button.ok = Tresor erstellen
 initialize.messageLabel.alreadyInitialized = Tresor bereits vorhanden
 initialize.messageLabel.initializationFailed = Fehler beim Initialisieren. Details in der Log-Datei.
@@ -42,47 +42,47 @@ unlock.button.advancedOptions.hide = Weniger Optionen
 unlock.choicebox.winDriveLetter.auto = Automatisch ermitteln
 unlock.errorMessage.wrongPassword = Falsches Passwort
 unlock.errorMessage.mountingFailed = Verbindung fehlgeschlagen. Details in der Log-Datei.
-unlock.errorMessage.unsupportedKeyLengthInstallJCE = Entschlüsselung fehlgeschlagen. Bitte die Oracle JCE Unlimited Strength Policy installieren.
-unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Tresor nicht unterstützt. Der Tresor wurde mit einer älteren Version von Cryptomator erstellt.
-unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Tresor nicht unterstützt. Der Tresor wurde mit einer neueren Version von Cryptomator erstellt.
+unlock.errorMessage.unsupportedKeyLengthInstallJCE = Entschlüsselung fehlgeschlagen. Bitte die Oracle JCE Unlimited Strength Policy installieren.
+unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Tresor nicht unterstützt. Der Tresor wurde mit einer älteren Version von Cryptomator erstellt.
+unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Tresor nicht unterstützt. Der Tresor wurde mit einer neueren Version von Cryptomator erstellt.
 unlock.messageLabel.startServerFailed = Starten des WebDAV-Servers fehlgeschlagen.
 # change_password.fxml
 changePassword.label.oldPassword = Altes Passwort
 changePassword.label.newPassword = Neues Passwort
-changePassword.label.retypePassword = Passwort bestätigen
+changePassword.label.retypePassword = Passwort bestätigen
 changePassword.label.downloadsPageLink = Alle Cryptomator Versionen
-changePassword.button.change = Passwort ändern
+changePassword.button.change = Passwort ändern
 changePassword.errorMessage.wrongPassword = Falsches Passwort
-changePassword.errorMessage.decryptionFailed = Entschlüsselung fehlgeschlagen
-changePassword.errorMessage.unsupportedKeyLengthInstallJCE = Entschlüsselung fehlgeschlagen. Bitte die Oracle JCE Unlimited Strength Policy installieren.
-changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Tresor nicht unterstützt. Der Tresor wurde mit einer älteren Version von Cryptomator erstellt.
-changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Tresor nicht unterstützt. Der Tresor wurde mit einer neueren Version von Cryptomator erstellt.
-changePassword.infoMessage.success = Passwort geändert
+changePassword.errorMessage.decryptionFailed = Entschlüsselung fehlgeschlagen
+changePassword.errorMessage.unsupportedKeyLengthInstallJCE = Entschlüsselung fehlgeschlagen. Bitte die Oracle JCE Unlimited Strength Policy installieren.
+changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Tresor nicht unterstützt. Der Tresor wurde mit einer älteren Version von Cryptomator erstellt.
+changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Tresor nicht unterstützt. Der Tresor wurde mit einer neueren Version von Cryptomator erstellt.
+changePassword.infoMessage.success = Passwort geändert
 # unlocked.fxml
 unlocked.button.lock = Tresor sperren
 unlocked.moreOptions.reveal = Laufwerk anzeigen
 unlocked.moreOptions.copyUrl = WebDAV-URL kopieren
 unlocked.label.revealFailed = Befehl fehlgeschlagen
 unlocked.label.unmountFailed = Trennen des Laufwerks fehlgeschlagen
-unlocked.label.statsEncrypted = verschlüsselt
-unlocked.label.statsDecrypted = entschlüsselt
+unlocked.label.statsEncrypted = verschlüsselt
+unlocked.label.statsDecrypted = entschlüsselt
 unlocked.ioGraph.yAxis.label = Durchsatz (MiB/s)
 # mac_warnings.fxml
 macWarnings.windowTitle = Achtung - Kompromittierte Datei in %s
 # "potentially detected" or "potentially malicious"?
-macWarnings.message = Cryptomator hat möglicherweise unerlaubte Veränderungen in den folgenden Dateien erkannt\:
+macWarnings.message = Cryptomator hat möglicherweise unerlaubte Veränderungen in den folgenden Dateien erkannt\:
 macWarnings.moreInformationButton = Mehr erfahren
-macWarnings.whitelistButton = Trotzdem entschlüsseln
+macWarnings.whitelistButton = Trotzdem entschlüsseln
 # settings.fxml
 settings.version.label = Version %s
-settings.checkForUpdates.label = Auf Updates prüfen
+settings.checkForUpdates.label = Auf Updates prüfen
 settings.port.label = WebDAV Port *
-settings.port.prompt = 0 \= Automatisch wählen
+settings.port.prompt = 0 \= Automatisch wählen
 settings.useipv6.label = IPv6-Literal nutzen
-settings.requiresRestartLabel = * benötigt Neustart von Cryptomator
+settings.requiresRestartLabel = * benötigt Neustart von Cryptomator
 # tray icon
-tray.menu.open = Öffnen
+tray.menu.open = Öffnen
 tray.menu.quit = Beenden
-tray.infoMsg.title = Cryptomator läuft noch
-tray.infoMsg.msg = Cryptomator läuft noch. Mit dem Tray-Icon beenden.
-tray.infoMsg.msg.osx = Cryptomator läuft noch. Über die Menüleiste beenden.
+tray.infoMsg.title = Cryptomator läuft noch
+tray.infoMsg.msg = Cryptomator läuft noch. Mit dem Tray-Icon beenden.
+tray.infoMsg.msg.osx = Cryptomator läuft noch. Über die Menüleiste beenden.

main/ui/src/main/resources/localization.properties → main/ui/src/main/resources/localization/en.txt


+ 34 - 34
main/ui/src/main/resources/localization_es.properties

@@ -8,56 +8,56 @@
 
 app.name = Cryptomator
 # main.fxml
-main.emptyListInstructions = Click aquí para añadir una caja fuerte
+main.emptyListInstructions = Click 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
+main.directoryList.contextMenu.changePassword = Cambiar la contraseña
 main.addDirectory.contextMenu.new = Crear una nueva caja fuerte
 main.addDirectory.contextMenu.open = Abrir una caja fuerte existente
 # welcome.fxml
-welcome.checkForUpdates.label.currentlyChecking = Chequando por actualizaciónes...
+welcome.checkForUpdates.label.currentlyChecking = Chequando por actualizaciónes...
 welcome.newVersionMessage = Se puede bajar version %s. Este es %s.
 # initialize.fxml
-initialize.label.password = Contraseña
-initialize.label.retypePassword = Reintroduzca contraseña
+initialize.label.password = Contraseña
+initialize.label.retypePassword = Reintroduzca contraseña
 initialize.button.ok = Crear caja fuerte
-initialize.messageLabel.alreadyInitialized = Caja fuerte ya está inicializado
-initialize.messageLabel.initializationFailed = No se pudo inicializar la caja fuerte. Ver archivo de registro para detalles. 
+initialize.messageLabel.alreadyInitialized = Caja fuerte ya está inicializado
+initialize.messageLabel.initializationFailed = No se pudo inicializar la caja fuerte. Ver archivo de registro para detalles.
 # notfound.fxml
-notfound.label = No se pudo encontrar la caja fuerte. Se movió a otro lugar?
+notfound.label = No se pudo encontrar la caja fuerte. Se movió a otro lugar?
 # upgrade.fxml
 upgrade.button = Actualizar caja fuerte
-upgrade.version3dropBundleExtension.msg = Este caja fuerte se debe actualizar a un nuevo formato.\n"%1$s" se renombra a "%2$s".\nPor favor aseguranse que la sincronización ya se terminó antes de continuar.
-upgrade.version3dropBundleExtension.err.alreadyExists = Migración automática ha fallado.\n"%s" ya existe. 
+upgrade.version3dropBundleExtension.msg = Este caja fuerte se debe actualizar a un nuevo formato.\n"%1$s" se renombra a "%2$s".\nPor favor aseguranse que la sincronización ya se terminó antes de continuar.
+upgrade.version3dropBundleExtension.err.alreadyExists = Migración automática ha fallado.\n"%s" ya existe.
 # unlock.fxml
-unlock.label.password = Contraseña
+unlock.label.password = Contraseña
 unlock.label.mountName = Nombre del disco
 unlock.label.winDriveLetter = Letra del disco
 unlock.label.downloadsPageLink = Todas las versiones de Cryptomator
 unlock.label.advancedHeading = Opciones avanzadas
 unlock.button.unlock = Abrir caja fuerte
-unlock.button.advancedOptions.show = Más opciones
+unlock.button.advancedOptions.show = Más opciones
 unlock.button.advancedOptions.hide = Menos opciones
-unlock.choicebox.winDriveLetter.auto = Asignar automáticamente
-unlock.errorMessage.wrongPassword = Contraseña incorrecta
+unlock.choicebox.winDriveLetter.auto = Asignar automáticamente
+unlock.errorMessage.wrongPassword = Contraseña incorrecta
 unlock.errorMessage.mountingFailed = Monteo ha fallado. Ver archivo del registro para detalles.
-unlock.errorMessage.unsupportedKeyLengthInstallJCE = Decifración ha fallado. Por favor instala archivos de la Oracle JCE Unlimited Strength Policy.
-unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Caja fuerte insupportado. Este caja se ha creado con una versión pasada de Cryptomator.
-unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Caja fuerte insupportado. Este caja se ha creado con una versión nueva de Cryptomator.
-unlock.messageLabel.startServerFailed = Iniciación del servidor de WebDAV ha fallado.
+unlock.errorMessage.unsupportedKeyLengthInstallJCE = Decifración ha fallado. Por favor instala archivos de la Oracle JCE Unlimited Strength Policy.
+unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Caja fuerte insupportado. Este caja se ha creado con una versión pasada de Cryptomator.
+unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Caja fuerte insupportado. Este caja se ha creado con una versión nueva de Cryptomator.
+unlock.messageLabel.startServerFailed = Iniciación del servidor de WebDAV ha fallado.
 # change_password.fxml
-changePassword.label.oldPassword = Contraseña anterior
-# Can also use "current password" = "contraseña actual"
-changePassword.label.newPassword = Nueva contraseña
-changePassword.label.retypePassword = Reintroduzca contraseña
+changePassword.label.oldPassword = Contraseña anterior
+# Can also use "current password" = "contraseña actual"
+changePassword.label.newPassword = Nueva contraseña
+changePassword.label.retypePassword = Reintroduzca contraseña
 changePassword.label.downloadsPageLink = Todas las versiones de Cryptomator
-changePassword.button.change = Cambiar contraseña
-changePassword.errorMessage.wrongPassword = Contraseña incorrecta
-changePassword.errorMessage.decryptionFailed = Decifración ha fallado
-changePassword.errorMessage.unsupportedKeyLengthInstallJCE = Decifración ha fallado. Por favor instala Oracle JCE Unlimited Strength Policy. 
-changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Caja fuerte insupportado. Este caja se ha creado con una versión pasada de Cryptomator.
-changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Caja fuerte insupportado. Este caja se ha creado con una versión nueva de Cryptomator.
-changePassword.infoMessage.success = Contraseña se ha cambiado
+changePassword.button.change = Cambiar contraseña
+changePassword.errorMessage.wrongPassword = Contraseña incorrecta
+changePassword.errorMessage.decryptionFailed = Decifración ha fallado
+changePassword.errorMessage.unsupportedKeyLengthInstallJCE = Decifración ha fallado. Por favor instala Oracle JCE Unlimited Strength Policy.
+changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Caja fuerte insupportado. Este caja se ha creado con una versión pasada de Cryptomator.
+changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Caja fuerte insupportado. Este caja se ha creado con una versión nueva de Cryptomator.
+changePassword.infoMessage.success = Contraseña se ha cambiado
 # unlocked.fxml
 unlocked.button.lock = Encerrar caja fuerte
 unlocked.moreOptions.reveal = Revelar disco
@@ -70,18 +70,18 @@ unlocked.ioGraph.yAxis.label = Procesamiento (MiB/s)
 # mac_warnings.fxml
 macWarnings.windowTitle = Peligro - archivo corrupto en %s
 macWarnings.message = Cryptomator ha detectado corrupciones malciosas en los seguientes archivos\:
-macWarnings.moreInformationButton = Aprende más
+macWarnings.moreInformationButton = Aprende más
 macWarnings.whitelistButton = Decifrar selecionado de todos modos
 # settings.fxml
 settings.version.label = Version %s
 settings.checkForUpdates.label = Chequear por actualizaciones
 settings.port.label = Puerta de WebDAV *
-settings.port.prompt = 0 \= Elige automáticamente
+settings.port.prompt = 0 \= Elige automáticamente
 settings.useipv6.label = Usa literal de IPv6
 settings.requiresRestartLabel = * Cryptomator se necesita reiniciar
 # tray icon
 tray.menu.open = Abrir
 tray.menu.quit = Salir
-tray.infoMsg.title = Todavía en ejecución
-tray.infoMsg.msg = Cryptomator todavía esta en ejecución. Sale del icono del tray.
-tray.infoMsg.msg.osx = Cryptomator todavía esta en ejecución. Sale del icono de la barra del menú.
+tray.infoMsg.title = Todavía en ejecución
+tray.infoMsg.msg = Cryptomator todavía esta en ejecución. Sale del icono del tray.
+tray.infoMsg.msg.osx = Cryptomator todavía esta en ejecución. Sale del icono de la barra del menú.

+ 35 - 35
main/ui/src/main/resources/localization_fr.properties

@@ -1,9 +1,9 @@
 # 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.
-# 
+#
 # Contributors:
-#     Jean-Noël Charon
+#     Jean-Noël Charon
 #     Olivier Thomasson
 #     vesparny
 
@@ -12,75 +12,75 @@ app.name = Cryptomator
 main.emptyListInstructions = Cliquez ici pour ajouter un coffre
 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
+main.addDirectory.contextMenu.new = Créer un nouveau coffre
 main.addDirectory.contextMenu.open = Ouvrir un coffre existant
 # welcome.fxml
-welcome.checkForUpdates.label.currentlyChecking = Recherche de mise à jour...
-welcome.newVersionMessage = La version %s peut-être téléchargée. Il s'agit de %s.
+welcome.checkForUpdates.label.currentlyChecking = Recherche de mise à jour...
+welcome.newVersionMessage = La version %s peut-être téléchargée. Il s'agit de %s.
 # initialize.fxml
 initialize.label.password = Mot de passe
 initialize.label.retypePassword = Confirmation
-initialize.button.ok = Créer le coffre
-initialize.messageLabel.alreadyInitialized = Coffre déjà initialisé
-initialize.messageLabel.initializationFailed = Impossible d'initialiser le coffre. Voir le fichier de log pour plus de détails.
+initialize.button.ok = Créer le coffre
+initialize.messageLabel.alreadyInitialized = Coffre déjà initialisé
+initialize.messageLabel.initializationFailed = Impossible d'initialiser le coffre. Voir le fichier de log pour plus de détails.
 # notfound.fxml
-notfound.label = Coffre introuvable. A t'il été déplacé?
+notfound.label = Coffre introuvable. A t'il été déplacé?
 # upgrade.fxml
-upgrade.button = Mettre à niveau
-upgrade.version3dropBundleExtension.msg = Ce coffre doit être converti dans un format plus récent.\n"%1$s" sera renommé en "%2$s".\nAssurez-vous que la synchronisation est terminée avant de continuer.
-upgrade.version3dropBundleExtension.err.alreadyExists = La conversion automatique a échoué.\n"%s" existe déjà.
+upgrade.button = Mettre à niveau
+upgrade.version3dropBundleExtension.msg = Ce coffre doit être converti dans un format plus récent.\n"%1$s" sera renommé en "%2$s".\nAssurez-vous que la synchronisation est terminée avant de continuer.
+upgrade.version3dropBundleExtension.err.alreadyExists = La conversion 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
+unlock.label.advancedHeading = Options avancées
+unlock.button.unlock = Déverrouiller le coffre
 unlock.button.advancedOptions.show = Plus d'options
 unlock.button.advancedOptions.hide = Moins d'options
 unlock.choicebox.winDriveLetter.auto = Assigner automatiquement
 unlock.errorMessage.wrongPassword = Mot de passe incorrect
-unlock.errorMessage.mountingFailed = Echec du montage. Voir le fichier de log pour plus de détails.
-unlock.errorMessage.unsupportedKeyLengthInstallJCE = Echec du décryptage. Veuillez installer la Policy Oracle "JCE Unlimited Strength Policy".
-unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Coffre non supporté. Ce coffre a été créé avec une ancienne version de Cryptomator.
-unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Coffre non supporté. Ce coffre a été créé avec une version de Cryptomator plus récente.
-unlock.messageLabel.startServerFailed = Le serveur WebDAV n'a pas pu démarrer.
+unlock.errorMessage.mountingFailed = Echec du montage. Voir le fichier de log pour plus de détails.
+unlock.errorMessage.unsupportedKeyLengthInstallJCE = Echec du décryptage. Veuillez installer la Policy Oracle "JCE Unlimited Strength Policy".
+unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Coffre non supporté. Ce coffre a été créé avec une ancienne version de Cryptomator.
+unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Coffre non supporté. Ce coffre a été créé avec une version de Cryptomator plus récente.
+unlock.messageLabel.startServerFailed = Le serveur WebDAV n'a pas pu démarrer.
 # change_password.fxml
 changePassword.label.oldPassword = Ancien mot de passe
 changePassword.label.newPassword = Nouveau mot de passe
-changePassword.label.retypePassword = Vérification
+changePassword.label.retypePassword = Vérification
 changePassword.label.downloadsPageLink = Toutes les versions de Cryptomator
 changePassword.button.change = Modification du mot de masse
 changePassword.errorMessage.wrongPassword = Mot de passe incorrect
-changePassword.errorMessage.decryptionFailed = Echec du décryptage
-changePassword.errorMessage.unsupportedKeyLengthInstallJCE = Echec du décryptage. Veuillez installer la Policy Oracle "JCE Unlimited Strength Policy".
-changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Coffre non supporté. Ce coffre a été créé avec une ancienne version de Cryptomator.
-changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Coffre non supporté. Ce coffre a été créé avec une version de Cryptomator plus récente.
+changePassword.errorMessage.decryptionFailed = Echec du décryptage
+changePassword.errorMessage.unsupportedKeyLengthInstallJCE = Echec du décryptage. Veuillez installer la Policy Oracle "JCE Unlimited Strength Policy".
+changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Coffre non supporté. Ce coffre a été créé avec une ancienne version de Cryptomator.
+changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Coffre non supporté. Ce coffre a été créé avec une version de Cryptomator plus récente.
 changePassword.infoMessage.success = Password changed
 # unlocked.fxml
 unlocked.button.lock = Verrouiller le coffre
 unlocked.moreOptions.reveal = Voir le lecteur
 unlocked.moreOptions.copyUrl = Copier l'URL WebDAV
 unlocked.label.revealFailed = Echec de la commande
-unlocked.label.unmountFailed = Echec de l'éjection du lecteur
-unlocked.label.statsEncrypted = crypté
-unlocked.label.statsDecrypted = décryptage
-unlocked.ioGraph.yAxis.label = Débit (MiB/s)
+unlocked.label.unmountFailed = Echec de l'éjection du lecteur
+unlocked.label.statsEncrypted = crypté
+unlocked.label.statsDecrypted = décryptage
+unlocked.ioGraph.yAxis.label = Débit (MiB/s)
 # mac_warnings.fxml
 macWarnings.windowTitle = Attention - Fichier corrompu dans %s
-macWarnings.message = Cryptomator a détecté des corruptions de données dans les fichiers suivants\:
+macWarnings.message = Cryptomator a détecté des corruptions de données dans les fichiers suivants\:
 macWarnings.moreInformationButton = En savoir plus
-macWarnings.whitelistButton = Décrypter tout de même
+macWarnings.whitelistButton = Décrypter tout de même
 # settings.fxml
 settings.version.label = Version %s
-settings.checkForUpdates.label = Vérif. des mises à jour
+settings.checkForUpdates.label = Vérif. des mises à jour
 settings.port.label = Port WebDAV *
 settings.port.prompt = 0 \= Choix automatique
-settings.useipv6.label = Utiliser un litéral IPv6
-settings.requiresRestartLabel = * Redémarrage requis
+settings.useipv6.label = Utiliser un litéral IPv6
+settings.requiresRestartLabel = * Redémarrage requis
 # tray icon
 tray.menu.open = Ouvrir
 tray.menu.quit = Quitter
 tray.infoMsg.title = Toujours en fonctionnement
-tray.infoMsg.msg = Cryptomator est toujours en fonctionnement. Utiliser l'icône de la barre des tâches pour quitter.
-tray.infoMsg.msg.osx = Cryptomator est toujours en fonctionnement. Utilisez la barre de menu pour quitter.
+tray.infoMsg.msg = Cryptomator est toujours en fonctionnement. Utiliser l'icône de la barre des tâches pour quitter.
+tray.infoMsg.msg.osx = Cryptomator est toujours en fonctionnement. Utilisez la barre de menu pour quitter.

+ 84 - 0
main/ui/src/main/resources/localization/hu.txt

@@ -0,0 +1,84 @@
+# 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.
+#
+# Contributors:
+#     Roland Burda
+
+app.name = Cryptomator
+# main.fxml
+main.emptyListInstructions = Kattints ide egy széf létrehozásához
+main.directoryList.contextMenu.remove = Eltávolítás listából
+main.directoryList.contextMenu.changePassword = Jelszó megváltoztatása
+main.addDirectory.contextMenu.new = Új széf létrehozása
+main.addDirectory.contextMenu.open = Létez\u0151 széf megnyitása
+# welcome.fxml
+welcome.checkForUpdates.label.currentlyChecking = Frissítések keresése...
+welcome.newVersionMessage = Új verzió érhet\u0151 el\: %s. Jelenlegi verzió\: %s.
+# initialize.fxml
+initialize.label.password = Jelszó
+initialize.label.retypePassword = Jelszó ismét
+initialize.button.ok = Széf létrehozása
+initialize.messageLabel.alreadyInitialized = A széf már meg van nyitva
+initialize.messageLabel.initializationFailed = Nem sikerült megnyitni a széfet. További információ a naplófájlban.
+# notfound.fxml
+notfound.label = Széf nem található. Lehetséges, hogy áthelyezésre került?
+# upgrade.fxml
+upgrade.button = Széf frissítése
+upgrade.version3dropBundleExtension.msg = A széf új verzióra történ\u0151 migrációja szükséges. "%1$s" a következ\u0151re lesz átnevezve\: "%2$s". Kérlek gy\u0151z\u0151dj meg a szinkronizáció befejeztér\u0151l, miel\u0151tt más m\u0171veletet végeznél.
+upgrade.version3dropBundleExtension.err.alreadyExists = Automatikus migráció meghíusúlt. "%s" már létezik.
+# unlock.fxml
+unlock.label.password = Jelszó
+unlock.label.mountName = Meghajtó neve
+unlock.label.winDriveLetter = Meghajtó bet\u0171jele
+unlock.label.downloadsPageLink = Összes Cryptomator verzió
+unlock.label.advancedHeading = Haladó beállítások
+unlock.button.unlock = Széf feloldása
+unlock.button.advancedOptions.show = További beállítások
+unlock.button.advancedOptions.hide = Alapbeállítások
+unlock.choicebox.winDriveLetter.auto = Automatikus hozzárendelés
+unlock.errorMessage.wrongPassword = Hibás jelszó
+unlock.errorMessage.mountingFailed = Meghajtó felcsatolása sikertelen. További információk a naplófájlban.
+unlock.errorMessage.unsupportedKeyLengthInstallJCE = A titkosítás feloldása sikertelen. Kérlek telepítsd a "Oracle JCE Unlimited Strength Policy Files"-t.
+unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Nem támogatott széf. Ez a széf a Cryptomator egy korábbi verziójával került létrehozásra.
+unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Nem támogatott széf. Ez a széf a Cryptomator egy újabb verziójával került létrehozásra.
+unlock.messageLabel.startServerFailed = WebDAV szerver indítása sikertelen.
+# change_password.fxml
+changePassword.label.oldPassword = Régi jelszó
+changePassword.label.newPassword = Új jelszó
+changePassword.label.retypePassword = Új jelszó ismét
+changePassword.label.downloadsPageLink = Összes Cryptomator verzió
+changePassword.button.change = Jelszó megváltoztatása
+changePassword.errorMessage.wrongPassword = Hibás jelszó
+changePassword.errorMessage.decryptionFailed = A titkosítás feloldása meghíusúlt
+changePassword.errorMessage.unsupportedKeyLengthInstallJCE = A titkosítás feloldása sikertelen. Kérlek telepítsd a "Oracle JCE Unlimited Strength Policy"-t.
+changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Nem támogatott széf. Ez a széf a Cryptomator egy korábbi verziójával került létrehozásra.
+changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Nem támogatott széf. Ez a széf a Cryptomator egy újabb verziójával került létrehozásra.
+changePassword.infoMessage.success = Jelszó megváltoztatva
+# unlocked.fxml
+unlocked.button.lock = Széf lezárása
+unlocked.moreOptions.reveal = Meghajtó felfedése
+unlocked.moreOptions.copyUrl = WebDAV URL másolása
+unlocked.label.revealFailed = Parancs meghíusúlt
+unlocked.label.unmountFailed = Meghajtó leválasztása sikertelen
+unlocked.label.statsEncrypted = titkosított
+unlocked.label.statsDecrypted = titkosítás feloldva
+unlocked.ioGraph.yAxis.label = Teljesítmény (MiB/s)
+# mac_warnings.fxml
+macWarnings.windowTitle = Veszély - Korrupt fájl a következ\u0151ben\: %s
+macWarnings.message = Cryptomator potenciálisan rosszindulatú hibákat fedezett fel a következ\u0151 fájlokban\:
+macWarnings.moreInformationButton = Tudj meg többet
+macWarnings.whitelistButton = Kiválasztottak titkosításának feloldása mindenképp
+# settings.fxml
+settings.version.label = Verzió\: %s
+settings.checkForUpdates.label = Frissítések keresése
+settings.port.label = WebDAV Port *
+settings.port.prompt = 0 \= Automatikus választás
+settings.useipv6.label = Literális IPv6 használata
+settings.requiresRestartLabel = * Cryptomator újraindítása szükséges
+# tray icon
+tray.menu.open = Megnyit
+tray.menu.quit = Kilépés
+tray.infoMsg.title = M\u0171velet folyamatban
+tray.infoMsg.msg = Cryptomator még fut. A tálcán található ikon segítségével bezárhatod.
+tray.infoMsg.msg.osx = Cryptomator még fut. A menüsávban található ikon segítségével bezárhatod.

+ 18 - 18
main/ui/src/main/resources/localization_it.properties

@@ -1,7 +1,7 @@
 # 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.
-# 
+#
 # Contributors:
 #     vesparny
 
@@ -14,19 +14,19 @@ main.addDirectory.contextMenu.new = Crea un nuovo vault
 main.addDirectory.contextMenu.open = Apri un vault
 # welcome.fxml
 welcome.checkForUpdates.label.currentlyChecking = Verifica aggiornamenti...
-welcome.newVersionMessage = La versione %s può essere scaricata. Questa è %s
+welcome.newVersionMessage = La versione %s può essere scaricata. Questa è %s
 # initialize.fxml
 initialize.label.password = Password
 initialize.label.retypePassword = Conferma password
 initialize.button.ok = Crea un vault
-initialize.messageLabel.alreadyInitialized = Vault già inizializzato
-initialize.messageLabel.initializationFailed = Non è possibile inizializzare il vault. Controlla il file di log per dettagli.
+initialize.messageLabel.alreadyInitialized = Vault già inizializzato
+initialize.messageLabel.initializationFailed = Non è possibile inizializzare il vault. Controlla il file di log per dettagli.
 # notfound.fxml
-notfound.label = Il vault non può essere trovato. E' stato rimosso?
+notfound.label = Il vault non può essere trovato. E' stato rimosso?
 # upgrade.fxml
 upgrade.button = Aggiorna vault
-upgrade.version3dropBundleExtension.msg = Questo vault deve essere migrato ad un nuovo formato.\n"%1$s" verrà rinominato in "%2$s".\nPer favore verifica che la sincronizzazione sia finita prima di procedere\n
-upgrade.version3dropBundleExtension.err.alreadyExists = Migrazione automatica fallita.\n"%s" esiste già.
+upgrade.version3dropBundleExtension.msg = Questo vault deve essere migrato ad un nuovo formato.\n"%1$s" verrà rinominato in "%2$s".\nPer favore verifica che la sincronizzazione sia finita prima di procedere\n
+upgrade.version3dropBundleExtension.err.alreadyExists = Migrazione automatica fallita.\n"%s" esiste già.
 # unlock.fxml
 unlock.label.password = Password
 unlock.label.mountName = nome del drive
@@ -34,14 +34,14 @@ unlock.label.winDriveLetter = lettera del drive
 unlock.label.downloadsPageLink = Tutte le versioni di Cryptomator
 unlock.label.advancedHeading = Opzioni avanzate
 unlock.button.unlock = Sblocca vault
-unlock.button.advancedOptions.show = Più opzioni
+unlock.button.advancedOptions.show = Più opzioni
 unlock.button.advancedOptions.hide = Meno opzioni
 unlock.choicebox.winDriveLetter.auto = Assegna automaticamente
 unlock.errorMessage.wrongPassword = Password errata
 unlock.errorMessage.mountingFailed = Montaggio fallito. Controlla il file di log per dettagli.
-unlock.errorMessage.unsupportedKeyLengthInstallJCE = Decriptaggio fallito. 
-unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Vault non supportato. Questo vault è stato creato con una versione di Cryptomator più vecchia.
-unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Vault non supportato. Questo vault è stato creato con una versione di Cryptomator più recente.
+unlock.errorMessage.unsupportedKeyLengthInstallJCE = Decriptaggio fallito.
+unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Vault non supportato. Questo vault è stato creato con una versione di Cryptomator più vecchia.
+unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Vault non supportato. Questo vault è stato creato con una versione di Cryptomator più recente.
 unlock.messageLabel.startServerFailed = Avvio del server WebDAV fallito
 # change_password.fxml
 changePassword.label.oldPassword = Vecchia password
@@ -52,22 +52,22 @@ changePassword.button.change = Cambia la password
 changePassword.errorMessage.wrongPassword = Password errata
 changePassword.errorMessage.decryptionFailed = Decriptaggio fallito
 changePassword.errorMessage.unsupportedKeyLengthInstallJCE = Decriptaggio fallito. Per favore installa Oracle JCE Unlimited Strength Policy
-changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Vault non supportato. Questo vault è stato creato con una versione di Cryptomator più recente.
-changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Vault non supportato. Questo vault è stato creato con una versione di Cryptomator più vecchia.
+changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Vault non supportato. Questo vault è stato creato con una versione di Cryptomator più recente.
+changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Vault non supportato. Questo vault è stato creato con una versione di Cryptomator più vecchia.
 changePassword.infoMessage.success = Password cambiata
 # unlocked.fxml
-unlocked.button.lock = Blocca vault 
+unlocked.button.lock = Blocca vault
 unlocked.moreOptions.reveal = Apri il disco
 unlocked.moreOptions.copyUrl = Copia url WebDAV
 unlocked.label.revealFailed = Comando fallito
 unlocked.label.unmountFailed = Espulsione disco fallita
 unlocked.label.statsEncrypted = criptato
 unlocked.label.statsDecrypted = decriptato
-unlocked.ioGraph.yAxis.label = Volume dati (MiB/s) 
+unlocked.ioGraph.yAxis.label = Volume dati (MiB/s)
 # mac_warnings.fxml
 macWarnings.windowTitle = Pericolo - File corroto in %s
 macWarnings.message = Cryptomator ha individuato potenziali pericolose corruzioni nei seguenti file\:
-macWarnings.moreInformationButton = Più informazioni
+macWarnings.moreInformationButton = Più informazioni
 macWarnings.whitelistButton = Decripta i selezionati comunque
 # settings.fxml
 settings.version.label = Versione %s
@@ -80,5 +80,5 @@ settings.requiresRestartLabel = * Cryptomator deve essere riavviato
 tray.menu.open = Apri
 tray.menu.quit = Chiudi
 tray.infoMsg.title = Ancora in esecuzione
-tray.infoMsg.msg = Cryptomator è ancora in esecuzione. Chiudilo utilizzando l'icona nel menù di stato. 
-tray.infoMsg.msg.osx = Cryptomator è ancora in esecuzione. Chiudilo utilizzando l'icona nella barra del menù. 
+tray.infoMsg.msg = Cryptomator è ancora in esecuzione. Chiudilo utilizzando l'icona nel menù di stato.
+tray.infoMsg.msg.osx = Cryptomator è ancora in esecuzione. Chiudilo utilizzando l'icona nella barra del menù. 

+ 84 - 0
main/ui/src/main/resources/localization/kr.txt

@@ -0,0 +1,84 @@
+# 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.
+#
+# Contributors:
+#     ChangHwan Kim
+
+app.name = Cryptomator
+# main.fxml
+main.emptyListInstructions = 여기를 클릭하여 보관함 추가하기
+main.directoryList.contextMenu.remove = 목록에서 삭제
+main.directoryList.contextMenu.changePassword = 비밀번호 변경
+main.addDirectory.contextMenu.new = 새 보관함 만들기
+main.addDirectory.contextMenu.open = 기존 보관함 열기
+# welcome.fxml
+welcome.checkForUpdates.label.currentlyChecking = 업데이트 확인
+welcome.newVersionMessage = %s 버전이 새로 다운로드 가능합니다. 지금 버전은 %s 입니다.
+# initialize.fxml
+initialize.label.password = 비밀번호
+initialize.label.retypePassword = 비밀번호 재입력
+initialize.button.ok = 보관함 만들기
+initialize.messageLabel.alreadyInitialized = 이미 보관함이 초기화되었습니다.
+initialize.messageLabel.initializationFailed = 보관함을 초기화할 수 없습니다. 자세한 사항은 로그 파일을 참조하세요.
+# notfound.fxml
+notfound.label = 보관함을 찾을 수 없습니다. 옮겨진 것은 아닌가요?
+# upgrade.fxml
+upgrade.button = 보관함 업그레이드
+upgrade.version3dropBundleExtension.msg = 이 보관함은 새로운 형식으로 다시 바뀔 필요가 있습니다. "%1$s"의 이름은 "%2$s"로 바뀔 것입니다. 진행하기 전에 동기화가 완료되었는지 다시 한 번 확인해주시기 바랍니다.
+upgrade.version3dropBundleExtension.err.alreadyExists = 자동 마이그레이션 실패. "%s"가 이미 존재합니다.
+# unlock.fxml
+unlock.label.password = 비밀번호
+unlock.label.mountName = 드라이브 이름
+unlock.label.winDriveLetter = 드라이브 문자
+unlock.label.downloadsPageLink = 모든 Cryptomator 버전
+unlock.label.advancedHeading = 고급 옵션
+unlock.button.unlock = 보관함 해제
+unlock.button.advancedOptions.show = 더 많은 옵션
+unlock.button.advancedOptions.hide = 기본 옵션
+unlock.choicebox.winDriveLetter.auto = 자동으로 할당
+unlock.errorMessage.wrongPassword = 틀린 비밀번호
+unlock.errorMessage.mountingFailed = 마운트 실패. 자세한 사항은 로그 파일을 참조하세요.
+unlock.errorMessage.unsupportedKeyLengthInstallJCE = 복호화 실패. Oracle JCE Unlimited Strength Policy Files을 설치하세요.
+unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = 지원되지 않는 보관함. 이 보관함은 이전 버전의 Cryptomator에서 생성되었습니다.
+unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = 지원되지 않는 보관함. 이 보관함은 최신 버전의 Cryptomator에서 생성되었습니다.
+unlock.messageLabel.startServerFailed = WedDAV 서버 시작 실패
+# change_password.fxml
+changePassword.label.oldPassword = 이전 비밀번호
+changePassword.label.newPassword = 새로운 비밀번호
+changePassword.label.retypePassword = 비밀번호 재입력
+changePassword.label.downloadsPageLink = 모든 Cryptomator 버전
+changePassword.button.change = 비밀번호 변경
+changePassword.errorMessage.wrongPassword = 틀린 비밀번호
+changePassword.errorMessage.decryptionFailed = 복호화 실패
+changePassword.errorMessage.unsupportedKeyLengthInstallJCE = 복호화 실패. Oracle JCE Unlimited Strength Policy Files을 설치하세요.
+changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = 지원되지 않는 보관함. 이 보관함은 이전 버전의 Cryptomator에서 생성되었습니다.
+changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = 지원되지 않는 보관함. 이 보관함은 최신 버전의 Cryptomator에서 생성되었습니다.
+changePassword.infoMessage.success = 비밀번호 변경
+# unlocked.fxml
+unlocked.button.lock = 보관함 잠그기
+unlocked.moreOptions.reveal = 드라이브 표시
+unlocked.moreOptions.copyUrl = WebDAV 주소 복사
+unlocked.label.revealFailed = 명령 실패
+unlocked.label.unmountFailed = 드라이브 추출 실패
+unlocked.label.statsEncrypted = 암호화
+unlocked.label.statsDecrypted = 복호화
+unlocked.ioGraph.yAxis.label = 처리량 (MiB/s)
+# mac_warnings.fxml
+macWarnings.windowTitle = 위험 - %s에 손상된 파일
+macWarnings.message = Cryptomator가 다음 파일들에서 잠재적인 손상 위험을 감지했습니다.
+macWarnings.moreInformationButton = 더 알아보기
+macWarnings.whitelistButton = 선택 항목 강제 복호화
+# settings.fxml
+settings.version.label = 버전 %s
+settings.checkForUpdates.label = 업데이트 확인
+settings.port.label = WebDAV 포트 *
+settings.port.prompt = 0 \= 자동으로 선택
+settings.useipv6.label = IPv6 사용
+settings.requiresRestartLabel = * Cryptomator 재시작 필요
+# tray icon
+tray.menu.open = 열기
+tray.menu.quit = 종료
+tray.infoMsg.title = 계속 실행 중입니다.
+tray.infoMsg.msg = Cryptomator가 계속 실행 중입니다. 종료하실려면 트레이 아이콘에서 해주세요.
+tray.infoMsg.msg.osx = Cryptomator가 계속 실행중입니다. 종료하실려면 메뉴 바 아이콘에서 해주세요.

+ 7 - 7
main/ui/src/main/resources/localization_pt.properties

@@ -1,27 +1,27 @@
 # 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.
-# 
+#
 # Contributors:
 #     Will
-#     André Di Biasi
+#     André Di Biasi
 
 app.name = Cryptomator
 main.directoryList.contextMenu.remove = Remover da lista
 main.directoryList.contextMenu.changePassword = Alterar senha
 # welcome.fxml
-welcome.checkForUpdates.label.currentlyChecking = Procurando atualizações...
+welcome.checkForUpdates.label.currentlyChecking = Procurando atualizações...
 # initialize.fxml
 initialize.label.password = Senha
 initialize.label.retypePassword = Digite a senha novamente
 # unlock.fxml
 unlock.label.password = Senha
-unlock.label.advancedHeading = Opções avançadas
-unlock.button.advancedOptions.hide = Menos opções
+unlock.label.advancedHeading = Opções avançadas
+unlock.button.advancedOptions.hide = Menos opções
 unlock.choicebox.winDriveLetter.auto = Atribuir automaticamente
 unlock.errorMessage.wrongPassword = Senha incorreta
 unlock.errorMessage.mountingFailed = Montagem falhou. Veja o arquivo de log para detalhes
-unlock.messageLabel.startServerFailed = Inicialização do servidor WEBDAV falhou
+unlock.messageLabel.startServerFailed = Inicialização do servidor WEBDAV falhou
 # change_password.fxml
 changePassword.label.oldPassword = Senha antiga
 changePassword.label.newPassword = Nova senha
@@ -31,4 +31,4 @@ changePassword.infoMessage.success = Senha alterada
 unlocked.label.revealFailed = Falha no comando
 unlocked.label.unmountFailed = Falha ao ejetar o drive
 unlocked.label.statsEncrypted = encriptado
-macWarnings.moreInformationButton = Saiba mais
+macWarnings.moreInformationButton = Saiba mais

+ 55 - 0
main/ui/src/main/resources/localization/ru.txt

@@ -0,0 +1,55 @@
+# 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.
+#
+# Contributors:
+#     Garik
+#     Konstantine
+
+app.name = Cryptomator
+# main.fxml
+main.emptyListInstructions = Нажмите здесь что добавить хранилище
+main.directoryList.contextMenu.remove = Удалить из списка
+main.directoryList.contextMenu.changePassword = Сменить пароль
+main.addDirectory.contextMenu.new = Создать новое хранилище
+main.addDirectory.contextMenu.open = Открыть существующее хранилище
+# welcome.fxml
+welcome.checkForUpdates.label.currentlyChecking = Проверка обновлений...
+welcome.newVersionMessage = Версия может быть скачена. Это.
+# initialize.fxml
+initialize.label.password = Пароль
+initialize.label.retypePassword = Повторите пароль
+initialize.button.ok = Создать хранилище
+initialize.messageLabel.alreadyInitialized = Хранилище уже инициализировано
+initialize.messageLabel.initializationFailed = Невозможно инициировать хранилище. Смотрите лог для деталей.
+# notfound.fxml
+notfound.label = Хранилище не найдено.Оно было удалено?
+# upgrade.fxml
+upgrade.button = Обновить хранилище
+upgrade.version3dropBundleExtension.msg = Этому хранилищу нужно мигрировать в новый формат.\n"%1$s" will be renamed to "%2$s".\nPlease make sure synchronization has finished before proceeding.
+upgrade.version3dropBundleExtension.err.alreadyExists = Автоматическая миграция не удалась.\n"%" уже существует.
+# unlock.fxml
+unlock.label.password = Пароль
+unlock.label.mountName = Имя носителя
+changePassword.errorMessage.wrongPassword = Неправильный пароль
+changePassword.errorMessage.decryptionFailed = Расшифровка провалилась
+changePassword.errorMessage.unsupportedKeyLengthInstallJCE = Расшифровка не удалась. Пожалуйста установите Oracle JCE Unlimited Strength Policy.
+changePassword.infoMessage.success = Пароль изменился
+# unlocked.fxml
+unlocked.button.lock = Заблокировать хранилище
+unlocked.moreOptions.copyUrl = Скопировать WebDAV URL
+unlocked.label.revealFailed = Команда не удалась
+unlocked.label.unmountFailed = Извлечение диска не удалось
+unlocked.label.statsEncrypted = зашифровано
+unlocked.label.statsDecrypted = расшифровано
+macWarnings.moreInformationButton = Изучить больше
+# settings.fxml
+settings.version.label = Версия %s
+settings.checkForUpdates.label = Проверка обновлений
+settings.requiresRestartLabel = * Cryptomator должен перезагрузится
+# tray icon
+tray.menu.open = Открыть
+tray.menu.quit = Выйти
+tray.infoMsg.title = Всё ещё работает
+tray.infoMsg.msg = Cryptomator работает. Выйдите c помощью иконки в трее.
+tray.infoMsg.msg.osx = Cryptomator всё ещё работает.Выйдите с помощью иконки в меню баре.

+ 88 - 0
main/ui/src/main/resources/localization/sk.txt

@@ -0,0 +1,88 @@
+# 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.
+#
+# Contributors:
+#     Filip Havrlent
+#     Tatiana Chovancová
+
+# 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
+main.directoryList.contextMenu.remove = Odstrániť zo zoznamu
+main.directoryList.contextMenu.changePassword = Zmeniť heslo
+main.addDirectory.contextMenu.new = Vytvoriť nový trezor
+main.addDirectory.contextMenu.open = Otvoriť existujúci trezor
+# welcome.fxml
+welcome.checkForUpdates.label.currentlyChecking = Kontrolujú sa aktualizácie...
+welcome.newVersionMessage = Verzia %s je pripravená na stiahnutie. Toto je verzia %s.
+# initialize.fxml
+initialize.label.password = Heslo
+initialize.label.retypePassword = Zadajte heslo znova
+initialize.button.ok = Vytvoriť trezor
+initialize.messageLabel.alreadyInitialized = Trezor je už inicializovaný
+initialize.messageLabel.initializationFailed = Nepodarilo sa inicializovať trezor. Pozrite súbor záznamov pre viac detailov.
+# notfound.fxml
+notfound.label = Trezor nemohol byť nenájdený. Bol presunutý?
+# upgrade.fxml
+upgrade.button = Upgradnúť trezor
+upgrade.version3dropBundleExtension.msg = Tento trezor musí byť premigrovaný na nový formát. "%1$s" bude premenovaný na "%2$s". Prosím, uistite sa že je dokončená synchronizácia skôr než budete pokračovať.
+upgrade.version3dropBundleExtension.err.alreadyExists = Automatická migrácia zlyhala. "%s" už existuje.
+# unlock.fxml
+unlock.label.password = Heslo
+unlock.label.mountName = Názov jednotky
+unlock.label.winDriveLetter = Označenie jednotky
+unlock.label.downloadsPageLink = Všetky verzie Cryptomatoru
+unlock.label.advancedHeading = Pokročilé nastavenia
+unlock.button.unlock = Odomknúť trezor
+unlock.button.advancedOptions.show = Viac nastavení
+unlock.button.advancedOptions.hide = Menej nastavení
+unlock.choicebox.winDriveLetter.auto = Priradiť automaticky
+unlock.errorMessage.wrongPassword = Nesprávne heslo
+unlock.errorMessage.mountingFailed = Pripájanie zlyhalo. Viac informácii v logu.
+unlock.errorMessage.unsupportedKeyLengthInstallJCE = Dešifrovanie zlyhalo. Prosím nainštalujte Oracle JCE Unlimited Strength Policy Files.
+unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Nepodporovaný trezor. Tento trezor bol vytvorený staršou verziou Cryptromatoru.
+unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Nepodporovaný trezor. Bol vytvorený z novšou verziou Cryptomatoru.
+unlock.messageLabel.startServerFailed = Spustenie WebDAv servera zlyhalo.
+# change_password.fxml
+changePassword.label.oldPassword = Staré heslo
+changePassword.label.newPassword = Nové heslo
+changePassword.label.retypePassword = Znova zadajte heslo
+changePassword.label.downloadsPageLink = Všetky verzie Cryptomatoru.
+changePassword.button.change = Zmeniť heslo
+changePassword.errorMessage.wrongPassword = Nesprávne heslo
+changePassword.errorMessage.decryptionFailed = Dešifrovanie zlyhalo.
+changePassword.errorMessage.unsupportedKeyLengthInstallJCE = Dešifrovanie zlyhalo. Prosím nainštalujte Oracle JCE Unlimited Strength Policy.
+changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Nepodporovaný trezor. Bol vytvorený staršou verziou Cryptomatoru.
+changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Nepodporovaný trezor. Bol vytvorený novšou verziou Cryptomatoru.
+changePassword.infoMessage.success = Heslo zmenené
+# unlocked.fxml
+unlocked.button.lock = Zamknúť trezor
+unlocked.moreOptions.reveal = Odhaliť jednotku
+unlocked.moreOptions.copyUrl = Kopírovať WebDAV URL
+unlocked.label.revealFailed = Príkaz zlyhal
+unlocked.label.unmountFailed = Odpájanie jednotky zlyhalo
+unlocked.label.statsEncrypted = zašifrované
+unlocked.label.statsDecrypted = dešifrované
+unlocked.ioGraph.yAxis.label = Priepustnosť (MiB/s)
+# mac_warnings.fxml
+macWarnings.windowTitle = Upozornenie - Poškodený súbor v %s
+macWarnings.message = Cryptomator odhalil potencionálne škodlivé poškodenie v nasledujúcich súboroch\:
+macWarnings.moreInformationButton = Zistiť viac
+macWarnings.whitelistButton = Napriek tomu dešifrovať vybrané
+# settings.fxml
+settings.version.label = Verzia %s
+settings.checkForUpdates.label = Skontrolovať aktualizácie
+settings.port.label = WebDAV Port *
+settings.port.prompt = 0 \= Vybrať automaticky
+settings.useipv6.label = Použiť IPv6
+settings.requiresRestartLabel = * Cryptomator vyžaduje reštart
+# tray icon
+tray.menu.open = Otvoriť
+tray.menu.quit = Vypnúť
+tray.infoMsg.title = Stále beží
+tray.infoMsg.msg = Cryptomator je stále spustený. Vypnite ho pomocou ikony v systémovej lište.
+tray.infoMsg.msg.osx = Cryptomator je stále sputený. Ukončite ho pomocou ikony v menu.

+ 0 - 84
main/ui/src/main/resources/localization_hu.properties

@@ -1,84 +0,0 @@
-# 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.
-# 
-# Contributors:
-#     Roland Burda
-
-app.name = Cryptomator
-# main.fxml
-main.emptyListInstructions = Kattints ide egy széf létrehozásához
-main.directoryList.contextMenu.remove = Eltávolítás listából
-main.directoryList.contextMenu.changePassword = Jelszó megváltoztatása
-main.addDirectory.contextMenu.new = Új széf létrehozása
-main.addDirectory.contextMenu.open = Létez\u0151 széf megnyitása
-# welcome.fxml
-welcome.checkForUpdates.label.currentlyChecking = Frissítések keresése...
-welcome.newVersionMessage = Új verzió érhet\u0151 el\: %s. Jelenlegi verzió\: %s.
-# initialize.fxml
-initialize.label.password = Jelszó
-initialize.label.retypePassword = Jelszó ismét
-initialize.button.ok = Széf létrehozása
-initialize.messageLabel.alreadyInitialized = A széf már meg van nyitva
-initialize.messageLabel.initializationFailed = Nem sikerült megnyitni a széfet. További információ a naplófájlban.
-# notfound.fxml
-notfound.label = Széf nem található. Lehetséges, hogy áthelyezésre került?
-# upgrade.fxml
-upgrade.button = Széf frissítése
-upgrade.version3dropBundleExtension.msg = A széf új verzióra történ\u0151 migrációja szükséges. "%1$s" a következ\u0151re lesz átnevezve\: "%2$s". Kérlek gy\u0151z\u0151dj meg a szinkronizáció befejeztér\u0151l, miel\u0151tt más m\u0171veletet végeznél.
-upgrade.version3dropBundleExtension.err.alreadyExists = Automatikus migráció meghíusúlt. "%s" már létezik.
-# unlock.fxml
-unlock.label.password = Jelszó
-unlock.label.mountName = Meghajtó neve
-unlock.label.winDriveLetter = Meghajtó bet\u0171jele
-unlock.label.downloadsPageLink = Összes Cryptomator verzió
-unlock.label.advancedHeading = Haladó beállítások
-unlock.button.unlock = Széf feloldása
-unlock.button.advancedOptions.show = További beállítások
-unlock.button.advancedOptions.hide = Alapbeállítások
-unlock.choicebox.winDriveLetter.auto = Automatikus hozzárendelés
-unlock.errorMessage.wrongPassword = Hibás jelszó
-unlock.errorMessage.mountingFailed = Meghajtó felcsatolása sikertelen. További információk a naplófájlban.
-unlock.errorMessage.unsupportedKeyLengthInstallJCE = A titkosítás feloldása sikertelen. Kérlek telepítsd a "Oracle JCE Unlimited Strength Policy Files"-t.
-unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Nem támogatott széf. Ez a széf a Cryptomator egy korábbi verziójával került létrehozásra.
-unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Nem támogatott széf. Ez a széf a Cryptomator egy újabb verziójával került létrehozásra.
-unlock.messageLabel.startServerFailed = WebDAV szerver indítása sikertelen.
-# change_password.fxml
-changePassword.label.oldPassword = Régi jelszó
-changePassword.label.newPassword = Új jelszó
-changePassword.label.retypePassword = Új jelszó ismét
-changePassword.label.downloadsPageLink = Összes Cryptomator verzió
-changePassword.button.change = Jelszó megváltoztatása
-changePassword.errorMessage.wrongPassword = Hibás jelszó
-changePassword.errorMessage.decryptionFailed = A titkosítás feloldása meghíusúlt
-changePassword.errorMessage.unsupportedKeyLengthInstallJCE = A titkosítás feloldása sikertelen. Kérlek telepítsd a "Oracle JCE Unlimited Strength Policy"-t.
-changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Nem támogatott széf. Ez a széf a Cryptomator egy korábbi verziójával került létrehozásra.
-changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Nem támogatott széf. Ez a széf a Cryptomator egy újabb verziójával került létrehozásra.
-changePassword.infoMessage.success = Jelszó megváltoztatva
-# unlocked.fxml
-unlocked.button.lock = Széf lezárása
-unlocked.moreOptions.reveal = Meghajtó felfedése
-unlocked.moreOptions.copyUrl = WebDAV URL másolása
-unlocked.label.revealFailed = Parancs meghíusúlt
-unlocked.label.unmountFailed = Meghajtó leválasztása sikertelen
-unlocked.label.statsEncrypted = titkosított
-unlocked.label.statsDecrypted = titkosítás feloldva
-unlocked.ioGraph.yAxis.label = Teljesítmény (MiB/s)
-# mac_warnings.fxml
-macWarnings.windowTitle = Veszély - Korrupt fájl a következ\u0151ben\: %s
-macWarnings.message = Cryptomator potenciálisan rosszindulatú hibákat fedezett fel a következ\u0151 fájlokban\:
-macWarnings.moreInformationButton = Tudj meg többet
-macWarnings.whitelistButton = Kiválasztottak titkosításának feloldása mindenképp
-# settings.fxml
-settings.version.label = Verzió\: %s
-settings.checkForUpdates.label = Frissítések keresése
-settings.port.label = WebDAV Port *
-settings.port.prompt = 0 \= Automatikus választás
-settings.useipv6.label = Literális IPv6 használata
-settings.requiresRestartLabel = * Cryptomator újraindítása szükséges
-# tray icon
-tray.menu.open = Megnyit
-tray.menu.quit = Kilépés
-tray.infoMsg.title = M\u0171velet folyamatban
-tray.infoMsg.msg = Cryptomator még fut. A tálcán található ikon segítségével bezárhatod.
-tray.infoMsg.msg.osx = Cryptomator még fut. A menüsávban található ikon segítségével bezárhatod.

+ 0 - 84
main/ui/src/main/resources/localization_kr.properties

@@ -1,84 +0,0 @@
-# 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.
-# 
-# Contributors:
-#     ChangHwan Kim
-
-app.name = Cryptomator
-# main.fxml
-main.emptyListInstructions = \uC5EC\uAE30\uB97C \uD074\uB9AD\uD558\uC5EC \uBCF4\uAD00\uD568 \uCD94\uAC00\uD558\uAE30
-main.directoryList.contextMenu.remove = \uBAA9\uB85D\uC5D0\uC11C \uC0AD\uC81C
-main.directoryList.contextMenu.changePassword = \uBE44\uBC00\uBC88\uD638 \uBCC0\uACBD
-main.addDirectory.contextMenu.new = \uC0C8 \uBCF4\uAD00\uD568 \uB9CC\uB4E4\uAE30
-main.addDirectory.contextMenu.open = \uAE30\uC874 \uBCF4\uAD00\uD568 \uC5F4\uAE30
-# welcome.fxml
-welcome.checkForUpdates.label.currentlyChecking = \uC5C5\uB370\uC774\uD2B8 \uD655\uC778
-welcome.newVersionMessage = %s \uBC84\uC804\uC774 \uC0C8\uB85C \uB2E4\uC6B4\uB85C\uB4DC \uAC00\uB2A5\uD569\uB2C8\uB2E4. \uC9C0\uAE08 \uBC84\uC804\uC740 %s \uC785\uB2C8\uB2E4.
-# initialize.fxml
-initialize.label.password = \uBE44\uBC00\uBC88\uD638
-initialize.label.retypePassword = \uBE44\uBC00\uBC88\uD638 \uC7AC\uC785\uB825
-initialize.button.ok = \uBCF4\uAD00\uD568 \uB9CC\uB4E4\uAE30
-initialize.messageLabel.alreadyInitialized = \uC774\uBBF8 \uBCF4\uAD00\uD568\uC774 \uCD08\uAE30\uD654\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
-initialize.messageLabel.initializationFailed = \uBCF4\uAD00\uD568\uC744 \uCD08\uAE30\uD654\uD560 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uC790\uC138\uD55C \uC0AC\uD56D\uC740 \uB85C\uADF8 \uD30C\uC77C\uC744 \uCC38\uC870\uD558\uC138\uC694.
-# notfound.fxml
-notfound.label = \uBCF4\uAD00\uD568\uC744 \uCC3E\uC744 \uC218 \uC5C6\uC2B5\uB2C8\uB2E4. \uC62E\uACA8\uC9C4 \uAC83\uC740 \uC544\uB2CC\uAC00\uC694?
-# upgrade.fxml
-upgrade.button = \uBCF4\uAD00\uD568 \uC5C5\uADF8\uB808\uC774\uB4DC
-upgrade.version3dropBundleExtension.msg = \uC774 \uBCF4\uAD00\uD568\uC740 \uC0C8\uB85C\uC6B4 \uD615\uC2DD\uC73C\uB85C \uB2E4\uC2DC \uBC14\uB014 \uD544\uC694\uAC00 \uC788\uC2B5\uB2C8\uB2E4. "%1$s"\uC758 \uC774\uB984\uC740 "%2$s"\uB85C \uBC14\uB014 \uAC83\uC785\uB2C8\uB2E4. \uC9C4\uD589\uD558\uAE30 \uC804\uC5D0 \uB3D9\uAE30\uD654\uAC00 \uC644\uB8CC\uB418\uC5C8\uB294\uC9C0 \uB2E4\uC2DC \uD55C \uBC88 \uD655\uC778\uD574\uC8FC\uC2DC\uAE30 \uBC14\uB78D\uB2C8\uB2E4.
-upgrade.version3dropBundleExtension.err.alreadyExists = \uC790\uB3D9 \uB9C8\uC774\uADF8\uB808\uC774\uC158 \uC2E4\uD328. "%s"\uB294 \uC774\uBBF8 \uC874\uC7AC\uD569\uB2C8\uB2E4.
-# unlock.fxml
-unlock.label.password = \uBE44\uBC00\uBC88\uD638
-unlock.label.mountName = \uB4DC\uB77C\uC774\uBE0C \uC774\uB984
-unlock.label.winDriveLetter = \uB4DC\uB77C\uC774\uBE0C \uBB38\uC790
-unlock.label.downloadsPageLink = \uBAA8\uB4E0 Cryptomator \uBC84\uC804
-unlock.label.advancedHeading = \uACE0\uAE09 \uC635\uC158
-unlock.button.unlock = \uBCF4\uAD00\uD568 \uD574\uC81C
-unlock.button.advancedOptions.show = \uB354 \uB9CE\uC740 \uC635\uC158
-unlock.button.advancedOptions.hide = \uAE30\uBCF8 \uC635\uC158
-unlock.choicebox.winDriveLetter.auto = \uC790\uB3D9\uC73C\uB85C \uD560\uB2F9
-unlock.errorMessage.wrongPassword = \uD2C0\uB9B0 \uBE44\uBC00\uBC88\uD638
-unlock.errorMessage.mountingFailed = \uB9C8\uC6B4\uD2B8 \uC2E4\uD328. \uC790\uC138\uD55C \uC0AC\uD56D\uC740 \uB85C\uADF8 \uD30C\uC77C\uC744 \uCC38\uC870\uD558\uC138\uC694.
-unlock.errorMessage.unsupportedKeyLengthInstallJCE = \uBCF5\uD638\uD654 \uC2E4\uD328. Oracle JCE Unlimited Strength Policy Files\uC744 \uC124\uCE58\uD558\uC138\uC694.
-unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \uBCF4\uAD00\uD568. \uC774 \uBCF4\uAD00\uD568\uC740 \uC774\uC804 \uBC84\uC804\uC758 Cryptomator\uC5D0\uC11C \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
-unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \uBCF4\uAD00\uD568. \uC774 \uBCF4\uAD00\uD568\uC740 \uCD5C\uC2E0 \uBC84\uC804\uC758 Cryptomator\uC5D0\uC11C \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
-unlock.messageLabel.startServerFailed = WedDAV \uC11C\uBC84 \uC2DC\uC791 \uC2E4\uD328
-# change_password.fxml
-changePassword.label.oldPassword = \uC774\uC804 \uBE44\uBC00\uBC88\uD638
-changePassword.label.newPassword = \uC0C8\uB85C\uC6B4 \uBE44\uBC00\uBC88\uD638
-changePassword.label.retypePassword = \uBE44\uBC00\uBC88\uD638 \uC7AC\uC785\uB825
-changePassword.label.downloadsPageLink = \uBAA8\uB4E0 Cryptomator \uBC84\uC804
-changePassword.button.change = \uBE44\uBC00\uBC88\uD638 \uBCC0\uACBD
-changePassword.errorMessage.wrongPassword = \uD2C0\uB9B0 \uBE44\uBC00\uBC88\uD638
-changePassword.errorMessage.decryptionFailed = \uBCF5\uD638\uD654 \uC2E4\uD328
-changePassword.errorMessage.unsupportedKeyLengthInstallJCE = \uBCF5\uD638\uD654 \uC2E4\uD328. Oracle JCE Unlimited Strength Policy Files\uC744 \uC124\uCE58\uD558\uC138\uC694.
-changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \uBCF4\uAD00\uD568. \uC774 \uBCF4\uAD00\uD568\uC740 \uC774\uC804 \uBC84\uC804\uC758 Cryptomator\uC5D0\uC11C \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
-changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = \uC9C0\uC6D0\uB418\uC9C0 \uC54A\uB294 \uBCF4\uAD00\uD568. \uC774 \uBCF4\uAD00\uD568\uC740 \uCD5C\uC2E0 \uBC84\uC804\uC758 Cryptomator\uC5D0\uC11C \uC0DD\uC131\uB418\uC5C8\uC2B5\uB2C8\uB2E4.
-changePassword.infoMessage.success = \uBE44\uBC00\uBC88\uD638 \uBCC0\uACBD
-# unlocked.fxml
-unlocked.button.lock = \uBCF4\uAD00\uD568 \uC7A0\uADF8\uAE30
-unlocked.moreOptions.reveal = \uB4DC\uB77C\uC774\uBE0C \uD45C\uC2DC
-unlocked.moreOptions.copyUrl = WebDAV \uC8FC\uC18C \uBCF5\uC0AC
-unlocked.label.revealFailed = \uBA85\uB839 \uC2E4\uD328
-unlocked.label.unmountFailed = \uB4DC\uB77C\uC774\uBE0C \uCD94\uCD9C \uC2E4\uD328
-unlocked.label.statsEncrypted = \uC554\uD638\uD654\uB428
-unlocked.label.statsDecrypted = \uBCF5\uD638\uD654\uB428
-unlocked.ioGraph.yAxis.label = \uCC98\uB9AC\uB7C9 (MiB/s)
-# mac_warnings.fxml
-macWarnings.windowTitle = \uC704\uD5D8 - %s\uC5D0 \uC190\uC0C1\uB41C \uD30C\uC77C
-macWarnings.message = Cryptomator\uAC00 \uB2E4\uC74C \uD30C\uC77C\uB4E4\uC5D0\uC11C \uC7A0\uC7AC\uC801\uC778 \uC190\uC0C1 \uC704\uD5D8\uC744 \uAC10\uC9C0\uD588\uC2B5\uB2C8\uB2E4.
-macWarnings.moreInformationButton = \uB354 \uC54C\uC544\uBCF4\uAE30
-macWarnings.whitelistButton = \uC120\uD0DD \uD56D\uBAA9 \uAC15\uC81C \uBCF5\uD638\uD654
-# settings.fxml
-settings.version.label = \uBC84\uC804 %s
-settings.checkForUpdates.label = \uC5C5\uB370\uC774\uD2B8 \uD655\uC778
-settings.port.label = WebDAV \uD3EC\uD2B8 *
-settings.port.prompt = 0 \= \uC790\uB3D9\uC73C\uB85C \uC120\uD0DD
-settings.useipv6.label = IPv6 \uC0AC\uC6A9
-settings.requiresRestartLabel = * Cryptomator \uC7AC\uC2DC\uC791 \uD544\uC694
-# tray icon
-tray.menu.open = \uC5F4\uAE30
-tray.menu.quit = \uC885\uB8CC
-tray.infoMsg.title = \uACC4\uC18D \uC2E4\uD589 \uC911\uC785\uB2C8\uB2E4.
-tray.infoMsg.msg = Cryptomator\uAC00 \uACC4\uC18D \uC2E4\uD589 \uC911\uC785\uB2C8\uB2E4. \uC885\uB8CC\uD558\uC2E4\uB824\uBA74 \uD2B8\uB808\uC774 \uC544\uC774\uCF58\uC5D0\uC11C \uD574\uC8FC\uC138\uC694.
-tray.infoMsg.msg.osx = Cryptomator\uAC00 \uACC4\uC18D \uC2E4\uD589\uC911\uC785\uB2C8\uB2E4. \uC885\uB8CC\uD558\uC2E4\uB824\uBA74 \uBA54\uB274 \uBC14 \uC544\uC774\uCF58\uC5D0\uC11C \uD574\uC8FC\uC138\uC694.

+ 0 - 55
main/ui/src/main/resources/localization_ru.properties

@@ -1,55 +0,0 @@
-# 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.
-# 
-# Contributors:
-#     Garik
-#     Konstantine
-
-app.name = Cryptomator
-# main.fxml
-main.emptyListInstructions = \u041D\u0430\u0436\u043C\u0438\u0442\u0435 \u0437\u0434\u0435\u0441\u044C \u0447\u0442\u043E \u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435
-main.directoryList.contextMenu.remove = \u0423\u0434\u0430\u043B\u0438\u0442\u044C \u0438\u0437 \u0441\u043F\u0438\u0441\u043A\u0430
-main.directoryList.contextMenu.changePassword = \u0421\u043C\u0435\u043D\u0438\u0442\u044C \u043F\u0430\u0440\u043E\u043B\u044C
-main.addDirectory.contextMenu.new = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u043D\u043E\u0432\u043E\u0435 \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435
-main.addDirectory.contextMenu.open = \u041E\u0442\u043A\u0440\u044B\u0442\u044C \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044E\u0449\u0435\u0435 \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435 
-# welcome.fxml
-welcome.checkForUpdates.label.currentlyChecking = \u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439...
-welcome.newVersionMessage = \u0412\u0435\u0440\u0441\u0438\u044F \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0441\u043A\u0430\u0447\u0435\u043D\u0430. \u042D\u0442\u043E.
-# initialize.fxml
-initialize.label.password = \u041F\u0430\u0440\u043E\u043B\u044C
-initialize.label.retypePassword = \u041F\u043E\u0432\u0442\u043E\u0440\u0438\u0442\u0435 \u043F\u0430\u0440\u043E\u043B\u044C
-initialize.button.ok = \u0421\u043E\u0437\u0434\u0430\u0442\u044C \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435
-initialize.messageLabel.alreadyInitialized = \u0425\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435 \u0443\u0436\u0435 \u0438\u043D\u0438\u0446\u0438\u0430\u043B\u0438\u0437\u0438\u0440\u043E\u0432\u0430\u043D\u043E
-initialize.messageLabel.initializationFailed = \u041D\u0435\u0432\u043E\u0437\u043C\u043E\u0436\u043D\u043E \u0438\u043D\u0438\u0446\u0438\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435. \u0421\u043C\u043E\u0442\u0440\u0438\u0442\u0435 \u043B\u043E\u0433 \u0434\u043B\u044F \u0434\u0435\u0442\u0430\u043B\u0435\u0439.
-# notfound.fxml
-notfound.label = \u0425\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435 \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E.\u041E\u043D\u043E \u0431\u044B\u043B\u043E \u0443\u0434\u0430\u043B\u0435\u043D\u043E?
-# upgrade.fxml
-upgrade.button = \u041E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435
-upgrade.version3dropBundleExtension.msg = \u042D\u0442\u043E\u043C\u0443 \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0443 \u043D\u0443\u0436\u043D\u043E \u043C\u0438\u0433\u0440\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432 \u043D\u043E\u0432\u044B\u0439 \u0444\u043E\u0440\u043C\u0430\u0442.\n"%1$s" will be renamed to "%2$s".\nPlease make sure synchronization has finished before proceeding.
-upgrade.version3dropBundleExtension.err.alreadyExists = \u0410\u0432\u0442\u043E\u043C\u0430\u0442\u0438\u0447\u0435\u0441\u043A\u0430\u044F \u043C\u0438\u0433\u0440\u0430\u0446\u0438\u044F \u043D\u0435 \u0443\u0434\u0430\u043B\u0430\u0441\u044C.\n"%" \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. 
-# unlock.fxml
-unlock.label.password = \u041F\u0430\u0440\u043E\u043B\u044C
-unlock.label.mountName = \u0418\u043C\u044F \u043D\u043E\u0441\u0438\u0442\u0435\u043B\u044F
-changePassword.errorMessage.wrongPassword = \u041D\u0435\u043F\u0440\u0430\u0432\u0438\u043B\u044C\u043D\u044B\u0439 \u043F\u0430\u0440\u043E\u043B\u044C
-changePassword.errorMessage.decryptionFailed = \u0420\u0430\u0441\u0448\u0438\u0444\u0440\u043E\u0432\u043A\u0430 \u043F\u0440\u043E\u0432\u0430\u043B\u0438\u043B\u0430\u0441\u044C
-changePassword.errorMessage.unsupportedKeyLengthInstallJCE = \u0420\u0430\u0441\u0448\u0438\u0444\u0440\u043E\u0432\u043A\u0430 \u043D\u0435 \u0443\u0434\u0430\u043B\u0430\u0441\u044C. \u041F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u0438\u0442\u0435 Oracle JCE Unlimited Strength Policy. 
-changePassword.infoMessage.success = \u041F\u0430\u0440\u043E\u043B\u044C \u0438\u0437\u043C\u0435\u043D\u0438\u043B\u0441\u044F
-# unlocked.fxml
-unlocked.button.lock = \u0417\u0430\u0431\u043B\u043E\u043A\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0445\u0440\u0430\u043D\u0438\u043B\u0438\u0449\u0435
-unlocked.moreOptions.copyUrl = \u0421\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C WebDAV URL 
-unlocked.label.revealFailed = \u041A\u043E\u043C\u0430\u043D\u0434\u0430 \u043D\u0435 \u0443\u0434\u0430\u043B\u0430\u0441\u044C
-unlocked.label.unmountFailed = \u0418\u0437\u0432\u043B\u0435\u0447\u0435\u043D\u0438\u0435 \u0434\u0438\u0441\u043A\u0430 \u043D\u0435 \u0443\u0434\u0430\u043B\u043E\u0441\u044C
-unlocked.label.statsEncrypted = \u0437\u0430\u0448\u0438\u0444\u0440\u043E\u0432\u0430\u043D\u043E
-unlocked.label.statsDecrypted = \u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043E\u0432\u0430\u043D\u043E
-macWarnings.moreInformationButton = \u0418\u0437\u0443\u0447\u0438\u0442\u044C \u0431\u043E\u043B\u044C\u0448\u0435
-# settings.fxml
-settings.version.label = \u0412\u0435\u0440\u0441\u0438\u044F %s
-settings.checkForUpdates.label = \u041F\u0440\u043E\u0432\u0435\u0440\u043A\u0430 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0439
-settings.requiresRestartLabel = * Cryptomator \u0434\u043E\u043B\u0436\u0435\u043D \u043F\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0441\u044F
-# tray icon
-tray.menu.open = \u041E\u0442\u043A\u0440\u044B\u0442\u044C
-tray.menu.quit = \u0412\u044B\u0439\u0442\u0438
-tray.infoMsg.title = \u0412\u0441\u0451 \u0435\u0449\u0451 \u0440\u0430\u0431\u043E\u0442\u0430\u0435\u0442
-tray.infoMsg.msg = Cryptomator \u0440\u0430\u0431\u043E\u0442\u0430\u0435\u0442. \u0412\u044B\u0439\u0434\u0438\u0442\u0435 c \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u0438\u043A\u043E\u043D\u043A\u0438 \u0432 \u0442\u0440\u0435\u0435.
-tray.infoMsg.msg.osx = Cryptomator \u0432\u0441\u0451 \u0435\u0449\u0451 \u0440\u0430\u0431\u043E\u0442\u0430\u0435\u0442.\u0412\u044B\u0439\u0434\u0438\u0442\u0435 \u0441 \u043F\u043E\u043C\u043E\u0449\u044C\u044E \u0438\u043A\u043E\u043D\u043A\u0438 \u0432 \u043C\u0435\u043D\u044E \u0431\u0430\u0440\u0435.

+ 0 - 85
main/ui/src/main/resources/localization_sk.properties

@@ -1,85 +0,0 @@
-# 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.
-# 
-# Contributors:
-#     Filip Havrlent
-#     Tatiana Chovancová
-
-app.name = Cryptomator
-# main.fxml
-main.emptyListInstructions = Prida\u0165 trezor
-main.directoryList.contextMenu.remove = Odstráni\u0165 zo zoznamu
-main.directoryList.contextMenu.changePassword = Zmeni\u0165 heslo
-main.addDirectory.contextMenu.new = Vytvori\u0165 nový trezor
-main.addDirectory.contextMenu.open = Otvori\u0165 existujúci trezor
-# welcome.fxml
-welcome.checkForUpdates.label.currentlyChecking = Kontrolujú sa aktualizácie...
-welcome.newVersionMessage = Verzia %s je pripravená na stiahnutie. Toto je verzia %s.
-# initialize.fxml
-initialize.label.password = Heslo
-initialize.label.retypePassword = Zadajte heslo znova
-initialize.button.ok = Vytvori\u0165 trezor
-initialize.messageLabel.alreadyInitialized = Trezor je u\u017E inicializovaný
-initialize.messageLabel.initializationFailed = Nepodarilo sa inicializova\u0165 trezor. Pozrite súbor záznamov pre viac detailov.
-# notfound.fxml
-notfound.label = Trezor nemohol by\u0165 nenájdený. Bol presunutý?
-# upgrade.fxml
-upgrade.button = Upgradnú\u0165 trezor
-upgrade.version3dropBundleExtension.msg = Tento trezor musí by\u0165 premigrovaný na nový formát. "%1$s" bude premenovaný na "%2$s". Prosím, uistite sa \u017Ee je dokon\u010Dená synchronizácia skôr ne\u017E budete pokra\u010Dova\u0165.
-upgrade.version3dropBundleExtension.err.alreadyExists = Automatická migrácia zlyhala. "%s" u\u017E existuje. 
-# unlock.fxml
-unlock.label.password = Heslo
-unlock.label.mountName = Názov jednotky
-unlock.label.winDriveLetter = Ozna\u010Denie jednotky
-unlock.label.downloadsPageLink = V\u0161etky verzie Cryptomatoru
-unlock.label.advancedHeading = Pokro\u010Dilé nastavenia
-unlock.button.unlock = Odomknú\u0165 trezor
-unlock.button.advancedOptions.show = Viac nastavení
-unlock.button.advancedOptions.hide = Menej nastavení
-unlock.choicebox.winDriveLetter.auto = Priradi\u0165 automaticky
-unlock.errorMessage.wrongPassword = Nesprávne heslo
-unlock.errorMessage.mountingFailed = Pripájanie zlyhalo. Viac informácii v logu.
-unlock.errorMessage.unsupportedKeyLengthInstallJCE = De\u0161ifrovanie zlyhalo. Prosím nain\u0161talujte Oracle JCE Unlimited Strength Policy Files.
-unlock.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Nepodporovaný trezor. Tento trezor bol vytvorený star\u0161ou verziou Cryptromatoru.
-unlock.errorMessage.unsupportedVersion.softwareOlderThanVault = Nepodporovaný trezor. Bol vytvorený z nov\u0161ou verziou Cryptomatoru.
-unlock.messageLabel.startServerFailed = Spustenie WebDAv servera zlyhalo.
-# change_password.fxml
-changePassword.label.oldPassword = Staré heslo
-changePassword.label.newPassword = Nové heslo
-changePassword.label.retypePassword = Znova zadajte heslo
-changePassword.label.downloadsPageLink = V\u0161etky verzie Cryptomatoru.
-changePassword.button.change = Zmeni\u0165 heslo
-changePassword.errorMessage.wrongPassword = Nesprávne heslo
-changePassword.errorMessage.decryptionFailed = De\u0161ifrovanie zlyhalo.
-changePassword.errorMessage.unsupportedKeyLengthInstallJCE = De\u0161ifrovanie zlyhalo. Prosím nain\u0161talujte Oracle JCE Unlimited Strength Policy.
-changePassword.errorMessage.unsupportedVersion.vaultOlderThanSoftware = Nepodporovaný trezor. Bol vytvorený star\u0161ou verziou Cryptomatoru.
-changePassword.errorMessage.unsupportedVersion.softwareOlderThanVault = Nepodporovaný trezor. Bol vytvorený nov\u0161ou verziou Cryptomatoru.
-changePassword.infoMessage.success = Heslo zmenené
-# unlocked.fxml
-unlocked.button.lock = Zamknú\u0165 trezor
-unlocked.moreOptions.reveal = Odhali\u0165 jednotku
-unlocked.moreOptions.copyUrl = Kopírova\u0165 WebDAV URL
-unlocked.label.revealFailed = Príkaz zlyhal
-unlocked.label.unmountFailed = Odpájanie jednotky zlyhalo
-unlocked.label.statsEncrypted = za\u0161ifrované
-unlocked.label.statsDecrypted = de\u0161ifrované
-unlocked.ioGraph.yAxis.label = Priepustnos\u0165 (MiB/s)
-# mac_warnings.fxml
-macWarnings.windowTitle = Upozornenie - Po\u0161kodený súbor v %s
-macWarnings.message = Cryptomator odhalil potencionálne \u0161kodlivé po\u0161kodenie v nasledujúcich súboroch\:
-macWarnings.moreInformationButton = Zisti\u0165 viac
-macWarnings.whitelistButton = Napriek tomu de\u0161ifrova\u0165 vybrané
-# settings.fxml
-settings.version.label = Verzia %s
-settings.checkForUpdates.label = Skontrolova\u0165 aktualizácie
-settings.port.label = WebDAV Port *
-settings.port.prompt = 0 \= Vybra\u0165 automaticky
-settings.useipv6.label = Pou\u017Ei\u0165 IPv6
-settings.requiresRestartLabel = * Cryptomator vy\u017Eaduje re\u0161tart
-# tray icon
-tray.menu.open = Otvori\u0165
-tray.menu.quit = Vypnú\u0165
-tray.infoMsg.title = Stále be\u017Eí
-tray.infoMsg.msg = Cryptomator je stále spustený. Vypnite ho pomocou ikony v systémovej li\u0161te.
-tray.infoMsg.msg.osx = Cryptomator je stále sputený. Ukon\u010Dite ho pomocou ikony v menu.