]> git.deb.at Git - deb/packages.git/blob - lib/Packages/Sections.pm
html/show.tmpl: Improve Homepage link
[deb/packages.git] / lib / Packages / Sections.pm
1 package Packages::Sections;
2
3 use strict;
4 use warnings;
5
6 use Packages::I18N::Locale;
7 use Exporter;
8 our @ISA = qw( Exporter );
9 our @EXPORT = qw( %sections_descs );
10
11 our %sections_descs = (
12                       admin             => [ N_("Administration Utilities"),
13                                              N_("Utilities to administer system resources, manage user accounts, etc.") ],
14                       base              => [ N_("Base Utilities"),
15                                              N_("Basic needed utilities of every Debian system.") ],
16                       comm              => [ N_("Communication Programs"),
17                                              N_("Software to use your modem in the old fashioned style.") ],
18                       devel             => [ N_("Development"),
19                                              N_("Development utilities, compilers, development environments, libraries, etc.") ],
20                       doc               => [ N_("Documentation"),
21                                              N_("FAQs, HOWTOs and other documents trying to explain everything related to Debian, and software needed to browse documentation (man, info, etc).") ],
22                       editors   => [ N_("Editors"),
23                                      N_("Software to edit files. Programming environments.") ],
24                       electronics       => [ N_("Electronics"),
25                                              N_("Electronics utilities.") ],
26                       embedded  => [ N_("Embedded software"),
27                                              N_("Software suitable for use in embedded applications.") ],
28                       games             => [ N_("Games"),
29                                              N_("Programs to spend a nice time with after all this setting up.") ],
30                       gnome             => [ N_("GNOME"),
31                                              N_("The GNOME desktop environment, a powerful, easy to use set of integrated applications.") ],
32                       graphics  => [ N_("Graphics"),
33                                              N_("Editors, viewers, converters... Everything to become an artist.") ],
34                       hamradio  => [ N_("Ham Radio"),
35                                              N_("Software for ham radio.") ],
36                       interpreters      => [ N_("Interpreters"),
37                                              N_("All kind of interpreters for interpreted languages. Macro processors.") ],
38                       kde               => [ N_("KDE"),
39                                              N_("The K Desktop Environment, a powerful, easy to use set of integrated applications.") ],
40                       libs              => [ N_("Libraries"),
41                                              N_("Libraries to make other programs work. They provide special features to developers.") ],
42                       libdevel  => [ N_("Library development"),
43                                              N_("Libraries necessary for developers to write programs that use them.") ],
44                       mail              => [ N_("Mail"),
45                                              N_("Programs to route, read, and compose E-mail messages.") ],
46                       math              => [ N_("Mathematics"),
47                                              N_("Math software.") ],
48                       misc              => [ N_("Miscellaneous"),
49                                              N_("Miscellaneous utilities that didn\'t fit well anywhere else.") ],
50                       net               => [ N_("Network"),
51                                              N_("Daemons and clients to connect your Debian GNU/Linux system to the world.") ],
52                       news              => [ N_("Newsgroups"),
53                                              N_("Software to access Usenet, to set up news servers, etc.") ],
54                       oldlibs   => [ N_("Old Libraries"),
55                                      N_("Old versions of libraries, kept for backward compatibility with old applications.") ],
56                       otherosfs => [ N_("Other OS\'s and file systems"),
57                                              N_("Software to run programs compiled for other operating system, and to use their filesystems.") ],
58                       perl              => [ N_("Perl"),
59                                              N_("Everything about Perl, an interpreted scripting language.") ],
60                       python    => [ N_("Python"),
61                                      N_("Everything about Python, an interpreted, interactive object oriented language.") ],
62                       science   => [ N_("Science"),
63                                      N_("Basic tools for scientific work") ],
64                       shells    => [ N_("Shells"),
65                                      N_("Command shells. Friendly user interfaces for beginners.") ],
66                       sound             => [ N_("Sound"),
67                                              N_("Utilities to deal with sound: mixers, players, recorders, CD players, etc.") ],
68                       tex               => [ N_("TeX"),
69                                              N_("The famous typesetting software and related programs.") ],
70                       text              => [ N_("Text Processing"),
71                                              N_("Utilities to format and print text documents.") ],
72                       utils             => [ N_("Utilities"),
73                                              N_("Utilities for file/disk manipulation, backup and archive tools, system monitoring, input systems, etc.") ],
74                       virtual   => [ N_("Virtual packages"),
75                                      N_("Virtual packages.") ],
76                       web               => [ N_("Web Software"),
77                                              N_("Web servers, browsers, proxies, download tools etc.") ],
78                       x11               => [ N_("X Window System software"),
79                                              N_("X servers, libraries, fonts, window managers, terminal emulators and many related applications.") ],
80                       'debian-installer' => [ N_("debian-installer udeb packages"),
81                                               N_("Special packages for building customized debian-installer variants. Do not install them on a normal system!") ],
82                       );
83
84
85
86 1;