Blame ABOUT-NLS

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