We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0895d3d commit cb0aef7Copy full SHA for cb0aef7
1 file changed
archinstall/default_profiles/desktops/utils.py
@@ -14,7 +14,7 @@ class SeatAccess(Enum):
14
async def select_seat_access(profile_name: str, default: str | None) -> SeatAccess:
15
header = tr('{} needs access to your seat').format(profile_name)
16
header += f' ({tr("collection of hardware devices i.e. keyboard, mouse")})' + '\n'
17
- header += tr('Choose an option how to give access to your hardware')
+ header += tr('Choose an option how to give {} access to your hardware').format(profile_name)
18
19
items = [MenuItem(s.value, value=s) for s in SeatAccess]
20
group = MenuItemGroup(items, sort_items=True)
0 commit comments