@@ -374,9 +374,10 @@ def __init__(self, parent, updateInfo: Optional[Dict], auto: bool) -> None:
374374 # Translators: A message indicating that no update to NVDA is available.
375375 message = _ ("No update available." )
376376 elif canOfferPendingUpdate :
377- # Translators: A message indicating that an updated version of NVDA has been downloaded
378- # and is pending to be installed.
379- message = _ ("NVDA version {version} has been downloaded and is pending installation." ).format (** updateInfo )
377+ message = _ (
378+ # Translators: A message indicating that a new version of NVDA has been downloaded and is ready to be applied.
379+ "Update to NVDA version {version} has been downloaded and is ready to be applied."
380+ ).format (** updateInfo )
380381
381382 self .apiVersion = pendingUpdateDetails [2 ]
382383 self .backCompatTo = pendingUpdateDetails [3 ]
@@ -400,9 +401,9 @@ def __init__(self, parent, updateInfo: Optional[Dict], auto: bool) -> None:
400401 reviewAddonsButton .Bind (wx .EVT_BUTTON , self .onReviewAddonsButton )
401402 self .installPendingButton = bHelper .addButton (
402403 self ,
403- # Translators: The label of a button to install a pending NVDA update.
404+ # Translators: The label of a button to apply a pending NVDA update.
404405 # {version} will be replaced with the version; e.g. 2011.3.
405- label = _ ("&Install NVDA {version}" ).format (** updateInfo )
406+ label = _ ("&Update to NVDA {version}" ).format (** updateInfo )
406407 )
407408 self .installPendingButton .Bind (
408409 wx .EVT_BUTTON ,
@@ -487,12 +488,12 @@ def __init__(self, parent, destPath, version, apiVersion, backCompatTo):
487488 self .apiVersion = apiVersion
488489 self .backCompatTo = backCompatTo
489490 self .storeUpdatesDirWritable = os .path .isdir (storeUpdatesDir ) and os .access (storeUpdatesDir , os .W_OK )
490- # Translators: The title of the dialog asking the user to Install an NVDA update.
491+ # Translators: The title of the dialog asking the user to apply an NVDA update.
491492 super ().__init__ (parent , title = _ ("NVDA Update" ))
492493 mainSizer = wx .BoxSizer (wx .VERTICAL )
493494 sHelper = guiHelper .BoxSizerHelper (self , orientation = wx .VERTICAL )
494- # Translators: A message indicating that an updated version of NVDA is ready to be installed .
495- message = _ ("NVDA version {version} is ready to be installed .\n " ).format (version = version )
495+ # Translators: A message indicating that an update to NVDA is ready to be applied .
496+ message = _ ("Update to NVDA version {version} is ready to be applied .\n " ).format (version = version )
496497
497498 showAddonCompat = any (getIncompatibleAddons (
498499 currentAPIVersion = self .apiVersion ,
@@ -514,8 +515,8 @@ def __init__(self, parent, destPath, version, apiVersion, backCompatTo):
514515 # Translators: The label of a button to review add-ons prior to NVDA update.
515516 reviewAddonsButton = bHelper .addButton (self , label = _ ("&Review add-ons..." ))
516517 reviewAddonsButton .Bind (wx .EVT_BUTTON , self .onReviewAddonsButton )
517- # Translators: The label of a button to install an NVDA update.
518- installButton = bHelper .addButton (self , wx .ID_OK , label = _ ("&Install update " ))
518+ # Translators: The label of a button to apply an NVDA update.
519+ installButton = bHelper .addButton (self , wx .ID_OK , label = _ ("&Update now " ))
519520 installButton .Bind (wx .EVT_BUTTON , self .onInstallButton )
520521 if not showAddonCompat :
521522 installButton .SetFocus ()
0 commit comments