Clarified some steps of create vault workflow

This commit is contained in:
Sebastian Stenzel
2019-08-29 16:29:53 +02:00
parent d0924e246f
commit 68454e914b
6 changed files with 14 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -6,6 +6,8 @@
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.Region?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.image.Image?>
<VBox xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="org.cryptomator.ui.addvaultwizard.ChooseExistingVaultController"
@@ -17,7 +19,12 @@
<Insets top="24" right="24" bottom="24" left="24"/>
</padding>
<children>
<Region VBox.vgrow="ALWAYS"/>
<ImageView VBox.vgrow="ALWAYS" fitHeight="200.0" preserveRatio="true" smooth="true" cache="true">
<VBox.margin>
<Insets top="24"/>
</VBox.margin>
<Image url="/choose_existing_vault.png"/> <!-- TODO replace mockup -->
</ImageView>
<Label text="%addvaultwizard.existing.instruction" wrapText="true" labelFor="$finishButton"/>

View File

@@ -27,8 +27,6 @@
<Insets top="24" right="24" bottom="24" left="24"/>
</padding>
<children>
<Region VBox.vgrow="ALWAYS"/>
<Label wrapText="true" text="%addvaultwizard.new.locationInstruction"/>
<VBox spacing="6">
@@ -44,7 +42,7 @@
</HBox>
</VBox>
<Region VBox.vgrow="NEVER"/>
<Region VBox.vgrow="ALWAYS"/>
<Label text="%addvaultwizard.new.locationLabel" labelFor="$locationTextField"/>
<TextField fx:id="locationTextField" promptText="%addvaultwizard.new.locationPrompt" text="${controller.vaultPath}" disable="true" HBox.hgrow="ALWAYS"/>

View File

@@ -28,14 +28,14 @@
<Region VBox.vgrow="ALWAYS"/>
<VBox alignment="CENTER" spacing="9">
<Button styleClass="button-large" text="%addvaultwizard.welcome.newButton" onAction="#createNewVault">
<Button styleClass="button-large" text="%addvaultwizard.welcome.newButton" onAction="#createNewVault" prefWidth="Infinity">
<graphic>
<FontAwesome5IconView glyph="PLUS" glyphSize="15"/>
</graphic>
</Button>
<Button styleClass="button-large" text="%addvaultwizard.welcome.existingButton" onAction="#chooseExistingVault">
<Button styleClass="button-large" text="%addvaultwizard.welcome.existingButton" onAction="#chooseExistingVault" prefWidth="Infinity">
<graphic>
<FontAwesome5IconView glyph="SEARCH" glyphSize="15"/>
<FontAwesome5IconView glyph="FOLDER_OPEN" glyphSize="15"/>
</graphic>
</Button>
</VBox>

View File

@@ -25,7 +25,7 @@ addvaultwizard.welcome.existingButton=Add Existing Vault
## New
addvaultwizard.new.nameInstruction=Choose a name for the vault
addvaultwizard.new.namePrompt=Vault Name
addvaultwizard.new.locationInstruction=Pick a location to store your vault
addvaultwizard.new.locationInstruction=Where should Cryptomator store the encrypted files of your vault?
addvaultwizard.new.locationLabel=Storage location
addvaultwizard.new.locationPrompt=
addvaultwizard.new.directoryPickerLabel=Custom Location

View File

@@ -25,7 +25,7 @@ addvaultwizard.welcome.existingButton=Vorhandenen Tresor hinzufügen
## New
addvaultwizard.new.nameInstruction=Wähle einen Namen für den Tresor
addvaultwizard.new.namePrompt=Tresorname
addvaultwizard.new.locationInstruction=Wo soll dein Tresor gespeichert werden?
addvaultwizard.new.locationInstruction=Wo soll Cryptomator die verschlüsselten Daten deines Tresors ablegen?
addvaultwizard.new.locationLabel=Speicherort
addvaultwizard.new.locationPrompt=
addvaultwizard.new.directoryPickerLabel=Eigenen Ort wählen…