style: update descriptions

This commit is contained in:
lapointek 2026-04-21 18:10:48 -04:00
parent 2dc5765cc8
commit 8541e1c61f
No known key found for this signature in database
1 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ class PlasmaFlavor(StrEnum):
match self:
case PlasmaFlavor.Meta:
ty = tr('Package')
desc = tr('A meta package that depends on a curated set of components. Installing it pulls in the full desktop \nenvironment including extras. Recommended for most users who want a complete desktop.')
desc = tr('A meta package that depends on a curated set of packages. Installing it pulls in the full desktop \nenvironment, including extras. Recommended for most users who want a complete desktop.')
info = available_package(self.value)
if info is not None:
@ -37,7 +37,7 @@ class PlasmaFlavor(StrEnum):
details += '\n'.join(f'- {entry}' for entry in info.get_depends_on)
case PlasmaFlavor.Plasma:
ty = tr('Package group')
desc = tr('A package group containing all Plasma packages. Installing the group pulls in all packages together. \nUnlike meta packages, individual packages can be removed afterward without affecting the group.')
desc = tr('A package group containing all Plasma packages. Installing the group pulls in all packages together. \nUnlike a meta package, individual packages can be removed afterward without affecting the group.')
group = package_group_info(self.value)
if group is not None:
@ -45,7 +45,7 @@ class PlasmaFlavor(StrEnum):
details += '\n'.join(f'- {entry}' for entry in group.packages)
case PlasmaFlavor.Desktop:
ty = tr('Package group')
desc = tr('The core KDE Plasma desktop package. Provides only essential components needed to run a \nfunctional Plasma session. Good for users who want a minimal setup and fewer packages.')
desc = tr('The core KDE Plasma desktop package. Provides only the essential components needed to run a \nfunctional Plasma session. Suitable for users who want a minimal setup with fewer packages.')
info = available_package(self.value)
if info is not None: