Blame ABOUT-NLS

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