Blame ABOUT-NLS

Packit 3ff1e7
1 Notes on the Free Translation Project
Packit 3ff1e7
***************************************
Packit 3ff1e7
Packit 3ff1e7
Free software is going international!  The Free Translation Project is
Packit 3ff1e7
a way to get maintainers of free software, translators, and users all
Packit 3ff1e7
together, so that free software will gradually become able to speak many
Packit 3ff1e7
languages.  A few packages already provide translations for their
Packit 3ff1e7
messages.
Packit 3ff1e7
Packit 3ff1e7
   If you found this `ABOUT-NLS' file inside a distribution, you may
Packit 3ff1e7
assume that the distributed package does use GNU `gettext' internally,
Packit 3ff1e7
itself available at your nearest GNU archive site.  But you do _not_
Packit 3ff1e7
need to install GNU `gettext' prior to configuring, installing or using
Packit 3ff1e7
this package with messages translated.
Packit 3ff1e7
Packit 3ff1e7
   Installers will find here some useful hints.  These notes also
Packit 3ff1e7
explain how users should proceed for getting the programs to use the
Packit 3ff1e7
available translations.  They tell how people wanting to contribute and
Packit 3ff1e7
work on translations can contact the appropriate team.
Packit 3ff1e7
Packit 3ff1e7
1.1 INSTALL Matters
Packit 3ff1e7
===================
Packit 3ff1e7
Packit 3ff1e7
Some packages are "localizable" when properly installed; the programs
Packit 3ff1e7
they contain can be made to speak your own native language.  Most such
Packit 3ff1e7
packages use GNU `gettext'.  Other packages have their own ways to
Packit 3ff1e7
internationalization, predating GNU `gettext'.
Packit 3ff1e7
Packit 3ff1e7
   By default, this package will be installed to allow translation of
Packit 3ff1e7
messages.  It will automatically detect whether the system already
Packit 3ff1e7
provides the GNU `gettext' functions.  Installers may use special
Packit 3ff1e7
options at configuration time for changing the default behaviour.  The
Packit 3ff1e7
command:
Packit 3ff1e7
Packit 3ff1e7
     ./configure --disable-nls
Packit 3ff1e7
Packit 3ff1e7
will _totally_ disable translation of messages.
Packit 3ff1e7
Packit 3ff1e7
   When you already have GNU `gettext' installed on your system and run
Packit 3ff1e7
configure without an option for your new package, `configure' will
Packit 3ff1e7
probably detect the previously built and installed `libintl' library
Packit 3ff1e7
and will decide to use it.  If not, you may have to to use the
Packit 3ff1e7
`--with-libintl-prefix' option to tell `configure' where to look for it.
Packit 3ff1e7
Packit 3ff1e7
   Internationalized packages usually have many `po/LL.po' files, where
Packit 3ff1e7
LL gives an ISO 639 two-letter code identifying the language.  Unless
Packit 3ff1e7
translations have been forbidden at `configure' time by using the
Packit 3ff1e7
`--disable-nls' switch, all available translations are installed
Packit 3ff1e7
together with the package.  However, the environment variable `LINGUAS'
Packit 3ff1e7
may be set, prior to configuration, to limit the installed set.
Packit 3ff1e7
`LINGUAS' should then contain a space separated list of two-letter
Packit 3ff1e7
codes, stating which languages are allowed.
Packit 3ff1e7
Packit 3ff1e7
1.2 Using This Package
Packit 3ff1e7
======================
Packit 3ff1e7
Packit 3ff1e7
As a user, if your language has been installed for this package, you
Packit 3ff1e7
only have to set the `LANG' environment variable to the appropriate
Packit 3ff1e7
`LL_CC' combination.  If you happen to have the `LC_ALL' or some other
Packit 3ff1e7
`LC_xxx' environment variables set, you should unset them before
Packit 3ff1e7
setting `LANG', otherwise the setting of `LANG' will not have the
Packit 3ff1e7
desired effect.  Here `LL' is an ISO 639 two-letter language code, and
Packit 3ff1e7
`CC' is an ISO 3166 two-letter country code.  For example, let's
Packit 3ff1e7
suppose that you speak German and live in Germany.  At the shell
Packit 3ff1e7
prompt, merely execute `setenv LANG de_DE' (in `csh'),
Packit 3ff1e7
`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
Packit 3ff1e7
This can be done from your `.login' or `.profile' file, once and for
Packit 3ff1e7
all.
Packit 3ff1e7
Packit 3ff1e7
   You might think that the country code specification is redundant.
Packit 3ff1e7
But in fact, some languages have dialects in different countries.  For
Packit 3ff1e7
example, `de_AT' is used for Austria, and `pt_BR' for Brazil.  The
Packit 3ff1e7
country code serves to distinguish the dialects.
Packit 3ff1e7
Packit 3ff1e7
   The locale naming convention of `LL_CC', with `LL' denoting the
Packit 3ff1e7
language and `CC' denoting the country, is the one use on systems based
Packit 3ff1e7
on GNU libc.  On other systems, some variations of this scheme are
Packit 3ff1e7
used, such as `LL' or `LL_CC.ENCODING'.  You can get the list of
Packit 3ff1e7
locales supported by your system for your language by running the
Packit 3ff1e7
command `locale -a | grep '^LL''.
Packit 3ff1e7
Packit 3ff1e7
   Not all programs have translations for all languages.  By default, an
Packit 3ff1e7
English message is shown in place of a nonexistent translation.  If you
Packit 3ff1e7
understand other languages, you can set up a priority list of languages.
Packit 3ff1e7
This is done through a different environment variable, called
Packit 3ff1e7
`LANGUAGE'.  GNU `gettext' gives preference to `LANGUAGE' over `LANG'
Packit 3ff1e7
for the purpose of message handling, but you still need to have `LANG'
Packit 3ff1e7
set to the primary language; this is required by other parts of the
Packit 3ff1e7
system libraries.  For example, some Swedish users who would rather
Packit 3ff1e7
read translations in German than English for when Swedish is not
Packit 3ff1e7
available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
Packit 3ff1e7
Packit 3ff1e7
   Special advice for Norwegian users: The language code for Norwegian
Packit 3ff1e7
bokma*l changed from `no' to `nb' recently (in 2003).  During the
Packit 3ff1e7
transition period, while some message catalogs for this language are
Packit 3ff1e7
installed under `nb' and some older ones under `no', it's recommended
Packit 3ff1e7
for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
Packit 3ff1e7
older translations are used.
Packit 3ff1e7
Packit 3ff1e7
   In the `LANGUAGE' environment variable, but not in the `LANG'
Packit 3ff1e7
environment variable, `LL_CC' combinations can be abbreviated as `LL'
Packit 3ff1e7
to denote the language's main dialect.  For example, `de' is equivalent
Packit 3ff1e7
to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
Packit 3ff1e7
(Portuguese as spoken in Portugal) in this context.
Packit 3ff1e7
Packit 3ff1e7
1.3 Translating Teams
Packit 3ff1e7
=====================
Packit 3ff1e7
Packit 3ff1e7
For the Free Translation Project to be a success, we need interested
Packit 3ff1e7
people who like their own language and write it well, and who are also
Packit 3ff1e7
able to synergize with other translators speaking the same language.
Packit 3ff1e7
Each translation team has its own mailing list.  The up-to-date list of
Packit 3ff1e7
teams can be found at the Free Translation Project's homepage,
Packit 3ff1e7
`http://translationproject.org/', in the "Teams" area.
Packit 3ff1e7
Packit 3ff1e7
   If you'd like to volunteer to _work_ at translating messages, you
Packit 3ff1e7
should become a member of the translating team for your own language.
Packit 3ff1e7
The subscribing address is _not_ the same as the list itself, it has
Packit 3ff1e7
`-request' appended.  For example, speakers of Swedish can send a
Packit 3ff1e7
message to `sv-request@li.org', having this message body:
Packit 3ff1e7
Packit 3ff1e7
     subscribe
Packit 3ff1e7
Packit 3ff1e7
   Keep in mind that team members are expected to participate
Packit 3ff1e7
_actively_ in translations, or at solving translational difficulties,
Packit 3ff1e7
rather than merely lurking around.  If your team does not exist yet and
Packit 3ff1e7
you want to start one, or if you are unsure about what to do or how to
Packit 3ff1e7
get started, please write to `coordinator@translationproject.org' to
Packit 3ff1e7
reach the coordinator for all translator teams.
Packit 3ff1e7
Packit 3ff1e7
   The English team is special.  It works at improving and uniformizing
Packit 3ff1e7
the terminology in use.  Proven linguistic skills are praised more than
Packit 3ff1e7
programming skills, here.
Packit 3ff1e7
Packit 3ff1e7
1.4 Available Packages
Packit 3ff1e7
======================
Packit 3ff1e7
Packit 3ff1e7
Languages are not equally supported in all packages.  The following
Packit 3ff1e7
matrix shows the current state of internationalization, as of June
Packit 3ff1e7
2010.  The matrix shows, in regard of each package, for which languages
Packit 3ff1e7
PO files have been submitted to translation coordination, with a
Packit 3ff1e7
translation percentage of at least 50%.
Packit 3ff1e7
Packit 3ff1e7
     Ready PO files       af am an ar as ast az be be@latin bg bn_IN bs ca
Packit 3ff1e7
                        +--------------------------------------------------+
Packit 3ff1e7
     a2ps               |                       []                      [] |
Packit 3ff1e7
     aegis              |                                                  |
Packit 3ff1e7
     ant-phone          |                                                  |
Packit 3ff1e7
     anubis             |                                                  |
Packit 3ff1e7
     aspell             |                []                             [] |
Packit 3ff1e7
     bash               |                                                  |
Packit 3ff1e7
     bfd                |                                                  |
Packit 3ff1e7
     bibshelf           |                []                                |
Packit 3ff1e7
     binutils           |                                                  |
Packit 3ff1e7
     bison              |                                                  |
Packit 3ff1e7
     bison-runtime      |                []                                |
Packit 3ff1e7
     bluez-pin          | []             []                                |
Packit 3ff1e7
     bombono-dvd        |                                                  |
Packit 3ff1e7
     buzztard           |                                                  |
Packit 3ff1e7
     cflow              |                                                  |
Packit 3ff1e7
     clisp              |                                                  |
Packit 3ff1e7
     coreutils          |                                   []          [] |
Packit 3ff1e7
     cpio               |                                                  |
Packit 3ff1e7
     cppi               |                                                  |
Packit 3ff1e7
     cpplib             |                                               [] |
Packit 3ff1e7
     cryptsetup         |                                                  |
Packit 3ff1e7
     dfarc              |                                                  |
Packit 3ff1e7
     dialog             |                             []                [] |
Packit 3ff1e7
     dico               |                                                  |
Packit 3ff1e7
     diffutils          |                                               [] |
Packit 3ff1e7
     dink               |                                                  |
Packit 3ff1e7
     doodle             |                                                  |
Packit 3ff1e7
     e2fsprogs          |                                               [] |
Packit 3ff1e7
     enscript           |                                               [] |
Packit 3ff1e7
     exif               |                                                  |
Packit 3ff1e7
     fetchmail          |                                               [] |
Packit 3ff1e7
     findutils          |                                   []             |
Packit 3ff1e7
     flex               |                                               [] |
Packit 3ff1e7
     freedink           |                                                  |
Packit 3ff1e7
     gas                |                                                  |
Packit 3ff1e7
     gawk               |                []                             [] |
Packit 3ff1e7
     gcal               |                                               [] |
Packit 3ff1e7
     gcc                |                                                  |
Packit 3ff1e7
     gettext-examples   | []             []                 []          [] |
Packit 3ff1e7
     gettext-runtime    |                                   []          [] |
Packit 3ff1e7
     gettext-tools      |                                   []          [] |
Packit 3ff1e7
     gip                |                                   []             |
Packit 3ff1e7
     gjay               |                                                  |
Packit 3ff1e7
     gliv               |                                   []             |
Packit 3ff1e7
     glunarclock        |                []                 []             |
Packit 3ff1e7
     gnubiff            |                                                  |
Packit 3ff1e7
     gnucash            |                                               [] |
Packit 3ff1e7
     gnuedu             |                                                  |
Packit 3ff1e7
     gnulib             |                                                  |
Packit 3ff1e7
     gnunet             |                                                  |
Packit 3ff1e7
     gnunet-gtk         |                                                  |
Packit 3ff1e7
     gnutls             |                                                  |
Packit 3ff1e7
     gold               |                                                  |
Packit 3ff1e7
     gpe-aerial         |                                                  |
Packit 3ff1e7
     gpe-beam           |                                                  |
Packit 3ff1e7
     gpe-bluetooth      |                                                  |
Packit 3ff1e7
     gpe-calendar       |                                                  |
Packit 3ff1e7
     gpe-clock          |                []                                |
Packit 3ff1e7
     gpe-conf           |                                                  |
Packit 3ff1e7
     gpe-contacts       |                                                  |
Packit 3ff1e7
     gpe-edit           |                                                  |
Packit 3ff1e7
     gpe-filemanager    |                                                  |
Packit 3ff1e7
     gpe-go             |                                                  |
Packit 3ff1e7
     gpe-login          |                                                  |
Packit 3ff1e7
     gpe-ownerinfo      |                []                                |
Packit 3ff1e7
     gpe-package        |                                                  |
Packit 3ff1e7
     gpe-sketchbook     |                                                  |
Packit 3ff1e7
     gpe-su             |                []                                |
Packit 3ff1e7
     gpe-taskmanager    |                []                                |
Packit 3ff1e7
     gpe-timesheet      |                []                                |
Packit 3ff1e7
     gpe-today          |                []                                |
Packit 3ff1e7
     gpe-todo           |                                                  |
Packit 3ff1e7
     gphoto2            |                                                  |
Packit 3ff1e7
     gprof              |                                   []             |
Packit 3ff1e7
     gpsdrive           |                                                  |
Packit 3ff1e7
     gramadoir          |                                                  |
Packit 3ff1e7
     grep               |                                                  |
Packit 3ff1e7
     grub               |                []                             [] |
Packit 3ff1e7
     gsasl              |                                                  |
Packit 3ff1e7
     gss                |                                                  |
Packit 3ff1e7
     gst-plugins-bad    |                                   []             |
Packit 3ff1e7
     gst-plugins-base   |                                   []             |
Packit 3ff1e7
     gst-plugins-good   |                                   []             |
Packit 3ff1e7
     gst-plugins-ugly   |                                   []             |
Packit 3ff1e7
     gstreamer          | []                                []          [] |
Packit 3ff1e7
     gtick              |                                                  |
Packit 3ff1e7
     gtkam              |                       []                         |
Packit 3ff1e7
     gtkorphan          |                                   []             |
Packit 3ff1e7
     gtkspell           | []             []     []                         |
Packit 3ff1e7
     gutenprint         |                                                  |
Packit 3ff1e7
     hello              |                                   []             |
Packit 3ff1e7
     help2man           |                                                  |
Packit 3ff1e7
     hylafax            |                                                  |
Packit 3ff1e7
     idutils            |                                                  |
Packit 3ff1e7
     indent             |                                   []          [] |
Packit 3ff1e7
     iso_15924          |                                                  |
Packit 3ff1e7
     iso_3166           | []          []        []          []  []   [] [] |
Packit 3ff1e7
     iso_3166_2         |                                                  |
Packit 3ff1e7
     iso_4217           |                                                  |
Packit 3ff1e7
     iso_639            |             [] []     []              []         |
Packit 3ff1e7
     iso_639_3          |                                                  |
Packit 3ff1e7
     jwhois             |                                                  |
Packit 3ff1e7
     kbd                |                                                  |
Packit 3ff1e7
     keytouch           |                                               [] |
Packit 3ff1e7
     keytouch-editor    |                                                  |
Packit 3ff1e7
     keytouch-keyboa... |                                               [] |
Packit 3ff1e7
     klavaro            |          []                                      |
Packit 3ff1e7
     latrine            |                                                  |
Packit 3ff1e7
     ld                 |                                   []             |
Packit 3ff1e7
     leafpad            |                                   []          [] |
Packit 3ff1e7
     libc               |                                   []          [] |
Packit 3ff1e7
     libexif            |                       ()                         |
Packit 3ff1e7
     libextractor       |                                                  |
Packit 3ff1e7
     libgnutls          |                                                  |
Packit 3ff1e7
     libgpewidget       |                                                  |
Packit 3ff1e7
     libgpg-error       |                                                  |
Packit 3ff1e7
     libgphoto2         |                                                  |
Packit 3ff1e7
     libgphoto2_port    |                                                  |
Packit 3ff1e7
     libgsasl           |                                                  |
Packit 3ff1e7
     libiconv           |                                   []             |
Packit 3ff1e7
     libidn             |                                                  |
Packit 3ff1e7
     lifelines          |                                                  |
Packit 3ff1e7
     liferea            |                             []                [] |
Packit 3ff1e7
     lilypond           |                                                  |
Packit 3ff1e7
     linkdr             |          []                                      |
Packit 3ff1e7
     lordsawar          |                                                  |
Packit 3ff1e7
     lprng              |                                                  |
Packit 3ff1e7
     lynx               |                                               [] |
Packit 3ff1e7
     m4                 |                                                  |
Packit 3ff1e7
     mailfromd          |                                                  |
Packit 3ff1e7
     mailutils          |                                                  |
Packit 3ff1e7
     make               |                                                  |
Packit 3ff1e7
     man-db             |                                                  |
Packit 3ff1e7
     man-db-manpages    |                                                  |
Packit 3ff1e7
     minicom            |                                                  |
Packit 3ff1e7
     mkisofs            |                                                  |
Packit 3ff1e7
     myserver           |                                                  |
Packit 3ff1e7
     nano               |                                   []          [] |
Packit 3ff1e7
     opcodes            |                                                  |
Packit 3ff1e7
     parted             |                                                  |
Packit 3ff1e7
     pies               |                                                  |
Packit 3ff1e7
     popt               |                                                  |
Packit 3ff1e7
     psmisc             |                                                  |
Packit 3ff1e7
     pspp               |                                               [] |
Packit 3ff1e7
     pwdutils           |                                                  |
Packit 3ff1e7
     radius             |                                               [] |
Packit 3ff1e7
     recode             |                       []                      [] |
Packit 3ff1e7
     rosegarden         |                                                  |
Packit 3ff1e7
     rpm                |                                                  |
Packit 3ff1e7
     rush               |                                                  |
Packit 3ff1e7
     sarg               |                                                  |
Packit 3ff1e7
     screem             |                                                  |
Packit 3ff1e7
     scrollkeeper       |                    [] []                      [] |
Packit 3ff1e7
     sed                |                []                             [] |
Packit 3ff1e7
     sharutils          |                                   []          [] |
Packit 3ff1e7
     shishi             |                                                  |
Packit 3ff1e7
     skencil            |                                                  |
Packit 3ff1e7
     solfege            |                                                  |
Packit 3ff1e7
     solfege-manual     |                                                  |
Packit 3ff1e7
     soundtracker       |                                                  |
Packit 3ff1e7
     sp                 |                                                  |
Packit 3ff1e7
     sysstat            |                                                  |
Packit 3ff1e7
     tar                |                                   []             |
Packit 3ff1e7
     texinfo            |                                                  |
Packit 3ff1e7
     tin                |                                                  |
Packit 3ff1e7
     unicode-han-tra... |                                                  |
Packit 3ff1e7
     unicode-transla... |                                                  |
Packit 3ff1e7
     util-linux-ng      |                                               [] |
Packit 3ff1e7
     vice               |                                                  |
Packit 3ff1e7
     vmm                |                                                  |
Packit 3ff1e7
     vorbis-tools       |                                                  |
Packit 3ff1e7
     wastesedge         |                                                  |
Packit 3ff1e7
     wdiff              |                                                  |
Packit 3ff1e7
     wget               |                       []                      [] |
Packit 3ff1e7
     wyslij-po          |                                                  |
Packit 3ff1e7
     xchat              |                []     []          []          [] |
Packit 3ff1e7
     xdg-user-dirs      | []    []    [] []     []    []    []  []      [] |
Packit 3ff1e7
     xkeyboard-config   |                                   []          [] |
Packit 3ff1e7
                        +--------------------------------------------------+
Packit 3ff1e7
                          af am an ar as ast az be be@latin bg bn_IN bs ca
Packit 3ff1e7
                           6  0  1  2  3 19   1 10     3    28   3    1 38
Packit 3ff1e7
Packit 3ff1e7
                          crh cs da  de  el en en_GB en_ZA eo es et eu fa
Packit 3ff1e7
                        +-------------------------------------------------+
Packit 3ff1e7
     a2ps               |     [] []  []  []     []            [] []       |
Packit 3ff1e7
     aegis              |        []  []                       []          |
Packit 3ff1e7
     ant-phone          |        []  ()                                   |
Packit 3ff1e7
     anubis             |        []  []                                   |
Packit 3ff1e7
     aspell             |     [] []  []         []            []          |
Packit 3ff1e7
     bash               |     []                           [] []          |
Packit 3ff1e7
     bfd                |                                     []          |
Packit 3ff1e7
     bibshelf           |        []  []                       []          |
Packit 3ff1e7
     binutils           |                                     []          |
Packit 3ff1e7
     bison              |            []  []                               |
Packit 3ff1e7
     bison-runtime      |        []  []  []                      []       |
Packit 3ff1e7
     bluez-pin          |     [] []  []  []                [] []          |
Packit 3ff1e7
     bombono-dvd        |        []                                       |
Packit 3ff1e7
     buzztard           |     [] []  []                                   |
Packit 3ff1e7
     cflow              |        []  []                                   |
Packit 3ff1e7
     clisp              |        []  []     []                []          |
Packit 3ff1e7
     coreutils          |     [] []  []                          []       |
Packit 3ff1e7
     cpio               |                                                 |
Packit 3ff1e7
     cppi               |                                                 |
Packit 3ff1e7
     cpplib             |        []  []                       []          |
Packit 3ff1e7
     cryptsetup         |            []                                   |
Packit 3ff1e7
     dfarc              |        []  []                       []          |
Packit 3ff1e7
     dialog             |        []  []                    [] []    []    |
Packit 3ff1e7
     dico               |                                                 |
Packit 3ff1e7
     diffutils          |     [] []  []  []                [] []          |
Packit 3ff1e7
     dink               |        []  []                       []          |
Packit 3ff1e7
     doodle             |            []                                   |
Packit 3ff1e7
     e2fsprogs          |     []     []                       []          |
Packit 3ff1e7
     enscript           |        []  []         []                        |
Packit 3ff1e7
     exif               |     () []  []                                   |
Packit 3ff1e7
     fetchmail          |     [] []  ()  []     []            []          |
Packit 3ff1e7
     findutils          |     [] []  []                                   |
Packit 3ff1e7
     flex               |            []                       []          |
Packit 3ff1e7
     freedink           |        []  []                       []          |
Packit 3ff1e7
     gas                |                                     []          |
Packit 3ff1e7
     gawk               |        []  []                       []          |
Packit 3ff1e7
     gcal               |                                     []          |
Packit 3ff1e7
     gcc                |            []                       []          |
Packit 3ff1e7
     gettext-examples   |            []  []                [] []          |
Packit 3ff1e7
     gettext-runtime    |        []  []                    [] []          |
Packit 3ff1e7
     gettext-tools      |            []                       []    []    |
Packit 3ff1e7
     gip                |        []  []                       []    []    |
Packit 3ff1e7
     gjay               |            []                                   |
Packit 3ff1e7
     gliv               |     [] []  []                                   |
Packit 3ff1e7
     glunarclock        |        []  []                                   |
Packit 3ff1e7
     gnubiff            |            ()                                   |
Packit 3ff1e7
     gnucash            |     []     ()  ()     ()            ()          |
Packit 3ff1e7
     gnuedu             |        []                           []          |
Packit 3ff1e7
     gnulib             |            []                       []          |
Packit 3ff1e7
     gnunet             |                                                 |
Packit 3ff1e7
     gnunet-gtk         |        []                                       |
Packit 3ff1e7
     gnutls             |     []     []                                   |
Packit 3ff1e7
     gold               |                                     []          |
Packit 3ff1e7
     gpe-aerial         |     [] []  []                       []          |
Packit 3ff1e7
     gpe-beam           |     [] []  []                       []          |
Packit 3ff1e7
     gpe-bluetooth      |        []  []                                   |
Packit 3ff1e7
     gpe-calendar       |        []                                       |
Packit 3ff1e7
     gpe-clock          |     [] []  []                       []          |
Packit 3ff1e7
     gpe-conf           |     [] []  []                                   |
Packit 3ff1e7
     gpe-contacts       |        []  []                       []          |
Packit 3ff1e7
     gpe-edit           |        []  []                                   |
Packit 3ff1e7
     gpe-filemanager    |        []  []                       []          |
Packit 3ff1e7
     gpe-go             |     [] []  []                       []          |
Packit 3ff1e7
     gpe-login          |        []  []                                   |
Packit 3ff1e7
     gpe-ownerinfo      |     [] []  []                       []          |
Packit 3ff1e7
     gpe-package        |        []  []                       []          |
Packit 3ff1e7
     gpe-sketchbook     |     [] []  []                       []          |
Packit 3ff1e7
     gpe-su             |     [] []  []                       []          |
Packit 3ff1e7
     gpe-taskmanager    |     [] []  []                       []          |
Packit 3ff1e7
     gpe-timesheet      |     [] []  []                       []          |
Packit 3ff1e7
     gpe-today          |     [] []  []                       []          |
Packit 3ff1e7
     gpe-todo           |        []  []                       []          |
Packit 3ff1e7
     gphoto2            |     [] []  ()         []            []    []    |
Packit 3ff1e7
     gprof              |        []  []                       []          |
Packit 3ff1e7
     gpsdrive           |        []                           [] []       |
Packit 3ff1e7
     gramadoir          |        []  []                    []             |
Packit 3ff1e7
     grep               |     []                                          |
Packit 3ff1e7
     grub               |        []  []                                   |
Packit 3ff1e7
     gsasl              |            []                                   |
Packit 3ff1e7
     gss                |                                                 |
Packit 3ff1e7
     gst-plugins-bad    |     [] []  []                       []    []    |
Packit 3ff1e7
     gst-plugins-base   |     [] []  []                       []    []    |
Packit 3ff1e7
     gst-plugins-good   |     [] []  []  []                   []    []    |
Packit 3ff1e7
     gst-plugins-ugly   |     [] []  []  []                   []    []    |
Packit 3ff1e7
     gstreamer          |     [] []  []                       []    []    |
Packit 3ff1e7
     gtick              |        []  ()                    []             |
Packit 3ff1e7
     gtkam              |     [] []  ()                    [] []          |
Packit 3ff1e7
     gtkorphan          |     [] []  []                    []             |
Packit 3ff1e7
     gtkspell           |     [] []  []  []                [] []    []    |
Packit 3ff1e7
     gutenprint         |        []  []         []                        |
Packit 3ff1e7
     hello              |        []  []                    [] []          |
Packit 3ff1e7
     help2man           |            []                                   |
Packit 3ff1e7
     hylafax            |            []                       []          |
Packit 3ff1e7
     idutils            |        []  []                                   |
Packit 3ff1e7
     indent             |     [] []  []                    [] [] [] []    |
Packit 3ff1e7
     iso_15924          |        []      ()                [] []          |
Packit 3ff1e7
     iso_3166           | []  [] []  []  ()                [] [] [] ()    |
Packit 3ff1e7
     iso_3166_2         |                ()                               |
Packit 3ff1e7
     iso_4217           |     [] []  []  ()                   [] []       |
Packit 3ff1e7
     iso_639            | []  [] []  []  ()                [] []          |
Packit 3ff1e7
     iso_639_3          | []                                              |
Packit 3ff1e7
     jwhois             |                                     []          |
Packit 3ff1e7
     kbd                |     [] []  []  []                   []          |
Packit 3ff1e7
     keytouch           |        []  []                                   |
Packit 3ff1e7
     keytouch-editor    |        []  []                                   |
Packit 3ff1e7
     keytouch-keyboa... |        []                                       |
Packit 3ff1e7
     klavaro            |     [] []  []                    []             |
Packit 3ff1e7
     latrine            |        []  ()                                   |
Packit 3ff1e7
     ld                 |        []                           []          |
Packit 3ff1e7
     leafpad            |     [] []  []  []                   []    []    |
Packit 3ff1e7
     libc               |     [] []  []                       []          |
Packit 3ff1e7
     libexif            |        []  []         ()                        |
Packit 3ff1e7
     libextractor       |                                                 |
Packit 3ff1e7
     libgnutls          |     []                                          |
Packit 3ff1e7
     libgpewidget       |        []  []                                   |
Packit 3ff1e7
     libgpg-error       |     []     []                                   |
Packit 3ff1e7
     libgphoto2         |        []  ()                                   |
Packit 3ff1e7
     libgphoto2_port    |        []  ()                             []    |
Packit 3ff1e7
     libgsasl           |                                                 |
Packit 3ff1e7
     libiconv           |     [] []  []                    []    []       |
Packit 3ff1e7
     libidn             |     []     []                    []             |
Packit 3ff1e7
     lifelines          |        []  ()                                   |
Packit 3ff1e7
     liferea            |     []     []  []                   []    []    |
Packit 3ff1e7
     lilypond           |     []     []                       []          |
Packit 3ff1e7
     linkdr             |        []  []                       []          |
Packit 3ff1e7
     lordsawar          |        []                                       |
Packit 3ff1e7
     lprng              |                                                 |
Packit 3ff1e7
     lynx               |     [] []  []                          []       |
Packit 3ff1e7
     m4                 |     [] []  []  []                               |
Packit 3ff1e7
     mailfromd          |                                                 |
Packit 3ff1e7
     mailutils          |                                     []          |
Packit 3ff1e7
     make               |        []  []                       []          |
Packit 3ff1e7
     man-db             |                                                 |
Packit 3ff1e7
     man-db-manpages    |                                                 |
Packit 3ff1e7
     minicom            |     [] []  []                       []          |
Packit 3ff1e7
     mkisofs            |                                                 |
Packit 3ff1e7
     myserver           |                                                 |
Packit 3ff1e7
     nano               |            []                       []    []    |
Packit 3ff1e7
     opcodes            |            []                       []          |
Packit 3ff1e7
     parted             |     []     []                                   |
Packit 3ff1e7
     pies               |                                                 |
Packit 3ff1e7
     popt               |     [] []  []                    [] []          |
Packit 3ff1e7
     psmisc             |     []     []                             []    |
Packit 3ff1e7
     pspp               |                                     []          |
Packit 3ff1e7
     pwdutils           |        []                                       |
Packit 3ff1e7
     radius             |                                     []          |
Packit 3ff1e7
     recode             |     [] []  []  []                [] []          |
Packit 3ff1e7
     rosegarden         |     ()     ()                       ()          |
Packit 3ff1e7
     rpm                |        []  []                       []          |
Packit 3ff1e7
     rush               |                                                 |
Packit 3ff1e7
     sarg               |                                                 |
Packit 3ff1e7
     screem             |                                                 |
Packit 3ff1e7
     scrollkeeper       |     [] []  []         []            []          |
Packit 3ff1e7
     sed                |     []     []  []                [] [] []       |
Packit 3ff1e7
     sharutils          |        []  []                       [] []       |
Packit 3ff1e7
     shishi             |                                                 |
Packit 3ff1e7
     skencil            |        []  ()                       []          |
Packit 3ff1e7
     solfege            |            []                    []    []       |
Packit 3ff1e7
     solfege-manual     |                                  []    []       |
Packit 3ff1e7
     soundtracker       |        []  []                       []          |
Packit 3ff1e7
     sp                 |            []                                   |
Packit 3ff1e7
     sysstat            |        []  []                             []    |
Packit 3ff1e7
     tar                |     []     []                          [] []    |
Packit 3ff1e7
     texinfo            |            []                    [] []          |
Packit 3ff1e7
     tin                |            []                          []       |
Packit 3ff1e7
     unicode-han-tra... |                                                 |
Packit 3ff1e7
     unicode-transla... |                                                 |
Packit 3ff1e7
     util-linux-ng      |     [] []  []                       []          |
Packit 3ff1e7
     vice               |        ()  ()                                   |
Packit 3ff1e7
     vmm                |            []                                   |
Packit 3ff1e7
     vorbis-tools       |     []                           []             |
Packit 3ff1e7
     wastesedge         |        []                                       |
Packit 3ff1e7
     wdiff              |            []                       []          |
Packit 3ff1e7
     wget               |     []     []                          []       |
Packit 3ff1e7
     wyslij-po          |                                                 |
Packit 3ff1e7
     xchat              |     []     []  []                   [] []       |
Packit 3ff1e7
     xdg-user-dirs      | []  [] []  []  []                [] [] [] []    |
Packit 3ff1e7
     xkeyboard-config   | []  [] []  []                    [] []          |
Packit 3ff1e7
                        +-------------------------------------------------+
Packit 3ff1e7
                          crh cs da  de  el en en_GB en_ZA eo es et eu fa
Packit 3ff1e7
                           5  64 105 117 18  1   8     0   28 89 18 19  0
Packit 3ff1e7
Packit 3ff1e7
                          fi  fr  ga gl gu he hi hr hu hy id  is it ja ka kn
Packit 3ff1e7
                        +----------------------------------------------------+
Packit 3ff1e7
     a2ps               | []  []                          []        []       |
Packit 3ff1e7
     aegis              |     []                                 []          |
Packit 3ff1e7
     ant-phone          |     []                                 []          |
Packit 3ff1e7
     anubis             | []  []                          []     []          |
Packit 3ff1e7
     aspell             |     []  []                      []     []          |
Packit 3ff1e7
     bash               | []  []                          []        []       |
Packit 3ff1e7
     bfd                | []  []                          []                 |
Packit 3ff1e7
     bibshelf           | []  []  []                      []     []          |
Packit 3ff1e7
     binutils           | []  []                          []                 |
Packit 3ff1e7
     bison              | []  []  []                      []                 |
Packit 3ff1e7
     bison-runtime      | []  []  []                      []     [] []       |
Packit 3ff1e7
     bluez-pin          | []  []  []                [] [] []  []    []       |
Packit 3ff1e7
     bombono-dvd        | []                                                 |
Packit 3ff1e7
     buzztard           |                                 []                 |
Packit 3ff1e7
     cflow              | []      []                      []                 |
Packit 3ff1e7
     clisp              |     []                                             |
Packit 3ff1e7
     coreutils          |     []  []                []    []     []          |
Packit 3ff1e7
     cpio               | []  []  []                      []                 |
Packit 3ff1e7
     cppi               | []  []                                             |
Packit 3ff1e7
     cpplib             | []  []                          []                 |
Packit 3ff1e7
     cryptsetup         |     []                          []     []          |
Packit 3ff1e7
     dfarc              | []  []                                 []          |
Packit 3ff1e7
     dialog             |     []  [] []                   []  [] [] []       |
Packit 3ff1e7
     dico               |                                                    |
Packit 3ff1e7
     diffutils          | []  []  [] []    []       []    []     [] []       |
Packit 3ff1e7
     dink               |     []                                             |
Packit 3ff1e7
     doodle             |         []                             []          |
Packit 3ff1e7
     e2fsprogs          |     []                          []                 |
Packit 3ff1e7
     enscript           |     []  []             []       []                 |
Packit 3ff1e7
     exif               | []  []                          []  [] [] []       |
Packit 3ff1e7
     fetchmail          |     []                          []     [] []       |
Packit 3ff1e7
     findutils          | []  []  []                []    []     []          |
Packit 3ff1e7
     flex               | []  []  []                                         |
Packit 3ff1e7
     freedink           | []  []                          []                 |
Packit 3ff1e7
     gas                |     []                          []                 |
Packit 3ff1e7
     gawk               |     []  []       []             []     () []       |
Packit 3ff1e7
     gcal               |     []                                             |
Packit 3ff1e7
     gcc                |                                 []                 |
Packit 3ff1e7
     gettext-examples   | []  []  []                []    []     [] []       |
Packit 3ff1e7
     gettext-runtime    | []  []  []                      []     [] []       |
Packit 3ff1e7
     gettext-tools      |     []                          []     [] []       |
Packit 3ff1e7
     gip                | []  []  [] []                   []        []       |
Packit 3ff1e7
     gjay               | []                                                 |
Packit 3ff1e7
     gliv               | []  ()                                             |
Packit 3ff1e7
     glunarclock        | []      []                []    []                 |
Packit 3ff1e7
     gnubiff            |     ()                          []     ()          |
Packit 3ff1e7
     gnucash            | ()  ()           ()       ()           () []       |
Packit 3ff1e7
     gnuedu             |     []                                 []          |
Packit 3ff1e7
     gnulib             | []  []  []                []           [] []       |
Packit 3ff1e7
     gnunet             |                                                    |
Packit 3ff1e7
     gnunet-gtk         |     []                                             |
Packit 3ff1e7
     gnutls             |     []                                 []          |
Packit 3ff1e7
     gold               | []                              []                 |
Packit 3ff1e7
     gpe-aerial         | []  []                          []                 |
Packit 3ff1e7
     gpe-beam           | []  []                          []        []       |
Packit 3ff1e7
     gpe-bluetooth      | []                              []     [] []       |
Packit 3ff1e7
     gpe-calendar       | []                                        []       |
Packit 3ff1e7
     gpe-clock          | []  []                    []    []        []       |
Packit 3ff1e7
     gpe-conf           | []  []                          []        []       |
Packit 3ff1e7
     gpe-contacts       | []  []                          []        []       |
Packit 3ff1e7
     gpe-edit           | []                              []        []       |
Packit 3ff1e7
     gpe-filemanager    | []                        []    []        []       |
Packit 3ff1e7
     gpe-go             | []  []                    []    []        []       |
Packit 3ff1e7
     gpe-login          | []                              []        []       |
Packit 3ff1e7
     gpe-ownerinfo      | []  []                    []    []        []       |
Packit 3ff1e7
     gpe-package        | []                              []        []       |
Packit 3ff1e7
     gpe-sketchbook     | []  []                          []        []       |
Packit 3ff1e7
     gpe-su             | []  []     []             []    []        []       |
Packit 3ff1e7
     gpe-taskmanager    | []  []                    []    []        []       |
Packit 3ff1e7
     gpe-timesheet      | []  []  []                      []        []       |
Packit 3ff1e7
     gpe-today          | []  []  [] []             []    []        []       |
Packit 3ff1e7
     gpe-todo           | []                              []        []       |
Packit 3ff1e7
     gphoto2            | []  []                    []    []     [] []       |
Packit 3ff1e7
     gprof              | []  []  []                      []                 |
Packit 3ff1e7
     gpsdrive           |            []                   []     []          |
Packit 3ff1e7
     gramadoir          |     []  []                      []                 |
Packit 3ff1e7
     grep               | []                                     []          |
Packit 3ff1e7
     grub               | []                        []    []     []          |
Packit 3ff1e7
     gsasl              | []  []  []                      []     []          |
Packit 3ff1e7
     gss                | []  []  []                      []     []          |
Packit 3ff1e7
     gst-plugins-bad    | []  []                    []    []     [] []       |
Packit 3ff1e7
     gst-plugins-base   | []  []                    []    []     [] []       |
Packit 3ff1e7
     gst-plugins-good   | []  []                    []    []     [] []       |
Packit 3ff1e7
     gst-plugins-ugly   | []  []                    []    []     [] []       |
Packit 3ff1e7
     gstreamer          | []  []                    []    []     []          |
Packit 3ff1e7
     gtick              | []  []  []                      []     []          |
Packit 3ff1e7
     gtkam              |     []                    []    []     [] []       |
Packit 3ff1e7
     gtkorphan          |     []                          []     []          |
Packit 3ff1e7
     gtkspell           | []  []  [] []             [] [] []     [] []       |
Packit 3ff1e7
     gutenprint         | []  []                    []           []          |
Packit 3ff1e7
     hello              | []      []                      []                 |
Packit 3ff1e7
     help2man           | []  []                                             |
Packit 3ff1e7
     hylafax            |                                 []                 |
Packit 3ff1e7
     idutils            | []  []  []                []    []     []          |
Packit 3ff1e7
     indent             | []  []  [] []             []    []     [] []       |
Packit 3ff1e7
     iso_15924          | []  ()                          []     []          |
Packit 3ff1e7
     iso_3166           | []  ()  [] [] [] [] [] [] []    []     [] []       |
Packit 3ff1e7
     iso_3166_2         |     ()                    []    []     []          |
Packit 3ff1e7
     iso_4217           | []  ()                    []    []     [] []       |
Packit 3ff1e7
     iso_639            | []  ()  []    []          []    []     [] []    [] |
Packit 3ff1e7
     iso_639_3          |     ()                                 []       [] |
Packit 3ff1e7
     jwhois             | []  []                    []    []     []          |
Packit 3ff1e7
     kbd                |     []                          []                 |
Packit 3ff1e7
     keytouch           | []  []  []                []    []     []          |
Packit 3ff1e7
     keytouch-editor    | []      []                []    []     []          |
Packit 3ff1e7
     keytouch-keyboa... | []      []                []    []     []          |
Packit 3ff1e7
     klavaro            |            []             []                       |
Packit 3ff1e7
     latrine            | []                              []     []          |
Packit 3ff1e7
     ld                 | []  []  []                      []                 |
Packit 3ff1e7
     leafpad            | []  []  []       []       []    []     [] ()       |
Packit 3ff1e7
     libc               | []  []     []                   []        []       |
Packit 3ff1e7
     libexif            |                                        []          |
Packit 3ff1e7
     libextractor       |                                                    |
Packit 3ff1e7
     libgnutls          |     []                                 []          |
Packit 3ff1e7
     libgpewidget       | []      []                      []        []       |
Packit 3ff1e7
     libgpg-error       |     []                                 []          |
Packit 3ff1e7
     libgphoto2         |     []                                 [] []       |
Packit 3ff1e7
     libgphoto2_port    |     []                                 [] []       |
Packit 3ff1e7
     libgsasl           | []  []  []                      []     []          |
Packit 3ff1e7
     libiconv           | []  []  []                      []     [] []       |
Packit 3ff1e7
     libidn             | []  []                          []     []          |
Packit 3ff1e7
     lifelines          |     ()                                             |
Packit 3ff1e7
     liferea            |     []                    []           [] []       |
Packit 3ff1e7
     lilypond           | []  []                                             |
Packit 3ff1e7
     linkdr             | []               []    [] []           []          |
Packit 3ff1e7
     lordsawar          |                                                    |
Packit 3ff1e7
     lprng              |                                 []                 |
Packit 3ff1e7
     lynx               |     []                    []    []     [] []       |
Packit 3ff1e7
     m4                 | []  []  [] []                   []        []       |
Packit 3ff1e7
     mailfromd          |                                                    |
Packit 3ff1e7
     mailutils          |     []                          []                 |
Packit 3ff1e7
     make               | []  []  [] []    []    []       []     [] []       |
Packit 3ff1e7
     man-db             |                                 []     []          |
Packit 3ff1e7
     man-db-manpages    |                                 []                 |
Packit 3ff1e7
     minicom            | []  []                    []    []        []       |
Packit 3ff1e7
     mkisofs            | []  []                          []     []          |
Packit 3ff1e7
     myserver           |                                                    |
Packit 3ff1e7
     nano               | []  []  [] []             []           []          |
Packit 3ff1e7
     opcodes            | []  []  []                      []                 |
Packit 3ff1e7
     parted             |     []                          []     [] []       |
Packit 3ff1e7
     pies               |                                                    |
Packit 3ff1e7
     popt               | []  []  [] []             []    []  [] [] []       |
Packit 3ff1e7
     psmisc             | []  []                          []                 |
Packit 3ff1e7
     pspp               |                                                    |
Packit 3ff1e7
     pwdutils           |     []                          []                 |
Packit 3ff1e7
     radius             |     []                          []                 |
Packit 3ff1e7
     recode             | []  []  [] []    []       []    []     []          |
Packit 3ff1e7
     rosegarden         | ()  ()                          ()     () ()       |
Packit 3ff1e7
     rpm                |                                 []        []       |
Packit 3ff1e7
     rush               |                                                    |
Packit 3ff1e7
     sarg               |     []                                             |
Packit 3ff1e7
     screem             |                                        [] []       |
Packit 3ff1e7
     scrollkeeper       | []                        []    []     []          |
Packit 3ff1e7
     sed                | []  []  [] []             []    []     [] []       |
Packit 3ff1e7
     sharutils          | []  []  []                []    []     [] []       |
Packit 3ff1e7
     shishi             |     []                                             |
Packit 3ff1e7
     skencil            |     []                                             |
Packit 3ff1e7
     solfege            | []  []     []                          []          |
Packit 3ff1e7
     solfege-manual     |     []     []                                      |
Packit 3ff1e7
     soundtracker       |     []                                 []          |
Packit 3ff1e7
     sp                 |     []                                    ()       |
Packit 3ff1e7
     sysstat            | []  []                          []     [] []       |
Packit 3ff1e7
     tar                | []  []  []                []    []     [] []       |
Packit 3ff1e7
     texinfo            |     []                          []     [] []       |
Packit 3ff1e7
     tin                |     []                                             |
Packit 3ff1e7
     unicode-han-tra... |                                                    |
Packit 3ff1e7
     unicode-transla... |     []  []                                         |
Packit 3ff1e7
     util-linux-ng      | []  []                    []    []     [] []       |
Packit 3ff1e7
     vice               |     ()                    ()           ()          |
Packit 3ff1e7
     vmm                |     []                                             |
Packit 3ff1e7
     vorbis-tools       |                                 []                 |
Packit 3ff1e7
     wastesedge         |     ()                                 ()          |
Packit 3ff1e7
     wdiff              | []                                                 |
Packit 3ff1e7
     wget               | []  []  []             [] []    []     [] []       |
Packit 3ff1e7
     wyslij-po          | []  []                          []                 |
Packit 3ff1e7
     xchat              | []  []        []    []    []    []     [] []    [] |
Packit 3ff1e7
     xdg-user-dirs      | []  []  [] [] [] [] []    []    []  [] [] []    [] |
Packit 3ff1e7
     xkeyboard-config   | []  []                    []    []     []          |
Packit 3ff1e7
                        +----------------------------------------------------+
Packit 3ff1e7
                          fi  fr  ga gl gu he hi hr hu hy id  is it ja ka kn
Packit 3ff1e7
                          105 121 53 20  4  8  3  5 53  2 120  5 84 67  0  4
Packit 3ff1e7
Packit 3ff1e7
                          ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne
Packit 3ff1e7
                        +-----------------------------------------------+
Packit 3ff1e7
     a2ps               |                               []              |
Packit 3ff1e7
     aegis              |                                               |
Packit 3ff1e7
     ant-phone          |                                               |
Packit 3ff1e7
     anubis             |                               []    []        |
Packit 3ff1e7
     aspell             |                         []                    |
Packit 3ff1e7
     bash               |                                               |
Packit 3ff1e7
     bfd                |                                               |
Packit 3ff1e7
     bibshelf           |                []             []              |
Packit 3ff1e7
     binutils           |                                               |
Packit 3ff1e7
     bison              |                               []              |
Packit 3ff1e7
     bison-runtime      |       []    [] []             []    []        |
Packit 3ff1e7
     bluez-pin          |    [] []    [] []             []              |
Packit 3ff1e7
     bombono-dvd        |                                               |
Packit 3ff1e7
     buzztard           |                                               |
Packit 3ff1e7
     cflow              |                                               |
Packit 3ff1e7
     clisp              |                                               |
Packit 3ff1e7
     coreutils          |          []                                   |
Packit 3ff1e7
     cpio               |                                               |
Packit 3ff1e7
     cppi               |                                               |
Packit 3ff1e7
     cpplib             |                                               |
Packit 3ff1e7
     cryptsetup         |                                               |
Packit 3ff1e7
     dfarc              |                   []                          |
Packit 3ff1e7
     dialog             |    []       [] []             []    []        |
Packit 3ff1e7
     dico               |                                               |
Packit 3ff1e7
     diffutils          |                []             []              |
Packit 3ff1e7
     dink               |                                               |
Packit 3ff1e7
     doodle             |                                               |
Packit 3ff1e7
     e2fsprogs          |                                               |
Packit 3ff1e7
     enscript           |                                               |
Packit 3ff1e7
     exif               |                []                             |
Packit 3ff1e7
     fetchmail          |                                               |
Packit 3ff1e7
     findutils          |                                               |
Packit 3ff1e7
     flex               |                                               |
Packit 3ff1e7
     freedink           |                                     []        |
Packit 3ff1e7
     gas                |                                               |
Packit 3ff1e7
     gawk               |                                               |
Packit 3ff1e7
     gcal               |                                               |
Packit 3ff1e7
     gcc                |                                               |
Packit 3ff1e7
     gettext-examples   |       []       []             [] []           |
Packit 3ff1e7
     gettext-runtime    | []                                            |
Packit 3ff1e7
     gettext-tools      | []                                            |
Packit 3ff1e7
     gip                |                []             []              |
Packit 3ff1e7
     gjay               |                                               |
Packit 3ff1e7
     gliv               |                                               |
Packit 3ff1e7
     glunarclock        |                []                             |
Packit 3ff1e7
     gnubiff            |                                               |
Packit 3ff1e7
     gnucash            | ()          ()                      ()     () |
Packit 3ff1e7
     gnuedu             |                                               |
Packit 3ff1e7
     gnulib             |                                               |
Packit 3ff1e7
     gnunet             |                                               |
Packit 3ff1e7
     gnunet-gtk         |                                               |
Packit 3ff1e7
     gnutls             |                               []              |
Packit 3ff1e7
     gold               |                                               |
Packit 3ff1e7
     gpe-aerial         |                []                             |
Packit 3ff1e7
     gpe-beam           |                []                             |
Packit 3ff1e7
     gpe-bluetooth      |                []                []           |
Packit 3ff1e7
     gpe-calendar       |                []                             |
Packit 3ff1e7
     gpe-clock          | []    []       []             [] []           |
Packit 3ff1e7
     gpe-conf           | []             []                             |
Packit 3ff1e7
     gpe-contacts       | []             []                             |
Packit 3ff1e7
     gpe-edit           |                []                             |
Packit 3ff1e7
     gpe-filemanager    | []             []                             |
Packit 3ff1e7
     gpe-go             | []             []                []           |
Packit 3ff1e7
     gpe-login          |                []                             |
Packit 3ff1e7
     gpe-ownerinfo      |                []             []              |
Packit 3ff1e7
     gpe-package        | []             []                             |
Packit 3ff1e7
     gpe-sketchbook     | []             []                             |
Packit 3ff1e7
     gpe-su             | []    []       []             [] [] []        |
Packit 3ff1e7
     gpe-taskmanager    | [] [] []       []             [] []           |
Packit 3ff1e7
     gpe-timesheet      |                []             []              |
Packit 3ff1e7
     gpe-today          |       []       []             [] []           |
Packit 3ff1e7
     gpe-todo           |                []                   []        |
Packit 3ff1e7
     gphoto2            |                                               |
Packit 3ff1e7
     gprof              |                               []              |
Packit 3ff1e7
     gpsdrive           |                                               |
Packit 3ff1e7
     gramadoir          |                                               |
Packit 3ff1e7
     grep               |                                               |
Packit 3ff1e7
     grub               |                                               |
Packit 3ff1e7
     gsasl              |                                               |
Packit 3ff1e7
     gss                |                                               |
Packit 3ff1e7
     gst-plugins-bad    |             [] []                [] []        |
Packit 3ff1e7
     gst-plugins-base   |             [] []                             |
Packit 3ff1e7
     gst-plugins-good   |                []                []           |
Packit 3ff1e7
     gst-plugins-ugly   |             [] []             [] [] []        |
Packit 3ff1e7
     gstreamer          |                                               |
Packit 3ff1e7
     gtick              |                                               |
Packit 3ff1e7
     gtkam              |                                     []        |
Packit 3ff1e7
     gtkorphan          |                []                      []     |
Packit 3ff1e7
     gtkspell           |       []    [] []       []    []    [] []     |
Packit 3ff1e7
     gutenprint         |                                               |
Packit 3ff1e7
     hello              | []             []             []              |
Packit 3ff1e7
     help2man           |                                               |
Packit 3ff1e7
     hylafax            |                                               |
Packit 3ff1e7
     idutils            |                                               |
Packit 3ff1e7
     indent             |                                               |
Packit 3ff1e7
     iso_15924          |             [] []                             |
Packit 3ff1e7
     iso_3166           | [] []       () [] [] []    []       []        |
Packit 3ff1e7
     iso_3166_2         |                                               |
Packit 3ff1e7
     iso_4217           |             []                      []        |
Packit 3ff1e7
     iso_639            |                      []    []                 |
Packit 3ff1e7
     iso_639_3          |                            []                 |
Packit 3ff1e7
     jwhois             |                []                             |
Packit 3ff1e7
     kbd                |                                               |
Packit 3ff1e7
     keytouch           |                []                             |
Packit 3ff1e7
     keytouch-editor    |                []                             |
Packit 3ff1e7
     keytouch-keyboa... |                []                             |
Packit 3ff1e7
     klavaro            |                                     []        |
Packit 3ff1e7
     latrine            |                []                             |
Packit 3ff1e7
     ld                 |                                               |
Packit 3ff1e7
     leafpad            | []          [] []                             |
Packit 3ff1e7
     libc               | []                                            |
Packit 3ff1e7
     libexif            |                                               |
Packit 3ff1e7
     libextractor       |                                               |
Packit 3ff1e7
     libgnutls          |                               []              |
Packit 3ff1e7
     libgpewidget       |                []             []              |
Packit 3ff1e7
     libgpg-error       |                                               |
Packit 3ff1e7
     libgphoto2         |                                               |
Packit 3ff1e7
     libgphoto2_port    |                                               |
Packit 3ff1e7
     libgsasl           |                                               |
Packit 3ff1e7
     libiconv           |                                               |
Packit 3ff1e7
     libidn             |                                               |
Packit 3ff1e7
     lifelines          |                                               |
Packit 3ff1e7
     liferea            |                                               |
Packit 3ff1e7
     lilypond           |                                               |
Packit 3ff1e7
     linkdr             |                                               |
Packit 3ff1e7
     lordsawar          |                                               |
Packit 3ff1e7
     lprng              |                                               |
Packit 3ff1e7
     lynx               |                                               |
Packit 3ff1e7
     m4                 |                                               |
Packit 3ff1e7
     mailfromd          |                                               |
Packit 3ff1e7
     mailutils          |                                               |
Packit 3ff1e7
     make               | []                                            |
Packit 3ff1e7
     man-db             |                                               |
Packit 3ff1e7
     man-db-manpages    |                                               |
Packit 3ff1e7
     minicom            |                                     []        |
Packit 3ff1e7
     mkisofs            |                                               |
Packit 3ff1e7
     myserver           |                                               |
Packit 3ff1e7
     nano               |                               []    []        |
Packit 3ff1e7
     opcodes            |                                               |
Packit 3ff1e7
     parted             |                                               |
Packit 3ff1e7
     pies               |                                               |
Packit 3ff1e7
     popt               | []             []                   []        |
Packit 3ff1e7
     psmisc             |                                               |
Packit 3ff1e7
     pspp               |                                               |
Packit 3ff1e7
     pwdutils           |                                               |
Packit 3ff1e7
     radius             |                                               |
Packit 3ff1e7
     recode             |                                               |
Packit 3ff1e7
     rosegarden         |                                               |
Packit 3ff1e7
     rpm                |                                               |
Packit 3ff1e7
     rush               |                                               |
Packit 3ff1e7
     sarg               |                                               |
Packit 3ff1e7
     screem             |                                               |
Packit 3ff1e7
     scrollkeeper       |                                     []     [] |
Packit 3ff1e7
     sed                |                                               |
Packit 3ff1e7
     sharutils          |                                               |
Packit 3ff1e7
     shishi             |                                               |
Packit 3ff1e7
     skencil            |                                               |
Packit 3ff1e7
     solfege            |                                     []        |
Packit 3ff1e7
     solfege-manual     |                                               |
Packit 3ff1e7
     soundtracker       |                                               |
Packit 3ff1e7
     sp                 |                                               |
Packit 3ff1e7
     sysstat            |                []                             |
Packit 3ff1e7
     tar                |       []                                      |
Packit 3ff1e7
     texinfo            |                                     []        |
Packit 3ff1e7
     tin                |                                               |
Packit 3ff1e7
     unicode-han-tra... |                                               |
Packit 3ff1e7
     unicode-transla... |                                               |
Packit 3ff1e7
     util-linux-ng      |                                               |
Packit 3ff1e7
     vice               |                                               |
Packit 3ff1e7
     vmm                |                                               |
Packit 3ff1e7
     vorbis-tools       |                                               |
Packit 3ff1e7
     wastesedge         |                                               |
Packit 3ff1e7
     wdiff              |                                               |
Packit 3ff1e7
     wget               |             []                                |
Packit 3ff1e7
     wyslij-po          |                                               |
Packit 3ff1e7
     xchat              | []             [] []                          |
Packit 3ff1e7
     xdg-user-dirs      | [] []       [] [] []       []       [] []     |
Packit 3ff1e7
     xkeyboard-config   | []    []    []                                |
Packit 3ff1e7
                        +-----------------------------------------------+
Packit 3ff1e7
                          ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne
Packit 3ff1e7
                          20  5 10  1 13 48  4  2  2  4 24 10 20  3   1
Packit 3ff1e7
Packit 3ff1e7
                          nl  nn or pa pl  ps pt pt_BR ro ru rw sk sl sq sr
Packit 3ff1e7
                        +---------------------------------------------------+
Packit 3ff1e7
     a2ps               | []           []     []  []   [] []       []    [] |
Packit 3ff1e7
     aegis              | []                      []      []                |
Packit 3ff1e7
     ant-phone          |                         []   []                   |
Packit 3ff1e7
     anubis             | []           []                 []                |
Packit 3ff1e7
     aspell             | []                           [] []    [] []       |
Packit 3ff1e7
     bash               | []                                    []          |
Packit 3ff1e7
     bfd                |                                 []                |
Packit 3ff1e7
     bibshelf           | []  []                                            |
Packit 3ff1e7
     binutils           |                                 []    []          |
Packit 3ff1e7
     bison              | []           []                 []                |
Packit 3ff1e7
     bison-runtime      | []           []     []  []   [] []       []       |
Packit 3ff1e7
     bluez-pin          | []           []         []   [] []    [] []    [] |
Packit 3ff1e7
     bombono-dvd        |     []                          ()                |
Packit 3ff1e7
     buzztard           | []  []                                            |
Packit 3ff1e7
     cflow              |              []                                   |
Packit 3ff1e7
     clisp              | []                              []                |
Packit 3ff1e7
     coreutils          | []           []     []  []      []       []       |
Packit 3ff1e7
     cpio               | []           []                 []                |
Packit 3ff1e7
     cppi               |              []                                   |
Packit 3ff1e7
     cpplib             | []                                                |
Packit 3ff1e7
     cryptsetup         | []                                                |
Packit 3ff1e7
     dfarc              |              []                                   |
Packit 3ff1e7
     dialog             | []           []         []      []                |
Packit 3ff1e7
     dico               |              []                                   |
Packit 3ff1e7
     diffutils          | []           []         []   [] []             [] |
Packit 3ff1e7
     dink               | ()                                                |
Packit 3ff1e7
     doodle             | []                                          []    |
Packit 3ff1e7
     e2fsprogs          | []           []                                   |
Packit 3ff1e7
     enscript           | []                      []   [] []       []       |
Packit 3ff1e7
     exif               | []           []              [] ()    []          |
Packit 3ff1e7
     fetchmail          | []           []                 []          []    |
Packit 3ff1e7
     findutils          | []           []     []          []       []       |
Packit 3ff1e7
     flex               | []           []         []   [] []                |
Packit 3ff1e7
     freedink           | []           []                                   |
Packit 3ff1e7
     gas                |                                                   |
Packit 3ff1e7
     gawk               | []           []         []   []                   |
Packit 3ff1e7
     gcal               |                                                   |
Packit 3ff1e7
     gcc                |                                                [] |
Packit 3ff1e7
     gettext-examples   | []           []     []       [] []    [] []    [] |
Packit 3ff1e7
     gettext-runtime    | []  []       []     []       [] []    [] []    [] |
Packit 3ff1e7
     gettext-tools      |              []              [] []    [] []    [] |
Packit 3ff1e7
     gip                | []           []                 []    []       [] |
Packit 3ff1e7
     gjay               |                                                   |
Packit 3ff1e7
     gliv               | []           []         []   [] []    []          |
Packit 3ff1e7
     glunarclock        | []                      []   []       []       [] |
Packit 3ff1e7
     gnubiff            | []                           ()                   |
Packit 3ff1e7
     gnucash            | []           ()         ()      ()                |
Packit 3ff1e7
     gnuedu             | []                                                |
Packit 3ff1e7
     gnulib             | []           []                 []       []       |
Packit 3ff1e7
     gnunet             |                                                   |
Packit 3ff1e7
     gnunet-gtk         |                                                   |
Packit 3ff1e7
     gnutls             | []           []                                   |
Packit 3ff1e7
     gold               |                                                   |
Packit 3ff1e7
     gpe-aerial         | []                  []  []   [] []       []    [] |
Packit 3ff1e7
     gpe-beam           | []                  []  []   [] []       []    [] |
Packit 3ff1e7
     gpe-bluetooth      | []                      []                        |
Packit 3ff1e7
     gpe-calendar       |                         []      []       []    [] |
Packit 3ff1e7
     gpe-clock          | []                  []  []   [] []    [] []    [] |
Packit 3ff1e7
     gpe-conf           | []                  []  []   [] []    [] []       |
Packit 3ff1e7
     gpe-contacts       |                         []   [] []       []    [] |
Packit 3ff1e7
     gpe-edit           | []           []                          []       |
Packit 3ff1e7
     gpe-filemanager    | []                              []       []       |
Packit 3ff1e7
     gpe-go             | []           []         []   [] []    [] []    [] |
Packit 3ff1e7
     gpe-login          | []                      []                        |
Packit 3ff1e7
     gpe-ownerinfo      | []                  []  []   [] []    [] []    [] |
Packit 3ff1e7
     gpe-package        | []                                       []       |
Packit 3ff1e7
     gpe-sketchbook     | []                  []  []   [] []       []    [] |
Packit 3ff1e7
     gpe-su             | []                  []  []   [] []    [] []    [] |
Packit 3ff1e7
     gpe-taskmanager    | []                  []  []   [] []    [] []    [] |
Packit 3ff1e7
     gpe-timesheet      | []                  []  []   [] []    [] []    [] |
Packit 3ff1e7
     gpe-today          | []                  []  []   [] []    [] []    [] |
Packit 3ff1e7
     gpe-todo           | []                      []      []       []    [] |
Packit 3ff1e7
     gphoto2            | []        [] []         []   [] []    []       [] |
Packit 3ff1e7
     gprof              | []                      []   []                   |
Packit 3ff1e7
     gpsdrive           | []                              []                |
Packit 3ff1e7
     gramadoir          | []                                    []          |
Packit 3ff1e7
     grep               | []           []                 []    []          |
Packit 3ff1e7
     grub               | []           []                 []                |
Packit 3ff1e7
     gsasl              | []           []                       []       [] |
Packit 3ff1e7
     gss                |              []              []       []          |
Packit 3ff1e7
     gst-plugins-bad    | []           []         []      []    []    []    |
Packit 3ff1e7
     gst-plugins-base   | []           []         []      []    []          |
Packit 3ff1e7
     gst-plugins-good   | []           []         []      []    []          |
Packit 3ff1e7
     gst-plugins-ugly   | []           []         []      []    [] []       |
Packit 3ff1e7
     gstreamer          | []           []         []      []    []          |
Packit 3ff1e7
     gtick              | []                              []    []          |
Packit 3ff1e7
     gtkam              | []        [] []         []      []    []          |
Packit 3ff1e7
     gtkorphan          | []                                                |
Packit 3ff1e7
     gtkspell           | []           []     []  []   [] []    [] [] [] [] |
Packit 3ff1e7
     gutenprint         | []                              []                |
Packit 3ff1e7
     hello              | []           []                       [] []       |
Packit 3ff1e7
     help2man           |              []                 []                |
Packit 3ff1e7
     hylafax            | []                                                |
Packit 3ff1e7
     idutils            | []           []         []   [] []                |
Packit 3ff1e7
     indent             | []           []         []   [] []    []       [] |
Packit 3ff1e7
     iso_15924          | []           []                 []       []       |
Packit 3ff1e7
     iso_3166           | []  [] [] [] []     ()  []   [] [] [] [] [] [] [] |
Packit 3ff1e7
     iso_3166_2         | []           []                          []       |
Packit 3ff1e7
     iso_4217           | []  []       []     []          [] []    []    [] |
Packit 3ff1e7
     iso_639            | []     [] [] []                 [] [] [] []    [] |
Packit 3ff1e7
     iso_639_3          |        [] []                                      |
Packit 3ff1e7
     jwhois             | []           []         []   []                   |
Packit 3ff1e7
     kbd                | []           []              []                   |
Packit 3ff1e7
     keytouch           | []           []                       []          |
Packit 3ff1e7
     keytouch-editor    | []           []                       []          |
Packit 3ff1e7
     keytouch-keyboa... | []           []                       []          |
Packit 3ff1e7
     klavaro            | []                      []                        |
Packit 3ff1e7
     latrine            |              []                 []                |
Packit 3ff1e7
     ld                 |                                                   |
Packit 3ff1e7
     leafpad            | []  []       []     []  []      []    [] []    [] |
Packit 3ff1e7
     libc               | []           []                 []    []          |
Packit 3ff1e7
     libexif            | []           []         ()            []          |
Packit 3ff1e7
     libextractor       |                                                   |
Packit 3ff1e7
     libgnutls          | []           []                                   |
Packit 3ff1e7
     libgpewidget       | []           []                          []       |
Packit 3ff1e7
     libgpg-error       |              []              []                   |
Packit 3ff1e7
     libgphoto2         | []           []                                   |
Packit 3ff1e7
     libgphoto2_port    | []           []         []      []    []          |
Packit 3ff1e7
     libgsasl           | []           []              []       []       [] |
Packit 3ff1e7
     libiconv           | []           []                       [] []    [] |
Packit 3ff1e7
     libidn             | []           []                                   |
Packit 3ff1e7
     lifelines          | []           []                                   |
Packit 3ff1e7
     liferea            | []           []     []  []   [] ()    ()    []    |
Packit 3ff1e7
     lilypond           | []                                                |
Packit 3ff1e7
     linkdr             | []                  []          []                |
Packit 3ff1e7
     lordsawar          |                                                   |
Packit 3ff1e7
     lprng              |              []                                   |
Packit 3ff1e7
     lynx               | []                      []      []                |
Packit 3ff1e7
     m4                 | []           []         []   [] []                |
Packit 3ff1e7
     mailfromd          |              []                                   |
Packit 3ff1e7
     mailutils          |              []                                   |
Packit 3ff1e7
     make               | []           []         []      []                |
Packit 3ff1e7
     man-db             | []           []                 []                |
Packit 3ff1e7
     man-db-manpages    | []           []                 []                |
Packit 3ff1e7
     minicom            |              []         []   [] []                |
Packit 3ff1e7
     mkisofs            | []           []                 []                |
Packit 3ff1e7
     myserver           |                                                   |
Packit 3ff1e7
     nano               | []           []         []      []                |
Packit 3ff1e7
     opcodes            | []                           []                   |
Packit 3ff1e7
     parted             | []           []                 []    []          |
Packit 3ff1e7
     pies               |              []                                   |
Packit 3ff1e7
     popt               | []           []     []          []                |
Packit 3ff1e7
     psmisc             | []           []                 []                |
Packit 3ff1e7
     pspp               | []                      []                        |
Packit 3ff1e7
     pwdutils           |              []                                   |
Packit 3ff1e7
     radius             | []           []                 []                |
Packit 3ff1e7
     recode             | []           []     []  []   [] []    [] []       |
Packit 3ff1e7
     rosegarden         |              ()                 ()                |
Packit 3ff1e7
     rpm                | []           []     []                            |
Packit 3ff1e7
     rush               | []           []                                   |
Packit 3ff1e7
     sarg               |                                                   |
Packit 3ff1e7
     screem             |                                                   |
Packit 3ff1e7
     scrollkeeper       | []  []       []              [] []    []    [] [] |
Packit 3ff1e7
     sed                | []           []     []  []   [] []    [] []    [] |
Packit 3ff1e7
     sharutils          | []           []                 []             [] |
Packit 3ff1e7
     shishi             |              []                                   |
Packit 3ff1e7
     skencil            |                     []  []                        |
Packit 3ff1e7
     solfege            | []           []         []      []                |
Packit 3ff1e7
     solfege-manual     | []           []         []                        |
Packit 3ff1e7
     soundtracker       |                                       []          |
Packit 3ff1e7
     sp                 |                                                   |
Packit 3ff1e7
     sysstat            | []           []         []      []                |
Packit 3ff1e7
     tar                | []           []                 []       []       |
Packit 3ff1e7
     texinfo            | []           []              [] []                |
Packit 3ff1e7
     tin                |                                 []                |
Packit 3ff1e7
     unicode-han-tra... |                                                   |
Packit 3ff1e7
     unicode-transla... |                                                   |
Packit 3ff1e7
     util-linux-ng      | []           []         []      []       []       |
Packit 3ff1e7
     vice               | []                                                |
Packit 3ff1e7
     vmm                | []                                                |
Packit 3ff1e7
     vorbis-tools       | []           []                                   |
Packit 3ff1e7
     wastesedge         | []                                                |
Packit 3ff1e7
     wdiff              | []           []                                   |
Packit 3ff1e7
     wget               | []           []     []  []      []    [] []       |
Packit 3ff1e7
     wyslij-po          | []  []       []                                   |
Packit 3ff1e7
     xchat              | []        [] []     []          []    [] [] [] [] |
Packit 3ff1e7
     xdg-user-dirs      | []  [] [] [] []  [] []  []   [] []    [] [] [] [] |
Packit 3ff1e7
     xkeyboard-config   | []           []                 []                |
Packit 3ff1e7
                        +---------------------------------------------------+
Packit 3ff1e7
                          nl  nn or pa pl  ps pt pt_BR ro ru rw sk sl sq sr
Packit 3ff1e7
                          135 10  4  7 105  1 29  62   47 91  3 54 46  9 37
Packit 3ff1e7
Packit 3ff1e7
                          sv  sw ta te tg th tr uk vi  wa zh_CN zh_HK zh_TW
Packit 3ff1e7
                        +---------------------------------------------------+
Packit 3ff1e7
     a2ps               | []              [] [] [] []                       | 27
Packit 3ff1e7
     aegis              |                          []                       |  9
Packit 3ff1e7
     ant-phone          | []                 []    []      []               |  9
Packit 3ff1e7
     anubis             | []                 [] [] []                       | 15
Packit 3ff1e7
     aspell             |                       [] []  []                   | 20
Packit 3ff1e7
     bash               | []                    [] []                       | 12
Packit 3ff1e7
     bfd                |                          []                       |  6
Packit 3ff1e7
     bibshelf           | []                       []      []               | 16
Packit 3ff1e7
     binutils           |                       [] []                       |  8
Packit 3ff1e7
     bison              | []                       []                       | 12
Packit 3ff1e7
     bison-runtime      | []              []    [] []      []          []   | 29
Packit 3ff1e7
     bluez-pin          | []              [] [] [] []  []  []          []   | 37
Packit 3ff1e7
     bombono-dvd        |                          []                       |  4
Packit 3ff1e7
     buzztard           |                          []                       |  7
Packit 3ff1e7
     cflow              |                       [] []      []               |  9
Packit 3ff1e7
     clisp              |                                                   | 10
Packit 3ff1e7
     coreutils          | []                    [] []      []               | 22
Packit 3ff1e7
     cpio               | []                 [] [] []      []          []   | 13
Packit 3ff1e7
     cppi               |                       [] []                       |  5
Packit 3ff1e7
     cpplib             | []                 [] [] []      []          []   | 14
Packit 3ff1e7
     cryptsetup         | []                       []                       |  7
Packit 3ff1e7
     dfarc              |                          []                       |  9
Packit 3ff1e7
     dialog             | []  []          []       []  []  []          []   | 30
Packit 3ff1e7
     dico               |                       []                          |  2
Packit 3ff1e7
     diffutils          | []                 [] [] []      []          []   | 30
Packit 3ff1e7
     dink               |                                                   |  4
Packit 3ff1e7
     doodle             | []                       []                       |  7
Packit 3ff1e7
     e2fsprogs          | []                 []    []                       | 11
Packit 3ff1e7
     enscript           | []                 [] [] []                       | 17
Packit 3ff1e7
     exif               | []                       []      []               | 16
Packit 3ff1e7
     fetchmail          |                    []    []      []               | 17
Packit 3ff1e7
     findutils          | []                 [] [] []      []               | 20
Packit 3ff1e7
     flex               | []                 []    []                  []   | 15
Packit 3ff1e7
     freedink           |                          []                       | 10
Packit 3ff1e7
     gas                |                    []                             |  4
Packit 3ff1e7
     gawk               | []                 []    []      []               | 18
Packit 3ff1e7
     gcal               | []                 []                             |  5
Packit 3ff1e7
     gcc                | []                 []            []               |  7
Packit 3ff1e7
     gettext-examples   | []                 [] [] []      []    []    []   | 34
Packit 3ff1e7
     gettext-runtime    | []                 [] [] []      []    []    []   | 29
Packit 3ff1e7
     gettext-tools      | []                 [] [] []      []          []   | 22
Packit 3ff1e7
     gip                | []                       []      []          []   | 22
Packit 3ff1e7
     gjay               |                          []                       |  3
Packit 3ff1e7
     gliv               | []                 []    []                       | 14
Packit 3ff1e7
     glunarclock        | []                       []  []  []          []   | 19
Packit 3ff1e7
     gnubiff            | []                       []                       |  4
Packit 3ff1e7
     gnucash            |                    () [] ()      []          ()   | 10
Packit 3ff1e7
     gnuedu             |                          []                  []   |  7
Packit 3ff1e7
     gnulib             | []                    [] []      []               | 16
Packit 3ff1e7
     gnunet             |                          []                       |  1
Packit 3ff1e7
     gnunet-gtk         | []                 []    []                       |  5
Packit 3ff1e7
     gnutls             | []                       []      []               | 10
Packit 3ff1e7
     gold               |                          []                       |  4
Packit 3ff1e7
     gpe-aerial         | []                       []      []               | 18
Packit 3ff1e7
     gpe-beam           | []                       []      []               | 19
Packit 3ff1e7
     gpe-bluetooth      | []                       []      []               | 13
Packit 3ff1e7
     gpe-calendar       | []                       []  []  []               | 12
Packit 3ff1e7
     gpe-clock          | []                 []    []  []  []               | 28
Packit 3ff1e7
     gpe-conf           | []                       []  []  []               | 20
Packit 3ff1e7
     gpe-contacts       | []                       []      []               | 17
Packit 3ff1e7
     gpe-edit           | []                       []      []               | 12
Packit 3ff1e7
     gpe-filemanager    | []                       []  []  []               | 16
Packit 3ff1e7
     gpe-go             | []                 []    []  []  []               | 25
Packit 3ff1e7
     gpe-login          | []                       []      []               | 11
Packit 3ff1e7
     gpe-ownerinfo      | []                 []    []      []          []   | 25
Packit 3ff1e7
     gpe-package        | []                       []      []               | 13
Packit 3ff1e7
     gpe-sketchbook     | []                       []      []               | 20
Packit 3ff1e7
     gpe-su             | []                 []    []  []  []               | 30
Packit 3ff1e7
     gpe-taskmanager    | []                 []    []  []  []               | 29
Packit 3ff1e7
     gpe-timesheet      | []                 []    []      []          []   | 25
Packit 3ff1e7
     gpe-today          | []                 []    []  []  []          []   | 30
Packit 3ff1e7
     gpe-todo           | []                       []  []  []               | 17
Packit 3ff1e7
     gphoto2            | []                    [] []      []          []   | 24
Packit 3ff1e7
     gprof              | []                 []    []                       | 15
Packit 3ff1e7
     gpsdrive           | []                       []      []               | 11
Packit 3ff1e7
     gramadoir          | []                       []      []               | 11
Packit 3ff1e7
     grep               |                 []       []      []               | 10
Packit 3ff1e7
     grub               | []                       []      []               | 14
Packit 3ff1e7
     gsasl              | []                       []      []          []   | 14
Packit 3ff1e7
     gss                | []                       []      []               | 11
Packit 3ff1e7
     gst-plugins-bad    | []                 []    []      []               | 26
Packit 3ff1e7
     gst-plugins-base   | []                 [] [] []      []               | 24
Packit 3ff1e7
     gst-plugins-good   | []                 []    []      []               | 24
Packit 3ff1e7
     gst-plugins-ugly   | []                 [] [] []      []               | 29
Packit 3ff1e7
     gstreamer          | []                    [] []      []               | 22
Packit 3ff1e7
     gtick              |                       [] []      []               | 13
Packit 3ff1e7
     gtkam              | []                       []      []               | 20
Packit 3ff1e7
     gtkorphan          | []                       []      []               | 14
Packit 3ff1e7
     gtkspell           | []              [] [] [] []  []  []    []    []   | 45
Packit 3ff1e7
     gutenprint         | []                                                | 10
Packit 3ff1e7
     hello              | []              [] []    []      []          []   | 21
Packit 3ff1e7
     help2man           | []                       []                       |  7
Packit 3ff1e7
     hylafax            |                          []                       |  5
Packit 3ff1e7
     idutils            | []                 []    []      []               | 17
Packit 3ff1e7
     indent             | []                 [] [] []      []          []   | 30
Packit 3ff1e7
     iso_15924          |                 ()    [] ()      []          []   | 16
Packit 3ff1e7
     iso_3166           | []        []    () [] [] ()  []  []    []    ()   | 53
Packit 3ff1e7
     iso_3166_2         |                 ()    [] ()      []               |  9
Packit 3ff1e7
     iso_4217           | []              () [] [] ()      []    []         | 26
Packit 3ff1e7
     iso_639            | []     [] []    ()    [] ()  []  []    []    []   | 38
Packit 3ff1e7
     iso_639_3          |        []                ()                       |  8
Packit 3ff1e7
     jwhois             | []                 []    []      []          []   | 16
Packit 3ff1e7
     kbd                | []                 [] [] []      []               | 15
Packit 3ff1e7
     keytouch           | []                       []      []               | 16
Packit 3ff1e7
     keytouch-editor    | []                       []      []               | 14
Packit 3ff1e7
     keytouch-keyboa... | []                       []      []               | 14
Packit 3ff1e7
     klavaro            |                          []                       | 11
Packit 3ff1e7
     latrine            |                    []    []      []               | 10
Packit 3ff1e7
     ld                 | []                 []    []                  []   | 11
Packit 3ff1e7
     leafpad            | []                 [] [] []      []          []   | 33
Packit 3ff1e7
     libc               | []                 []    []      []          []   | 21
Packit 3ff1e7
     libexif            |                          []      ()               |  7
Packit 3ff1e7
     libextractor       |                          []                       |  1
Packit 3ff1e7
     libgnutls          | []                       []      []               |  9
Packit 3ff1e7
     libgpewidget       | []                       []      []               | 14
Packit 3ff1e7
     libgpg-error       | []                       []      []               |  9
Packit 3ff1e7
     libgphoto2         |                       [] []                       |  8
Packit 3ff1e7
     libgphoto2_port    | []                    [] []                  []   | 14
Packit 3ff1e7
     libgsasl           | []                       []      []               | 13
Packit 3ff1e7
     libiconv           | []                       []  []  []               | 21
Packit 3ff1e7
     libidn             | ()                       []      []               | 11
Packit 3ff1e7
     lifelines          | []                                                |  4
Packit 3ff1e7
     liferea            | []                 []            []               | 21
Packit 3ff1e7
     lilypond           |                          []                       |  7
Packit 3ff1e7
     linkdr             | []                 []    []      []          []   | 17
Packit 3ff1e7
     lordsawar          |                                                   |  1
Packit 3ff1e7
     lprng              |                          []                       |  3
Packit 3ff1e7
     lynx               | []                 [] [] []                       | 17
Packit 3ff1e7
     m4                 | []                       []      []          []   | 19
Packit 3ff1e7
     mailfromd          |                       [] []                       |  3
Packit 3ff1e7
     mailutils          |                          []                       |  5
Packit 3ff1e7
     make               | []                 []    []      []               | 21
Packit 3ff1e7
     man-db             | []                       []      []               |  8
Packit 3ff1e7
     man-db-manpages    |                                                   |  4
Packit 3ff1e7
     minicom            | []                       []                       | 16
Packit 3ff1e7
     mkisofs            |                          []      []               |  9
Packit 3ff1e7
     myserver           |                                                   |  0
Packit 3ff1e7
     nano               | []                       []      []          []   | 21
Packit 3ff1e7
     opcodes            | []                 []    []                       | 11
Packit 3ff1e7
     parted             | []                 [] [] []                  []   | 15
Packit 3ff1e7
     pies               |                       [] []                       |  3
Packit 3ff1e7
     popt               | []              [] []    []      []          []   | 27
Packit 3ff1e7
     psmisc             | []                       []                       | 11
Packit 3ff1e7
     pspp               |                                                   |  4
Packit 3ff1e7
     pwdutils           | []                       []                       |  6
Packit 3ff1e7
     radius             |                       [] []                       |  9
Packit 3ff1e7
     recode             | []                 []    []      []               | 28
Packit 3ff1e7
     rosegarden         | ()                                                |  0
Packit 3ff1e7
     rpm                | []                       []                  []   | 11
Packit 3ff1e7
     rush               |                       [] []                       |  4
Packit 3ff1e7
     sarg               |                                                   |  1
Packit 3ff1e7
     screem             |                          []                       |  3
Packit 3ff1e7
     scrollkeeper       | []                 [] [] []                  []   | 27
Packit 3ff1e7
     sed                | []                 []    []      []          []   | 30
Packit 3ff1e7
     sharutils          | []                 []    []      []          []   | 22
Packit 3ff1e7
     shishi             |                          []                       |  3
Packit 3ff1e7
     skencil            | []                       []                       |  7
Packit 3ff1e7
     solfege            | []                 []    []      []               | 16
Packit 3ff1e7
     solfege-manual     |                    []                             |  8
Packit 3ff1e7
     soundtracker       | []                 []    []                       |  9
Packit 3ff1e7
     sp                 |                    []                             |  3
Packit 3ff1e7
     sysstat            |                          []      []               | 15
Packit 3ff1e7
     tar                | []                 [] [] []      []          []   | 23
Packit 3ff1e7
     texinfo            | []                 [] [] []      []               | 17
Packit 3ff1e7
     tin                |                                                   |  4
Packit 3ff1e7
     unicode-han-tra... |                                                   |  0
Packit 3ff1e7
     unicode-transla... |                                                   |  2
Packit 3ff1e7
     util-linux-ng      | []                 [] [] []                       | 20
Packit 3ff1e7
     vice               | ()                 ()                             |  1
Packit 3ff1e7
     vmm                |                          []                       |  4
Packit 3ff1e7
     vorbis-tools       |                          []                       |  6
Packit 3ff1e7
     wastesedge         |                                                   |  2
Packit 3ff1e7
     wdiff              | []                       []                       |  7
Packit 3ff1e7
     wget               | []                 []    []      []          []   | 26
Packit 3ff1e7
     wyslij-po          |                       [] []                       |  8
Packit 3ff1e7
     xchat              | []              []    [] []      []          []   | 36
Packit 3ff1e7
     xdg-user-dirs      | []     [] []    [] [] [] []      []    []    []   | 63
Packit 3ff1e7
     xkeyboard-config   | []                    [] []                       | 22
Packit 3ff1e7
                        +---------------------------------------------------+
Packit 3ff1e7
       85 teams           sv  sw ta te tg th tr uk vi  wa zh_CN zh_HK zh_TW
Packit 3ff1e7
      178 domains         119  1  3  3  0 10 65 51 155 17  98     7    41    2618
Packit 3ff1e7
Packit 3ff1e7
   Some counters in the preceding matrix are higher than the number of
Packit 3ff1e7
visible blocks let us expect.  This is because a few extra PO files are
Packit 3ff1e7
used for implementing regional variants of languages, or language
Packit 3ff1e7
dialects.
Packit 3ff1e7
Packit 3ff1e7
   For a PO file in the matrix above to be effective, the package to
Packit 3ff1e7
which it applies should also have been internationalized and
Packit 3ff1e7
distributed as such by its maintainer.  There might be an observable
Packit 3ff1e7
lag between the mere existence a PO file and its wide availability in a
Packit 3ff1e7
distribution.
Packit 3ff1e7
Packit 3ff1e7
   If June 2010 seems to be old, you may fetch a more recent copy of
Packit 3ff1e7
this `ABOUT-NLS' file on most GNU archive sites.  The most up-to-date
Packit 3ff1e7
matrix with full percentage details can be found at
Packit 3ff1e7
`http://translationproject.org/extra/matrix.html'.
Packit 3ff1e7
Packit 3ff1e7
1.5 Using `gettext' in new packages
Packit 3ff1e7
===================================
Packit 3ff1e7
Packit 3ff1e7
If you are writing a freely available program and want to
Packit 3ff1e7
internationalize it you are welcome to use GNU `gettext' in your
Packit 3ff1e7
package.  Of course you have to respect the GNU Library General Public
Packit 3ff1e7
License which covers the use of the GNU `gettext' library.  This means
Packit 3ff1e7
in particular that even non-free programs can use `libintl' as a shared
Packit 3ff1e7
library, whereas only free software can use `libintl' as a static
Packit 3ff1e7
library or use modified versions of `libintl'.
Packit 3ff1e7
Packit 3ff1e7
   Once the sources are changed appropriately and the setup can handle
Packit 3ff1e7
the use of `gettext' the only thing missing are the translations.  The
Packit 3ff1e7
Free Translation Project is also available for packages which are not
Packit 3ff1e7
developed inside the GNU project.  Therefore the information given above
Packit 3ff1e7
applies also for every other Free Software Project.  Contact
Packit 3ff1e7
`coordinator@translationproject.org' to make the `.pot' files available
Packit 3ff1e7
to the translation teams.
Packit 3ff1e7