Blame ABOUT-NLS

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