Blame ABOUT-NLS

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