diff options
author | Thierry Vignaud <tv@mandriva.org> | 2006-10-24 17:53:54 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2006-10-24 17:53:54 +0000 |
commit | 7997b3150c984fbb9e37fa9c659eb032b69cf2bc (patch) | |
tree | 73f69b19d3d01e37f862f1df7ab821ab5b951587 | |
parent | 9aebfcf9900f40d59185df3dca5e64e6d7ff4490 (diff) | |
download | rpmdrake-7997b3150c984fbb9e37fa9c659eb032b69cf2bc.tar rpmdrake-7997b3150c984fbb9e37fa9c659eb032b69cf2bc.tar.gz rpmdrake-7997b3150c984fbb9e37fa9c659eb032b69cf2bc.tar.bz2 rpmdrake-7997b3150c984fbb9e37fa9c659eb032b69cf2bc.tar.xz rpmdrake-7997b3150c984fbb9e37fa9c659eb032b69cf2bc.zip |
show nice icons in "mandriva choice" mode
-rwxr-xr-x | rpmdrake | 30 |
1 files changed, 30 insertions, 0 deletions
@@ -323,6 +323,36 @@ my %group_icons = ( N("Text tools") => 'text_tools_section', N("Toys") => 'toys_section', N("Video") => 'video_section', + + # for Mandriva Choice: + N("Workstation") => 'office_section', + join('|', N("Workstation"), N("Configuration")) => 'configuration_section', + join('|', N("Workstation"), N("Console Tools")) => 'interpreters_section', + join('|', N("Workstation"), N("Documentation")) => 'documentation_section', + join('|', N("Workstation"), N("Game station")) => 'amusement_section', + join('|', N("Workstation"), N("Internet station")) => 'networking_section', + join('|', N("Workstation"), N("Multimedia station")) => 'multimedia_section', + join('|', N("Workstation"), N("Network Computer (client)")) => 'other_networking', + join('|', N("Workstation"), N("Office Workstation")) => 'office_section', + join('|', N("Workstation"), N("Scientific Workstation")) => 'sciences_section', + N("Graphical Environment") => 'office_section', + + join('|', N("Graphical Environment"), N("GNOME Workstation")) => 'gnome_section', + join('|', N("Graphical Environment"), N("IceWm Desktop")) => 'icewm', + join('|', N("Graphical Environment"), N("KDE Workstation")) => 'kde_section', + join('|', N("Graphical Environment"), N("Other Graphical Desktops")) => 'more_applications_other_section', + N("Development") => 'development_section', + join('|', N("Development"), N("Development")) => 'development_section', + join('|', N("Development"), N("Documentation")) => 'documentation_section', + N("Server") => 'archiving_section', + join('|', N("Server"), N("DNS/NIS")) => 'networking_section', + join('|', N("Server"), N("Database")) => 'databases_section', + join('|', N("Server"), N("Firewall/Router")) => 'networking_section', + join('|', N("Server"), N("Mail")) => 'mail_section', + join('|', N("Server"), N("Mail/Groupware/News")) => 'mail_section', + join('|', N("Server"), N("Network Computer server")) => 'networking_section', + join('|', N("Server"), N("Web/FTP")) => 'networking_www_section', + ); |