Clarify portable update notice

This commit is contained in:
crschnick 2023-07-12 11:02:37 +00:00
parent 50e3dffd9b
commit df2d4c9ca9
2 changed files with 4 additions and 2 deletions

View file

@ -105,7 +105,7 @@ public class UpdateCheckComp extends SimpleComp {
var name = Bindings.createStringBinding(
() -> {
if (updateReady.getValue()) {
return AppI18n.get("updateReady");
return XPipeDistributionType.get() == XPipeDistributionType.PORTABLE ? AppI18n.get("updateReadyPortable") : AppI18n.get("updateReady");
}
return AppI18n.get("checkForUpdates");
@ -114,7 +114,7 @@ public class UpdateCheckComp extends SimpleComp {
var description = Bindings.createStringBinding(
() -> {
if (updateReady.getValue()) {
return AppI18n.get("updateReadyDescription");
return XPipeDistributionType.get() == XPipeDistributionType.PORTABLE ? AppI18n.get("updateReadyDescriptionPortable") : AppI18n.get("updateReadyDescription");
}
return AppI18n.get("checkForUpdatesDescription");

View file

@ -188,7 +188,9 @@ build=Build
runtimeVersion=Runtime version
virtualMachine=Virtual machine
updateReady=Install update
updateReadyPortable=Check out update
updateReadyDescription=An update was downloaded and is ready to be installed
updateReadyDescriptionPortable=An update is available to download
updateRestart=Restart to update
never=Never
updateAvailable=Update available: $VERSION$