From f5c9a00ee20add329a424c8482274eba1d59c091 Mon Sep 17 00:00:00 2001 From: Victor Date: Wed, 5 Aug 2026 19:29:56 -0300 Subject: [PATCH] Translate the os-prober label in the bootloader preview Reuse the existing 'Detect other operating systems' msgid so the preview matches the menu item label and stays localizable, like the neighbouring Removable and Plymouth labels. Suggested in PR review. --- archinstall/lib/models/bootloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/models/bootloader.py b/archinstall/lib/models/bootloader.py index 65ca1583..84cc9992 100644 --- a/archinstall/lib/models/bootloader.py +++ b/archinstall/lib/models/bootloader.py @@ -162,7 +162,7 @@ class BootloaderConfiguration(SubConfig): os_prober_string = tr('Enabled') else: os_prober_string = tr('Disabled') - text += f'os-prober: {os_prober_string}' + text += f'{tr("Detect other operating systems")}: {os_prober_string}' text += '\n' if self.plymouth is not None: text += f'{tr("Plymouth")}: {self.plymouth.value}'