diff options
author | Thierry Vignaud <tv@mandriva.org> | 2006-08-28 19:08:49 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2006-08-28 19:08:49 +0000 |
commit | b1587a043da0e5e8863bfc2accc3600bb8716365 (patch) | |
tree | 0f54b65ec26c91babc15de326939da26f6ed2bec | |
parent | 1cb59c54c88bbd32f6f1f1b70bb6a2d94de80aa8 (diff) | |
download | rpmdrake-b1587a043da0e5e8863bfc2accc3600bb8716365.tar rpmdrake-b1587a043da0e5e8863bfc2accc3600bb8716365.tar.gz rpmdrake-b1587a043da0e5e8863bfc2accc3600bb8716365.tar.bz2 rpmdrake-b1587a043da0e5e8863bfc2accc3600bb8716365.tar.xz rpmdrake-b1587a043da0e5e8863bfc2accc3600bb8716365.zip |
warn about package names
-rwxr-xr-x | rpmdrake | 32 |
1 files changed, 24 insertions, 8 deletions
@@ -237,15 +237,29 @@ my %group_icons = ( join('|', N("Games"), N("Sports")) => 'sport_section', join('|', N("Games"), N("Strategy")) => 'strategy_section', N("Graphical desktop") => 'office_section', - join('|', N("Graphical desktop"), N("Enlightenment")) => '', + join('|', N("Graphical desktop"), + #-PO: This is a package/product name. Only translate it if needed: + N("Enlightenment")) => '', join('|', N("Graphical desktop"), N("FVWM based")) => '', - join('|', N("Graphical desktop"), N("GNOME")) => 'gnome_section', - join('|', N("Graphical desktop"), N("Icewm")) => '', - join('|', N("Graphical desktop"), N("KDE")) => 'kde_section', + join('|', N("Graphical desktop"), + #-PO: This is a package/product name. Only translate it if needed: + N("GNOME")) => 'gnome_section', + join('|', N("Graphical desktop"), + #-PO: This is a package/product name. Only translate it if needed: + N("Icewm")) => '', + join('|', N("Graphical desktop"), + #-PO: This is a package/product name. Only translate it if needed: + N("KDE")) => 'kde_section', join('|', N("Graphical desktop"), N("Other")) => 'more_applications_other_section', - join('|', N("Graphical desktop"), N("Sawfish")) => '', - join('|', N("Graphical desktop"), N("WindowMaker")) => '', - join('|', N("Graphical desktop"), N("Xfce")) => '', + join('|', N("Graphical desktop"), + #-PO: This is a package/product name. Only translate it if needed: + N("Sawfish")) => '', + join('|', N("Graphical desktop"), + #-PO: This is a package/product name. Only translate it if needed: + N("WindowMaker")) => '', + join('|', N("Graphical desktop"), + #-PO: This is a package/product name. Only translate it if needed: + N("Xfce")) => '', join('|', N("Graphics")) => 'graphics_section', N("Monitoring") => 'monitoring_section', N("Multimedia") => 'multimedia_section', @@ -294,7 +308,9 @@ my %group_icons = ( join('|', N("System"), N("Kernel and hardware")) => 'hardware_configuration_section', join('|', N("System"), N("Libraries")) => '', join('|', N("System"), N("Servers")) => '', - join('|', N("System"), N("X11")) => '', + join('|', N("System"), + #-PO: This is a package/product name. Only translate it if needed: + N("X11")) => '', N("Terminals") => 'terminals_section', N("Text tools") => 'text_tools_section', N("Toys") => 'toys_section', |