Browse Source

changed naming pattern and wording

Jan-Peter Klein 1 year ago
parent
commit
ade277daf4

+ 1 - 1
src/main/java/org/cryptomator/ui/updatereminder/UpdateReminderModule.java

@@ -34,7 +34,7 @@ abstract class UpdateReminderModule {
 	@UpdateReminderScoped
 	static Stage provideStage(StageFactory factory, ResourceBundle resourceBundle) {
 		Stage stage = factory.create();
-		stage.setTitle(resourceBundle.getString("updateReminder.windowTitle"));
+		stage.setTitle(resourceBundle.getString("updateReminder.title"));
 		stage.setMinWidth(550);
 		stage.setMinHeight(100);
 		stage.initModality(Modality.APPLICATION_MODAL);

+ 2 - 2
src/main/resources/fxml/update_reminder.fxml

@@ -36,12 +36,12 @@
 				</Group>
 
 				<VBox HBox.hgrow="ALWAYS">
-					<Label styleClass="label-large" text="%updateReminder.title" wrapText="true">
+					<Label styleClass="label-large" text="%updateReminder.message" wrapText="true">
 						<padding>
 							<Insets bottom="6" top="6"/>
 						</padding>
 					</Label>
-					<Label text="%updateReminder.message" wrapText="true"/>
+					<Label text="%updateReminder.description" wrapText="true"/>
 					<Region VBox.vgrow="ALWAYS" minHeight="18"/>
 				</VBox>
 			</HBox>

+ 7 - 6
src/main/resources/i18n/strings.properties

@@ -499,10 +499,11 @@ quit.lockAndQuitBtn=Lock and Quit
 quit.forced.message=Some vaults could not be locked
 quit.forced.description=Locking vaults was blocked by pending operations or open files. You can force lock remaining vaults, however interrupting I/O may result in the loss of unsaved data.
 quit.forced.forceAndQuitBtn=Force and Quit
+
 # Update Reminder
-updateReminder.windowTitle=Update Check Reminder
-updateReminder.title=Check for Updates?
-updateReminder.message=Cryptomator can automatically check for updates. This is useful to get notified about new features and security updates. You can change this later in the preferences.
-updateReminder.notNow=Ask Me Later
-updateReminder.yesOnce=Check Now Once
-updateReminder.yesAutomatically=Enable Update Checker
+updateReminder.title=Update Check
+updateReminder.message=Check for Updates?
+updateReminder.description=Stay updated with new features, bug fixes, and security improvements. We recommend to automatically check for updates.
+updateReminder.notNow=Not Now
+updateReminder.yesOnce=Yes, Once
+updateReminder.yesAutomatically=Yes, Automatically