csomh / source-git / rpm

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