Diff for /embedaddon/libiconv/ABOUT-NLS between versions 1.1 and 1.1.1.3

version 1.1, 2012/02/21 22:57:48 version 1.1.1.3, 2021/03/17 13:38:46
Line 1 Line 1
 1 Notes on the Free Translation Project  1 Notes on the Free Translation Project
 ***************************************  ***************************************
   
Free software is going international!  The Free Translation Project isFree software is going international!  The Free Translation Project is a
a way to get maintainers of free software, translators, and users allway to get maintainers of free software, translators, and users all
 together, so that free software will gradually become able to speak many  together, so that free software will gradually become able to speak many
 languages.  A few packages already provide translations for their  languages.  A few packages already provide translations for their
 messages.  messages.
   
   If you found this `ABOUT-NLS' file inside a distribution, you may   If you found this 'ABOUT-NLS' file inside a distribution, you may
assume that the distributed package does use GNU `gettext' internally,assume that the distributed package does use GNU 'gettext' internally,
 itself available at your nearest GNU archive site.  But you do _not_  itself available at your nearest GNU archive site.  But you do _not_
need to install GNU `gettext' prior to configuring, installing or usingneed to install GNU 'gettext' prior to configuring, installing or using
 this package with messages translated.  this package with messages translated.
   
    Installers will find here some useful hints.  These notes also     Installers will find here some useful hints.  These notes also
Line 18  explain how users should proceed for getting the progr Line 18  explain how users should proceed for getting the progr
 available translations.  They tell how people wanting to contribute and  available translations.  They tell how people wanting to contribute and
 work on translations can contact the appropriate team.  work on translations can contact the appropriate team.
   
   When reporting bugs in the `intl/' directory or bugs which may be1.1 INSTALL Matters
related to internationalization, you should tell about the version of 
`gettext' which is used.  The information can be found in the 
`intl/VERSION' file, in internationalized packages. 
 
1.1 Quick configuration advice 
============================== 
 
If you want to exploit the full power of internationalization, you 
should configure it using 
 
     ./configure --with-included-gettext 
 
to force usage of internationalizing routines provided within this 
package, despite the existence of internationalizing capabilities in the 
operating system where this package is being installed.  So far, only 
the `gettext' implementation in the GNU C library version 2 provides as 
many features (such as locale alias, message inheritance, automatic 
charset conversion or plural form handling) as the implementation here. 
It is also not possible to offer this additional functionality on top 
of a `catgets' implementation.  Future versions of GNU `gettext' will 
very likely convey even more functionality.  So it might be a good idea 
to change to GNU `gettext' as soon as possible. 
 
   So you need _not_ provide this option if you are using GNU libc 2 or 
you have installed a recent copy of the GNU gettext package with the 
included `libintl'. 
 
1.2 INSTALL Matters 
 ===================  ===================
   
 Some packages are "localizable" when properly installed; the programs  Some packages are "localizable" when properly installed; the programs
 they contain can be made to speak your own native language.  Most such  they contain can be made to speak your own native language.  Most such
packages use GNU `gettext'.  Other packages have their own ways topackages use GNU 'gettext'.  Other packages have their own ways to
internationalization, predating GNU `gettext'.internationalization, predating GNU 'gettext'.
   
    By default, this package will be installed to allow translation of     By default, this package will be installed to allow translation of
 messages.  It will automatically detect whether the system already  messages.  It will automatically detect whether the system already
provides the GNU `gettext' functions.  If not, the included GNUprovides the GNU 'gettext' functions.  Installers may use special
`gettext' library will be used.  This library is wholly containedoptions at configuration time for changing the default behaviour.  The
within this package, usually in the `intl/' subdirectory, so priorcommand:
installation of the GNU `gettext' package is _not_ required. 
Installers may use special options at configuration time for changing 
the default behaviour.  The commands: 
   
      ./configure --with-included-gettext  
      ./configure --disable-nls       ./configure --disable-nls
   
will, respectively, bypass any pre-existing `gettext' to use thewill _totally_ disable translation of messages.
internationalizing routines provided within this package, or else, 
_totally_ disable translation of messages. 
   
   When you already have GNU `gettext' installed on your system and run   When you already have GNU 'gettext' installed on your system and run
configure without an option for your new package, `configure' willconfigure without an option for your new package, 'configure' will
probably detect the previously built and installed `libintl.a' file andprobably detect the previously built and installed 'libintl' library and
will decide to use this.  This might not be desirable.  You should usewill decide to use it.  If not, you may have to to use the
the more recent version of the GNU `gettext' library.  I.e. if the file'--with-libintl-prefix' option to tell 'configure' where to look for it.
`intl/VERSION' shows that the library which comes with this package is 
more recent, you should use 
   
     ./configure --with-included-gettext   Internationalized packages usually have many 'po/LL.po' files, where
 
to prevent auto-detection. 
 
   The configuration process will not test for the `catgets' function 
and therefore it will not be used.  The reason is that even an 
emulation of `gettext' on top of `catgets' could not provide all the 
extensions of the GNU `gettext' library. 
 
   Internationalized packages usually have many `po/LL.po' files, where 
 LL gives an ISO 639 two-letter code identifying the language.  Unless  LL gives an ISO 639 two-letter code identifying the language.  Unless
translations have been forbidden at `configure' time by using thetranslations have been forbidden at 'configure' time by using the
`--disable-nls' switch, all available translations are installed'--disable-nls' switch, all available translations are installed
together with the package.  However, the environment variable `LINGUAS'together with the package.  However, the environment variable 'LINGUAS'
 may be set, prior to configuration, to limit the installed set.  may be set, prior to configuration, to limit the installed set.
`LINGUAS' should then contain a space separated list of two-letter'LINGUAS' should then contain a space separated list of two-letter
 codes, stating which languages are allowed.  codes, stating which languages are allowed.
   
1.3 Using This Package1.2 Using This Package
 ======================  ======================
   
 As a user, if your language has been installed for this package, you  As a user, if your language has been installed for this package, you
only have to set the `LANG' environment variable to the appropriateonly have to set the 'LANG' environment variable to the appropriate
`LL_CC' combination.  If you happen to have the `LC_ALL' or some other'LL_CC' combination.  If you happen to have the 'LC_ALL' or some other
`LC_xxx' environment variables set, you should unset them before'LC_xxx' environment variables set, you should unset them before setting
setting `LANG', otherwise the setting of `LANG' will not have the'LANG', otherwise the setting of 'LANG' will not have the desired
desired effect.  Here `LL' is an ISO 639 two-letter language code, andeffect.  Here 'LL' is an ISO 639 two-letter language code, and 'CC' is
`CC' is an ISO 3166 two-letter country code.  For example, let'san ISO 3166 two-letter country code.  For example, let's suppose that
suppose that you speak German and live in Germany.  At the shellyou speak German and live in Germany.  At the shell prompt, merely
prompt, merely execute `setenv LANG de_DE' (in `csh'),execute 'setenv LANG de_DE' (in 'csh'), 'export LANG; LANG=de_DE' (in
`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').'sh') or 'export LANG=de_DE' (in 'bash').  This can be done from your
This can be done from your `.login' or `.profile' file, once and for'.login' or '.profile' file, once and for all.
all. 
   
    You might think that the country code specification is redundant.     You might think that the country code specification is redundant.
 But in fact, some languages have dialects in different countries.  For  But in fact, some languages have dialects in different countries.  For
example, `de_AT' is used for Austria, and `pt_BR' for Brazil.  Theexample, 'de_AT' is used for Austria, and 'pt_BR' for Brazil.  The
 country code serves to distinguish the dialects.  country code serves to distinguish the dialects.
   
   The locale naming convention of `LL_CC', with `LL' denoting the   The locale naming convention of 'LL_CC', with 'LL' denoting the
language and `CC' denoting the country, is the one use on systems basedlanguage and 'CC' denoting the country, is the one use on systems based
on GNU libc.  On other systems, some variations of this scheme areon GNU libc.  On other systems, some variations of this scheme are used,
used, such as `LL' or `LL_CC.ENCODING'.  You can get the list ofsuch as 'LL' or 'LL_CC.ENCODING'.  You can get the list of locales
locales supported by your system for your language by running thesupported by your system for your language by running the command
command `locale -a | grep '^LL''.'locale -a | grep '^LL''.
   
    Not all programs have translations for all languages.  By default, an     Not all programs have translations for all languages.  By default, an
 English message is shown in place of a nonexistent translation.  If you  English message is shown in place of a nonexistent translation.  If you
 understand other languages, you can set up a priority list of languages.  understand other languages, you can set up a priority list of languages.
 This is done through a different environment variable, called  This is done through a different environment variable, called
`LANGUAGE'.  GNU `gettext' gives preference to `LANGUAGE' over `LANG''LANGUAGE'.  GNU 'gettext' gives preference to 'LANGUAGE' over 'LANG'
for the purpose of message handling, but you still need to have `LANG'for the purpose of message handling, but you still need to have 'LANG'
 set to the primary language; this is required by other parts of the  set to the primary language; this is required by other parts of the
system libraries.  For example, some Swedish users who would rathersystem libraries.  For example, some Swedish users who would rather read
read translations in German than English for when Swedish is nottranslations in German than English for when Swedish is not available,
available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.set 'LANGUAGE' to 'sv:de' while leaving 'LANG' to 'sv_SE'.
   
    Special advice for Norwegian users: The language code for Norwegian     Special advice for Norwegian users: The language code for Norwegian
bokma*l changed from `no' to `nb' recently (in 2003).  During thebokma*l changed from 'no' to 'nb' recently (in 2003).  During the
 transition period, while some message catalogs for this language are  transition period, while some message catalogs for this language are
installed under `nb' and some older ones under `no', it's recommendedinstalled under 'nb' and some older ones under 'no', it's recommended
for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer andfor Norwegian users to set 'LANGUAGE' to 'nb:no' so that both newer and
 older translations are used.  older translations are used.
   
   In the `LANGUAGE' environment variable, but not in the `LANG'   In the 'LANGUAGE' environment variable, but not in the 'LANG'
environment variable, `LL_CC' combinations can be abbreviated as `LL'environment variable, 'LL_CC' combinations can be abbreviated as 'LL' to
to denote the language's main dialect.  For example, `de' is equivalentdenote the language's main dialect.  For example, 'de' is equivalent to
to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT''de_DE' (German as spoken in Germany), and 'pt' to 'pt_PT' (Portuguese
(Portuguese as spoken in Portugal) in this context.as spoken in Portugal) in this context.
   
1.4 Translating Teams1.3 Translating Teams
 =====================  =====================
   
 For the Free Translation Project to be a success, we need interested  For the Free Translation Project to be a success, we need interested
Line 156  people who like their own language and write it well,  Line 110  people who like their own language and write it well, 
 able to synergize with other translators speaking the same language.  able to synergize with other translators speaking the same language.
 Each translation team has its own mailing list.  The up-to-date list of  Each translation team has its own mailing list.  The up-to-date list of
 teams can be found at the Free Translation Project's homepage,  teams can be found at the Free Translation Project's homepage,
`http://translationproject.org/', in the "Teams" area.'http://translationproject.org/', in the "Teams" area.
   
    If you'd like to volunteer to _work_ at translating messages, you     If you'd like to volunteer to _work_ at translating messages, you
 should become a member of the translating team for your own language.  should become a member of the translating team for your own language.
 The subscribing address is _not_ the same as the list itself, it has  The subscribing address is _not_ the same as the list itself, it has
`-request' appended.  For example, speakers of Swedish can send a'-request' appended.  For example, speakers of Swedish can send a
message to `sv-request@li.org', having this message body:message to 'sv-request@li.org', having this message body:
   
      subscribe       subscribe
   
   Keep in mind that team members are expected to participate   Keep in mind that team members are expected to participate _actively_
_actively_ in translations, or at solving translational difficulties,in translations, or at solving translational difficulties, rather than
rather than merely lurking around.  If your team does not exist yet andmerely lurking around.  If your team does not exist yet and you want to
you want to start one, or if you are unsure about what to do or how tostart one, or if you are unsure about what to do or how to get started,
get started, please write to `coordinator@translationproject.org' toplease write to 'coordinator@translationproject.org' to reach the
reach the coordinator for all translator teams.coordinator for all translator teams.
   
    The English team is special.  It works at improving and uniformizing     The English team is special.  It works at improving and uniformizing
 the terminology in use.  Proven linguistic skills are praised more than  the terminology in use.  Proven linguistic skills are praised more than
 programming skills, here.  programming skills, here.
   
1.5 Available Packages1.4 Available Packages
 ======================  ======================
   
 Languages are not equally supported in all packages.  The following  Languages are not equally supported in all packages.  The following
matrix shows the current state of internationalization, as of Novembermatrix shows the current state of internationalization, as of Jun 2014.
2007.  The matrix shows, in regard of each package, for which languagesThe matrix shows, in regard of each package, for which languages PO
PO files have been submitted to translation coordination, with afiles have been submitted to translation coordination, with a
 translation percentage of at least 50%.  translation percentage of at least 50%.
   
     Ready PO files       af am ar az be bg bs ca cs cy da de el en en_GB eo     Ready PO files       af am an ar as ast az be bg bn bn_IN bs ca crh cs
                        +----------------------------------------------------+                        +---------------------------------------------------+
     Compendium         |                      []       [] []        []      |     a2ps               |                       []                []     [] |
     a2ps               |             []                [] [] []     []      |     aegis              |                                                   |
     aegis              |                                  ()                |     anubis             |                                                   |
     ant-phone          |                                  ()                |     aspell             |                []                       []     [] |
     anubis             |                                  []                |     bash               |                          []             []     [] |
     ap-utils           |                                                    |     bfd                |                                                   |
     aspell             |                      [] []    [] []        []      |     binutils           |                                         []        |
     bash               |                                                 [] |     bison              |                                                   |
     bfd                |                                                    |     bison-runtime      |                []                                 |
     bibshelf           |                                  []                |     buzztrax           |                                                [] |
     binutils           |                                                    |     ccd2cue            |                                                   |
     bison              |                               [] []                |     ccide              |                                                   |
     bison-runtime      |                                  []                |     cflow              |                                                   |
     bluez-pin          | []                      []       [] []          [] |     clisp              |                                                   |
     cflow              |                               []                   |     coreutils          |                                         []     [] |
     clisp              |                               [] []    []          |     cpio               |                                                   |
     console-tools      |                         []       []                |     cppi               |                                                   |
     coreutils          |                []    [] []       []                |     cpplib             |                                         []        |
     cpio               |                                                    |     cryptsetup         |                                                [] |
     cpplib             |                      []       [] []                |     datamash           |                                                   |
     cryptonit          |                                  []                |     denemo             |                                         []     [] |
     dialog             |                                                    |     dfarc              |                                         []        |
     diffutils          |                      [] []    [] [] []          [] |     dialog             |       []                                []     [] |
     doodle             |                                  []                |     dico               |                                                   |
     e2fsprogs          |                         []       []                |     diffutils          |                                                [|
     enscript           |                      []       [] []        []      |     dink               |                                         []        |
     fetchmail          |                      []       [] () []     []      |     direvent           |                                                   |
     findutils          |                []                                  |     doodle             |                                                [] |
     findutils_stable   |                []    []       []                   |     dos2unix           |                                                   |
     flex               |                      []       [] []                |     dos2unix-man       |                                                   |
     fslint             |                                                    |     e2fsprogs          |                                         []     [] |
     gas                |                                                    |     enscript           |                                         []        |
     gawk               |                      []       [] []                |     exif               |                                                [] |
     gcal               |                      []                            |     fetchmail          |                                         []     [] |
     gcc                |                                  []                |     findutils          |                                                [] |
     gettext-examples   | []                   []          [] []          [] |     flex               |                                         []        |
     gettext-runtime    |             []       []       [] []             [] |     freedink           |                                         []     [] |
     gettext-tools      |                      []          []                |     fusionforge        |                                                   |
     gip                |                []                                  |     gas                |                                                   |
     gliv               |                []                []                |     gawk               |                                         []        |
     glunarclock        |                []                                  |     gcal               |                                         []        |
     gmult              | []                               []                |     gcc                |                                                   |
     gnubiff            |                                  ()                |     gdbm               |                                                   |
     gnucash            |                      [] []       () ()     []      |     gettext-examples   | []             []        []             []     [] |
     gnuedu             |                                                    |     gettext-runtime    |                          []             []     [] |
     gnulib             |                []                                  |     gettext-tools      |                          []             []        |
     gnunet             |                                                    |     gjay               |                                                   |
     gnunet-gtk         |                                                    |     glunarclock        |                []        []                    [] |
     gnutls             |                                  []                |     gnubiff            |                                                [] |
     gpe-aerial         |                         []       []                |     gnubik             |          []                                       |
     gpe-beam           |                         []       []                |     gnucash            |          ()              ()             []        |
     gpe-calendar       |                                                    |     gnuchess           |                                                   |
     gpe-clock          |                         []       []                |     gnulib             |                                                [] |
     gpe-conf           |                         []       []                |     gnunet             |                                                   |
     gpe-contacts       |                                                    |     gnunet-gtk         |                                                   |
     gpe-edit           |                         []                         |     gold               |                                                   |
     gpe-filemanager    |                                                    |     gphoto2            |                                                [|
     gpe-go             |                         []                         |     gprof              |                          []                       |
     gpe-login          |                         []       []                |     gramadoir          |                                                   |
     gpe-ownerinfo      |                         []       []                |     grep               |                          []             []     [] |
     gpe-package        |                                                    |     grub               |                                         []        |
     gpe-sketchbook     |                         []       []                |     gsasl              |                                                   |
     gpe-su             |                         []       []                |     gss                |                                                   |
     gpe-taskmanager    |                         []       []                |     gst-plugins-bad    |                          []                    [] |
     gpe-timesheet      |                         []                         |     gst-plugins-base   |                          []             []     [] |
     gpe-today          |                         []       []                |     gst-plugins-good   |                          []             []     [] |
     gpe-todo           |                                                    |     gst-plugins-ugly   |                          []             []     [] |
     gphoto2            |                         []    [] []        []      |     gstreamer          |                []        []             []     [] |
     gprof              |                               [] []                |     gtick              |                                                [] |
     gpsdrive           |                                                    |     gtkam              |                       []                       [] |
     gramadoir          | []                               []                |     gtkspell           | []             []     []                []     [] |
     grep               |                         []                      [] |     guix               |                                                   |
     gretl              |                                  ()                |     guix-packages      |                                                   |
     gsasl              |                                                    |     gutenprint         |                                         []        |
     gss                |                                                    |     hello              |                                         []        |
     gst-plugins-bad    |                []             []                   |     help2man           |                                                   |
     gst-plugins-base   |                []             []                   |     help2man-texi      |                                                   |
     gst-plugins-good   |                []    []       []                   |     hylafax            |                                                   |
     gst-plugins-ugly   |                []             []                   |     idutils            |                                                   |
     gstreamer          | []             []    [] []    [] []        []      |     iso_15924          |                                                [] |
     gtick              |                                  ()                |     iso_3166           | []          []        [] [] []  []   [] [] []  [] |
     gtkam              |             []          []    [] []                |     iso_3166_2         |                                                   |
     gtkorphan          |                []                []                |     iso_4217           |                                                [] |
     gtkspell           |             []                   [] []          [] |     iso_639            |             [] []     [] [] []  []      [] []  [] |
     gutenprint         |                               []                   |     iso_639_3          |                []                          []     |
     hello              |                []    []       [] []             [] |     iso_639_5          |                                                   |
     herrie             |                                  []                |     jwhois             |                                                   |
     hylafax            |                                                    |     kbd                |                                                [] |
     idutils            |                               [] []                |     klavaro            |          []              [] []          []     [] |
     indent             |                      [] []       []             [] |     ld                 |                          []                       |
     iso_15924          |                                                    |     leafpad            |                       [] []             []     [] |
     iso_3166           |       []    [] [] [] [] [] [] [] [] []          [] |     libc               |                          []             []     [] |
     iso_3166_2         |                                                    |     libexif            |                       ()                          |
     iso_4217           |                         []    [] []                |     libextractor       |                                                   |
     iso_639            |                         []    [] []             [] |     libgnutls          |                                                [] |
     jpilot             |                         []                         |     libgphoto2         |                                                [] |
     jtag               |                                                    |     libgphoto2_port    |                                                [] |
     jwhois             |                                                    |     libgsasl           |                                                   |
     kbd                |                         []    [] [] []             |     libiconv           |                          []                    [] |
     keytouch           |                      []          []                |     libidn             |                                                [] |
     keytouch-editor    |                                  []                |     liferea            |          []    []                       []     [] |
     keytouch-keyboa... |                      []                            |     lilypond           |                                         []     [] |
     latrine            |                                  ()                |     lordsawar          |                                         []        |
     ld                 |                               []                   |     lprng              |                                                   |
     leafpad            |                []    [] []       [] []             |     lynx               |                                         []     [] |
     libc               |                      [] []    [] []                |     m4                 |                                                [] |
     libexif            |                                  []                |     mailfromd          |                                                   |
     libextractor       |                                  []                |     mailutils          |                                                   |
     libgpewidget       |                         []    [] []                |     make               |                                                [] |
     libgpg-error       |                                  []                |     man-db             |                                         []     [] |
     libgphoto2         |                               [] []                |     man-db-manpages    |                                                   |
     libgphoto2_port    |                               [] []                |     midi-instruments   |          []                             []     [] |
     libgsasl           |                                                    |     minicom            |                                                [] |
     libiconv           |                                  []             [] |     mkisofs            |                                                [] |
     libidn             |                         []    []                [] |     myserver           |                                                [] |
     lifelines          |                               [] ()                |     nano               |                          []             []     [] |
     lilypond           |                                  []                |     opcodes            |                                                   |
     lingoteach         |                                                    |     parted             |                                                [] |
     lprng              |                                                    |     pies               |                                                   |
     lynx               |                      [] []    [] []                |     pnmixer            |                                                   |
     m4                 |                         []    [] [] []             |     popt               |                                                [] |
     mailfromd          |                                                    |     procps-ng          |                                                   |
     mailutils          |                      []                            |     procps-ng-man      |                                                   |
     make               |                               [] []                |     psmisc             |                                                [] |
     man-db             |                      []       [] []                |     pspp               |                                         []        |
     minicom            |                         []    [] []                |     pushover           |                                                [] |
     nano               |                []    []          []                |     pwdutils           |                                                   |
     opcodes            |                                  []                |     pyspread           |                                                   |
     parted             |                         []       []                |     radius             |                                         []        |
     pilot-qof          |                                                    |     recode             |                       []                []     [] |
     popt               |                         []    [] []                |     recutils           |                                                   |
     psmisc             |                []                                  |     rpm                |                                                   |
     pwdutils           |                                                    |     rush               |                                                   |
     qof                |                                                    |     sarg               |                                                   |
     radius             |                      []                            |     sed                |                []        []             []     [] |
     recode             |             []       []       [] [] []          [] |     sharutils          |                                                [] |
     rpm                |                               []                   |     shishi             |                                                   |
     screem             |                                                    |     skribilo           |                                                   |
     scrollkeeper       |          [] []       [] [] [] [] []        []      |     solfege            |                                         []     [] |
     sed                |                      []          []             [] |     solfege-manual     |                                                   |
     shared-mime-info   |                []    [] []    [] () []     []   [] |     spotmachine        |                                                   |
     sharutils          |                []    [] []    [] [] []             |     sudo               |                                         []     [] |
     shishi             |                                                    |     sudoers            |                                         []     [] |
     skencil            |                               [] ()                |     sysstat            |                                                [] |
     solfege            |                                                    |     tar                |                          []             []     [] |
     soundtracker       |                               [] []                |     texinfo            |                                         []     [] |
     sp                 |                                  []                |     texinfo_document   |                                         []     [] |
     system-tools-ba... |       []       [] [] [] []    [] [] []     []      |     tigervnc           |                          []                       |
     tar                |                []                []                |     tin                |                                                   |
     texinfo            |                               [] []             [] |     tin-man            |                                                   |
     tin                |                                  ()        ()      |     tracgoogleappsa... |                                                   |
     tuxpaint           | []             []             [] []        []   [] |     trader             |                                                   |
     unicode-han-tra... |                                                    |     util-linux         |                                                [] |
     unicode-transla... |                                                    |     ve                 |                                                   |
     util-linux         |                      [] []    [] []                |     vice               |                                                   |
     util-linux-ng      |                      [] []    [] []                |     vmm                |                                                   |
     vorbis-tools       |                         []                         |     vorbis-tools       |                                                [] |
     wastesedge         |                                  ()                |     wastesedge         |                                                   |
     wdiff              |                      []       [] []        []      |     wcd                |                                                   |
     wget               |                      [] []       []                |     wcd-man            |                                                   |
     xchat              |             [] []    [] []       [] []     []      |     wdiff              |                                         []     [] |
     xkeyboard-config   |                []                                  |     wget               |                                                [] |
     xpad               |                []             []           []      |     wyslij-po          |                                                   |
                        +----------------------------------------------------+     xboard             |                                                   |
                          af am ar az be bg bs ca cs cy da de el en en_GB eo     xdg-user-dirs      | []    []    [] []     [] []     []      [] []  [] |
                           6  0  2  1  8 26  2 40 48  2 56 88 15  1  15   18     xkeyboard-config   |                          []             []     [] |
                         +---------------------------------------------------+
                           af am an ar as ast az be bg bn bn_IN bs ca crh cs
                            4  0  2  5  3 11   0  8 25  3   3    1 55  4  74
   
                          es et eu fa fi fr  ga gl gu he hi hr hu id is it                          da  de  el en en_GB en_ZA eo es et eu fa fi  fr 
                         +--------------------------------------------------+                          +--------------------------------------------------+
     Compendium         | []          [] []  []                []          |     a2ps               | []  []  []     []         [] [] []       []  []  |
     a2ps               |    []       [] []                             () |     aegis              | []  []                       []              []  |
     aegis              |                                                  |     anubis             | []  []                       []          []  []  |
     ant-phone          |                []                                |     aspell             | []  []         []         [] []          []  []  |
     anubis             |                []                                |     bash               |                           [] []              []  |
     ap-utils           |             [] []                                |     bfd                | []                           []          []  []  |
     aspell             |                []  []                         [] |     binutils           |                              []          []  []  |
     bash               | []                                               |     bison              | []  []  []                [] [] []       []  []  |
     bfd                | []          []                                   |     bison-runtime      | []  []  []                [] [] []       []  []  |
     bibshelf           | []                 []                         [] |     buzztrax           | []  []                                   []  []  |
     binutils           | []          [] []                                |     ccd2cue            | []  []                    []                 []  |
     bison              | [] []          []  []                   []    [] |     ccide              | []  []                    [] []          []  []  |
     bison-runtime      |    []          []  []                   []    [] |     cflow              | []  []                    []             []  []  |
     bluez-pin          |             [] []  []                [] []       |     clisp              | []  []     []                []              []  |
     cflow              |                    []                            |     coreutils          | []  []                       [] []           []  |
     clisp              | []             []                                |     cpio               | []  []                       []          []  []  |
     console-tools      |                                                  |     cppi               | []  []                    []             []  []  |
     coreutils          | [] []       [] []  []                []          |     cpplib             | []  []                    [] []          []  []  |
     cpio               | []             []  []                            |     cryptsetup         | []  []                       []          []  []  |
     cpplib             | []             []                                |     datamash           | []  []                    []                 []  |
     cryptonit          |                []                                |     denemo             | []                                               |
     dialog             |       []           []                         [] |     dfarc              | []  []                    [] []          []  []  |
     diffutils          | []          [] []  [] []    []       [] []    [] |     dialog             | []  []  []                [] []    [] [] []  []  |
     doodle             |                    []                         [] |     dico               | []  []                                   []  []  |
     e2fsprogs          | []             []                             [] |     diffutils          | []  []  []                [] []              []  |
     enscript           |                []  []             []             |     dink               | []  []                    [] []          []  []  |
     fetchmail          | []                                               |     direvent           | []  []                    []                 []  |
     findutils          |    []              []                []          |     doodle             | []  []                    []             []      |
     findutils_stable   |    []          []  []                []          |     dos2unix           | []  []                    [] []              []  |
     flex               | []             []  []                            |     dos2unix-man       |     []                       []              []  |
     fslint             |                                                  |     e2fsprogs          | []  []                    [] []              []  |
     gas                []             []                                |     enscript           | []  []         []         []             []  []  |
     gawk               []             []  []       []                () |     exif               | []  []                    [] []          []  []  |
     gcal               | []             []                                |     fetchmail          | []  ()  []     []         [] []              []  |
     gcc                | []                                               |     findutils          | []  []  []                [] [] []       []  []  |
     gettext-examples   | []          [] []  []                [] []    [] |     flex               | []  []                    [] []          []  []  |
     gettext-runtime    | []          [] []  []                   []    [] |     freedink           | []  []  []                [] []    []    []  []  |
     gettext-tools      | []    []       []                             [] |     fusionforge        |     []                       []              []  |
     gip                | []    []       []  []                            |     gas                |                              []          []  []  |
     gliv               |                ()                                |     gawk               | []  []                       []          []  []  |
     glunarclock        |             []     []                []          |     gcal               | []  []                       []              []  |
     gmult              |       []       []                             [] |     gcc                |     []                                           |
     gnubiff            |                ()                             () |     gdbm               | []  []                    []             []  []  |
     gnucash            | ()             ()                    ()          |     gettext-examples   | []  []  []                [] []          []  []  |
     gnuedu             | []                                               |     gettext-runtime    | []  []                    [] []          []  []  |
     gnulib             | [] []              []                            |     gettext-tools      | []  []                       []          []  []  |
     gnunet             |                                                  |     gjay               |     []                    []             []  []  |
     gnunet-gtk         |                                                  |     glunarclock        | []  []                    []             []  []  |
     gnutls             |                                                  |     gnubiff            |     ()                    []             []  ()  |
     gpe-aerial         | []             []                                |     gnubik             | []  []                    []             []  []  |
     gpe-beam           | []             []                                |     gnucash            | []  ()  ()     ()            ()          ()  ()  |
     gpe-calendar       |                                                  |     gnuchess           |     []                    [] []              []  |
     gpe-clock          | []          [] []                    []          |     gnulib             | []  []                    [] [] []       []  []  |
     gpe-conf           |                []                                |     gnunet             |                              []                  |
     gpe-contacts       | []             []                                |     gnunet-gtk         |     []                                           |
     gpe-edit           | []             []                    [] []       |     gold               |                              []          []  []  |
     gpe-filemanager    | []                                               |     gphoto2            | []  ()                    []                 []  |
     gpe-go             | []             []                    []          |     gprof              | []  []                    [] []          []  []  |
     gpe-login          | []             []                    []          |     gramadoir          | []  []                    []             []  []  |
     gpe-ownerinfo      | []          [] []                    [] []       |     grep               | []  []                    [] [] []       []  []  |
     gpe-package        | []                                               |     grub               | []  []                       []          []  []  |
     gpe-sketchbook     | []             []                                |     gsasl              | []  []                    []             []  []  |
     gpe-su             | []          [] []                    []          |     gss                | []  []                    []             []  []  |
     gpe-taskmanager    | []          [] []                                |     gst-plugins-bad    | []  []                                       []  |
     gpe-timesheet      | []             []  []                   []       |     gst-plugins-base   | []  []  []                   []          []  []  |
     gpe-today          | []          [] []  []                            |     gst-plugins-good   | []  []  []                   []    []    []  []  |
     gpe-todo           | []                                               |     gst-plugins-ugly   | []  []  []                [] []    []    []  []  |
     gphoto2            | []          [] []                    []       [] |     gstreamer          | []  []  []                   []    []    []  []  |
     gprof              | []          [] []  []                   []       |     gtick              | []  ()                    []             []  []  |
     gpsdrive           |    []                                            |     gtkam              | []  ()                    [] []          []  []  |
     gramadoir          |                []  []                            |     gtkspell           | []  []  []                [] []    []    []  []  |
     grep               | []          []     []                            |     guix               | []                        []                     |
     gretl              | []    []       []                             () |     guix-packages      |                                                  |
     gsasl              |                    []                   []       |     gutenprint         | []  []                                   []  []  |
     gss                |                []  []                            |     hello              | []  []  []                [] [] []       []  []  |
     gst-plugins-bad    | []          []                       []       [] |     help2man           | []  []  []                [] []          []  []  |
     gst-plugins-base   | []          []                       []       [] |     help2man-texi      |     []                       []              []  |
     gst-plugins-good   | []    []    []                       []       [] |     hylafax            |     []                       []                  |
     gst-plugins-ugly   | []          []                       []       [] |     idutils            | []  []                    []             []  []  |
     gstreamer          |             []                       []       [] |     iso_15924          | []  ()                    [] []    ()    []  ()  |
     gtick              |             []     []                         [] |     iso_3166           | []  ()  []                [] [] [] ()    []  ()  |
     gtkam              | []             []                    []       [] |     iso_3166_2         | []  ()                             ()        ()  |
     gtkorphan          |                []                             [] |     iso_4217           | []  ()  []                   [] [] ()    []  ()  |
     gtkspell           | []    []    [] []  []                []       [] |     iso_639            | []  ()                    [] []    ()    []  ()  |
     gutenprint         |                                      []          |     iso_639_3          |     ()                             ()        ()  |
     hello              | [] [] [] [] [] []  [] []    []    [] [] []    [] |     iso_639_5          |     ()                             ()        ()  |
     herrie             |                    []                            |     jwhois             |     []                    [] []          []  []  |
     hylafax            |                                                  |     kbd                | []  []  []                [] []              []  |
     idutils            |                []  []                [] []    [] |     klavaro            | []  []  []                [] []    []        []  |
     indent             | [] [] []    [] []  [] []             [] []    [] |     ld                 | []                           []          []  []  |
     iso_15924          |                []                                |     leafpad            | []  []  []                [] []    []    []  []  |
     iso_3166           | [] [] []    [] []     [] [] [] [] [] [] []    [] |     libc               | []  []                       []          []  []  |
     iso_3166_2         |                []                                |     libexif            | []  []         ()            []              []  |
     iso_4217           | [] []       [] []                    []       [] |     libextractor       |     []                                           |
     iso_639            | []       [] [] []  []                []          |     libgnutls          |     []                    []             []  []  |
     jpilot             | []             []                                |     libgphoto2         | []  ()                                       []  |
     jtag               |                []                                |     libgphoto2_port    | []  ()                       []    []    []  []  |
     jwhois             | []             []                    [] []    [] |     libgsasl           | []  []                    []             []  []  |
     kbd                | []             []                                |     libiconv           | []  []                    [] [] []       []  []  |
     keytouch           |                []  []                         [] |     libidn             | []  []                    []             []  []  |
     keytouch-editor    |                    []                            |     liferea            | []  ()  []                   []    []    []  []  |
     keytouch-keyboa... |                    []                         [] |     lilypond           | []  []  []                [] []              []  |
     latrine            |                    []                         [] |     lordsawar          | []  []                                           |
     ld                 | []          [] []  []                            | 
     leafpad            | []             []  []       []       []       [] | 
     libc               | []          [] []     []             []          | 
     libexif            | []                                               | 
     libextractor       |                    []                            | 
     libgpewidget       | []             []  []                [] []       | 
     libgpg-error       |                []                                | 
     libgphoto2         | []             []                             [] | 
     libgphoto2_port    |                []                             [] | 
     libgsasl           |                []  []                            | 
     libiconv           |    []       []     []                            | 
     libidn             |                []                             [] | 
     lifelines          |                ()                                | 
     lilypond           | []          [] []                                | 
     lingoteach         |                []                       []    [] | 
      lprng              |                                                  |       lprng              |                                                  |
     lynx               |    []                                []       [] |     lynx               | []  []                    []    []       []  []  |
     m4                 |                []  [] []                []       |     m4                 | []  []  []                []             []  []  |
     mailfromd          |                                                  |     mailfromd          |                                              []  |
     mailutils          | []             []                                |     mailutils          |     []                       []          []  []  |
     make               | []          [] []  [] []    []    []    []       |     make               | []  []                       []          []  []  |
     man-db             |                                               [] |     man-db             | []  []                    []                 []  |
     minicom            | []          [] []                    []          |     man-db-manpages    |     []                                       []  |
     nano               | []    []       []  [] []             []       [] |     midi-instruments   | []  []  []                [] [] []    [] []  []  |
     opcodes            | []          [] []  []                            |     minicom            | []  []                       []          []  []  |
     parted             |                []                       []    [] |     mkisofs            |                           []             []  []  |
     pilot-qof          |                                                  |     myserver           |     []                    []             []  []  |
     popt               |                []  [] []                   []    |     nano               | []  []                    [] []    []    []  []  |
     psmisc             |                                      []       [] |     opcodes            | []  []                       []          []  []  |
     pwdutils           |                                                  |     parted             | []  []                                       []  |
     qof                |                                         []       |     pies               |     []                                           |
     radius             | []             []                                |     pnmixer            |     []                                       []  |
     recode             | []             []  [] []    []       [] []    [] |     popt               | []  []                    [] []          []  []  |
     rpm                |                []                       []       |     procps-ng          |     []                                       []  |
     screem             |                                                  |     procps-ng-man      |     []                                       []  |
     scrollkeeper       | []          []                       []          |     psmisc             | []  []  []                []       []    []  []  |
     sed                | [] []          []  []                []          |     pspp               |     []                       []              []  |
     shared-mime-info   | []    []    [] []                    []       [] |     pushover           |     ()                    [] []              []  |
     sharutils          | [] []       [] []  [] []             []       [] |     pwdutils           | []  []                                       []  |
     shishi             |                []                                |     pyspread           | []  []                                       []  |
     skencil            | []             []                                |     radius             |                              []              []  |
     solfege            |                                               [] |     recode             | []  []  []                [] []          []  []  |
     soundtracker       | []             []                             [] |     recutils           |     []                       []          []  []  |
     sp                 |                []                                |     rpm                | []  []                    []             []  []  |
     system-tools-ba... | []    []    [] []  []             [] [] []    [] |     rush               |     []                                   []  []  |
     tar                |    [] []    []     []                []          |     sarg               | []                                           []  |
     texinfo            |                []           []       []          |     sed                | []  []  []                [] [] []       []  []  |
     tin                |    []          ()                                |     sharutils          |     []                    []    []           []  |
     tuxpaint           |                    []                []          |     shishi             |     []                                   []  []  |
     unicode-han-tra... |                                                  |     skribilo           | []                           []              []  |
     unicode-transla... |                []  []                            |     solfege            | []  []                    [] [] []    [] []  []  |
     util-linux         | [] []       [] []                    [] []    [] |     solfege-manual     |     []                    [] [] []           []  |
     util-linux-ng      | [] []       [] []                    [] []    [] |     spotmachine        | []  []                    []             []  []  |
     vorbis-tools       |                                                  |     sudo               | []  []                    [] []          []  []  |
     wastesedge         |                ()                                |     sudoers            | []  []  []                []             []  []  |
     wdiff              | [] []          []  [] []             [] []    [] |     sysstat            | []  []                    [] []          []  []  |
     wget               |    []       [] []  []             [] [] []    [] |     tar                | []  []                    [] [] []       []  []  |
     xchat              | []          [] []        []    []    []       [] |     texinfo            | []  []                    [] []              []  |
     xkeyboard-config   | []          [] []                    []          |     texinfo_document   |     []                    [] []              []  |
     xpad               | []                 []                []          |     tigervnc           | []  []  []                []             []  []  |
      tin                | []  []                          []           []  |
      tin-man            |                []                                |
      tracgoogleappsa... | []  []                    []             []  []  |
      trader             | []  []         []         []             []  []  |
      util-linux         | []  []                       []              []  |
      ve                 |     []                    [] []          []  []  |
      vice               | ()  ()                                       ()  |
      vmm                |     []                                   []      |
      vorbis-tools       | []  []                    []                 []  |
      wastesedge         | []                                               |
      wcd                |     []                    [] []          []      |
      wcd-man            |     []                                           |
      wdiff              | []  []                    [] [] []       []  []  |
      wget               |     []                    [] [] []       []  []  |
      wyslij-po          |     []                    []             []  []  |
      xboard             | []  []                       []              []  |
      xdg-user-dirs      | []  []  []                [] [] [] [] [] []  []  |
      xkeyboard-config   | []  []  []                [] []          []  []  |
                         +--------------------------------------------------+                          +--------------------------------------------------+
                          es et eu fa fi fr  ga gl gu he hi hr hu id is it                          da  de  el en en_GB en_ZA eo es et eu fa fi  fr 
                          85 22 14  2 48 101 61 12  2  8  2  6 53 29  1 52                          119 131 32  1   6     0   94 95 22 13  4 102 139
   
                          ja ka ko ku ky lg lt lv mk mn ms mt nb ne nl  nn                          ga gd gl gu he hi hr hu hy ia id is it ja ka kk
                         +-------------------------------------------------+
      a2ps               |                   []          []    [] []       |
      aegis              |                                     []          |
      anubis             |                   [] []       []    []          |
      aspell             | []                []          []    [] []       |
      bash               |                      []       []    [] []       |
      bfd                |                               []       []       |
      binutils           |                               []    [] []       |
      bison              |                   []                            |
      bison-runtime      | []    []          [] []    [] []    [] []       |
      buzztrax           |                                                 |
      ccd2cue            |                      []                         |
      ccide              |                   [] []                         |
      cflow              | []                []          []                |
      clisp              |                                                 |
      coreutils          |                      []                []       |
      cpio               | []                [] []       []    [] []       |
      cppi               |       []          [] []             [] []       |
      cpplib             |                               []       []       |
      cryptsetup         |                                     []          |
      datamash           |                                                 |
      denemo             |                                     []          |
      dfarc              |                   [] []             []          |
      dialog             | [] [] []          [] []    [] [] [] [] []       |
      dico               |                                                 |
      diffutils          |                      []       []    [] []       |
      dink               |                      []                         |
      direvent           |                      []                         |
      doodle             | []                                  []          |
      dos2unix           |                      []                []       |
      dos2unix-man       |                                                 |
      e2fsprogs          |                      []       []                |
      enscript           | []                []          []                |
      exif               |       []          []          [] [] [] []       |
      fetchmail          |                               []    [] []       |
      findutils          | []    []          [] []       []    [] []       |
      flex               | []                                              |
      freedink           |                   [] []       []    []          |
      fusionforge        |                                                 |
      gas                |                               []                |
      gawk               |                               []    () []       |
      gcal               |                                                 |
      gcc                |                                                 |
      gdbm               |                                                 |
      gettext-examples   | []    []          [] []       []    [] []       |
      gettext-runtime    | []    []          [] []       []    [] []       |
      gettext-tools      |                               []    [] []       |
      gjay               |       []                                        |
      glunarclock        | []    []          [] []       []    []          |
      gnubiff            |                      []       []    ()          |
      gnubik             |       []          []                []          |
      gnucash            |          () () ()    ()             ()          |
      gnuchess           |                                                 |
      gnulib             | []    []             []             [] []       |
      gnunet             |                                                 |
      gnunet-gtk         |                                                 |
      gold               |                               []    []          |
      gphoto2            |                      []       []    [] []       |
      gprof              | []                   []       []    []          |
      gramadoir          | []                   []       []                |
      grep               | []    []          [] []       []    [] []       |
      grub               |       []             []             []          |
      gsasl              | []                [] []       []    []          |
      gss                | []                [] []       []    []          |
      gst-plugins-bad    |                   [] []       []                |
      gst-plugins-base   |       []          [] []       []                |
      gst-plugins-good   |       []          [] []       []    [] []       |
      gst-plugins-ugly   |       []          [] []       []    [] []       |
      gstreamer          |       []          [] []       []    []          |
      gtick              | []    []             []       []    []          |
      gtkam              |                      []       [] [] [] []       |
      gtkspell           | []    []    []    [] [] []    [] [] [] []       |
      guix               |                                                 |
      guix-packages      |                                                 |
      gutenprint         |       []             []             []          |
      hello              | []    []          [] []       []                |
      help2man           |                   []                [] []       |
      help2man-texi      |                                                 |
      hylafax            |                               []                |
      idutils            |                      []       []                |
      iso_15924          |       []             []    [] [] [] []          |
      iso_3166           | []    [] [] [] [] [] []    [] [] [] [] []    [] |
      iso_3166_2         |                               []    []          |
      iso_4217           |                   [] []       [] [] [] []       |
      iso_639            | []    [] []       [] []       [] [] [] []       |
      iso_639_3          |       []                            []          |
      iso_639_5          |                                                 |
      jwhois             |       []             []       []    []          |
      kbd                |                      []       []    []          |
      klavaro            |       []          [] []             []       [] |
      ld                 | []                            []    [] []       |
      leafpad            | []    []    []    [] []       []    [] ()       |
      libc               |       []          []          []    [] []       |
      libexif            |                                     []          |
      libextractor       |                                                 |
      libgnutls          |                                     []          |
      libgphoto2         |                                     [] []       |
      libgphoto2_port    |                                     [] []       |
      libgsasl           | []                   []       []    []          |
      libiconv           | []    []          [] []       []    [] []       |
      libidn             |                   [] []       []    []          |
      liferea            |       []    []       []             [] []       |
      lilypond           |                                     []          |
      lordsawar          |                                                 |
      lprng              |                               []                |
      lynx               |                      []       []    [] []       |
      m4                 | []    []          []          []       []       |
      mailfromd          |                                                 |
      mailutils          |                                                 |
      make               |                   []          []    [] []       |
      man-db             |                               []       []       |
      man-db-manpages    |                               []       []       |
      midi-instruments   |       []    []    [] [] []    [] [] [] []       |
      minicom            |                      []       []       []       |
      mkisofs            |                               []    []          |
      myserver           |                                     []          |
      nano               | []    []          [] []             [] []       |
      opcodes            | []                            []    []          |
      parted             |       []             []       []    [] []       |
      pies               |                                                 |
      pnmixer            |                   []                []          |
      popt               | []    [] []       [] []    [] [] [] [] []       |
      procps-ng          |                                                 |
      procps-ng-man      |                                                 |
      psmisc             |                   [] []       []    []          |
      pspp               |       []                               []       |
      pushover           |                                     []          |
      pwdutils           |                               []                |
      pyspread           |                                                 |
      radius             |                               []                |
      recode             | []    []    []    [] []       []    []          |
      recutils           |                                                 |
      rpm                |                               []                |
      rush               |       []                                        |
      sarg               |                                                 |
      sed                | []    []          [] []       []    [] []       |
      sharutils          |                                                 |
      shishi             |                                                 |
      skribilo           |                      []                         |
      solfege            |       []                            []          |
      solfege-manual     |                                                 |
      spotmachine        |                                                 |
      sudo               |       []          []                [] []       |
      sudoers            |                   []                [] []       |
      sysstat            |                   [] []       []       []       |
      tar                | []                [] []       []    [] []       |
      texinfo            |                   []          []    []          |
      texinfo_document   |                   [] []             []          |
      tigervnc           |                                                 |
      tin                |                                                 |
      tin-man            |                                                 |
      tracgoogleappsa... |       []    []    [] []                         |
      trader             |                   [] []                         |
      util-linux         |                                        []       |
      ve                 |                                     []          |
      vice               |                      ()             ()          |
      vmm                |                                                 |
      vorbis-tools       |                   []          []                |
      wastesedge         |                                     []          |
      wcd                |                                                 |
      wcd-man            |                                                 |
      wdiff              |       []             []             []          |
      wget               |                   [] []             [] []       |
      wyslij-po          |       []          []          []                |
      xboard             |                                                 |
      xdg-user-dirs      | [] [] [] [] [] [] [] []    [] [] [] [] []    [] |
      xkeyboard-config   |       []          [] []       []    [] []       |
                         +-------------------------------------------------+
                           ga gd gl gu he hi hr hu hy ia id is it ja ka kk
                           35  2 47  4  8  2 60 71  2  6 81 11 87 57  0  3
 
                           kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl 
                         +--------------------------------------------------+                          +--------------------------------------------------+
     Compendium         |                                           []     |     a2ps               |                                  []          []  |
     a2ps               |       ()                      []          []     |     aegis              |                                              []  |
     aegis              |                                           ()     |     anubis             |                                  []    []    []  |
     ant-phone          |                                           []     |     aspell             |                            []                []  |
     anubis             |                               []    []    []     |     bash               |                                        []    []  |
     ap-utils           |                               []                 | 
     aspell             |                            []             []     | 
     bash               |                                           []     | 
      bfd                |                                                  |       bfd                |                                                  |
      bibshelf           |                               []                 |  
      binutils           |                                                  |       binutils           |                                                  |
     bison              |                               []    []    []     |     bison              |                                              []  |
     bison-runtime      |                               []    []    []     |     bison-runtime      |          []    [] []             []    []    []  |
     bluez-pin          |          []                   []          []     |     buzztrax           |                                                  |
     cflow              |                                                  |     ccd2cue            |                                                  |
     clisp              |                                           []     |     ccide              |                   []                         []  |
     console-tools      |                                                  |     cflow              |                                              []  |
     coreutils          |                                           []     |     clisp              |                                              []  |
     cpio               |                                           []     |     coreutils          |                                        []    []  |
     cpplib             |                                           []     |     cpio               |                                              []  |
     cryptonit          |                                           []     |     cppi               |                                                  |
     dialog             |                               []          []     |     cpplib             |                                              []  |
     diffutils          | []                            []          []     |     cryptsetup         |                                              []  |
     doodle             |                                                  |     datamash           |                                        []    []  |
     e2fsprogs          |                                           []     |     denemo             |                                                  |
     enscript           |                                           []     |     dfarc              |                      []                      []  |
     fetchmail          | []                                        []     |     dialog             |       []       [] []             []    []    []  |
     findutils          |                                           []     |     dico               |                                                  |
     findutils_stable   |                                           []     |     diffutils          |                   []                   []    []  |
     flex               |       []                                  []     |     dink               |                                              []  |
     fslint             |                                                  |     direvent           |                                              []  |
      doodle             |                                              []  |
      dos2unix           |                                        []    []  |
      dos2unix-man       |                                              []  |
      e2fsprogs          |                                              []  |
      enscript           |                                              []  |
      exif               |    []             []                         []  |
      fetchmail          |                                              []  |
      findutils          |                                        []    []  |
      flex               |                                              []  |
      freedink           |                                        []    []  |
      fusionforge        |                                                  |
      gas                |                                                  |       gas                |                                                  |
     gawk               | []                                        []     |     gawk               |                                              []  |
      gcal               |                                                  |       gcal               |                                                  |
      gcc                |                                                  |       gcc                |                                                  |
     gettext-examples   | []                            []          []     |     gdbm               |                                                  |
     gettext-runtime    | []    []                                  []     |     gettext-examples   |          []       []             [] [] []    []  |
     gettext-tools      | []    []                                         |     gettext-runtime    |    []                                  []    []  |
     gip                |                               []          []     |     gettext-tools      |    []                                            |
     gliv               |                                           []     |     gjay               |                                                  |
     glunarclock        |                               []          []     |     glunarclock        |                   []                         []  |
     gmult              | []                            []          []     |     gnubiff            |                                              []  |
     gnubiff            |                                                  |     gnubik             |                                        []    []  |
     gnucash            | ()                                  () ()        |     gnucash            | () ()          () ()          ()       () () []  |
     gnuedu             |                                                  |     gnuchess           |                                        []    []  |
     gnulib             | []                                        []     |     gnulib             |                                              []  |
      gnunet             |                                                  |       gnunet             |                                                  |
      gnunet-gtk         |                                                  |       gnunet-gtk         |                                                  |
     gnutls             |                               []                 |     gold               |                                                  |
     gpe-aerial         |                                           []     |     gphoto2            |                                              []  |
     gpe-beam           |                                           []     |     gprof              |                                  []          []  |
     gpe-calendar       | []                                               |     gramadoir          |                                              []  |
     gpe-clock          | []    []                                  []     |     grep               |                                        []    []  |
     gpe-conf           | []    []                                  []     |     grub               |                []                      []    []  |
     gpe-contacts       |       []                                         |     gsasl              |                                              []  |
     gpe-edit           | []    []                                  []     | 
     gpe-filemanager    | []    []                                         | 
     gpe-go             | []    []                                  []     | 
     gpe-login          | []    []                                  []     | 
     gpe-ownerinfo      | []                                        []     | 
     gpe-package        | []    []                                         | 
     gpe-sketchbook     |       []                                  []     | 
     gpe-su             | []    []                                  []     | 
     gpe-taskmanager    | []    [] []                               []     | 
     gpe-timesheet      |                                           []     | 
     gpe-today          | []                                        []     | 
     gpe-todo           | []                                               | 
     gphoto2            | []                                        []     | 
     gprof              |                               []                 | 
     gpsdrive           |                                           []     | 
     gramadoir          |                                           ()     | 
     grep               |             []                            []     | 
     gretl              |                                                  | 
     gsasl              |                                           []     | 
      gss                |                                                  |       gss                |                                                  |
     gst-plugins-bad    |                                           []     |     gst-plugins-bad    |                   []                   []    []  |
     gst-plugins-base   |                                           []     |     gst-plugins-base   |                   []                   []    []  |
     gst-plugins-good   |                                           []     |     gst-plugins-good   |                [] []                   []    []  |
     gst-plugins-ugly   |                                           []     |     gst-plugins-ugly   |                   []             [] [] []    []  |
     gstreamer          |                                           []     |     gstreamer          |                []                      []    []  |
     gtick              |                                           []     |     gtick              |                                              []  |
     gtkam              | []                                        []     |     gtkam              |                                        []    []  |
     gtkorphan          |                                           []     |     gtkspell           |          []    [] []       []    []    []    []  |
     gtkspell           |                            []             []     |     guix               |                                                  |
     gutenprint         |                                           []     |     guix-packages      |                                                  |
     hello              | [] [] []                      []    []    []  [] |     gutenprint         |                                              []  |
     herrie             |                                           []     |     hello              |                   []                   []    []  |
     hylafax            |                                                  |     help2man           |                                        []        |
     idutils            |                                           []     |     help2man-texi      |                                                  |
     indent             | []                                        []     |     hylafax            |                                              []  |
     iso_15924          |                                           []     |     idutils            |                                              []  |
     iso_3166           | []    [] []       []    []          []    []  [] |     iso_15924          |                () []                         []  |
     iso_3166_2         |                                           []     |     iso_3166           | [] [] []       () [] [] []    []       []    []  |
     iso_4217           | []                []                      []     |     iso_3166_2         |                ()                            []  |
     iso_639            | []                []                      []  [] |     iso_4217           |                () []                   []    []  |
     jpilot             | ()                                        ()     |     iso_639            | [] []          () []    []    []             []  |
     jtag               |                                                  |     iso_639_3          | []             ()             []                 |
     jwhois             |                                           []     |     iso_639_5          |                ()                                |
     kbd                |                                           []     |     jwhois             |                   []                         []  |
     keytouch           |                                           []     |     kbd                |                                              []  |
     keytouch-editor    |                                           []     |     klavaro            |                                        []    []  |
     keytouch-keyboa... |                                                  | 
     latrine            |                                           []     | 
      ld                 |                                                  |       ld                 |                                                  |
     leafpad            | []                []                             |     leafpad            |    []    []    [] []                         []  |
     libc               | []    []                                  []     |     libc               |    []                                        []  |
     libexif            |                                                  |     libexif            |                                              []  |
     libextractor       |                                                  |     libextractor       |                                              []  |
     libgpewidget       |                                           []     |     libgnutls          |                                  []          []  |
     libgpg-error       |                                                  |     libgphoto2         |                                              []  |
     libgphoto2         []                                               |     libgphoto2_port    |                                              []  |
     libgphoto2_port    | []                                               |     libgsasl           |                                              []  |
     libgsasl           |                                           []     |     libiconv           |                []                            []  |
     libiconv           |                                           []     |     libidn             |                                              []  |
     libidn             | []                                        []     |     liferea            |                [] []                         []  |
     lifelines          |                                           []     |     lilypond           |                                              []  |
     lilypond           |                                           []     |     lordsawar          |                                                  |
     lingoteach         |                                           []     | 
      lprng              |                                                  |       lprng              |                                                  |
     lynx               | []                                        []     |     lynx               |                                              []  |
     m4                 | []                                        []     |     m4                 |                                              []  |
      mailfromd          |                                                  |       mailfromd          |                                                  |
      mailutils          |                                                  |       mailutils          |                                                  |
     make               | []    []                                  []     |     make               |    []                                        []  |
     man-db             |                                                  |     man-db             |                                              []  |
     minicom            | []                                               |     man-db-manpages    |                                              []  |
     nano               |                               []    []    []     |     midi-instruments   |    [] []       []          []    []       [] []  |
     opcodes            |                                           []     |     minicom            |                                        []        |
     parted             | []                                        []     |     mkisofs            |                                              []  |
     pilot-qof          |                                                  |     myserver           |                                                  |
     popt               | []    []                                  []     |     nano               |                                  []    []    []  |
     psmisc             | []                                  []    []     |     opcodes            |                                              []  |
     pwdutils           |                                                  |     parted             |    []                                        []  |
     qof                |                                                  |     pies               |                                                  |
     radius             |                                                  |     pnmixer            |                                              []  |
     recode             |                                           []     |     popt               | [] []             []                   []    []  |
     rpm                | []    []                                         |     procps-ng          |                                                  |
     screem             | []                                               |     procps-ng-man      |                                                  |
     scrollkeeper       |                                     [] [] []  [] |     psmisc             |                                              []  |
     sed                | []                                        []     |     pspp               |                []                            []  |
     shared-mime-info   | []    []          []          []    []    []  [] |     pushover           |                                                  |
     sharutils          | []                                        []     |     pwdutils           |                                              []  |
      pyspread           |                                                  |
      radius             |                                              []  |
      recode             |                                        []    []  |
      recutils           |                                              []  |
      rpm                |                                              []  |
      rush               |                                              []  |
      sarg               |                                                  |
      sed                |                                        []    []  |
      sharutils          |                                              []  |
      shishi             |                                                  |       shishi             |                                                  |
     skencil            |                                                  |     skribilo           |                                                  |
     solfege            |                                     ()        () |     solfege            |                                        []    []  |
     soundtracker       |                                                  |     solfege-manual     |                                              []  |
     sp                 | ()                                               |     spotmachine        |                                              []  |
     system-tools-ba... | []    []          []                      []     |     sudo               |    []                                  []    []  |
     tar                | []          []                            []     |     sudoers            |    []                                  []    []  |
     texinfo            |                                     []    []     |     sysstat            |                                        []    []  |
      tar                |          []                            []    []  |
      texinfo            |                                              []  |
      texinfo_document   |                                              []  |
      tigervnc           |                                              []  |
      tin                |                                                  |       tin                |                                                  |
     tuxpaint           |                                     ()    []  [] |     tin-man            |                                                  |
     unicode-han-tra... |                                                  |     tracgoogleappsa... |                   []                   []    []  |
     unicode-transla... |                                                  |     trader             |                                        []        |
     util-linux         | []                                        []     |     util-linux         |                                              []  |
     util-linux-ng      | []                                        []     |     ve                 |                                              []  |
     vorbis-tools       |                                                  |     vice               |                                              []  |
     wastesedge         |                                           []     |     vmm                |                                              []  |
     wdiff              |                               []    []           |     vorbis-tools       |                                              []  |
     wget               | []                                        []     |     wastesedge         |                                              []  |
     xchat              | []    []                []                []     |     wcd                |                                              []  |
     xkeyboard-config   |    [] []                                  []     |     wcd-man            |                                              []  |
     xpad               |       []                      []          []     |     wdiff              |                                              []  |
      wget               |                                        []    []  |
      wyslij-po          |                                              []  |
      xboard             |                                              []  |
      xdg-user-dirs      | [] [] [] []    [] [] [] []    []       []    []  |
      xkeyboard-config   |    []          []                            []  |
                         +--------------------------------------------------+                          +--------------------------------------------------+
                          ja ka ko ku ky lg lt lv mk mn ms mt nb ne nl  nn                          kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl 
                          51  2 25  3  2  0  6  0  2  2 20  0 11  1 103  6                           5 15  4  6  0 13 23  3  3  3  4 11  2 42  1 125
   
                          or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv  ta                          nn or pa pl  ps pt pt_BR ro ru rw sk sl sq sr 
                        +--------------------------------------------------+                        +------------------------------------------------+
     Compendium         |          []  []      []       []          []     |     a2ps               |          []     []  []   [] []       []    []  |
     a2ps               |       ()     []      [] []       []    [] []     |     aegis              |                     []      []                 |
     aegis              |                      () ()                       |     anubis             |          []                 []             []  |
     ant-phone          |                      []                   []     |     aspell             |          []         []   [] []    [] []    []  |
     anubis             |       []             [] []                       |     bash               |          []         []      []    [] []    []  |
     ap-utils           |       ()                                         |     bfd                |                             []             []  |
     aspell             |                      [] []    []                 |     binutils           |                             []             []  |
     bash               |       []                      []                 |     bison              |          []         []                     []  |
     bfd                |                                                  |     bison-runtime      |          []     []  []   [] []       [] [] []  |
     bibshelf           |                                           []     |     buzztrax           |                     []                         |
     binutils           |                         []    []                 |     ccd2cue            |                     []                     []  |
     bison              |       []     []      [] []                []     |     ccide              |          []                 []             []  |
     bison-runtime      |       []     []      []          []       []     |     cflow              |          []         []                     []  |
     bluez-pin          |       []     []   [] [] []    [] []    [] []     |     clisp              |                             []                 |
     cflow              |       []                                         |     coreutils          |          []                 []       []    []  |
     clisp              |                         []                       |     cpio               |          []                 []             []  |
     console-tools      |                         []                       |     cppi               |          []         []                     []  |
     coreutils          |       []                []       []       []     |     cpplib             |                     []      []             []  |
     cpio               |       []                []                []     |     cryptsetup         |          []         []                     []  |
     cpplib             |                                           []     |     datamash           |                     []                     []  |
     cryptonit          |              []                           []     |     denemo             |                                                |
     dialog             |                                           []     |     dfarc              |          []         []                     []  |
     diffutils          |       []     []      [] []             [] []     |     dialog             |          []         []   [] []    [] []    []  |
     doodle             |                                     []    []     |     dico               |          []                                    |
     e2fsprogs          |       []                                  []     |     diffutils          |          []         []                     []  |
     enscript           |              []      [] []       []       []     |     dink               |                                                |
     fetchmail          |       []                []          []           |     direvent           |          []         []                     []  |
     findutils          |       [] []                               []     |     doodle             |                                         [] []  |
     findutils_stable   |       [] []          []       [] []       []     |     dos2unix           |          []         []      []             []  |
     flex               |       []     []      [] []                []     |     dos2unix-man       |          []         []                         |
     fslint             |                                           []     |     e2fsprogs          |          []                                    |
     gas                |                                                  |     enscript           |          []         []   [] []       []    []  |
     gawk               |       []     []      []                   []     |     exif               |          []         []   [] []    []       []  |
     gcal               |                                           []     |     fetchmail          |          []                 []          []     |
     gcc                |                                        [] []     |     findutils          |          []         []      []    [] []    []  |
     gettext-examples   |       [] []          [] []    [] []    [] []     |     flex               |          []         []   [] []             []  |
     gettext-runtime    |       [] []          [] []    [] []    [] []     |     freedink           |          []         []      []       []    []  |
     gettext-tools      |       []             [] []    [] []    [] []     |     fusionforge        |                                                |
     gip                |                   []          []       [] []     |     gas                |                                                |
     gliv               |       []     []      [] []    []          []     |     gawk               |          []                                    |
     glunarclock        |              []      [] []    []       [] []     |     gcal               |                                                |
     gmult              |                   [] []                [] []     |     gcc                |                                                |
     gnubiff            |                      ()                   []     |     gdbm               |          []         []                     []  |
     gnucash            |       ()                                  []     |     gettext-examples   |          []     []  []   [] []    [] []    []  |
     gnuedu             |                                                  |     gettext-runtime    | []       []     []  []   [] []    [] []    []  |
     gnulib             |       []                         []       []     |     gettext-tools      |          []         []   [] []    [] []    []  |
     gnunet             |                                                  |     gjay               |                                            []  |
     gnunet-gtk         |                                           []     |     glunarclock        |          []         []   []       [] []    []  |
     gnutls             |       []                                  []     |     gnubiff            |                                            []  |
     gpe-aerial         |          []  []      [] []       []    [] []     |     gnubik             |          []         []               []    []  |
     gpe-beam           |          []  []      [] []       []    [] []     |     gnucash            |          ()     ()  ()   () ()             []  |
     gpe-calendar       |                         []       []    [] []     |     gnuchess           |                     []                     []  |
     gpe-clock          |          []  []      [] []    [] []    [] []     |     gnulib             |          []         []      []       []    []  |
     gpe-conf           |          []  []      [] []    [] []       []     |     gnunet             |                                                |
     gpe-contacts       |                      [] []       []    [] []     |     gnunet-gtk         |                                                |
     gpe-edit           |       [] []  []      [] []    [] []    [] []     |     gold               |                                                |
     gpe-filemanager    |                                  []       []     |     gphoto2            |          []         []   [] []             []  |
     gpe-go             |       []     []      [] []    [] []    [] []     |     gprof              |                     []   [] []             []  |
     gpe-login          |          []  []      [] []    [] []    [] []     |     gramadoir          |                                   []       []  |
     gpe-ownerinfo      |          []  []      [] []    [] []    [] []     |     grep               |          []         []      []    [] []    []  |
     gpe-package        |                                  []       []     |     grub               |          []         []      []       []    []  |
     gpe-sketchbook     |          []  []      [] []    [] []    [] []     |     gsasl              |          []                       []       []  |
     gpe-su             |          []  []      [] []    [] []    [] []     |     gss                |          []              []       []       []  |
     gpe-taskmanager    |          []  []      [] []    [] []    [] []     |     gst-plugins-bad    |          []         []      []    []       []  |
     gpe-timesheet      |          []  []      [] []    [] []    [] []     |     gst-plugins-base   |          []         []      []    [] []    []  |
     gpe-today          |          []  []      [] []    [] []    [] []     |     gst-plugins-good   |          []         []   [] []    [] []    []  |
     gpe-todo           |                         []       []    [] []     |     gst-plugins-ugly   |          []         []   [] []    [] []    []  |
     gphoto2            |    [] []             []       []       [] []     |     gstreamer          |          []         []   [] []    [] []    []  |
     gprof              |              []      []                   []     |     gtick              |          []         []      []    []       []  |
     gpsdrive           |                         []                []     |     gtkam              |       [] []         []      []    []       []  |
     gramadoir          |                               []          []     |     gtkspell           |          []     []  []   [] []    [] [] [] []  |
     grep               |       []                      [] []       []     |     guix               |                                                |
     gretl              |       [] []  []                                  |     guix-packages      |                                                |
     gsasl              |       []                               [] []     |     gutenprint         |                                   [] []        |
     gss                |       []             []       []          []     |     hello              |          []         []      []    [] []    []  |
     gst-plugins-bad    |       []     []                           []     |     help2man           |          []         []      []             []  |
     gst-plugins-base   |       []                                  []     |     help2man-texi      |          []                                    |
     gst-plugins-good   |       []                                  []     |     hylafax            |                                                |
     gst-plugins-ugly   |       []     []                           []     |     idutils            |          []                 []             []  |
     gstreamer          |       []                            [] [] []     |     iso_15924          |          []     ()       [] []       []    []  |
     gtick              |                         []                       |     iso_3166           | [] [] [] []     ()  []   [] [] [] [] [] [] []  |
     gtkam              |    [] []     []         []                []     |     iso_3166_2         |          []     ()                         []  |
     gtkorphan          |                                           []     |     iso_4217           | []       []     ()       [] [] []    []    []  |
     gtkspell           |              []   [] [] []    [] []    [] []     |     iso_639            |    [] [] []     ()       [] [] [] [] []    []  |
     gutenprint         |                                           []     |     iso_639_3          |       []        ()                             |
     hello              |       []     []      [] []    [] []    [] []     |     iso_639_5          |                 ()                         []  |
     herrie             |       []                []                []     |     jwhois             |          []         []   []                []  |
     hylafax            |                                                  |     kbd                |          []                 []                 |
     idutils            |       []     []      [] []                []     |     klavaro            |       [] []         []      []       []        |
     indent             |       []     []      [] []    []       [] []     |     ld                 |                                                |
     iso_15924          |                                                  |     leafpad            | []       []     []  []      []    [] []    []  |
     iso_3166           |    [] [] []  []      [] [] [] [] [] [] [] []  [] |     libc               |          []                 []    []           |
     iso_3166_2         |                                                  |     libexif            |          []         ()            []           |
     iso_4217           |       [] []             [] []    []    [] []     |     libextractor       |          []                                    |
     iso_639            |       []                [] [] [] []    [] []     |     libgnutls          |          []                                    |
     jpilot             |                                                  |     libgphoto2         |          []                                    |
     jtag               |                               []                 |     libgphoto2_port    |          []         []      []    []       []  |
     jwhois             |       []     []      []                   []     |     libgsasl           |          []              []       []       []  |
     kbd                |       []             []                   []     |     libiconv           |          []         []            [] []    []  |
     keytouch           |                                           []     |     libidn             |          []         []                     []  |
     keytouch-editor    |                                           []     |     liferea            |          []     []  []   [] ()    []    []     |
     keytouch-keyboa... |                                           []     |     lilypond           |                                                |
     latrine            |                                                  |     lordsawar          |                                                |
     ld                 |                                           []     |     lprng              |          []                                    |
     leafpad            |       [] []             []    []          []  [] |     lynx               |                     []      []                 |
     libc               |       []                []    []          []     |     m4                 |          []         []   [] []             []  |
     libexif            |       []                      []                 |     mailfromd          |          []                                    |
     libextractor       |                      []                   []     |     mailutils          |          []                                    |
     libgpewidget       |       [] []  []      []       [] []    [] []     |     make               |          []         []      []                 |
     libgpg-error       |       []             []                   []     |     man-db             |          []                 []             []  |
     libgphoto2         |       []                                         |     man-db-manpages    |          []                 []             []  |
     libgphoto2_port    |       []                []                []     |     midi-instruments   |          []     []  []   [] []    [] []    []  |
     libgsasl           |       []             []                [] []     |     minicom            |          []         []   [] []                 |
     libiconv           |                                  []    [] []     |     mkisofs            |          []                 []             []  |
     libidn             |       []                               [] ()     |     myserver           |                                      []    []  |
     lifelines          |       []                                  []     |     nano               |          []         []   [] []       []    []  |
     lilypond           |                                                  |     opcodes            |                                                |
     lingoteach         |              []                                  |     parted             |          []         []      []    [] []    []  |
     lprng              |       []                                         |     pies               |          []                                    |
     lynx               |              []         []                []     |     pnmixer            |                             []                 |
     m4                 |       []     []      [] []                []     |     popt               |          []     []  []      []       []    []  |
     mailfromd          |       []                                         |     procps-ng          |          []                                    |
     mailutils          |       []                []                []     |     procps-ng-man      |          []                                    |
     make               |       []     []         []                []     |     psmisc             |          []         []      []             []  |
     man-db             |       []             [] []                []     |     pspp               |          []                 []                 |
     minicom            |       []     []      [] []                []     |     pushover           |                                                |
     nano               |              []      [] []                []     |     pwdutils           |          []                                    |
     opcodes            |                      []                   []     |     pyspread           | []                  []                         |
     parted             |       []                                         |     radius             |          []                 []                 |
     pilot-qof          |                                                  |     recode             |          []     []  []   [] []    [] []    []  |
     popt               |       [] []             []                []     |     recutils           |                     []                     []  |
     psmisc             |       []                                  []     |     rpm                |          []                                    |
     pwdutils           |       []                                  []     |     rush               |          []         []                     []  |
     qof                |              []                           []     |     sarg               |                     []      []                 |
     radius             |       []                []                       |     sed                |          []     []  []   [] []    [] []    []  |
     recode             |       [] []  []      [] []       []       []     |     sharutils          |          []         []                     []  |
     rpm                |       [] []             []                []     |     shishi             |          []                                []  |
     screem             |                                                  |     skribilo           |                                            []  |
     scrollkeeper       |       []             [] []    []    [] [] []     |     solfege            |          []         []      []                 |
     sed                |       [] []  []      [] []    [] []    [] []     |     solfege-manual     |          []         []                         |
     shared-mime-info   |       [] []  []                     [] [] []     |     spotmachine        |                     []                     []  |
     sharutils          |       []                []             [] []     |     sudo               |          []         []      []    [] []    []  |
     shishi             |       []                                         |     sudoers            |          []         []               []    []  |
     skencil            |          []  []                           []     |     sysstat            |          []         []      []    []       []  |
     solfege            |              []                                  |     tar                |          []         []      []       []    []  |
     soundtracker       |                               []          []     |     texinfo            |          []         []      []                 |
     sp                 |                                                  |     texinfo_document   |          []         []                         |
     system-tools-ba... |    [] [] []  []      []             [] [] []  [] |     tigervnc           |                     []      []             []  |
     tar                |       []                []       []       []     |     tin                |                             []                 |
     texinfo            |       []             [] []                []     |     tin-man            |                                                |
     tin                |                         ()                       |     tracgoogleappsa... |          []         []      []             []  |
     tuxpaint           |       [] []                      [] [] [] []     |     trader             |                             []             []  |
     unicode-han-tra... |                                                  |     util-linux         |          []         []                         |
     unicode-transla... |                                                  |     ve                 |          []         []                     []  |
     util-linux         |              []         []       []       []     |     vice               |                                                |
     util-linux-ng      |              []         []       []       []     |     vmm                |                                                |
     vorbis-tools       |                         []                       |     vorbis-tools       |          []                          []    []  |
     wastesedge         |                                                  |     wastesedge         |                                                |
     wdiff              |       []     []      [] []    [] []       []     |     wcd                |                                                |
     wget               |          []             []    []          []     |     wcd-man            |                                                |
     xchat              |    []                   []    [] [] [] [] []     |     wdiff              |          []         []      []       []    []  |
     xkeyboard-config   |                               [] []       []     |     wget               |          []         []      []    []       []  |
     xpad               |                               [] []       []     |     wyslij-po          | []       []         []                     []  |
                        +--------------------------------------------------+     xboard             |          []                 []             []  |
                          or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv  ta     xdg-user-dirs      | [] [] [] []  [] []  []   [] []    [] [] [] []  |
                           0  5 77 31  53    4 58 72  3 45 46  9 45 122  3     xkeyboard-config   |          []         []      []       []        |
                         +------------------------------------------------+
                           nn or pa pl  ps pt pt_BR ro ru rw sk sl sq sr 
                            7  3  6 114  1 12  88   32 82  3 40 45  7 101
   
                          tg th tk tr uk ven vi  wa xh zh_CN zh_HK zh_TW zu                          sv  sw ta te tg th tr uk  ur vi  wa wo zh_CN
                        +---------------------------------------------------+                        +----------------------------------------------+
     Compendium         |          []        []         []          []      | 19     a2ps               | []              [] [] []     []              |
     a2ps               |          [] []     []                             | 19     aegis              |                              []              |
     aegis              |                    []                             |  1     anubis             | []                 [] []     []              |
     ant-phone          |          []        []                             |  6     aspell             | []                    []     []  []     []   |
     anubis             |          [] []     []                             | 11     bash               | []                    []     []         []   |
     ap-utils           |             ()     []                             |  4     bfd                | []                    []     []              |
     aspell             |             []     []  []                         | 16     binutils           | []                    []     []              |
     bash               |          []                                       |  6     bison              | []                    []     []         []   |
     bfd                |                                                   |  2     bison-runtime      | []              [] [] []     []         []   |
     bibshelf           |                    []                             |  7     buzztrax           | []                           []         []   |
     binutils           |          [] []     []                     []      |  9     ccd2cue            |                       []     []         []   |
     bison              |          [] []     []                     []      | 20     ccide              | []                    []     []         []   |
     bison-runtime      |             []     []         []          []      | 18     cflow              | []                    []     []         []   |
     bluez-pin          |          [] []     []  []     []          []      | 28     clisp              |                                              |
     cflow              |             []     []                             |  5     coreutils          | []                    []     []              |
     clisp              |                                                   |  9     cpio               | []                 [] []     []         []   |
     console-tools      |          []        []                             |  5     cppi               | []                    []     []         []   |
     coreutils          |          [] []     []                             | 18     cpplib             | []                 [] []     []         []   |
     cpio               |          [] []     []         []                  11     cryptsetup         |                       []     []         []   |
     cpplib             |          [] []     []         []          []      | 12     datamash           | []                    []     []              |
     cryptonit          |                    []                             |  6     denemo             |                                         []   |
     dialog             |                    []  []     []                  |  9     dfarc              | []                           []              |
     diffutils          |          [] []     []         []          []      | 29     dialog             []  []          []           []  []     []   |
     doodle             |                    []                             |  6     dico               |                       []                     |
     e2fsprogs          |          []        []                             10     diffutils          | []                 [] []     []         []   |
     enscript           |          [] []     []                             | 16     dink               | []                                           |
     fetchmail          |          []        []                             | 12     direvent           |                       []     []              |
     findutils          |          [] []     []                             | 11     doodle             | []                           []              |
     findutils_stable   |          [] []     []                     []      | 18     dos2unix           | []                    []     []         []   |
     flex               |          []        []                             | 15     dos2unix-man       | []                    []                []   |
     fslint             |                    []                             |  2     e2fsprogs          | []                    []     []         []   |
     gas                |          []                                       |  3     enscript           | []                 [] []     []              |
     gawk               |          []        []         []                  | 16     exif               | []                 [] []     []         []   |
     gcal               |          []                                       |  5     fetchmail          | []                 []        []         []   |
     gcc                |          []                   []          []      |  7     findutils          | []                 [] []     []         []   |
     gettext-examples   |          [] []     []         []    []    []      | 29     flex               | []                 []        []         []   |
     gettext-runtime    |          [] []     []         []    []    []      | 28     freedink           | []              []           []              |
     gettext-tools      |          [] []     []         []          []      | 20     fusionforge        |                                              |
     gip                |                    []                     []      | 13     gas                |                       []                     |
     gliv               |          []        []                             | 11     gawk               | []                           []         []   |
     glunarclock        |                    []  []                 []      | 15     gcal               | []                 []                   []   |
     gmult              |          []        []         []          []      | 16     gcc                | []                                           |
     gnubiff            |                    []                             |  2     gdbm               |                       []     []              |
     gnucash            |          () []                                    |  5     gettext-examples   | []                 [] []     []         []   |
     gnuedu             |                    []                             |  2     gettext-runtime    | []                 [] []     []         []   |
     gnulib             |                    []                             10     gettext-tools      | []                 [] []     []         []   |
     gnunet             |                                                   |  0     gjay               |                 []           []         []   |
     gnunet-gtk         |          []        []                             |  3     glunarclock        | []                           []  []     []   |
     gnutls             |                                                   |  4     gnubiff            | []                           []              |
     gpe-aerial         |                    []         []                  | 14     gnubik             | []                    []     []         []   |
     gpe-beam           |                    []         []                  | 14     gnucash            |        () ()              () ()         []   |
     gpe-calendar       |                    []  []                         |  7     gnuchess           |                       []     []         []   |
     gpe-clock          |          []        []  []     []                  | 21     gnulib             | []                    []     []         []   |
     gpe-conf           |                    []  []     []                  | 16     gnunet             |                                              |
     gpe-contacts       |                    []         []                  | 10     gnunet-gtk         |                                              |
     gpe-edit           |          []        []  []     []          []      | 22     gold               |                       []     []              |
     gpe-filemanager    |                    []  []                         |  7     gphoto2            | []                    []     []         []   |
     gpe-go             |          []        []  []     []                  | 19     gprof              | []                 [] []     []              |
     gpe-login          |          []        []  []     []          []      | 21     gramadoir          | []                           []         []   |
     gpe-ownerinfo      |          []        []         []          []      | 21     grep               | []              []    []     []         []   |
     gpe-package        |                    []                             |  6     grub               | []                 [] []     []              |
     gpe-sketchbook     |          []        []                             | 16     gsasl              | []                    []     []         []   |
     gpe-su             |          []        []  []     []                  | 21     gss                | []                           []         []   |
     gpe-taskmanager    |          []        []  []     []                  | 21     gst-plugins-bad    | []                 [] []     []         []   |
     gpe-timesheet      |          []        []         []          []      | 18     gst-plugins-base   | []                 [] []     []         []   |
     gpe-today          |          []        []  []     []          []      | 21     gst-plugins-good   | []                 [] []     []         []   |
     gpe-todo           |                    []  []                         |  8     gst-plugins-ugly   | []                 [] []     []         []   |
     gphoto2            |             []     []         []          []      | 21     gstreamer          | []                 [] []     []         []   |
     gprof              |          []        []                             13     gtick              |                       []     []         []   |
     gpsdrive           |                    []                             |  5     gtkam              | []                    []     []         []   |
     gramadoir          |                    []                             |  7     gtkspell           | []              [] [] []     []  []     []   |
     grep               |                    []                             12     guix               |                                              |
     gretl              |                                                   |  6     guix-packages      |                                              |
     gsasl              |                    []         []          []      |  9     gutenprint         |                    [] []     []         []   |
     gss                |                    []                             |  7     hello              | []              [] [] []     []         []   |
     gst-plugins-bad    |             []     []         []                  13     help2man           |                       []     []         []   |
     gst-plugins-base   |             []     []                             11     help2man-texi      |                       []                     |
     gst-plugins-good   |             []     []         []    []    []      | 16     hylafax            |                              []              |
     gst-plugins-ugly   |             []     []         []                  | 13     idutils            |                       []     []         []   |
     gstreamer          |          [] []     []                             | 18     iso_15924          | []              () [] []     ()         []   |
     gtick              |             []     []                             |  7     iso_3166           | []        []    () [] []     ()  []     []   |
     gtkam              |                    []                             16     iso_3166_2         |                 () [] []     ()         []   |
     gtkorphan          |                    []                             |  7     iso_4217           | []              () [] []     ()         []   |
     gtkspell           |             []     []  []     []    []    []      | 27     iso_639            | []     [] []    () [] []     ()  []     []   |
     gutenprint         |                                                   |  4     iso_639_3          |        []       () [] []     ()              |
     hello              |          [] []     []         []          []      | 38     iso_639_5          |                 ()    []     ()              |
     herrie             |          []        []                             |  8     jwhois             | []                 []        []         []   |
     hylafax            |                                                   |  0     kbd                | []                    []     []         []   |
     idutils            |          []        []                             | 15     klavaro            | []                    []  [] []     []  []   |
     indent             |          [] []     []         []          []      | 28     ld                 | []                 [] []     []         []   |
     iso_15924          |                    []         []                  |  4     leafpad            | []              [] [] []     []         []   |
     iso_3166           |    [] [] [] []     []  []     []    []    []      | 54     libc               | []                 [] []     []         []   |
     iso_3166_2         |                    []         []                  |  4     libexif            | []                           []         ()   |
     iso_4217           |    []    []        []         []    []            | 24     libextractor       |                       []     []              |
     iso_639            |             []     []  []     []    []            | 26     libgnutls          | []                    []     []         []   |
     jpilot             |          [] []     []         []                  |  7     libgphoto2         | []                    []     []              |
     jtag               |                    []                             |  3     libgphoto2_port    | []                    []     []         []   |
     jwhois             |          []        []                     []      | 13     libgsasl           | []                    []     []         []   |
     kbd                |          [] []     []                             13     libiconv           | []                    []     []  []     []   |
     keytouch           |                    []                             |  8     libidn             | ()                    []     []         []   |
     keytouch-editor    |                    []                             |  5     liferea            | []                 [] []     []         []   |
     keytouch-keyboa... |                    []                             |  5     lilypond           |                              []              |
     latrine            |          []        []                             |  5     lordsawar          |                                              |
     ld                 |          []        []         []          []      | 10     lprng              |                              []              |
     leafpad            |          [] []     []         []          []      | 24     lynx               | []                 [] []     []              |
     libc               |          []                   []          []      | 19     m4                 | []                           []         []   |
     libexif            |                    []                             |  5     mailfromd          |                       []     []              |
     libextractor       |                    []                             |  5     mailutils          |                              []              |
     libgpewidget       |                    []  []     []                  | 20     make               | []                    []     []         []   |
     libgpg-error       |                    []                             |  6     man-db             | []                           []         []   |
     libgphoto2         |             []     []                             |  9     man-db-manpages    | []                                      []   |
     libgphoto2_port    |             []     []                     []      | 11     midi-instruments   | []              [] [] []     []         []   |
     libgsasl           |                    []                             |  8     minicom            | []                           []              |
     libiconv           |                    []  []                         | 11     mkisofs            |                       []     []         []   |
     libidn             |                    []         []                  | 11     myserver           |                              []              |
     lifelines          |                                                   |  4     nano               | []                    []     []         []   |
     lilypond           |                    []                             |  6     opcodes            |                       []     []         []   |
     lingoteach         |                    []                             |  6     parted             | []                 [] []     []         []   |
     lprng              |                    []                             |  2     pies               |                       []     []              |
     lynx               |          [] []     []                             | 15     pnmixer            |                       []     []         []   |
     m4                 |                    []         []          []      | 18     popt               | []     []       [] [] []     []         []   |
     mailfromd          |             []     []                             |  3     procps-ng          |                       []     []              |
     mailutils          |             []     []                             |  8     procps-ng-man      |                       []                     |
     make               |          []        []         []                  | 20     psmisc             | []                    []     []         []   |
     man-db             |                    []                             |  9     pspp               |                    [] []                []   |
     minicom            |                    []                             | 14     pushover           | []                                           |
     nano               |                    []         []          []      | 20     pwdutils           | []                           []              |
     opcodes            |          []        []                             | 10     pyspread           |                       []                     |
     parted             |          [] []                            []      | 11     radius             |                       []     []              |
     pilot-qof          |                    []                             |  1     recode             | []                 []        []         []   |
     popt               |          []        []         []          []      | 18     recutils           | []                    []     []              |
     psmisc             |                    []         []                  | 10     rpm                | []                    []     []         []   |
     pwdutils           |                    []                             |  3     rush               |                       []     []              |
     qof                |                    []                             |  4     sarg               |                                              |
     radius             |             []     []                             |  7     sed                | []                 [] []     []         []   |
     recode             |          []        []         []                  | 25     sharutils          | []                    []     []         []   |
     rpm                |          [] []     []                     []      | 13     shishi             |                              []         []   |
     screem             |                    []                             |  2     skribilo           | []                    []                     |
     scrollkeeper       |          [] []     []                     []      | 26     solfege            | []                 []        []         []   |
     sed                |          []        []         []          []      | 23     solfege-manual     |                    []                        |
     shared-mime-info   |             []     []         []                  29     spotmachine        | []                    []     []              |
     sharutils          |          []        []                     []      | 23     sudo               | []                 [] []     []         []   |
     shishi             |                    []                             |  3     sudoers            | []                    []     []         []   |
     skencil            |                    []                             |  7     sysstat            | []                 [] []     []         []   |
     solfege            |                    []                             |  3     tar                | []                 [] []     []         []   |
     soundtracker       |          []        []                             |  9     texinfo            |                    [] []     []              |
     sp                 |          []                                       |  3     texinfo_document   |                       []                     |
     system-tools-ba... |    []    [] []     []     []  []          []      | 38     tigervnc           | []                    []                []   |
     tar                |          [] []     []                             17     tin                |                                         []   |
     texinfo            |          []        []         []                  | 15     tin-man            |                                              |
     tin                |                                                   |  1     tracgoogleappsa... | []              []    []     []         []   |
     tuxpaint           |                    []  []                 []      | 19     trader             | []                                           |
     unicode-han-tra... |                                                   |  0     util-linux         []                    []     []         []   |
     unicode-transla... |                                                   |  2     ve                 | []                    []     []         []   |
     util-linux         |          [] []     []                             | 20     vice               | ()                 ()                        |
     util-linux-ng      |          [] []     []                             | 20     vmm                |                                              |
     vorbis-tools       |             []     []                             |  4     vorbis-tools       | []                           []              |
     wastesedge         |                                                   |  1     wastesedge         |                                              |
     wdiff              |          []        []                             | 23     wcd                |                       []     []         []   |
     wget               |          []        []                     []      | 20     wcd-man            |                       []                     |
     xchat              |             []     []         []          []      | 29     wdiff              | []                    []     []         []   |
     xkeyboard-config   |          [] []     []                             | 14     wget               |                       []     []         []   |
     xpad               |                    []         []          []      | 15     wyslij-po          |                       []     []              |
                        +---------------------------------------------------+     xboard             |                       []                []   |
       76 teams           tg th tk tr uk ven vi  wa xh zh_CN zh_HK zh_TW zu     xdg-user-dirs      | []     [] []    [] [] []     []         []   |
      163 domains          0  3  1 74 51  0  143 21  1  57     7    45    0  2036     xkeyboard-config   | []                 [] []     []              |
                         +----------------------------------------------+
                           sv  sw ta te tg th tr uk  ur vi  wa wo zh_CN
                           106  1  4  3  0 13 51 115  1 125  7  1  100 
   
                             zh_HK zh_TW
                           +-------------+
        a2ps               |             | 30
        aegis              |             |  9
        anubis             |             | 19
        aspell             |             | 29
        bash               |        []   | 23
        bfd                |             | 11
        binutils           |             | 12
        bison              |        []   | 18
        bison-runtime      |        []   | 38
        buzztrax           |             |  9
        ccd2cue            |             | 10
        ccide              |             | 17
        cflow              |             | 16
        clisp              |             | 10
        coreutils          |             | 18
        cpio               |             | 20
        cppi               |             | 17
        cpplib             |        []   | 19
        cryptsetup         |             | 14
        datamash           |             | 11
        denemo             |             |  5
        dfarc              |             | 17
        dialog             |        []   | 42
        dico               |             |  6
        diffutils          |             | 22
        dink               |             | 10
        direvent           |             | 11
        doodle             |             | 12
        dos2unix           |        []   | 18
        dos2unix-man       |             |  9
        e2fsprogs          |             | 15
        enscript           |             | 21
        exif               |             | 27
        fetchmail          |             | 19
        findutils          |             | 29
        flex               |        []   | 19
        freedink           |             | 24
        fusionforge        |             |  3
        gas                |             |  5
        gawk               |             | 13
        gcal               |             |  8
        gcc                |             |  2
        gdbm               |             | 10
        gettext-examples   |  []    []   | 40
        gettext-runtime    |  []    []   | 35
        gettext-tools      |        []   | 24
        gjay               |             |  9
        glunarclock        |        []   | 27
        gnubiff            |             |  9
        gnubik             |             | 19
        gnucash            |        ()   |  6
        gnuchess           |             | 11
        gnulib             |             | 23
        gnunet             |             |  1
        gnunet-gtk         |             |  1
        gold               |             |  7
        gphoto2            |        []   | 19
        gprof              |             | 21
        gramadoir          |             | 14
        grep               |        []   | 31
        grub               |             | 21
        gsasl              |        []   | 19
        gss                |             | 17
        gst-plugins-bad    |             | 21
        gst-plugins-base   |             | 27
        gst-plugins-good   |             | 32
        gst-plugins-ugly   |             | 34
        gstreamer          |        []   | 32
        gtick              |             | 19
        gtkam              |             | 24
        gtkspell           |  []    []   | 48
        guix               |             |  2
        guix-packages      |             |  0
        gutenprint         |             | 15
        hello              |        []   | 30
        help2man           |             | 18
        help2man-texi      |             |  5
        hylafax            |             |  5
        idutils            |             | 14
        iso_15924          |        []   | 23
        iso_3166           |  []    []   | 58
        iso_3166_2         |             |  9
        iso_4217           |  []    []   | 28
        iso_639            |  []    []   | 46
        iso_639_3          |             | 10
        iso_639_5          |             |  2
        jwhois             |        []   | 20
        kbd                |             | 17
        klavaro            |             | 30
        ld                 |        []   | 15
        leafpad            |        []   | 39
        libc               |        []   | 24
        libexif            |             | 10
        libextractor       |             |  5
        libgnutls          |             | 13
        libgphoto2         |             | 10
        libgphoto2_port    |        []   | 19
        libgsasl           |             | 18
        libiconv           |        []   | 29
        libidn             |             | 17
        liferea            |             | 29
        lilypond           |             | 11
        lordsawar          |             |  3
        lprng              |             |  3
        lynx               |             | 19
        m4                 |        []   | 22
        mailfromd          |             |  4
        mailutils          |             |  6
        make               |             | 19
        man-db             |             | 15
        man-db-manpages    |             | 10
        midi-instruments   |        []   | 43
        minicom            |        []   | 17
        mkisofs            |             | 13
        myserver           |             |  9
        nano               |        []   | 30
        opcodes            |             | 12
        parted             |        []   | 23
        pies               |             |  4
        pnmixer            |             |  9
        popt               |        []   | 36
        procps-ng          |             |  5
        procps-ng-man      |             |  4
        psmisc             |        []   | 22
        pspp               |             | 13
        pushover           |             |  6
        pwdutils           |             |  8
        pyspread           |             |  6
        radius             |             |  9
        recode             |             | 31
        recutils           |             | 10
        rpm                |        []   | 13
        rush               |             | 10
        sarg               |             |  4
        sed                |        []   | 35
        sharutils          |             | 13
        shishi             |             |  7
        skribilo           |             |  7
        solfege            |             | 21
        solfege-manual     |             |  9
        spotmachine        |             | 11
        sudo               |             | 26
        sudoers            |             | 22
        sysstat            |             | 23
        tar                |        []   | 30
        texinfo            |             | 17
        texinfo_document   |             | 13
        tigervnc           |             | 14
        tin                |        []   |  7
        tin-man            |             |  1
        tracgoogleappsa... |        []   | 22
        trader             |             | 12
        util-linux         |             | 13
        ve                 |             | 14
        vice               |             |  1
        vmm                |             |  3
        vorbis-tools       |             | 13
        wastesedge         |             |  3
        wcd                |             |  8
        wcd-man            |             |  3
        wdiff              |        []   | 23
        wget               |             | 21
        wyslij-po          |             | 14
        xboard             |             | 10
        xdg-user-dirs      |  []    []   | 68
        xkeyboard-config   |        []   | 28
                           +-------------+
          89 teams           zh_HK zh_TW
         166 domains           7    42    2809
   
    Some counters in the preceding matrix are higher than the number of     Some counters in the preceding matrix are higher than the number of
 visible blocks let us expect.  This is because a few extra PO files are  visible blocks let us expect.  This is because a few extra PO files are
 used for implementing regional variants of languages, or language  used for implementing regional variants of languages, or language
 dialects.  dialects.
   
    For a PO file in the matrix above to be effective, the package to     For a PO file in the matrix above to be effective, the package to
which it applies should also have been internationalized andwhich it applies should also have been internationalized and distributed
distributed as such by its maintainer.  There might be an observableas such by its maintainer.  There might be an observable lag between the
lag between the mere existence a PO file and its wide availability in amere existence a PO file and its wide availability in a distribution.
distribution. 
   
   If November 2007 seems to be old, you may fetch a more recent copy   If Jun 2014 seems to be old, you may fetch a more recent copy of this
of this `ABOUT-NLS' file on most GNU archive sites.  The most'ABOUT-NLS' file on most GNU archive sites.  The most up-to-date matrix
up-to-date matrix with full percentage details can be found atwith full percentage details can be found at
`http://translationproject.org/extra/matrix.html'.'http://translationproject.org/extra/matrix.html'.
   
1.6 Using `gettext' in new packages1.5 Using 'gettext' in new packages
 ===================================  ===================================
   
 If you are writing a freely available program and want to  If you are writing a freely available program and want to
internationalize it you are welcome to use GNU `gettext' in yourinternationalize it you are welcome to use GNU 'gettext' in your
package.  Of course you have to respect the GNU Library General Publicpackage.  Of course you have to respect the GNU Lesser General Public
License which covers the use of the GNU `gettext' library.  This meansLicense which covers the use of the GNU 'gettext' library.  This means
in particular that even non-free programs can use `libintl' as a sharedin particular that even non-free programs can use 'libintl' as a shared
library, whereas only free software can use `libintl' as a staticlibrary, whereas only free software can use 'libintl' as a static
library or use modified versions of `libintl'.library or use modified versions of 'libintl'.
   
    Once the sources are changed appropriately and the setup can handle     Once the sources are changed appropriately and the setup can handle
the use of `gettext' the only thing missing are the translations.  Thethe use of 'gettext' the only thing missing are the translations.  The
 Free Translation Project is also available for packages which are not  Free Translation Project is also available for packages which are not
 developed inside the GNU project.  Therefore the information given above  developed inside the GNU project.  Therefore the information given above
 applies also for every other Free Software Project.  Contact  applies also for every other Free Software Project.  Contact
`coordinator@translationproject.org' to make the `.pot' files available'coordinator@translationproject.org' to make the '.pot' files available
 to the translation teams.  to the translation teams.
   

Removed from v.1.1  
changed lines
  Added in v.1.1.1.3


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>