Blame ABOUT-NLS

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