Improved clarity of desktop/native packages filter labels
The new "Show" filter settings:
* Desktop and non-desktop packages
* Desktop packages
* Native desktop packages
differ from the other items in the menu, as these three new items act
as radio buttons: you can only choose one. To make this more obvious, add
"only" to the menu labels:
* Desktop and non-desktop packages
* Desktop packages only
* Native desktop packages only
Change-Id: I5daac7f76317e3390c243a7ea2d9f7637e40f918
Reviewed-on: https://review.haiku-os.org/c/haiku/+/9882
Reviewed-by: nephele nephele <nep-git@packageloss.eu>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Diff
src/apps/haikudepot/ui/MainWindow.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
@@ -894,10 +894,10 @@
menu->AddItem(fShowDesktopAndNonDesktopItem);
fShowOnlyDesktopItem
= new BMenuItem(B_TRANSLATE("Desktop packages"), new BMessage(MSG_SHOW_DESKTOP_PACKAGES));
= new BMenuItem(B_TRANSLATE("Desktop packages only"), new BMessage(MSG_SHOW_DESKTOP_PACKAGES));
menu->AddItem(fShowOnlyDesktopItem);
fShowOnlyNativeDesktopItem = new BMenuItem(B_TRANSLATE("Native desktop packages"),
fShowOnlyNativeDesktopItem = new BMenuItem(B_TRANSLATE("Native desktop packages only"),
new BMessage(MSG_SHOW_NATIVE_DESKTOP_PACKAGES));
menu->AddItem(fShowOnlyNativeDesktopItem);