From c6c2133b34d6fc079e977a78bced95bb8ea9cbd9 Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Fri, 29 Oct 2021 17:08:03 +0200 Subject: [PATCH] closes #1863 --- .../ui/addvaultwizard/ChooseExistingVaultController.java | 2 +- src/main/resources/i18n/strings.properties | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/cryptomator/ui/addvaultwizard/ChooseExistingVaultController.java b/src/main/java/org/cryptomator/ui/addvaultwizard/ChooseExistingVaultController.java index 687df28d8..4fceaa929 100644 --- a/src/main/java/org/cryptomator/ui/addvaultwizard/ChooseExistingVaultController.java +++ b/src/main/java/org/cryptomator/ui/addvaultwizard/ChooseExistingVaultController.java @@ -72,7 +72,7 @@ public class ChooseExistingVaultController implements FxController { public void chooseFileAndNext() { FileChooser fileChooser = new FileChooser(); fileChooser.setTitle(resourceBundle.getString("addvaultwizard.existing.filePickerTitle")); - fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter("Cryptomator Masterkey", "*.cryptomator")); + fileChooser.getExtensionFilters().add(new FileChooser.ExtensionFilter("Cryptomator Vault", "*.cryptomator")); File masterkeyFile = fileChooser.showOpenDialog(window); if (masterkeyFile != null) { vaultPath.setValue(masterkeyFile.toPath().toAbsolutePath().getParent()); diff --git a/src/main/resources/i18n/strings.properties b/src/main/resources/i18n/strings.properties index 61476d9b9..1cb5eb0b8 100644 --- a/src/main/resources/i18n/strings.properties +++ b/src/main/resources/i18n/strings.properties @@ -76,9 +76,9 @@ addvault.new.readme.accessLocation.2=This is your vault's access location. addvault.new.readme.accessLocation.3=Any files added to this volume will be encrypted by Cryptomator. You can work on it like on any other drive/folder. This is only a decrypted view of its content, your files stay encrypted on your hard drive all the time. addvault.new.readme.accessLocation.4=Feel free to remove this file. ## Existing -addvaultwizard.existing.instruction=Choose the "masterkey.cryptomator" file of your existing vault. +addvaultwizard.existing.instruction=Choose the "vault.cryptomator" file of your existing vault. If only a file named "masterkey.cryptomator" exists, select that instead. addvaultwizard.existing.chooseBtn=Choose… -addvaultwizard.existing.filePickerTitle=Select Masterkey File +addvaultwizard.existing.filePickerTitle=Select Vault File ## Success addvaultwizard.success.nextStepsInstructions=Added vault "%s".\nYou need to unlock this vault to access or add contents. Alternatively you can unlock it at any later point in time. addvaultwizard.success.unlockNow=Unlock Now