Blame ABOUT-NLS

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