Blame ABOUT-NLS

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