Blame ABOUT-NLS

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