Blame ABOUT-NLS

Packit Service 21b5d1
1 Notes on the Free Translation Project
Packit Service 21b5d1
***************************************
Packit Service 21b5d1
Packit Service 21b5d1
Free software is going international!  The Free Translation Project is
Packit Service 21b5d1
a way to get maintainers of free software, translators, and users all
Packit Service 21b5d1
together, so that free software will gradually become able to speak many
Packit Service 21b5d1
languages.  A few packages already provide translations for their
Packit Service 21b5d1
messages.
Packit Service 21b5d1
Packit Service 21b5d1
   If you found this `ABOUT-NLS' file inside a distribution, you may
Packit Service 21b5d1
assume that the distributed package does use GNU `gettext' internally,
Packit Service 21b5d1
itself available at your nearest GNU archive site.  But you do _not_
Packit Service 21b5d1
need to install GNU `gettext' prior to configuring, installing or using
Packit Service 21b5d1
this package with messages translated.
Packit Service 21b5d1
Packit Service 21b5d1
   Installers will find here some useful hints.  These notes also
Packit Service 21b5d1
explain how users should proceed for getting the programs to use the
Packit Service 21b5d1
available translations.  They tell how people wanting to contribute and
Packit Service 21b5d1
work on translations can contact the appropriate team.
Packit Service 21b5d1
Packit Service 21b5d1
   When reporting bugs in the `intl/' directory or bugs which may be
Packit Service 21b5d1
related to internationalization, you should tell about the version of
Packit Service 21b5d1
`gettext' which is used.  The information can be found in the
Packit Service 21b5d1
`intl/VERSION' file, in internationalized packages.
Packit Service 21b5d1
Packit Service 21b5d1
1.1 Quick configuration advice
Packit Service 21b5d1
==============================
Packit Service 21b5d1
Packit Service 21b5d1
If you want to exploit the full power of internationalization, you
Packit Service 21b5d1
should configure it using
Packit Service 21b5d1
Packit Service 21b5d1
     ./configure --with-included-gettext
Packit Service 21b5d1
Packit Service 21b5d1
to force usage of internationalizing routines provided within this
Packit Service 21b5d1
package, despite the existence of internationalizing capabilities in the
Packit Service 21b5d1
operating system where this package is being installed.  So far, only
Packit Service 21b5d1
the `gettext' implementation in the GNU C library version 2 provides as
Packit Service 21b5d1
many features (such as locale alias, message inheritance, automatic
Packit Service 21b5d1
charset conversion or plural form handling) as the implementation here.
Packit Service 21b5d1
It is also not possible to offer this additional functionality on top
Packit Service 21b5d1
of a `catgets' implementation.  Future versions of GNU `gettext' will
Packit Service 21b5d1
very likely convey even more functionality.  So it might be a good idea
Packit Service 21b5d1
to change to GNU `gettext' as soon as possible.
Packit Service 21b5d1
Packit Service 21b5d1
   So you need _not_ provide this option if you are using GNU libc 2 or
Packit Service 21b5d1
you have installed a recent copy of the GNU gettext package with the
Packit Service 21b5d1
included `libintl'.
Packit Service 21b5d1
Packit Service 21b5d1
1.2 INSTALL Matters
Packit Service 21b5d1
===================
Packit Service 21b5d1
Packit Service 21b5d1
Some packages are "localizable" when properly installed; the programs
Packit Service 21b5d1
they contain can be made to speak your own native language.  Most such
Packit Service 21b5d1
packages use GNU `gettext'.  Other packages have their own ways to
Packit Service 21b5d1
internationalization, predating GNU `gettext'.
Packit Service 21b5d1
Packit Service 21b5d1
   By default, this package will be installed to allow translation of
Packit Service 21b5d1
messages.  It will automatically detect whether the system already
Packit Service 21b5d1
provides the GNU `gettext' functions.  If not, the included GNU
Packit Service 21b5d1
`gettext' library will be used.  This library is wholly contained
Packit Service 21b5d1
within this package, usually in the `intl/' subdirectory, so prior
Packit Service 21b5d1
installation of the GNU `gettext' package is _not_ required.
Packit Service 21b5d1
Installers may use special options at configuration time for changing
Packit Service 21b5d1
the default behaviour.  The commands:
Packit Service 21b5d1
Packit Service 21b5d1
     ./configure --with-included-gettext
Packit Service 21b5d1
     ./configure --disable-nls
Packit Service 21b5d1
Packit Service 21b5d1
will, respectively, bypass any pre-existing `gettext' to use the
Packit Service 21b5d1
internationalizing routines provided within this package, or else,
Packit Service 21b5d1
_totally_ disable translation of messages.
Packit Service 21b5d1
Packit Service 21b5d1
   When you already have GNU `gettext' installed on your system and run
Packit Service 21b5d1
configure without an option for your new package, `configure' will
Packit Service 21b5d1
probably detect the previously built and installed `libintl.a' file and
Packit Service 21b5d1
will decide to use this.  This might not be desirable.  You should use
Packit Service 21b5d1
the more recent version of the GNU `gettext' library.  I.e. if the file
Packit Service 21b5d1
`intl/VERSION' shows that the library which comes with this package is
Packit Service 21b5d1
more recent, you should use
Packit Service 21b5d1
Packit Service 21b5d1
     ./configure --with-included-gettext
Packit Service 21b5d1
Packit Service 21b5d1
to prevent auto-detection.
Packit Service 21b5d1
Packit Service 21b5d1
   The configuration process will not test for the `catgets' function
Packit Service 21b5d1
and therefore it will not be used.  The reason is that even an
Packit Service 21b5d1
emulation of `gettext' on top of `catgets' could not provide all the
Packit Service 21b5d1
extensions of the GNU `gettext' library.
Packit Service 21b5d1
Packit Service 21b5d1
   Internationalized packages usually have many `po/LL.po' files, where
Packit Service 21b5d1
LL gives an ISO 639 two-letter code identifying the language.  Unless
Packit Service 21b5d1
translations have been forbidden at `configure' time by using the
Packit Service 21b5d1
`--disable-nls' switch, all available translations are installed
Packit Service 21b5d1
together with the package.  However, the environment variable `LINGUAS'
Packit Service 21b5d1
may be set, prior to configuration, to limit the installed set.
Packit Service 21b5d1
`LINGUAS' should then contain a space separated list of two-letter
Packit Service 21b5d1
codes, stating which languages are allowed.
Packit Service 21b5d1
Packit Service 21b5d1
1.3 Using This Package
Packit Service 21b5d1
======================
Packit Service 21b5d1
Packit Service 21b5d1
As a user, if your language has been installed for this package, you
Packit Service 21b5d1
only have to set the `LANG' environment variable to the appropriate
Packit Service 21b5d1
`LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
Packit Service 21b5d1
and `CC' is an ISO 3166 two-letter country code.  For example, let's
Packit Service 21b5d1
suppose that you speak German and live in Germany.  At the shell
Packit Service 21b5d1
prompt, merely execute `setenv LANG de_DE' (in `csh'),
Packit Service 21b5d1
`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
Packit Service 21b5d1
This can be done from your `.login' or `.profile' file, once and for
Packit Service 21b5d1
all.
Packit Service 21b5d1
Packit Service 21b5d1
   You might think that the country code specification is redundant.
Packit Service 21b5d1
But in fact, some languages have dialects in different countries.  For
Packit Service 21b5d1
example, `de_AT' is used for Austria, and `pt_BR' for Brazil.  The
Packit Service 21b5d1
country code serves to distinguish the dialects.
Packit Service 21b5d1
Packit Service 21b5d1
   The locale naming convention of `LL_CC', with `LL' denoting the
Packit Service 21b5d1
language and `CC' denoting the country, is the one use on systems based
Packit Service 21b5d1
on GNU libc.  On other systems, some variations of this scheme are
Packit Service 21b5d1
used, such as `LL' or `LL_CC.ENCODING'.  You can get the list of
Packit Service 21b5d1
locales supported by your system for your country by running the command
Packit Service 21b5d1
`locale -a | grep '^LL''.
Packit Service 21b5d1
Packit Service 21b5d1
   Not all programs have translations for all languages.  By default, an
Packit Service 21b5d1
English message is shown in place of a nonexistent translation.  If you
Packit Service 21b5d1
understand other languages, you can set up a priority list of languages.
Packit Service 21b5d1
This is done through a different environment variable, called
Packit Service 21b5d1
`LANGUAGE'.  GNU `gettext' gives preference to `LANGUAGE' over `LANG'
Packit Service 21b5d1
for the purpose of message handling, but you still need to have `LANG'
Packit Service 21b5d1
set to the primary language; this is required by other parts of the
Packit Service 21b5d1
system libraries.  For example, some Swedish users who would rather
Packit Service 21b5d1
read translations in German than English for when Swedish is not
Packit Service 21b5d1
available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
Packit Service 21b5d1
Packit Service 21b5d1
   Special advice for Norwegian users: The language code for Norwegian
Packit Service 21b5d1
bokma*l changed from `no' to `nb' recently (in 2003).  During the
Packit Service 21b5d1
transition period, while some message catalogs for this language are
Packit Service 21b5d1
installed under `nb' and some older ones under `no', it's recommended
Packit Service 21b5d1
for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
Packit Service 21b5d1
older translations are used.
Packit Service 21b5d1
Packit Service 21b5d1
   In the `LANGUAGE' environment variable, but not in the `LANG'
Packit Service 21b5d1
environment variable, `LL_CC' combinations can be abbreviated as `LL'
Packit Service 21b5d1
to denote the language's main dialect.  For example, `de' is equivalent
Packit Service 21b5d1
to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
Packit Service 21b5d1
(Portuguese as spoken in Portugal) in this context.
Packit Service 21b5d1
Packit Service 21b5d1
1.4 Translating Teams
Packit Service 21b5d1
=====================
Packit Service 21b5d1
Packit Service 21b5d1
For the Free Translation Project to be a success, we need interested
Packit Service 21b5d1
people who like their own language and write it well, and who are also
Packit Service 21b5d1
able to synergize with other translators speaking the same language.
Packit Service 21b5d1
Each translation team has its own mailing list.  The up-to-date list of
Packit Service 21b5d1
teams can be found at the Free Translation Project's homepage,
Packit Service 21b5d1
`http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
Packit Service 21b5d1
area.
Packit Service 21b5d1
Packit Service 21b5d1
   If you'd like to volunteer to _work_ at translating messages, you
Packit Service 21b5d1
should become a member of the translating team for your own language.
Packit Service 21b5d1
The subscribing address is _not_ the same as the list itself, it has
Packit Service 21b5d1
`-request' appended.  For example, speakers of Swedish can send a
Packit Service 21b5d1
message to `sv-request@li.org', having this message body:
Packit Service 21b5d1
Packit Service 21b5d1
     subscribe
Packit Service 21b5d1
Packit Service 21b5d1
   Keep in mind that team members are expected to participate
Packit Service 21b5d1
_actively_ in translations, or at solving translational difficulties,
Packit Service 21b5d1
rather than merely lurking around.  If your team does not exist yet and
Packit Service 21b5d1
you want to start one, or if you are unsure about what to do or how to
Packit Service 21b5d1
get started, please write to `translation@iro.umontreal.ca' to reach the
Packit Service 21b5d1
coordinator for all translator teams.
Packit Service 21b5d1
Packit Service 21b5d1
   The English team is special.  It works at improving and uniformizing
Packit Service 21b5d1
the terminology in use.  Proven linguistic skill are praised more than
Packit Service 21b5d1
programming skill, here.
Packit Service 21b5d1
Packit Service 21b5d1
1.5 Available Packages
Packit Service 21b5d1
======================
Packit Service 21b5d1
Packit Service 21b5d1
Languages are not equally supported in all packages.  The following
Packit Service 21b5d1
matrix shows the current state of internationalization, as of June
Packit Service 21b5d1
2006.  The matrix shows, in regard of each package, for which languages
Packit Service 21b5d1
PO files have been submitted to translation coordination, with a
Packit Service 21b5d1
translation percentage of at least 50%.
Packit Service 21b5d1
Packit Service 21b5d1
     Ready PO files       af am ar az be bg bs ca cs cy da de el en en_GB eo
Packit Service 21b5d1
                        +----------------------------------------------------+
Packit Service 21b5d1
     GNUnet             |                                  []                |
Packit Service 21b5d1
     a2ps               |             []                [] [] []     []      |
Packit Service 21b5d1
     aegis              |                                  ()                |
Packit Service 21b5d1
     ant-phone          |                                  ()                |
Packit Service 21b5d1
     anubis             |                                  []                |
Packit Service 21b5d1
     ap-utils           |                                                    |
Packit Service 21b5d1
     aspell             |                         []    [] []        []      |
Packit Service 21b5d1
     bash               |                      []          []             [] |
Packit Service 21b5d1
     batchelor          |                                  []                |
Packit Service 21b5d1
     bfd                |                                                    |
Packit Service 21b5d1
     bibshelf           |                                  []                |
Packit Service 21b5d1
     binutils           |                               []                   |
Packit Service 21b5d1
     bison              |                               [] []                |
Packit Service 21b5d1
     bison-runtime      |                                                    |
Packit Service 21b5d1
     bluez-pin          | []                      []       [] []          [] |
Packit Service 21b5d1
     cflow              |                               []                   |
Packit Service 21b5d1
     clisp              |                                  []    []          |
Packit Service 21b5d1
     console-tools      |                         []       []                |
Packit Service 21b5d1
     coreutils          |                []    []       [] []                |
Packit Service 21b5d1
     cpio               |                                                    |
Packit Service 21b5d1
     cpplib             |                      []       [] []                |
Packit Service 21b5d1
     cryptonit          |                                  []                |
Packit Service 21b5d1
     darkstat           |                []             () []                |
Packit Service 21b5d1
     dialog             |                      [] [] [] [] [] []             |
Packit Service 21b5d1
     diffutils          |                      [] []    [] [] []          [] |
Packit Service 21b5d1
     doodle             |                                  []                |
Packit Service 21b5d1
     e2fsprogs          |                         []       []                |
Packit Service 21b5d1
     enscript           |                      []       [] []        []      |
Packit Service 21b5d1
     error              |                      []       [] []        []      |
Packit Service 21b5d1
     fetchmail          |                      []       [] () []             |
Packit Service 21b5d1
     fileutils          |                               [] []                |
Packit Service 21b5d1
     findutils          |                []    []       []                   |
Packit Service 21b5d1
     flex               |                      []       [] []                |
Packit Service 21b5d1
     fslint             |                                  []                |
Packit Service 21b5d1
     gas                |                                                    |
Packit Service 21b5d1
     gawk               |                      []       [] []                |
Packit Service 21b5d1
     gbiff              |                                  []                |
Packit Service 21b5d1
     gcal               |                      []                            |
Packit Service 21b5d1
     gcc                |                                  []                |
Packit Service 21b5d1
     gettext-examples   | []                   []          [] []             |
Packit Service 21b5d1
     gettext-runtime    |             []       []       [] []                |
Packit Service 21b5d1
     gettext-tools      |                      []          []                |
Packit Service 21b5d1
     gimp-print         |                         []    [] []        []      |
Packit Service 21b5d1
     gip                |                []                                  |
Packit Service 21b5d1
     gliv               |                                  []                |
Packit Service 21b5d1
     glunarclock        |                []                                  |
Packit Service 21b5d1
     gmult              | []                               []                |
Packit Service 21b5d1
     gnubiff            |                                  ()                |
Packit Service 21b5d1
     gnucash            |                                  () ()     []      |
Packit Service 21b5d1
     gnucash-glossary   |                               [] ()                |
Packit Service 21b5d1
     gnuedu             |                                                    |
Packit Service 21b5d1
     gnulib             | []          [] []    []       [] []                |
Packit Service 21b5d1
     gnunet-gtk         |                                                    |
Packit Service 21b5d1
     gnutls             |                                                    |
Packit Service 21b5d1
     gpe-aerial         |                         []       []                |
Packit Service 21b5d1
     gpe-beam           |                         []       []                |
Packit Service 21b5d1
     gpe-calendar       |                         []       []                |
Packit Service 21b5d1
     gpe-clock          |                         []       []                |
Packit Service 21b5d1
     gpe-conf           |                         []       []                |
Packit Service 21b5d1
     gpe-contacts       |                                                    |
Packit Service 21b5d1
     gpe-edit           |                         []                         |
Packit Service 21b5d1
     gpe-filemanager    |                                                    |
Packit Service 21b5d1
     gpe-go             |                         []                         |
Packit Service 21b5d1
     gpe-login          |                         []       []                |
Packit Service 21b5d1
     gpe-ownerinfo      |                         []       []                |
Packit Service 21b5d1
     gpe-package        |                                                    |
Packit Service 21b5d1
     gpe-sketchbook     |                         []       []                |
Packit Service 21b5d1
     gpe-su             |                         []       []                |
Packit Service 21b5d1
     gpe-taskmanager    |                         []       []                |
Packit Service 21b5d1
     gpe-timesheet      |                         []                         |
Packit Service 21b5d1
     gpe-today          |                         []       []                |
Packit Service 21b5d1
     gpe-todo           |                                                    |
Packit Service 21b5d1
     gphoto2            |                         []    [] []        []      |
Packit Service 21b5d1
     gprof              |                               [] []                |
Packit Service 21b5d1
     gpsdrive           |                                  ()    ()          |
Packit Service 21b5d1
     gramadoir          | []                               []                |
Packit Service 21b5d1
     grep               | []          [] []    []          [] []             |
Packit Service 21b5d1
     gretl              |                                                    |
Packit Service 21b5d1
     gsasl              |                                                    |
Packit Service 21b5d1
     gss                |                                                    |
Packit Service 21b5d1
     gst-plugins        | []                   [] []    []                   |
Packit Service 21b5d1
     gst-plugins-base   |                []    []       []                   |
Packit Service 21b5d1
     gst-plugins-good   | []       []    []    [] []    []           []      |
Packit Service 21b5d1
     gstreamer          | []             []    [] []    [] []        []      |
Packit Service 21b5d1
     gtick              | []                               ()                |
Packit Service 21b5d1
     gtkam              |                         []    [] []                |
Packit Service 21b5d1
     gtkorphan          |                []                []                |
Packit Service 21b5d1
     gtkspell           |             []                   [] []          [] |
Packit Service 21b5d1
     gutenprint         |                               []                   |
Packit Service 21b5d1
     hello              |                      []       [] [] []          [] |
Packit Service 21b5d1
     id-utils           |                               [] []                |
Packit Service 21b5d1
     impost             |                                                    |
Packit Service 21b5d1
     indent             |                      []          []             [] |
Packit Service 21b5d1
     iso_3166           |                                  []             [] |
Packit Service 21b5d1
     iso_3166_1         |                      [] []    [] [] []             |
Packit Service 21b5d1
     iso_3166_2         |                                                    |
Packit Service 21b5d1
     iso_3166_3         |                                  []                |
Packit Service 21b5d1
     iso_4217           |                                  []                |
Packit Service 21b5d1
     iso_639            |                                  []             [] |
Packit Service 21b5d1
     jpilot             |                         []                         |
Packit Service 21b5d1
     jtag               |                                                    |
Packit Service 21b5d1
     jwhois             |                                                    |
Packit Service 21b5d1
     kbd                |                         []    [] [] []             |
Packit Service 21b5d1
     keytouch           |                                                    |
Packit Service 21b5d1
     keytouch-editor    |                                                    |
Packit Service 21b5d1
     keytouch-keyboa... |                                                    |
Packit Service 21b5d1
     latrine            |                                  ()                |
Packit Service 21b5d1
     ld                 |                               []                   |
Packit Service 21b5d1
     leafpad            |                []    [] []       [] []             |
Packit Service 21b5d1
     libc               |                      [] []    [] [] []             |
Packit Service 21b5d1
     libexif            |                                  []                |
Packit Service 21b5d1
     libextractor       |                                  []                |
Packit Service 21b5d1
     libgpewidget       |                         []    [] []                |
Packit Service 21b5d1
     libgpg-error       |                                  []                |
Packit Service 21b5d1
     libgphoto2         |                               [] []                |
Packit Service 21b5d1
     libgphoto2_port    |                               [] []                |
Packit Service 21b5d1
     libgsasl           |                                                    |
Packit Service 21b5d1
     libiconv           |                                                    |
Packit Service 21b5d1
     libidn             |                               []                [] |
Packit Service 21b5d1
     lifelines          |                               [] ()                |
Packit Service 21b5d1
     lilypond           |                                  []                |
Packit Service 21b5d1
     lingoteach         |                                                    |
Packit Service 21b5d1
     lynx               |                      [] []    [] []                |
Packit Service 21b5d1
     m4                 |                         []    [] [] []             |
Packit Service 21b5d1
     mailutils          |                      []                            |
Packit Service 21b5d1
     make               |                               [] []                |
Packit Service 21b5d1
     man-db             |                      [] ()    [] []                |
Packit Service 21b5d1
     minicom            |                         []    [] []                |
Packit Service 21b5d1
     mysecretdiary      |                               [] []                |
Packit Service 21b5d1
     nano               |                []    [] ()       []                |
Packit Service 21b5d1
     nano_1_0           |                      [] ()    [] []                |
Packit Service 21b5d1
     opcodes            |                                  []                |
Packit Service 21b5d1
     parted             |                                                    |
Packit Service 21b5d1
     pilot-qof          |                                            []      |
Packit Service 21b5d1
     psmisc             |                []                                  |
Packit Service 21b5d1
     pwdutils           |                                                    |
Packit Service 21b5d1
     python             |                                                    |
Packit Service 21b5d1
     qof                |                                                    |
Packit Service 21b5d1
     radius             |                      []                            |
Packit Service 21b5d1
     recode             |             []       []       [] [] []          [] |
Packit Service 21b5d1
     rpm                |                         []    []                   |
Packit Service 21b5d1
     screem             |                                                    |
Packit Service 21b5d1
     scrollkeeper       |          [] []       [] [] [] [] []        []      |
Packit Service 21b5d1
     sed                |                      []          []             [] |
Packit Service 21b5d1
     sh-utils           |                               [] []                |
Packit Service 21b5d1
     shared-mime-info   |                []       []                      [] |
Packit Service 21b5d1
     sharutils          |                []    [] []    [] [] []             |
Packit Service 21b5d1
     shishi             |                                                    |
Packit Service 21b5d1
     silky              |                                                    |
Packit Service 21b5d1
     skencil            |                               [] ()                |
Packit Service 21b5d1
     sketch             |                               [] ()                |
Packit Service 21b5d1
     solfege            |                                                    |
Packit Service 21b5d1
     soundtracker       |                               [] []                |
Packit Service 21b5d1
     sp                 |                                  []                |
Packit Service 21b5d1
     stardict           |                         []                         |
Packit Service 21b5d1
     system-tools-ba... |       []       [] [] [] []    [] [] []     []      |
Packit Service 21b5d1
     tar                |                                                    |
Packit Service 21b5d1
     texinfo            |                               [] []             [] |
Packit Service 21b5d1
     textutils          |                      []       [] []                |
Packit Service 21b5d1
     tin                |                                  ()        ()      |
Packit Service 21b5d1
     tp-robot           |                                  []                |
Packit Service 21b5d1
     tuxpaint           | []             []             [] []        []      |
Packit Service 21b5d1
     unicode-han-tra... |                                                    |
Packit Service 21b5d1
     unicode-transla... |                                                    |
Packit Service 21b5d1
     util-linux         |                      [] []    [] []                |
Packit Service 21b5d1
     vorbis-tools       |             []          []    []           []      |
Packit Service 21b5d1
     wastesedge         |                                  ()                |
Packit Service 21b5d1
     wdiff              |                      []       [] []        []      |
Packit Service 21b5d1
     wget               |                      []          []                |
Packit Service 21b5d1
     xchat              |                []    []          [] []     []      |
Packit Service 21b5d1
     xkeyboard-config   |                                                    |
Packit Service 21b5d1
     xpad               |                []             []                   |
Packit Service 21b5d1
                        +----------------------------------------------------+
Packit Service 21b5d1
                          af am ar az be bg bs ca cs cy da de el en en_GB eo
Packit Service 21b5d1
                          11  0  1  2  8 20  1 42 43  2 62 97 18  1  16   13
Packit Service 21b5d1
Packit Service 21b5d1
                          es et eu fa fi fr  ga gl gu he hi hr hu id is it
Packit Service 21b5d1
                        +--------------------------------------------------+
Packit Service 21b5d1
     GNUnet             |                                                  |
Packit Service 21b5d1
     a2ps               |    []       [] []                             () |
Packit Service 21b5d1
     aegis              |                                                  |
Packit Service 21b5d1
     ant-phone          |                []                                |
Packit Service 21b5d1
     anubis             |                []                                |
Packit Service 21b5d1
     ap-utils           |             [] []                                |
Packit Service 21b5d1
     aspell             |                []  []                         [] |
Packit Service 21b5d1
     bash               | []             []                    []          |
Packit Service 21b5d1
     batchelor          |                []  []                            |
Packit Service 21b5d1
     bfd                | []                                               |
Packit Service 21b5d1
     bibshelf           | []                 []                         [] |
Packit Service 21b5d1
     binutils           | []          [] []                                |
Packit Service 21b5d1
     bison              | [] []          []  []                   []    [] |
Packit Service 21b5d1
     bison-runtime      |    []          []  []                   []    [] |
Packit Service 21b5d1
     bluez-pin          |             [] []  []                [] []       |
Packit Service 21b5d1
     cflow              |                                                  |
Packit Service 21b5d1
     clisp              | []             []                                |
Packit Service 21b5d1
     console-tools      |                                                  |
Packit Service 21b5d1
     coreutils          | [] []       [] []  []                []          |
Packit Service 21b5d1
     cpio               | []             []  []                            |
Packit Service 21b5d1
     cpplib             | []             []                                |
Packit Service 21b5d1
     cryptonit          |                []                                |
Packit Service 21b5d1
     darkstat           | []             ()  []                [] []       |
Packit Service 21b5d1
     dialog             | [] [] []    [] []  []                []       [] |
Packit Service 21b5d1
     diffutils          | []          [] []  [] []    []       [] []    [] |
Packit Service 21b5d1
     doodle             |                    []                         [] |
Packit Service 21b5d1
     e2fsprogs          | []             []                             [] |
Packit Service 21b5d1
     enscript           |                []  []             []             |
Packit Service 21b5d1
     error              | []          [] []  []                []          |
Packit Service 21b5d1
     fetchmail          | []                                               |
Packit Service 21b5d1
     fileutils          | [] []          []  []                []       [] |
Packit Service 21b5d1
     findutils          |    []          []  []                []          |
Packit Service 21b5d1
     flex               | []             []  []                            |
Packit Service 21b5d1
     fslint             |                []                                |
Packit Service 21b5d1
     gas                | []             []                                |
Packit Service 21b5d1
     gawk               | []             []  []       []                   |
Packit Service 21b5d1
     gbiff              |                []                                |
Packit Service 21b5d1
     gcal               | []             []                                |
Packit Service 21b5d1
     gcc                | []                                               |
Packit Service 21b5d1
     gettext-examples   | []             []  []                []       [] |
Packit Service 21b5d1
     gettext-runtime    | []          [] []  []                   []    [] |
Packit Service 21b5d1
     gettext-tools      | []             []                             [] |
Packit Service 21b5d1
     gimp-print         | []             []                                |
Packit Service 21b5d1
     gip                | []    []       []                                |
Packit Service 21b5d1
     gliv               |                ()                                |
Packit Service 21b5d1
     glunarclock        |             []     []                []          |
Packit Service 21b5d1
     gmult              |       []       []                             [] |
Packit Service 21b5d1
     gnubiff            |                ()                             () |
Packit Service 21b5d1
     gnucash            | ()             ()                    ()          |
Packit Service 21b5d1
     gnucash-glossary   | []                                            [] |
Packit Service 21b5d1
     gnuedu             | []                                               |
Packit Service 21b5d1
     gnulib             | [] [] []    [] []  [] []             []          |
Packit Service 21b5d1
     gnunet-gtk         |                                                  |
Packit Service 21b5d1
     gnutls             |                                                  |
Packit Service 21b5d1
     gpe-aerial         | []             []                                |
Packit Service 21b5d1
     gpe-beam           | []             []                                |
Packit Service 21b5d1
     gpe-calendar       | []             []                    [] []       |
Packit Service 21b5d1
     gpe-clock          | []          [] []                    []          |
Packit Service 21b5d1
     gpe-conf           |                []                                |
Packit Service 21b5d1
     gpe-contacts       | []             []                                |
Packit Service 21b5d1
     gpe-edit           | []             []                    [] []       |
Packit Service 21b5d1
     gpe-filemanager    | []                                               |
Packit Service 21b5d1
     gpe-go             | []             []                    []          |
Packit Service 21b5d1
     gpe-login          | []             []                    []          |
Packit Service 21b5d1
     gpe-ownerinfo      | []          [] []                    [] []       |
Packit Service 21b5d1
     gpe-package        | []                                               |
Packit Service 21b5d1
     gpe-sketchbook     | []             []                                |
Packit Service 21b5d1
     gpe-su             | []          [] []                    []          |
Packit Service 21b5d1
     gpe-taskmanager    | []          [] []                                |
Packit Service 21b5d1
     gpe-timesheet      | []             []  []                   []       |
Packit Service 21b5d1
     gpe-today          | []          [] []  []                            |
Packit Service 21b5d1
     gpe-todo           | []                                               |
Packit Service 21b5d1
     gphoto2            | []          [] []                    []       [] |
Packit Service 21b5d1
     gprof              | []             []  []                   []       |
Packit Service 21b5d1
     gpsdrive           | ()             ()                    []       () |
Packit Service 21b5d1
     gramadoir          |                []  []                            |
Packit Service 21b5d1
     grep               | [] [] []    [] []  [] []    []    [] [] []    [] |
Packit Service 21b5d1
     gretl              | []             []                             [] |
Packit Service 21b5d1
     gsasl              |                    []                            |
Packit Service 21b5d1
     gss                |                []                                |
Packit Service 21b5d1
     gst-plugins        |                []                    []       [] |
Packit Service 21b5d1
     gst-plugins-base   |                                      []       [] |
Packit Service 21b5d1
     gst-plugins-good   |       []                             []       [] |
Packit Service 21b5d1
     gstreamer          |             []                       []       [] |
Packit Service 21b5d1
     gtick              |       []    [] []  []                         [] |
Packit Service 21b5d1
     gtkam              | []             []                    []       [] |
Packit Service 21b5d1
     gtkorphan          |                []                             [] |
Packit Service 21b5d1
     gtkspell           | []    []    [] []  []                         [] |
Packit Service 21b5d1
     gutenprint         |                                      []          |
Packit Service 21b5d1
     hello              | [] [] [] [] [] []  [] []    []    [] [] []    [] |
Packit Service 21b5d1
     id-utils           |                []  []                [] []    [] |
Packit Service 21b5d1
     impost             |                []  []                            |
Packit Service 21b5d1
     indent             | [] [] []    [] []  [] []             [] []    [] |
Packit Service 21b5d1
     iso_3166           |             [] []                    []          |
Packit Service 21b5d1
     iso_3166_1         | []    []    [] []  []                [] []       |
Packit Service 21b5d1
     iso_3166_2         |                []                                |
Packit Service 21b5d1
     iso_3166_3         |                []                                |
Packit Service 21b5d1
     iso_4217           |    []       []        []             []          |
Packit Service 21b5d1
     iso_639            |          [] [] []  []                []          |
Packit Service 21b5d1
     jpilot             | []             []                                |
Packit Service 21b5d1
     jtag               |                []                                |
Packit Service 21b5d1
     jwhois             | []             []                    [] []    [] |
Packit Service 21b5d1
     kbd                | []             []                                |
Packit Service 21b5d1
     keytouch           |                    []                            |
Packit Service 21b5d1
     keytouch-editor    |                    []                            |
Packit Service 21b5d1
     keytouch-keyboa... |                    []                            |
Packit Service 21b5d1
     latrine            |                []  []                         [] |
Packit Service 21b5d1
     ld                 | []             []                                |
Packit Service 21b5d1
     leafpad            | []             []  []       []       []       [] |
Packit Service 21b5d1
     libc               | []          [] []     []             []          |
Packit Service 21b5d1
     libexif            | []                                               |
Packit Service 21b5d1
     libextractor       |                    []                            |
Packit Service 21b5d1
     libgpewidget       | []             []  []                [] []       |
Packit Service 21b5d1
     libgpg-error       |                                                  |
Packit Service 21b5d1
     libgphoto2         | []             []                                |
Packit Service 21b5d1
     libgphoto2_port    |                []                             [] |
Packit Service 21b5d1
     libgsasl           |                []  []                            |
Packit Service 21b5d1
     libiconv           |                                                  |
Packit Service 21b5d1
     libidn             |                []                             [] |
Packit Service 21b5d1
     lifelines          |                ()                                |
Packit Service 21b5d1
     lilypond           |                []                                |
Packit Service 21b5d1
     lingoteach         |                []                       []    [] |
Packit Service 21b5d1
     lynx               |    []                                []       [] |
Packit Service 21b5d1
     m4                 |                []  [] []                []       |
Packit Service 21b5d1
     mailutils          | []             []                                |
Packit Service 21b5d1
     make               | []          [] []  [] []    []    []    []       |
Packit Service 21b5d1
     man-db             | ()                                               |
Packit Service 21b5d1
     minicom            | []          [] []                    []          |
Packit Service 21b5d1
     mysecretdiary      | []             []                       []       |
Packit Service 21b5d1
     nano               |       []    () []  []                []       [] |
Packit Service 21b5d1
     nano_1_0           | []             []     []                []    [] |
Packit Service 21b5d1
     opcodes            | []          [] []  []                            |
Packit Service 21b5d1
     parted             | []                                      []    [] |
Packit Service 21b5d1
     pilot-qof          |                                                  |
Packit Service 21b5d1
     psmisc             |       []                             []       [] |
Packit Service 21b5d1
     pwdutils           |                                                  |
Packit Service 21b5d1
     python             |                                                  |
Packit Service 21b5d1
     qof                |                                                  |
Packit Service 21b5d1
     radius             | []             []                                |
Packit Service 21b5d1
     recode             | []             []  [] []    []       [] []    [] |
Packit Service 21b5d1
     rpm                |                []                       []       |
Packit Service 21b5d1
     screem             |                                                  |
Packit Service 21b5d1
     scrollkeeper       | []          []                       []          |
Packit Service 21b5d1
     sed                | [] []          []  []                []          |
Packit Service 21b5d1
     sh-utils           | [] []       [] []  []                []       [] |
Packit Service 21b5d1
     shared-mime-info   | []    []    [] []                    []       [] |
Packit Service 21b5d1
     sharutils          | [] []       [] []  [] []             []       [] |
Packit Service 21b5d1
     shishi             |                                                  |
Packit Service 21b5d1
     silky              |                []                                |
Packit Service 21b5d1
     skencil            | []             []                                |
Packit Service 21b5d1
     sketch             | []             []                                |
Packit Service 21b5d1
     solfege            |                                               [] |
Packit Service 21b5d1
     soundtracker       | []             []                             [] |
Packit Service 21b5d1
     sp                 |                []                                |
Packit Service 21b5d1
     stardict           |                                      []          |
Packit Service 21b5d1
     system-tools-ba... | []    []    [] []                 [] [] []    [] |
Packit Service 21b5d1
     tar                | [] []          []  []                         [] |
Packit Service 21b5d1
     texinfo            |                []           []                   |
Packit Service 21b5d1
     textutils          | []             []  [] []             []          |
Packit Service 21b5d1
     tin                |    []          ()                                |
Packit Service 21b5d1
     tp-robot           |             [] []                    []          |
Packit Service 21b5d1
     tuxpaint           |                    []                []          |
Packit Service 21b5d1
     unicode-han-tra... |                                                  |
Packit Service 21b5d1
     unicode-transla... |                []  []                            |
Packit Service 21b5d1
     util-linux         | [] []       [] []                    [] []    [] |
Packit Service 21b5d1
     vorbis-tools       | []             []                                |
Packit Service 21b5d1
     wastesedge         |                ()                                |
Packit Service 21b5d1
     wdiff              | [] []          []  [] []             [] []    [] |
Packit Service 21b5d1
     wget               |    []       [] []  []             [] [] []    [] |
Packit Service 21b5d1
     xchat              | []    []    [] []        []    []    []       [] |
Packit Service 21b5d1
     xkeyboard-config   |             [] []                    []       [] |
Packit Service 21b5d1
     xpad               | []                 []                []          |
Packit Service 21b5d1
                        +--------------------------------------------------+
Packit Service 21b5d1
                          es et eu fa fi fr  ga gl gu he hi hr hu id is it
Packit Service 21b5d1
                          89 21 16  2 41 118 59 14  1  8  1  6 60 30  0 52
Packit Service 21b5d1
Packit Service 21b5d1
                          ja ko ku ky lg lt lv mk mn ms mt nb ne nl  nn no
Packit Service 21b5d1
                        +--------------------------------------------------+
Packit Service 21b5d1
     GNUnet             |                                                  |
Packit Service 21b5d1
     a2ps               |    ()                      []          []     () |
Packit Service 21b5d1
     aegis              |                                        ()        |
Packit Service 21b5d1
     ant-phone          |                                        []        |
Packit Service 21b5d1
     anubis             |                            []    []    []        |
Packit Service 21b5d1
     ap-utils           |                            []                    |
Packit Service 21b5d1
     aspell             |                         []             []        |
Packit Service 21b5d1
     bash               |                                        []        |
Packit Service 21b5d1
     batchelor          |                            []          []        |
Packit Service 21b5d1
     bfd                |                                                  |
Packit Service 21b5d1
     bibshelf           |                            []                    |
Packit Service 21b5d1
     binutils           |                                                  |
Packit Service 21b5d1
     bison              |                            []    []    []        |
Packit Service 21b5d1
     bison-runtime      |                            []    []    []        |
Packit Service 21b5d1
     bluez-pin          |       []                   []          []        |
Packit Service 21b5d1
     cflow              |                                                  |
Packit Service 21b5d1
     clisp              |                                        []        |
Packit Service 21b5d1
     console-tools      |                                                  |
Packit Service 21b5d1
     coreutils          |                                        []        |
Packit Service 21b5d1
     cpio               |                                                  |
Packit Service 21b5d1
     cpplib             |                                        []        |
Packit Service 21b5d1
     cryptonit          |                                        []        |
Packit Service 21b5d1
     darkstat           |                            []          []        |
Packit Service 21b5d1
     dialog             |                            []          []        |
Packit Service 21b5d1
     diffutils          | []                         []          []        |
Packit Service 21b5d1
     doodle             |                                                  |
Packit Service 21b5d1
     e2fsprogs          |                                        []        |
Packit Service 21b5d1
     enscript           |                                        []        |
Packit Service 21b5d1
     error              |                                        []        |
Packit Service 21b5d1
     fetchmail          | []                                     []        |
Packit Service 21b5d1
     fileutils          | []          []                                   |
Packit Service 21b5d1
     findutils          |                                        []        |
Packit Service 21b5d1
     flex               |    []                                  []        |
Packit Service 21b5d1
     fslint             |                            []          []        |
Packit Service 21b5d1
     gas                |                                                  |
Packit Service 21b5d1
     gawk               | []                                     []        |
Packit Service 21b5d1
     gbiff              |                                        []        |
Packit Service 21b5d1
     gcal               |                                                  |
Packit Service 21b5d1
     gcc                |                                                  |
Packit Service 21b5d1
     gettext-examples   | []                                     []        |
Packit Service 21b5d1
     gettext-runtime    | [] []                                  []        |
Packit Service 21b5d1
     gettext-tools      | [] []                                            |
Packit Service 21b5d1
     gimp-print         | []                                     []        |
Packit Service 21b5d1
     gip                |                            []          []        |
Packit Service 21b5d1
     gliv               |                                        []        |
Packit Service 21b5d1
     glunarclock        |                            []          []        |
Packit Service 21b5d1
     gmult              | []                         []                    |
Packit Service 21b5d1
     gnubiff            |                                                  |
Packit Service 21b5d1
     gnucash            | ()                               ()              |
Packit Service 21b5d1
     gnucash-glossary   |                                        []        |
Packit Service 21b5d1
     gnuedu             |                                                  |
Packit Service 21b5d1
     gnulib             | [] []                      []          []        |
Packit Service 21b5d1
     gnunet-gtk         |                                                  |
Packit Service 21b5d1
     gnutls             |                                                  |
Packit Service 21b5d1
     gpe-aerial         |                                        []        |
Packit Service 21b5d1
     gpe-beam           |                                        []        |
Packit Service 21b5d1
     gpe-calendar       |                                        []        |
Packit Service 21b5d1
     gpe-clock          |    []                                  []        |
Packit Service 21b5d1
     gpe-conf           |    []                                  []        |
Packit Service 21b5d1
     gpe-contacts       |    []                                            |
Packit Service 21b5d1
     gpe-edit           |    []                                  []        |
Packit Service 21b5d1
     gpe-filemanager    |    []                                            |
Packit Service 21b5d1
     gpe-go             |    []                                  []        |
Packit Service 21b5d1
     gpe-login          |    []                                  []        |
Packit Service 21b5d1
     gpe-ownerinfo      |                                        []        |
Packit Service 21b5d1
     gpe-package        |    []                                            |
Packit Service 21b5d1
     gpe-sketchbook     |    []                                  []        |
Packit Service 21b5d1
     gpe-su             |    []                                  []        |
Packit Service 21b5d1
     gpe-taskmanager    |    [] []                               []        |
Packit Service 21b5d1
     gpe-timesheet      |                                        []        |
Packit Service 21b5d1
     gpe-today          |                                        []        |
Packit Service 21b5d1
     gpe-todo           |                                                  |
Packit Service 21b5d1
     gphoto2            | []                                     []        |
Packit Service 21b5d1
     gprof              |                                                  |
Packit Service 21b5d1
     gpsdrive           | ()                                     ()     () |
Packit Service 21b5d1
     gramadoir          |                                        ()        |
Packit Service 21b5d1
     grep               | []                               []    []        |
Packit Service 21b5d1
     gretl              |                                                  |
Packit Service 21b5d1
     gsasl              |                                        []        |
Packit Service 21b5d1
     gss                |                                                  |
Packit Service 21b5d1
     gst-plugins        |                                        []        |
Packit Service 21b5d1
     gst-plugins-base   |                                                  |
Packit Service 21b5d1
     gst-plugins-good   |                                        []        |
Packit Service 21b5d1
     gstreamer          |                                        []        |
Packit Service 21b5d1
     gtick              |                                        []        |
Packit Service 21b5d1
     gtkam              | []                                               |
Packit Service 21b5d1
     gtkorphan          |                                        []        |
Packit Service 21b5d1
     gtkspell           |                         []             []        |
Packit Service 21b5d1
     gutenprint         |                                                  |
Packit Service 21b5d1
     hello              | [] []             []       []    []    []  [] [] |
Packit Service 21b5d1
     id-utils           |                                        []        |
Packit Service 21b5d1
     impost             |                                                  |
Packit Service 21b5d1
     indent             | []                                     []        |
Packit Service 21b5d1
     iso_3166           |                                        []        |
Packit Service 21b5d1
     iso_3166_1         |                                        []     [] |
Packit Service 21b5d1
     iso_3166_2         |                                        []        |
Packit Service 21b5d1
     iso_3166_3         |                                        []        |
Packit Service 21b5d1
     iso_4217           | []                      []             []        |
Packit Service 21b5d1
     iso_639            | []                                     []  []    |
Packit Service 21b5d1
     jpilot             | ()                                     ()     () |
Packit Service 21b5d1
     jtag               |                                                  |
Packit Service 21b5d1
     jwhois             |                                        []        |
Packit Service 21b5d1
     kbd                |                                        []        |
Packit Service 21b5d1
     keytouch           |                                        []        |
Packit Service 21b5d1
     keytouch-editor    |                                                  |
Packit Service 21b5d1
     keytouch-keyboa... |                                        []        |
Packit Service 21b5d1
     latrine            |                                        []        |
Packit Service 21b5d1
     ld                 |                                                  |
Packit Service 21b5d1
     leafpad            | []             []                                |
Packit Service 21b5d1
     libc               | [] []                            []    []     [] |
Packit Service 21b5d1
     libexif            |                                                  |
Packit Service 21b5d1
     libextractor       |                                                  |
Packit Service 21b5d1
     libgpewidget       |                                        []        |
Packit Service 21b5d1
     libgpg-error       |                                                  |
Packit Service 21b5d1
     libgphoto2         | []                                               |
Packit Service 21b5d1
     libgphoto2_port    | []                                               |
Packit Service 21b5d1
     libgsasl           |                                        []        |
Packit Service 21b5d1
     libiconv           |                                                  |
Packit Service 21b5d1
     libidn             | []                                     []        |
Packit Service 21b5d1
     lifelines          |                                        []        |
Packit Service 21b5d1
     lilypond           |                                                  |
Packit Service 21b5d1
     lingoteach         |                                        []        |
Packit Service 21b5d1
     lynx               | []                                     []        |
Packit Service 21b5d1
     m4                 | []                                     []        |
Packit Service 21b5d1
     mailutils          |                                                  |
Packit Service 21b5d1
     make               | [] []                                  []        |
Packit Service 21b5d1
     man-db             | ()                                               |
Packit Service 21b5d1
     minicom            | []                                               |
Packit Service 21b5d1
     mysecretdiary      |                                        []        |
Packit Service 21b5d1
     nano               |                            []    []    []        |
Packit Service 21b5d1
     nano_1_0           |                            []    []        []    |
Packit Service 21b5d1
     opcodes            |                                        []        |
Packit Service 21b5d1
     parted             | []                                     []        |
Packit Service 21b5d1
     pilot-qof          |                                                  |
Packit Service 21b5d1
     psmisc             | []                               []    []        |
Packit Service 21b5d1
     pwdutils           |                                                  |
Packit Service 21b5d1
     python             |                                                  |
Packit Service 21b5d1
     qof                |                                                  |
Packit Service 21b5d1
     radius             |                                                  |
Packit Service 21b5d1
     recode             |                                        []        |
Packit Service 21b5d1
     rpm                | [] []                                            |
Packit Service 21b5d1
     screem             | []                                               |
Packit Service 21b5d1
     scrollkeeper       |                                  [] [] []  []    |
Packit Service 21b5d1
     sed                | []                                     []        |
Packit Service 21b5d1
     sh-utils           | []                               []              |
Packit Service 21b5d1
     shared-mime-info   |    []          []                []    []  []    |
Packit Service 21b5d1
     sharutils          | []                                     []        |
Packit Service 21b5d1
     shishi             |                                                  |
Packit Service 21b5d1
     silky              |                                        []        |
Packit Service 21b5d1
     skencil            |                                                  |
Packit Service 21b5d1
     sketch             |                                                  |
Packit Service 21b5d1
     solfege            |                                                  |
Packit Service 21b5d1
     soundtracker       |                                                  |
Packit Service 21b5d1
     sp                 | ()                                               |
Packit Service 21b5d1
     stardict           |                      []                []        |
Packit Service 21b5d1
     system-tools-ba... | [] []          []                      []        |
Packit Service 21b5d1
     tar                | []       []                            []        |
Packit Service 21b5d1
     texinfo            | []                               []    []        |
Packit Service 21b5d1
     textutils          | [] []                            []              |
Packit Service 21b5d1
     tin                |                                                  |
Packit Service 21b5d1
     tp-robot           |                                        []        |
Packit Service 21b5d1
     tuxpaint           |                                            []    |
Packit Service 21b5d1
     unicode-han-tra... |                                                  |
Packit Service 21b5d1
     unicode-transla... |                                                  |
Packit Service 21b5d1
     util-linux         | []                                     []        |
Packit Service 21b5d1
     vorbis-tools       |                                        []        |
Packit Service 21b5d1
     wastesedge         |                                        []        |
Packit Service 21b5d1
     wdiff              |                            []    []              |
Packit Service 21b5d1
     wget               | []                                     []        |
Packit Service 21b5d1
     xchat              | [] []                []                []        |
Packit Service 21b5d1
     xkeyboard-config   |                                        []        |
Packit Service 21b5d1
     xpad               |    []                      []          []        |
Packit Service 21b5d1
                        +--------------------------------------------------+
Packit Service 21b5d1
                          ja ko ku ky lg lt lv mk mn ms mt nb ne nl  nn no
Packit Service 21b5d1
                          40 24  2  1  1  3  1  2  3 21  0 15  1 102  6  3
Packit Service 21b5d1
Packit Service 21b5d1
                          nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv  ta
Packit Service 21b5d1
                        +------------------------------------------------------+
Packit Service 21b5d1
     GNUnet             |                                                      |
Packit Service 21b5d1
     a2ps               |           ()     []      [] []       []    [] []     |
Packit Service 21b5d1
     aegis              |                          () ()                       |
Packit Service 21b5d1
     ant-phone          |                          []                   []     |
Packit Service 21b5d1
     anubis             |           []             [] []                       |
Packit Service 21b5d1
     ap-utils           |           ()                                         |
Packit Service 21b5d1
     aspell             |                          [] []                       |
Packit Service 21b5d1
     bash               |                  []      [] []                       |
Packit Service 21b5d1
     batchelor          |                          []                   []     |
Packit Service 21b5d1
     bfd                |                                                      |
Packit Service 21b5d1
     bibshelf           |                                               []     |
Packit Service 21b5d1
     binutils           |                             []                []     |
Packit Service 21b5d1
     bison              |           []     []      [] []                []     |
Packit Service 21b5d1
     bison-runtime      |           []             []          []       []     |
Packit Service 21b5d1
     bluez-pin          |           []     []   [] [] []    [] []    [] []     |
Packit Service 21b5d1
     cflow              |           []                                         |
Packit Service 21b5d1
     clisp              |                             []                       |
Packit Service 21b5d1
     console-tools      |                             []                       |
Packit Service 21b5d1
     coreutils          |           []                []       []       []     |
Packit Service 21b5d1
     cpio               |           []                []                []     |
Packit Service 21b5d1
     cpplib             |                                               []     |
Packit Service 21b5d1
     cryptonit          |                  []                           []     |
Packit Service 21b5d1
     darkstat           |           []     []      []       []       [] []     |
Packit Service 21b5d1
     dialog             |           [] []  []   [] [] [] []          [] []     |
Packit Service 21b5d1
     diffutils          |           []     []      [] []             [] []     |
Packit Service 21b5d1
     doodle             |                                         []    []     |
Packit Service 21b5d1
     e2fsprogs          |           []                                  []     |
Packit Service 21b5d1
     enscript           |                  []      [] []       []       []     |
Packit Service 21b5d1
     error              |                  []      []       []          []     |
Packit Service 21b5d1
     fetchmail          |           []                []          []           |
Packit Service 21b5d1
     fileutils          |           []             [] []       []       []     |
Packit Service 21b5d1
     findutils          |           [] []          []       [] []       []     |
Packit Service 21b5d1
     flex               |           []     []      [] []                []     |
Packit Service 21b5d1
     fslint             |                  []      []                [] []     |
Packit Service 21b5d1
     gas                |                                                      |
Packit Service 21b5d1
     gawk               |           []     []      []                   []     |
Packit Service 21b5d1
     gbiff              |                          []                          |
Packit Service 21b5d1
     gcal               |                                               []     |
Packit Service 21b5d1
     gcc                |                                                      |
Packit Service 21b5d1
     gettext-examples   |           [] []          [] []    [] []    [] []     |
Packit Service 21b5d1
     gettext-runtime    |           [] []          [] []    [] []    [] []     |
Packit Service 21b5d1
     gettext-tools      |           []             [] []    [] []    [] []     |
Packit Service 21b5d1
     gimp-print         |                                   []          []     |
Packit Service 21b5d1
     gip                |                       []          []       [] []     |
Packit Service 21b5d1
     gliv               |                  []      []       []          []     |
Packit Service 21b5d1
     glunarclock        |                  []      [] []    []       [] []     |
Packit Service 21b5d1
     gmult              |                       [] []                [] []     |
Packit Service 21b5d1
     gnubiff            |                          ()                          |
Packit Service 21b5d1
     gnucash            |           ()                                  []     |
Packit Service 21b5d1
     gnucash-glossary   |              []                   []          []     |
Packit Service 21b5d1
     gnuedu             |                                                      |
Packit Service 21b5d1
     gnulib             |           []             [] []       []       []     |
Packit Service 21b5d1
     gnunet-gtk         |                                               []     |
Packit Service 21b5d1
     gnutls             |           []                                  []     |
Packit Service 21b5d1
     gpe-aerial         |              []  []      [] []       []    [] []     |
Packit Service 21b5d1
     gpe-beam           |              []  []      [] []       []    [] []     |
Packit Service 21b5d1
     gpe-calendar       |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-clock          |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-conf           |              []  []      [] []    [] []       []     |
Packit Service 21b5d1
     gpe-contacts       |                          [] []       []    [] []     |
Packit Service 21b5d1
     gpe-edit           |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-filemanager    |                                      []       []     |
Packit Service 21b5d1
     gpe-go             |                  []      [] []       []    [] []     |
Packit Service 21b5d1
     gpe-login          |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-ownerinfo      |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-package        |                                      []       []     |
Packit Service 21b5d1
     gpe-sketchbook     |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-su             |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-taskmanager    |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-timesheet      |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-today          |              []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     gpe-todo           |                             []       []    [] []     |
Packit Service 21b5d1
     gphoto2            |           []             []       []       [] []     |
Packit Service 21b5d1
     gprof              |                  []      []                   []     |
Packit Service 21b5d1
     gpsdrive           |        []                []                   []     |
Packit Service 21b5d1
     gramadoir          |                                   []          []     |
Packit Service 21b5d1
     grep               |           [] []  []      [] []       []    [] []     |
Packit Service 21b5d1
     gretl              |           []                                         |
Packit Service 21b5d1
     gsasl              |           []                                  []     |
Packit Service 21b5d1
     gss                |           []             []                   []     |
Packit Service 21b5d1
     gst-plugins        |     []                                  [] [] []     |
Packit Service 21b5d1
     gst-plugins-base   |                                               []     |
Packit Service 21b5d1
     gst-plugins-good   |     []                                  [] [] []     |
Packit Service 21b5d1
     gstreamer          |                                         [] [] []     |
Packit Service 21b5d1
     gtick              |                          [] []                []     |
Packit Service 21b5d1
     gtkam              |           []     []         []                []     |
Packit Service 21b5d1
     gtkorphan          |                                               []     |
Packit Service 21b5d1
     gtkspell           |                  []   [] [] []    [] []    [] []     |
Packit Service 21b5d1
     gutenprint         |                                               []     |
Packit Service 21b5d1
     hello              |           []     []      [] []    [] []    [] []     |
Packit Service 21b5d1
     id-utils           |                  []      [] []                []     |
Packit Service 21b5d1
     impost             |                                               []     |
Packit Service 21b5d1
     indent             |                  []      [] []    []       [] []     |
Packit Service 21b5d1
     iso_3166           |              []                []    [] [] [] []     |
Packit Service 21b5d1
     iso_3166_1         |                                   [] [] [] []        |
Packit Service 21b5d1
     iso_3166_2         |                                                      |
Packit Service 21b5d1
     iso_3166_3         |                          []    []    []    []        |
Packit Service 21b5d1
     iso_4217           |                                []    []    [] []     |
Packit Service 21b5d1
     iso_639            |                                []    []    [] []     |
Packit Service 21b5d1
     jpilot             |                                                      |
Packit Service 21b5d1
     jtag               |                                   []                 |
Packit Service 21b5d1
     jwhois             |           []     []      []                   []     |
Packit Service 21b5d1
     kbd                |           []             []                   []     |
Packit Service 21b5d1
     keytouch           |                                               []     |
Packit Service 21b5d1
     keytouch-editor    |                                               []     |
Packit Service 21b5d1
     keytouch-keyboa... |                                               []     |
Packit Service 21b5d1
     latrine            |                          []                   []     |
Packit Service 21b5d1
     ld                 |                                               []     |
Packit Service 21b5d1
     leafpad            |           [] []             []    []          []  [] |
Packit Service 21b5d1
     libc               |           []     []         []    []          []     |
Packit Service 21b5d1
     libexif            |           []                                         |
Packit Service 21b5d1
     libextractor       |                          []                   []     |
Packit Service 21b5d1
     libgpewidget       |              []  []      []       [] []    [] []     |
Packit Service 21b5d1
     libgpg-error       |           []             []                          |
Packit Service 21b5d1
     libgphoto2         |           []                                         |
Packit Service 21b5d1
     libgphoto2_port    |           []                []                       |
Packit Service 21b5d1
     libgsasl           |           []             []                [] []     |
Packit Service 21b5d1
     libiconv           |                                                      |
Packit Service 21b5d1
     libidn             |           []                               [] ()     |
Packit Service 21b5d1
     lifelines          |           []                                  []     |
Packit Service 21b5d1
     lilypond           |                                                      |
Packit Service 21b5d1
     lingoteach         |                  []                                  |
Packit Service 21b5d1
     lynx               |                  []         []                []     |
Packit Service 21b5d1
     m4                 |           []     []      [] []                []     |
Packit Service 21b5d1
     mailutils          |           []             [] []                []     |
Packit Service 21b5d1
     make               |           []     []         []                []     |
Packit Service 21b5d1
     man-db             |                          []                   []     |
Packit Service 21b5d1
     minicom            |           []     []      [] []                []     |
Packit Service 21b5d1
     mysecretdiary      |                  []      [] []                []     |
Packit Service 21b5d1
     nano               |                          []                   []     |
Packit Service 21b5d1
     nano_1_0           |           []             [] []                []     |
Packit Service 21b5d1
     opcodes            |                          []                   []     |
Packit Service 21b5d1
     parted             |           []                                         |
Packit Service 21b5d1
     pilot-qof          |                                               []     |
Packit Service 21b5d1
     psmisc             |           []                                  []     |
Packit Service 21b5d1
     pwdutils           |           []                                  []     |
Packit Service 21b5d1
     python             |                                                      |
Packit Service 21b5d1
     qof                |                                               []     |
Packit Service 21b5d1
     radius             |           []                []                       |
Packit Service 21b5d1
     recode             |           [] []  []      [] []       []       []     |
Packit Service 21b5d1
     rpm                |           [] []             []                []     |
Packit Service 21b5d1
     screem             |                                                      |
Packit Service 21b5d1
     scrollkeeper       |           []             [] []    []    [] [] []     |
Packit Service 21b5d1
     sed                |           [] []  []      [] []    [] []    [] []     |
Packit Service 21b5d1
     sh-utils           |                             []       []    []        |
Packit Service 21b5d1
     shared-mime-info   |              []  []                     [] [] []     |
Packit Service 21b5d1
     sharutils          |           []                []             [] []     |
Packit Service 21b5d1
     shishi             |           []                                         |
Packit Service 21b5d1
     silky              |                                   []                 |
Packit Service 21b5d1
     skencil            |              []  []                           []     |
Packit Service 21b5d1
     sketch             |              []  []                           []     |
Packit Service 21b5d1
     solfege            |                                               []     |
Packit Service 21b5d1
     soundtracker       |                                   []          []     |
Packit Service 21b5d1
     sp                 |                                                      |
Packit Service 21b5d1
     stardict           |                             []    []          []     |
Packit Service 21b5d1
     system-tools-ba... |        [] [] []  []      []             [] [] []  [] |
Packit Service 21b5d1
     tar                |           []             [] []       []       []     |
Packit Service 21b5d1
     texinfo            |           []             [] []                []     |
Packit Service 21b5d1
     textutils          |                             []       []       []     |
Packit Service 21b5d1
     tin                |                             ()                       |
Packit Service 21b5d1
     tp-robot           |                             []                       |
Packit Service 21b5d1
     tuxpaint           |              []                      [] [] [] []     |
Packit Service 21b5d1
     unicode-han-tra... |                                                      |
Packit Service 21b5d1
     unicode-transla... |                                                      |
Packit Service 21b5d1
     util-linux         |                  []         []       []       []     |
Packit Service 21b5d1
     vorbis-tools       |                          [] []                       |
Packit Service 21b5d1
     wastesedge         |                                                      |
Packit Service 21b5d1
     wdiff              |           []     []      [] []    []          []     |
Packit Service 21b5d1
     wget               |              []             []    []          []     |
Packit Service 21b5d1
     xchat              |        []                   []    [] [] [] [] []     |
Packit Service 21b5d1
     xkeyboard-config   |                                      []       []     |
Packit Service 21b5d1
     xpad               |                                   [] []       []     |
Packit Service 21b5d1
                        +------------------------------------------------------+
Packit Service 21b5d1
                          nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv  ta
Packit Service 21b5d1
                           0   2  3 58 31  53    5 76 72  5 42 48 12 51 128  2
Packit Service 21b5d1
Packit Service 21b5d1
                          tg th tk tr uk ven vi  wa xh zh_CN zh_HK zh_TW zu
Packit Service 21b5d1
                        +---------------------------------------------------+
Packit Service 21b5d1
     GNUnet             |                    []                             |  2
Packit Service 21b5d1
     a2ps               |          [] []     []                             | 19
Packit Service 21b5d1
     aegis              |                                                   |  0
Packit Service 21b5d1
     ant-phone          |          []        []                             |  6
Packit Service 21b5d1
     anubis             |          [] []     []                             | 11
Packit Service 21b5d1
     ap-utils           |             ()     []                             |  4
Packit Service 21b5d1
     aspell             |             []     []  []                         | 14
Packit Service 21b5d1
     bash               |                    []                             | 11
Packit Service 21b5d1
     batchelor          |          []        []                             |  9
Packit Service 21b5d1
     bfd                |                                                   |  1
Packit Service 21b5d1
     bibshelf           |                    []                             |  7
Packit Service 21b5d1
     binutils           |          []        []                     []      |  9
Packit Service 21b5d1
     bison              |          []        []                     []      | 19
Packit Service 21b5d1
     bison-runtime      |                    []         []          []      | 15
Packit Service 21b5d1
     bluez-pin          |          [] []     []  []     []          []      | 28
Packit Service 21b5d1
     cflow              |             []     []                             |  4
Packit Service 21b5d1
     clisp              |                                                   |  6
Packit Service 21b5d1
     console-tools      |          []        []                             |  5
Packit Service 21b5d1
     coreutils          |          []        []                             | 17
Packit Service 21b5d1
     cpio               |          [] []     []                             |  9
Packit Service 21b5d1
     cpplib             |          []        []         []          []      | 11
Packit Service 21b5d1
     cryptonit          |                                                   |  5
Packit Service 21b5d1
     darkstat           |                    []         ()          ()      | 15
Packit Service 21b5d1
     dialog             |          [] []     []         []          []      | 30
Packit Service 21b5d1
     diffutils          |          []        []         []          []      | 28
Packit Service 21b5d1
     doodle             |                    []                             |  6
Packit Service 21b5d1
     e2fsprogs          |          []        []                             | 10
Packit Service 21b5d1
     enscript           |          [] []     []                             | 16
Packit Service 21b5d1
     error              |          []        []         []          []      | 18
Packit Service 21b5d1
     fetchmail          |          []        []                             | 12
Packit Service 21b5d1
     fileutils          |          []                   []          []      | 18
Packit Service 21b5d1
     findutils          |          []        []                     []      | 17
Packit Service 21b5d1
     flex               |          []        []                             | 15
Packit Service 21b5d1
     fslint             |                    []                             |  9
Packit Service 21b5d1
     gas                |          []                                       |  3
Packit Service 21b5d1
     gawk               |          []        []                             | 15
Packit Service 21b5d1
     gbiff              |                    []                             |  5
Packit Service 21b5d1
     gcal               |          []                                       |  5
Packit Service 21b5d1
     gcc                |          []                   []          []      |  5
Packit Service 21b5d1
     gettext-examples   |          [] []     []         []          []      | 24
Packit Service 21b5d1
     gettext-runtime    |          [] []     []         []          []      | 26
Packit Service 21b5d1
     gettext-tools      |          [] []     []         []          []      | 19
Packit Service 21b5d1
     gimp-print         |             []     []                             | 12
Packit Service 21b5d1
     gip                |                    []                     []      | 12
Packit Service 21b5d1
     gliv               |          []        []                             |  8
Packit Service 21b5d1
     glunarclock        |                    []  []                 []      | 15
Packit Service 21b5d1
     gmult              |          []        []         []          []      | 15
Packit Service 21b5d1
     gnubiff            |                    []                             |  1
Packit Service 21b5d1
     gnucash            |          ()                                       |  2
Packit Service 21b5d1
     gnucash-glossary   |                    []                     []      |  9
Packit Service 21b5d1
     gnuedu             |                    []                             |  2
Packit Service 21b5d1
     gnulib             |          [] []     []         []          []      | 28
Packit Service 21b5d1
     gnunet-gtk         |                                                   |  1
Packit Service 21b5d1
     gnutls             |                                                   |  2
Packit Service 21b5d1
     gpe-aerial         |                    []         []                  | 14
Packit Service 21b5d1
     gpe-beam           |                    []         []                  | 14
Packit Service 21b5d1
     gpe-calendar       |                    []  []     []          []      | 19
Packit Service 21b5d1
     gpe-clock          |          []        []  []     []                  | 20
Packit Service 21b5d1
     gpe-conf           |                    []         []                  | 14
Packit Service 21b5d1
     gpe-contacts       |                    []         []                  | 10
Packit Service 21b5d1
     gpe-edit           |          []        []  []                 []      | 19
Packit Service 21b5d1
     gpe-filemanager    |                    []                             |  5
Packit Service 21b5d1
     gpe-go             |          []        []                             | 14
Packit Service 21b5d1
     gpe-login          |          []        []  []     []          []      | 20
Packit Service 21b5d1
     gpe-ownerinfo      |          []        []         []          []      | 20
Packit Service 21b5d1
     gpe-package        |                    []                             |  5
Packit Service 21b5d1
     gpe-sketchbook     |          []        []                             | 16
Packit Service 21b5d1
     gpe-su             |          []        []         []                  | 19
Packit Service 21b5d1
     gpe-taskmanager    |          []        []         []                  | 19
Packit Service 21b5d1
     gpe-timesheet      |          []        []         []          []      | 18
Packit Service 21b5d1
     gpe-today          |          []        []  []     []          []      | 20
Packit Service 21b5d1
     gpe-todo           |                    []                             |  6
Packit Service 21b5d1
     gphoto2            |             []     []         []          []      | 20
Packit Service 21b5d1
     gprof              |          []        []                             | 11
Packit Service 21b5d1
     gpsdrive           |                                                   |  4
Packit Service 21b5d1
     gramadoir          |                    []                             |  7
Packit Service 21b5d1
     grep               |          [] []     []                     []      | 33
Packit Service 21b5d1
     gretl              |                                                   |  4
Packit Service 21b5d1
     gsasl              |                    []         []                  |  6
Packit Service 21b5d1
     gss                |                    []                             |  5
Packit Service 21b5d1
     gst-plugins        |             []     []                     []      | 15
Packit Service 21b5d1
     gst-plugins-base   |             []     []         []                  |  9
Packit Service 21b5d1
     gst-plugins-good   |             []     []         []                  | 18
Packit Service 21b5d1
     gstreamer          |          [] []     []                             | 17
Packit Service 21b5d1
     gtick              |                    []                             | 11
Packit Service 21b5d1
     gtkam              |                    []                             | 13
Packit Service 21b5d1
     gtkorphan          |                    []                             |  7
Packit Service 21b5d1
     gtkspell           |             []     []  []     []    []    []      | 26
Packit Service 21b5d1
     gutenprint         |                                                   |  3
Packit Service 21b5d1
     hello              |          [] []     []         []          []      | 39
Packit Service 21b5d1
     id-utils           |          []        []                             | 14
Packit Service 21b5d1
     impost             |                    []                             |  4
Packit Service 21b5d1
     indent             |          []        []         []          []      | 25
Packit Service 21b5d1
     iso_3166           |       [] []        []                             | 15
Packit Service 21b5d1
     iso_3166_1         |          []            []                         | 20
Packit Service 21b5d1
     iso_3166_2         |                                                   |  2
Packit Service 21b5d1
     iso_3166_3         |                        []     []                  |  9
Packit Service 21b5d1
     iso_4217           |          []        []                             | 14
Packit Service 21b5d1
     iso_639            |                    []  []                         | 16
Packit Service 21b5d1
     jpilot             |          [] []     []         []                  |  7
Packit Service 21b5d1
     jtag               |                    []                             |  3
Packit Service 21b5d1
     jwhois             |          []        []                     []      | 13
Packit Service 21b5d1
     kbd                |          []        []                             | 12
Packit Service 21b5d1
     keytouch           |                    []                             |  4
Packit Service 21b5d1
     keytouch-editor    |                                                   |  2
Packit Service 21b5d1
     keytouch-keyboa... |                    []                             |  4
Packit Service 21b5d1
     latrine            |          []        []                             |  8
Packit Service 21b5d1
     ld                 |          []        []         []                  |  7
Packit Service 21b5d1
     leafpad            |          []        []         []          []      | 23
Packit Service 21b5d1
     libc               |          []                   []          []      | 23
Packit Service 21b5d1
     libexif            |                    []                             |  4
Packit Service 21b5d1
     libextractor       |                    []                             |  5
Packit Service 21b5d1
     libgpewidget       |                    []  []     []                  | 19
Packit Service 21b5d1
     libgpg-error       |                    []                             |  4
Packit Service 21b5d1
     libgphoto2         |             []                                    |  7
Packit Service 21b5d1
     libgphoto2_port    |             []     []                     []      | 10
Packit Service 21b5d1
     libgsasl           |                    []                             |  8
Packit Service 21b5d1
     libiconv           |                                                   |  0
Packit Service 21b5d1
     libidn             |                    []         []                  | 10
Packit Service 21b5d1
     lifelines          |                                                   |  4
Packit Service 21b5d1
     lilypond           |                                                   |  2
Packit Service 21b5d1
     lingoteach         |                    []                             |  6
Packit Service 21b5d1
     lynx               |          [] []     []                             | 15
Packit Service 21b5d1
     m4                 |                    []         []          []      | 18
Packit Service 21b5d1
     mailutils          |             []                                    |  8
Packit Service 21b5d1
     make               |          []        []         []                  | 20
Packit Service 21b5d1
     man-db             |                    []                             |  6
Packit Service 21b5d1
     minicom            |                    []                             | 14
Packit Service 21b5d1
     mysecretdiary      |          []        []                             | 12
Packit Service 21b5d1
     nano               |                    []                     []      | 15
Packit Service 21b5d1
     nano_1_0           |          [] []     []                             | 18
Packit Service 21b5d1
     opcodes            |          []        []                             | 10
Packit Service 21b5d1
     parted             |          [] []                            []      |  9
Packit Service 21b5d1
     pilot-qof          |                    []                             |  3
Packit Service 21b5d1
     psmisc             |                    []                             | 10
Packit Service 21b5d1
     pwdutils           |                    []                             |  3
Packit Service 21b5d1
     python             |                                                   |  0
Packit Service 21b5d1
     qof                |                    []                             |  2
Packit Service 21b5d1
     radius             |             []                                    |  6
Packit Service 21b5d1
     recode             |          []        []         []                  | 25
Packit Service 21b5d1
     rpm                |          [] []     []                             | 13
Packit Service 21b5d1
     screem             |                    []                             |  2
Packit Service 21b5d1
     scrollkeeper       |          [] []     []                     []      | 26
Packit Service 21b5d1
     sed                |          []        []                     []      | 22
Packit Service 21b5d1
     sh-utils           |          []                                       | 15
Packit Service 21b5d1
     shared-mime-info   |             []     []         []          []      | 23
Packit Service 21b5d1
     sharutils          |          []        []                     []      | 23
Packit Service 21b5d1
     shishi             |                                                   |  1
Packit Service 21b5d1
     silky              |                    []                             |  4
Packit Service 21b5d1
     skencil            |                    []                             |  7
Packit Service 21b5d1
     sketch             |                                                   |  6
Packit Service 21b5d1
     solfege            |                                                   |  2
Packit Service 21b5d1
     soundtracker       |          []        []                             |  9
Packit Service 21b5d1
     sp                 |          []                                       |  3
Packit Service 21b5d1
     stardict           |             []     []         []          []      | 11
Packit Service 21b5d1
     system-tools-ba... |    []    [] []     []     []  []          []      | 37
Packit Service 21b5d1
     tar                |          [] []     []                     []      | 17
Packit Service 21b5d1
     texinfo            |          []        []         []                  | 15
Packit Service 21b5d1
     textutils          |          []                   []          []      | 17
Packit Service 21b5d1
     tin                |                                                   |  1
Packit Service 21b5d1
     tp-robot           |                    []         []          []      |  9
Packit Service 21b5d1
     tuxpaint           |                    []  []                 []      | 16
Packit Service 21b5d1
     unicode-han-tra... |                                                   |  0
Packit Service 21b5d1
     unicode-transla... |                                                   |  2
Packit Service 21b5d1
     util-linux         |          [] []     []                             | 20
Packit Service 21b5d1
     vorbis-tools       |             []     []                             | 11
Packit Service 21b5d1
     wastesedge         |                                                   |  1
Packit Service 21b5d1
     wdiff              |          []        []                             | 22
Packit Service 21b5d1
     wget               |          []        []                     []      | 19
Packit Service 21b5d1
     xchat              |             []     []         []          []      | 28
Packit Service 21b5d1
     xkeyboard-config   |          [] []     []                     []      | 11
Packit Service 21b5d1
     xpad               |                    []         []          []      | 14
Packit Service 21b5d1
                        +---------------------------------------------------+
Packit Service 21b5d1
       77 teams           tg th tk tr uk ven vi  wa xh zh_CN zh_HK zh_TW zu
Packit Service 21b5d1
      172 domains          0  1  1 78 39  0  135 14  1  50     1    52    0  2040
Packit Service 21b5d1
Packit Service 21b5d1
   Some counters in the preceding matrix are higher than the number of
Packit Service 21b5d1
visible blocks let us expect.  This is because a few extra PO files are
Packit Service 21b5d1
used for implementing regional variants of languages, or language
Packit Service 21b5d1
dialects.
Packit Service 21b5d1
Packit Service 21b5d1
   For a PO file in the matrix above to be effective, the package to
Packit Service 21b5d1
which it applies should also have been internationalized and
Packit Service 21b5d1
distributed as such by its maintainer.  There might be an observable
Packit Service 21b5d1
lag between the mere existence a PO file and its wide availability in a
Packit Service 21b5d1
distribution.
Packit Service 21b5d1
Packit Service 21b5d1
   If June 2006 seems to be old, you may fetch a more recent copy of
Packit Service 21b5d1
this `ABOUT-NLS' file on most GNU archive sites.  The most up-to-date
Packit Service 21b5d1
matrix with full percentage details can be found at
Packit Service 21b5d1
`http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
Packit Service 21b5d1
Packit Service 21b5d1
1.6 Using `gettext' in new packages
Packit Service 21b5d1
===================================
Packit Service 21b5d1
Packit Service 21b5d1
If you are writing a freely available program and want to
Packit Service 21b5d1
internationalize it you are welcome to use GNU `gettext' in your
Packit Service 21b5d1
package.  Of course you have to respect the GNU Library General Public
Packit Service 21b5d1
License which covers the use of the GNU `gettext' library.  This means
Packit Service 21b5d1
in particular that even non-free programs can use `libintl' as a shared
Packit Service 21b5d1
library, whereas only free software can use `libintl' as a static
Packit Service 21b5d1
library or use modified versions of `libintl'.
Packit Service 21b5d1
Packit Service 21b5d1
   Once the sources are changed appropriately and the setup can handle
Packit Service 21b5d1
the use of `gettext' the only thing missing are the translations.  The
Packit Service 21b5d1
Free Translation Project is also available for packages which are not
Packit Service 21b5d1
developed inside the GNU project.  Therefore the information given above
Packit Service 21b5d1
applies also for every other Free Software Project.  Contact
Packit Service 21b5d1
`translation@iro.umontreal.ca' to make the `.pot' files available to
Packit Service 21b5d1
the translation teams.
Packit Service 21b5d1