ABOUT-NLS
branchgui
changeset 130 3533c2d9a865
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ABOUT-NLS	Thu Mar 23 19:57:14 2006 +0000
     1.3 @@ -0,0 +1,996 @@
     1.4 +1 Notes on the Free Translation Project
     1.5 +***************************************
     1.6 +
     1.7 +Free software is going international!  The Free Translation Project is
     1.8 +a way to get maintainers of free software, translators, and users all
     1.9 +together, so that free software will gradually become able to speak many
    1.10 +languages.  A few packages already provide translations for their
    1.11 +messages.
    1.12 +
    1.13 +   If you found this `ABOUT-NLS' file inside a distribution, you may
    1.14 +assume that the distributed package does use GNU `gettext' internally,
    1.15 +itself available at your nearest GNU archive site.  But you do _not_
    1.16 +need to install GNU `gettext' prior to configuring, installing or using
    1.17 +this package with messages translated.
    1.18 +
    1.19 +   Installers will find here some useful hints.  These notes also
    1.20 +explain how users should proceed for getting the programs to use the
    1.21 +available translations.  They tell how people wanting to contribute and
    1.22 +work on translations can contact the appropriate team.
    1.23 +
    1.24 +   When reporting bugs in the `intl/' directory or bugs which may be
    1.25 +related to internationalization, you should tell about the version of
    1.26 +`gettext' which is used.  The information can be found in the
    1.27 +`intl/VERSION' file, in internationalized packages.
    1.28 +
    1.29 +1.1 Quick configuration advice
    1.30 +==============================
    1.31 +
    1.32 +If you want to exploit the full power of internationalization, you
    1.33 +should configure it using
    1.34 +
    1.35 +     ./configure --with-included-gettext
    1.36 +
    1.37 +to force usage of internationalizing routines provided within this
    1.38 +package, despite the existence of internationalizing capabilities in the
    1.39 +operating system where this package is being installed.  So far, only
    1.40 +the `gettext' implementation in the GNU C library version 2 provides as
    1.41 +many features (such as locale alias, message inheritance, automatic
    1.42 +charset conversion or plural form handling) as the implementation here.
    1.43 +It is also not possible to offer this additional functionality on top
    1.44 +of a `catgets' implementation.  Future versions of GNU `gettext' will
    1.45 +very likely convey even more functionality.  So it might be a good idea
    1.46 +to change to GNU `gettext' as soon as possible.
    1.47 +
    1.48 +   So you need _not_ provide this option if you are using GNU libc 2 or
    1.49 +you have installed a recent copy of the GNU gettext package with the
    1.50 +included `libintl'.
    1.51 +
    1.52 +1.2 INSTALL Matters
    1.53 +===================
    1.54 +
    1.55 +Some packages are "localizable" when properly installed; the programs
    1.56 +they contain can be made to speak your own native language.  Most such
    1.57 +packages use GNU `gettext'.  Other packages have their own ways to
    1.58 +internationalization, predating GNU `gettext'.
    1.59 +
    1.60 +   By default, this package will be installed to allow translation of
    1.61 +messages.  It will automatically detect whether the system already
    1.62 +provides the GNU `gettext' functions.  If not, the included GNU
    1.63 +`gettext' library will be used.  This library is wholly contained
    1.64 +within this package, usually in the `intl/' subdirectory, so prior
    1.65 +installation of the GNU `gettext' package is _not_ required.
    1.66 +Installers may use special options at configuration time for changing
    1.67 +the default behaviour.  The commands:
    1.68 +
    1.69 +     ./configure --with-included-gettext
    1.70 +     ./configure --disable-nls
    1.71 +
    1.72 +will, respectively, bypass any pre-existing `gettext' to use the
    1.73 +internationalizing routines provided within this package, or else,
    1.74 +_totally_ disable translation of messages.
    1.75 +
    1.76 +   When you already have GNU `gettext' installed on your system and run
    1.77 +configure without an option for your new package, `configure' will
    1.78 +probably detect the previously built and installed `libintl.a' file and
    1.79 +will decide to use this.  This might not be desirable.  You should use
    1.80 +the more recent version of the GNU `gettext' library.  I.e. if the file
    1.81 +`intl/VERSION' shows that the library which comes with this package is
    1.82 +more recent, you should use
    1.83 +
    1.84 +     ./configure --with-included-gettext
    1.85 +
    1.86 +to prevent auto-detection.
    1.87 +
    1.88 +   The configuration process will not test for the `catgets' function
    1.89 +and therefore it will not be used.  The reason is that even an
    1.90 +emulation of `gettext' on top of `catgets' could not provide all the
    1.91 +extensions of the GNU `gettext' library.
    1.92 +
    1.93 +   Internationalized packages usually have many `po/LL.po' files, where
    1.94 +LL gives an ISO 639 two-letter code identifying the language.  Unless
    1.95 +translations have been forbidden at `configure' time by using the
    1.96 +`--disable-nls' switch, all available translations are installed
    1.97 +together with the package.  However, the environment variable `LINGUAS'
    1.98 +may be set, prior to configuration, to limit the installed set.
    1.99 +`LINGUAS' should then contain a space separated list of two-letter
   1.100 +codes, stating which languages are allowed.
   1.101 +
   1.102 +1.3 Using This Package
   1.103 +======================
   1.104 +
   1.105 +As a user, if your language has been installed for this package, you
   1.106 +only have to set the `LANG' environment variable to the appropriate
   1.107 +`LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
   1.108 +and `CC' is an ISO 3166 two-letter country code.  For example, let's
   1.109 +suppose that you speak German and live in Germany.  At the shell
   1.110 +prompt, merely execute `setenv LANG de_DE' (in `csh'),
   1.111 +`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
   1.112 +This can be done from your `.login' or `.profile' file, once and for
   1.113 +all.
   1.114 +
   1.115 +   You might think that the country code specification is redundant.
   1.116 +But in fact, some languages have dialects in different countries.  For
   1.117 +example, `de_AT' is used for Austria, and `pt_BR' for Brazil.  The
   1.118 +country code serves to distinguish the dialects.
   1.119 +
   1.120 +   The locale naming convention of `LL_CC', with `LL' denoting the
   1.121 +language and `CC' denoting the country, is the one use on systems based
   1.122 +on GNU libc.  On other systems, some variations of this scheme are
   1.123 +used, such as `LL' or `LL_CC.ENCODING'.  You can get the list of
   1.124 +locales supported by your system for your country by running the command
   1.125 +`locale -a | grep '^LL''.
   1.126 +
   1.127 +   Not all programs have translations for all languages.  By default, an
   1.128 +English message is shown in place of a nonexistent translation.  If you
   1.129 +understand other languages, you can set up a priority list of languages.
   1.130 +This is done through a different environment variable, called
   1.131 +`LANGUAGE'.  GNU `gettext' gives preference to `LANGUAGE' over `LANG'
   1.132 +for the purpose of message handling, but you still need to have `LANG'
   1.133 +set to the primary language; this is required by other parts of the
   1.134 +system libraries.  For example, some Swedish users who would rather
   1.135 +read translations in German than English for when Swedish is not
   1.136 +available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
   1.137 +
   1.138 +   Special advice for Norwegian users: The language code for Norwegian
   1.139 +bokma*l changed from `no' to `nb' recently (in 2003).  During the
   1.140 +transition period, while some message catalogs for this language are
   1.141 +installed under `nb' and some older ones under `no', it's recommended
   1.142 +for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
   1.143 +older translations are used.
   1.144 +
   1.145 +   In the `LANGUAGE' environment variable, but not in the `LANG'
   1.146 +environment variable, `LL_CC' combinations can be abbreviated as `LL'
   1.147 +to denote the language's main dialect.  For example, `de' is equivalent
   1.148 +to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
   1.149 +(Portuguese as spoken in Portugal) in this context.
   1.150 +
   1.151 +1.4 Translating Teams
   1.152 +=====================
   1.153 +
   1.154 +For the Free Translation Project to be a success, we need interested
   1.155 +people who like their own language and write it well, and who are also
   1.156 +able to synergize with other translators speaking the same language.
   1.157 +Each translation team has its own mailing list.  The up-to-date list of
   1.158 +teams can be found at the Free Translation Project's homepage,
   1.159 +`http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
   1.160 +area.
   1.161 +
   1.162 +   If you'd like to volunteer to _work_ at translating messages, you
   1.163 +should become a member of the translating team for your own language.
   1.164 +The subscribing address is _not_ the same as the list itself, it has
   1.165 +`-request' appended.  For example, speakers of Swedish can send a
   1.166 +message to `sv-request@li.org', having this message body:
   1.167 +
   1.168 +     subscribe
   1.169 +
   1.170 +   Keep in mind that team members are expected to participate
   1.171 +_actively_ in translations, or at solving translational difficulties,
   1.172 +rather than merely lurking around.  If your team does not exist yet and
   1.173 +you want to start one, or if you are unsure about what to do or how to
   1.174 +get started, please write to `translation@iro.umontreal.ca' to reach the
   1.175 +coordinator for all translator teams.
   1.176 +
   1.177 +   The English team is special.  It works at improving and uniformizing
   1.178 +the terminology in use.  Proven linguistic skill are praised more than
   1.179 +programming skill, here.
   1.180 +
   1.181 +1.5 Available Packages
   1.182 +======================
   1.183 +
   1.184 +Languages are not equally supported in all packages.  The following
   1.185 +matrix shows the current state of internationalization, as of May 2005.
   1.186 +The matrix shows, in regard of each package, for which languages PO
   1.187 +files have been submitted to translation coordination, with a
   1.188 +translation percentage of at least 50%.
   1.189 +
   1.190 +     Ready PO files       af am ar az be bg bs ca cs cy da de el en en_GB
   1.191 +                        +-------------------------------------------------+
   1.192 +     GNUnet             |                                                 |
   1.193 +     a2ps               |             []                [] [] []     []   |
   1.194 +     aegis              |                                  ()             |
   1.195 +     ant-phone          |                                  ()             |
   1.196 +     anubis             |                                  []             |
   1.197 +     ap-utils           |                                                 |
   1.198 +     aspell             |                         []    [] []        []   |
   1.199 +     bash               |                      []          []             |
   1.200 +     batchelor          |                                  []             |
   1.201 +     bfd                |                                                 |
   1.202 +     bibshelf           |                                  []             |
   1.203 +     binutils           |                               []                |
   1.204 +     bison              |                               [] []             |
   1.205 +     bluez-pin          | []                      []       [] []          |
   1.206 +     clisp              |                                  []    []       |
   1.207 +     console-tools      |                         []       []             |
   1.208 +     coreutils          |                []    []       [] []             |
   1.209 +     cpio               |                                                 |
   1.210 +     cpplib             |                      []       [] []             |
   1.211 +     darkstat           |                []             () []             |
   1.212 +     dialog             |                      [] [] [] [] [] []          |
   1.213 +     diffutils          |                      [] []    [] [] []          |
   1.214 +     doodle             |                                  []             |
   1.215 +     e2fsprogs          |                         []       []             |
   1.216 +     enscript           |                      []       [] []        []   |
   1.217 +     error              |                      []       [] []        []   |
   1.218 +     fetchmail          |                      []       [] () []          |
   1.219 +     fileutils          |                               [] []             |
   1.220 +     findutils          |                      []       []    []          |
   1.221 +     flex               |                      []       [] []             |
   1.222 +     fslint             |                                  []             |
   1.223 +     gas                |                                                 |
   1.224 +     gawk               |                      []       [] []             |
   1.225 +     gbiff              |                                  []             |
   1.226 +     gcal               |                      []                         |
   1.227 +     gcc                |                                  []             |
   1.228 +     gettext-examples   | []                   []          [] []          |
   1.229 +     gettext-runtime    |             []       []       [] []             |
   1.230 +     gettext-tools      |                      []          []             |
   1.231 +     gimp-print         |                         []    [] []        []   |
   1.232 +     gip                |                                                 |
   1.233 +     gliv               |                                  []             |
   1.234 +     glunarclock        |                                                 |
   1.235 +     gmult              | []                               []             |
   1.236 +     gnubiff            |                                  ()             |
   1.237 +     gnucash            |                         []       () ()     []   |
   1.238 +     gnucash-glossary   |                               [] ()             |
   1.239 +     gpe-aerial         |                         []       []             |
   1.240 +     gpe-beam           |                         []       []             |
   1.241 +     gpe-calendar       |                         []       []             |
   1.242 +     gpe-clock          |                         []       []             |
   1.243 +     gpe-conf           |                         []       []             |
   1.244 +     gpe-contacts       |                                                 |
   1.245 +     gpe-edit           |                         []                      |
   1.246 +     gpe-go             |                         []                      |
   1.247 +     gpe-login          |                         []       []             |
   1.248 +     gpe-ownerinfo      |                         []       []             |
   1.249 +     gpe-sketchbook     |                         []       []             |
   1.250 +     gpe-su             |                         []       []             |
   1.251 +     gpe-taskmanager    |                         []       []             |
   1.252 +     gpe-timesheet      |                         []                      |
   1.253 +     gpe-today          |                         []       []             |
   1.254 +     gpe-todo           |                         []       []             |
   1.255 +     gphoto2            |                         []    [] []        []   |
   1.256 +     gprof              |                               [] []             |
   1.257 +     gpsdrive           |                                  ()    ()       |
   1.258 +     gramadoir          | []                               []             |
   1.259 +     grep               | []          [] []    []          [] []          |
   1.260 +     gretl              |                                                 |
   1.261 +     gsasl              |                                  []             |
   1.262 +     gss                |                                                 |
   1.263 +     gst-plugins        | []       []          [] []       []        []   |
   1.264 +     gstreamer          | []                   [] []       []        []   |
   1.265 +     gtick              | []                               ()             |
   1.266 +     gtkspell           |             []                   [] []          |
   1.267 +     hello              |                      []       [] [] []          |
   1.268 +     id-utils           |                               [] []             |
   1.269 +     impost             |                                                 |
   1.270 +     indent             |                      []          []             |
   1.271 +     iso_3166           |                                                 |
   1.272 +     iso_3166_1         |                      [] []    [] [] []          |
   1.273 +     iso_3166_2         |                                                 |
   1.274 +     iso_3166_3         |                                  []             |
   1.275 +     iso_4217           |                                                 |
   1.276 +     iso_639            |                                                 |
   1.277 +     jpilot             |                         []                      |
   1.278 +     jtag               |                                                 |
   1.279 +     jwhois             |                                                 |
   1.280 +     kbd                |                         []    [] [] []          |
   1.281 +     latrine            |                                  ()             |
   1.282 +     ld                 |                               []                |
   1.283 +     libc               |                      [] []    [] [] []          |
   1.284 +     libextractor       |                                                 |
   1.285 +     libgpewidget       |                         []    [] []             |
   1.286 +     libgphoto2         |                                  []             |
   1.287 +     libgphoto2_port    |                                  []             |
   1.288 +     libgsasl           |                                                 |
   1.289 +     libiconv           | []                   []       [] [] []          |
   1.290 +     libidn             |                                                 |
   1.291 +     lifelines          |                               [] ()             |
   1.292 +     lilypond           |                                  []             |
   1.293 +     lingoteach         |                                                 |
   1.294 +     lynx               |                      [] []    [] []             |
   1.295 +     m4                 |                         []    [] [] []          |
   1.296 +     mailutils          |                      []                         |
   1.297 +     make               |                               [] []             |
   1.298 +     man-db             |                      [] ()    [] []             |
   1.299 +     minicom            |                         []       []             |
   1.300 +     mysecretdiary      |                               [] []             |
   1.301 +     nano               |                      [] ()       []             |
   1.302 +     nano_1_0           |                      [] ()    [] []             |
   1.303 +     opcodes            |                                  []             |
   1.304 +     parted             |                      [] []    [] []             |
   1.305 +     psmisc             |                                                 |
   1.306 +     ptx                |                      []       [] []             |
   1.307 +     pwdutils           |                                                 |
   1.308 +     python             |                                                 |
   1.309 +     radius             |                      []                         |
   1.310 +     recode             |             []       []       [] [] []          |
   1.311 +     rpm                |                         []    []                |
   1.312 +     screem             |                                                 |
   1.313 +     scrollkeeper       |          [] []       [] [] [] [] []        []   |
   1.314 +     sed                |                      []          []             |
   1.315 +     sh-utils           |                               [] []             |
   1.316 +     shared-mime-info   |                []       []                      |
   1.317 +     sharutils          |                      [] []    [] [] []          |
   1.318 +     silky              |                                                 |
   1.319 +     skencil            |                               [] ()             |
   1.320 +     sketch             |                               [] ()             |
   1.321 +     solfege            |                                  []             |
   1.322 +     soundtracker       |                               [] []             |
   1.323 +     sp                 |                                  []             |
   1.324 +     stardict           |                         []                      |
   1.325 +     tar                |                                                 |
   1.326 +     texinfo            |                               [] []             |
   1.327 +     textutils          |                      []       [] []             |
   1.328 +     tin                |                                  ()        ()   |
   1.329 +     tp-robot           |                                  []             |
   1.330 +     tuxpaint           | []                   [] []    [] [] []     []   |
   1.331 +     unicode-han-tra... |                                                 |
   1.332 +     unicode-transla... |                                                 |
   1.333 +     util-linux         |                      [] []    [] []             |
   1.334 +     vorbis-tools       |             []          []    []           []   |
   1.335 +     wastesedge         |                                  ()             |
   1.336 +     wdiff              |                      []       [] []        []   |
   1.337 +     wget               |                                                 |
   1.338 +     xchat              |                []    []          [] []     []   |
   1.339 +     xkeyboard-config   |                                                 |
   1.340 +     xpad               |                                                 |
   1.341 +                        +-------------------------------------------------+
   1.342 +                          af am ar az be bg bs ca cs cy da de el en en_GB
   1.343 +                          10  0  0  2  7  5  0 40 43  2 51 91 19  1  14
   1.344 +
   1.345 +                          eo es et eu fa fi fr  ga gl he hi hr hu id is
   1.346 +                        +-----------------------------------------------+
   1.347 +     GNUnet             |                                               |
   1.348 +     a2ps               |       []       [] []                          |
   1.349 +     aegis              |                                               |
   1.350 +     ant-phone          |                   []                          |
   1.351 +     anubis             |                   []                          |
   1.352 +     ap-utils           |                   []                          |
   1.353 +     aspell             |                   []  []                      |
   1.354 +     bash               | [] []             []                 []       |
   1.355 +     batchelor          |                   []  []                      |
   1.356 +     bfd                |    []                                         |
   1.357 +     bibshelf           |    []                 []                      |
   1.358 +     binutils           |    []             []                          |
   1.359 +     bison              |    [] []          []  []                []    |
   1.360 +     bluez-pin          | []             [] []  []             [] []    |
   1.361 +     clisp              |    []             []                          |
   1.362 +     console-tools      |                                               |
   1.363 +     coreutils          |    [] []       [] []  []                      |
   1.364 +     cpio               |    []             []                          |
   1.365 +     cpplib             |    []             []                          |
   1.366 +     darkstat           |    []             ()  []             [] []    |
   1.367 +     dialog             |    [] [] []    [] []  []             []       |
   1.368 +     diffutils          | [] []          [] []  [] [] []       [] []    |
   1.369 +     doodle             |                       []                      |
   1.370 +     e2fsprogs          |    []             []                          |
   1.371 +     enscript           |                   []              []          |
   1.372 +     error              |    []          [] []  []             []       |
   1.373 +     fetchmail          |    []                                         |
   1.374 +     fileutils          |    [] []          []  []             []       |
   1.375 +     findutils          |    [] []          []  []                      |
   1.376 +     flex               |    []             []  []                      |
   1.377 +     fslint             |                   []                          |
   1.378 +     gas                |    []             []                          |
   1.379 +     gawk               |    []             []  []    []                |
   1.380 +     gbiff              |                   []                          |
   1.381 +     gcal               |    []             []                          |
   1.382 +     gcc                |    []                                         |
   1.383 +     gettext-examples   |    []             []  []                      |
   1.384 +     gettext-runtime    |    []          [] []  []                []    |
   1.385 +     gettext-tools      |    []             []                          |
   1.386 +     gimp-print         |    []             []                          |
   1.387 +     gip                |    []    []       []                          |
   1.388 +     gliv               |                   ()                          |
   1.389 +     glunarclock        |                []     []             []       |
   1.390 +     gmult              |          []       []                          |
   1.391 +     gnubiff            |                   ()                          |
   1.392 +     gnucash            |    []                                ()       |
   1.393 +     gnucash-glossary   |    []                                         |
   1.394 +     gpe-aerial         |    []             []                          |
   1.395 +     gpe-beam           |    []             []                          |
   1.396 +     gpe-calendar       |    []             []                 [] []    |
   1.397 +     gpe-clock          |    []          [] []                          |
   1.398 +     gpe-conf           |                   []                          |
   1.399 +     gpe-contacts       |                   []                          |
   1.400 +     gpe-edit           |                   []                    []    |
   1.401 +     gpe-go             |    []             []                          |
   1.402 +     gpe-login          |    []             []                 []       |
   1.403 +     gpe-ownerinfo      |    []          [] []                 [] []    |
   1.404 +     gpe-sketchbook     |    []             []                          |
   1.405 +     gpe-su             |    []          [] []                          |
   1.406 +     gpe-taskmanager    |    []          [] []                          |
   1.407 +     gpe-timesheet      |    []             []  []                []    |
   1.408 +     gpe-today          |    []          [] []  []                      |
   1.409 +     gpe-todo           |    []             []                    []    |
   1.410 +     gphoto2            |    []          [] []                 []       |
   1.411 +     gprof              |    []             []                    []    |
   1.412 +     gpsdrive           |    ()             ()                 []       |
   1.413 +     gramadoir          |                   []  []                      |
   1.414 +     grep               |    [] [] []    [] []  [] [] []    [] [] []    |
   1.415 +     gretl              |    []             []                          |
   1.416 +     gsasl              |          []       []  []                      |
   1.417 +     gss                |                   []                          |
   1.418 +     gst-plugins        |                   []                 []       |
   1.419 +     gstreamer          |                                               |
   1.420 +     gtick              |          []    [] []  []                      |
   1.421 +     gtkspell           | [] []    []       []  []                      |
   1.422 +     hello              | [] [] [] [] [] [] []  [] [] []    [] [] []    |
   1.423 +     id-utils           |                   []                 [] []    |
   1.424 +     impost             |                   []  []                      |
   1.425 +     indent             | [] [] [] []    [] []  [] []          [] []    |
   1.426 +     iso_3166           | []             [] []                          |
   1.427 +     iso_3166_1         |    []    []    [] []  []             [] []    |
   1.428 +     iso_3166_2         |                   []                          |
   1.429 +     iso_3166_3         |                   []                          |
   1.430 +     iso_4217           |       []       []        []                   |
   1.431 +     iso_639            | []          [] [] []                          |
   1.432 +     jpilot             |    []             []                          |
   1.433 +     jtag               |                   []                          |
   1.434 +     jwhois             |    []             []                 [] []    |
   1.435 +     kbd                |    []             []                          |
   1.436 +     latrine            |                   []  []                      |
   1.437 +     ld                 |    []             []                          |
   1.438 +     libc               |    []          [] []     []          []       |
   1.439 +     libextractor       |                                               |
   1.440 +     libgpewidget       |    []             []  []             [] []    |
   1.441 +     libgphoto2         |    []             []                 []       |
   1.442 +     libgphoto2_port    |                   []                          |
   1.443 +     libgsasl           |                   []  []                      |
   1.444 +     libiconv           | [] [] []       [] []  [] []       [] [] []    |
   1.445 +     libidn             | []                []                          |
   1.446 +     lifelines          |                   ()                          |
   1.447 +     lilypond           |                                               |
   1.448 +     lingoteach         |                   []                    []    |
   1.449 +     lynx               |       []                             []       |
   1.450 +     m4                 |                   []  [] []             []    |
   1.451 +     mailutils          |    []             []                          |
   1.452 +     make               |    []          [] []  [] [] []    []          |
   1.453 +     man-db             |    ()                                         |
   1.454 +     minicom            |    []          [] []                 []       |
   1.455 +     mysecretdiary      |    []             []                    []    |
   1.456 +     nano               |    []    []    () []                          |
   1.457 +     nano_1_0           |    []             []     []             []    |
   1.458 +     opcodes            |    []          [] []                          |
   1.459 +     parted             |    []             []     []                   |
   1.460 +     psmisc             |          []                                   |
   1.461 +     ptx                | [] [] []       [] []  [] []          [] []    |
   1.462 +     pwdutils           |                                               |
   1.463 +     python             |                                               |
   1.464 +     radius             |    []             []                          |
   1.465 +     recode             | [] []             []     [] []       [] []    |
   1.466 +     rpm                |                   []                          |
   1.467 +     screem             |                                               |
   1.468 +     scrollkeeper       |    []          []                    []       |
   1.469 +     sed                | [] [] []          []  []             []       |
   1.470 +     sh-utils           |    [] []       [] []  []             []       |
   1.471 +     shared-mime-info   | [] []    []    [] []                 []       |
   1.472 +     sharutils          |    [] []       [] []     []          []       |
   1.473 +     silky              |                   []                          |
   1.474 +     skencil            |    []             []                          |
   1.475 +     sketch             |    []             []                          |
   1.476 +     solfege            |                                               |
   1.477 +     soundtracker       |    []             []                          |
   1.478 +     sp                 |                   []                          |
   1.479 +     stardict           |                                      []       |
   1.480 +     tar                |    [] []          []  []                      |
   1.481 +     texinfo            | []                []        []                |
   1.482 +     textutils          |    []             []  [] []          []       |
   1.483 +     tin                |       []          ()                          |
   1.484 +     tp-robot           |                   []                 []       |
   1.485 +     tuxpaint           |    []          [] []  []    []       [] [] [] |
   1.486 +     unicode-han-tra... |                                               |
   1.487 +     unicode-transla... |                   []  []                      |
   1.488 +     util-linux         |    [] []       [] []                 []       |
   1.489 +     vorbis-tools       |    []             []                          |
   1.490 +     wastesedge         |                   ()                          |
   1.491 +     wdiff              |    [] []          []  [] []          [] []    |
   1.492 +     wget               |       [] []           []          []          |
   1.493 +     xchat              |    []    []    [] []           []             |
   1.494 +     xkeyboard-config   |                                               |
   1.495 +     xpad               |    []                 []             []       |
   1.496 +                        +-----------------------------------------------+
   1.497 +                          eo es et eu fa fi fr  ga gl he hi hr hu id is
   1.498 +                          15 85 21 15  2 35 115 45 16  8  1  6 40 27  1
   1.499 +
   1.500 +                          it ja ko ku lg lt lv mk mn ms mt nb nl nn no nso
   1.501 +                        +--------------------------------------------------+
   1.502 +     GNUnet             |                                                  |
   1.503 +     a2ps               | ()    ()                   []       []    ()     |
   1.504 +     aegis              |                                     ()           |
   1.505 +     ant-phone          |                                     []           |
   1.506 +     anubis             |                            []    [] []           |
   1.507 +     ap-utils           |                                                  |
   1.508 +     aspell             |                         []          []           |
   1.509 +     bash               |                                     []           |
   1.510 +     batchelor          |                                     []           |
   1.511 +     bfd                |                                                  |
   1.512 +     bibshelf           | []                                               |
   1.513 +     binutils           |                                                  |
   1.514 +     bison              | []                         []    [] []           |
   1.515 +     bluez-pin          |          []                         []           |
   1.516 +     clisp              |                                     []           |
   1.517 +     console-tools      |                                                  |
   1.518 +     coreutils          |    []                               []           |
   1.519 +     cpio               |                                                  |
   1.520 +     cpplib             |                                     []           |
   1.521 +     darkstat           |                            []       []           |
   1.522 +     dialog             | []                                  []           |
   1.523 +     diffutils          | [] []                      []       []           |
   1.524 +     doodle             | []                                               |
   1.525 +     e2fsprogs          | []                                               |
   1.526 +     enscript           |                                     []           |
   1.527 +     error              |                                     []           |
   1.528 +     fetchmail          |    []                               []           |
   1.529 +     fileutils          | [] []       []                                   |
   1.530 +     findutils          | []                                  []           |
   1.531 +     flex               |       []                            []           |
   1.532 +     fslint             |                                     []           |
   1.533 +     gas                |                                                  |
   1.534 +     gawk               |    []                               []           |
   1.535 +     gbiff              |                                     []           |
   1.536 +     gcal               |                                                  |
   1.537 +     gcc                |                                                  |
   1.538 +     gettext-examples   | [] []                               []           |
   1.539 +     gettext-runtime    | [] [] []                            []           |
   1.540 +     gettext-tools      | [] [] []                                         |
   1.541 +     gimp-print         |    []                               []           |
   1.542 +     gip                |                                     []           |
   1.543 +     gliv               |                                     []           |
   1.544 +     glunarclock        |                            []       []           |
   1.545 +     gmult              | [] []                                            |
   1.546 +     gnubiff            | ()                                               |
   1.547 +     gnucash            | [] ()                            () []           |
   1.548 +     gnucash-glossary   | []                                  []           |
   1.549 +     gpe-aerial         |                                     []           |
   1.550 +     gpe-beam           |                                     []           |
   1.551 +     gpe-calendar       |                                     []           |
   1.552 +     gpe-clock          |                                     []           |
   1.553 +     gpe-conf           |                                     []           |
   1.554 +     gpe-contacts       |                                                  |
   1.555 +     gpe-edit           |                                     []           |
   1.556 +     gpe-go             |                                     []           |
   1.557 +     gpe-login          |                                     []           |
   1.558 +     gpe-ownerinfo      |                                     []           |
   1.559 +     gpe-sketchbook     |                                     []           |
   1.560 +     gpe-su             |                                     []           |
   1.561 +     gpe-taskmanager    |          []                         []           |
   1.562 +     gpe-timesheet      |                                     []           |
   1.563 +     gpe-today          |                                     []           |
   1.564 +     gpe-todo           |                                     []           |
   1.565 +     gphoto2            | [] []                               []           |
   1.566 +     gprof              |                                                  |
   1.567 +     gpsdrive           | () ()                               ()    ()     |
   1.568 +     gramadoir          |                                     ()           |
   1.569 +     grep               | [] []                            [] []           |
   1.570 +     gretl              | []                                               |
   1.571 +     gsasl              |                                     []           |
   1.572 +     gss                |                                                  |
   1.573 +     gst-plugins        | []                                  []           |
   1.574 +     gstreamer          | []                                  []           |
   1.575 +     gtick              | []                                  []           |
   1.576 +     gtkspell           | []                      []          []           |
   1.577 +     hello              | [] [] []          []       []    [] [] [] []     |
   1.578 +     id-utils           | []                                  []           |
   1.579 +     impost             |                                                  |
   1.580 +     indent             | [] []                               []           |
   1.581 +     iso_3166           |                                     []           |
   1.582 +     iso_3166_1         |                                     []    []     |
   1.583 +     iso_3166_2         |                                     []           |
   1.584 +     iso_3166_3         |                                     []           |
   1.585 +     iso_4217           |    []                   []          []           |
   1.586 +     iso_639            |    []                               [] []        |
   1.587 +     jpilot             |    ()                               ()    ()     |
   1.588 +     jtag               |                                                  |
   1.589 +     jwhois             | []                                  []           |
   1.590 +     kbd                |                                     []           |
   1.591 +     latrine            | []                                  []           |
   1.592 +     ld                 |                                                  |
   1.593 +     libc               |    [] []                         [] []    []     |
   1.594 +     libextractor       |                                                  |
   1.595 +     libgpewidget       |                                     []           |
   1.596 +     libgphoto2         | [] []                                            |
   1.597 +     libgphoto2_port    | [] []                                            |
   1.598 +     libgsasl           |                                     []           |
   1.599 +     libiconv           | []                                  []           |
   1.600 +     libidn             | []                                               |
   1.601 +     lifelines          |                                     []           |
   1.602 +     lilypond           |                                                  |
   1.603 +     lingoteach         | []                                  []           |
   1.604 +     lynx               | [] []                               []           |
   1.605 +     m4                 |    []                               []           |
   1.606 +     mailutils          |                                                  |
   1.607 +     make               |    [] []                            []           |
   1.608 +     man-db             |    ()                                            |
   1.609 +     minicom            |    []                                            |
   1.610 +     mysecretdiary      |                                     []           |
   1.611 +     nano               | []                         []    []              |
   1.612 +     nano_1_0           | []                         []    []    []        |
   1.613 +     opcodes            |                                     []           |
   1.614 +     parted             | [] []                               [] []        |
   1.615 +     psmisc             | []                               [] []           |
   1.616 +     ptx                |                                  [] []    []     |
   1.617 +     pwdutils           |                                                  |
   1.618 +     python             |                                                  |
   1.619 +     radius             |                                                  |
   1.620 +     recode             | []                                  []           |
   1.621 +     rpm                |    [] []                                         |
   1.622 +     screem             |    []                                            |
   1.623 +     scrollkeeper       |                                  [] [] []        |
   1.624 +     sed                |    []                               []           |
   1.625 +     sh-utils           | [] []                            []              |
   1.626 +     shared-mime-info   |       []                         [] [] []        |
   1.627 +     sharutils          | [] []                               []           |
   1.628 +     silky              |                                     []           |
   1.629 +     skencil            |                                                  |
   1.630 +     sketch             |                                                  |
   1.631 +     solfege            | []                                  []    []     |
   1.632 +     soundtracker       | []                                               |
   1.633 +     sp                 |    ()                                            |
   1.634 +     stardict           |                      []             []           |
   1.635 +     tar                | [] []                               []           |
   1.636 +     texinfo            |    []                            [] []           |
   1.637 +     textutils          |    [] []                         []              |
   1.638 +     tin                |                                                  |
   1.639 +     tp-robot           |                                     []           |
   1.640 +     tuxpaint           | [] [] []       []          []       [] []        |
   1.641 +     unicode-han-tra... |                                                  |
   1.642 +     unicode-transla... |                                                  |
   1.643 +     util-linux         | [] []                               []           |
   1.644 +     vorbis-tools       |                                     []           |
   1.645 +     wastesedge         |                                     []           |
   1.646 +     wdiff              | []                         []    []              |
   1.647 +     wget               |    []                                            |
   1.648 +     xchat              | []    []          [] []             []           |
   1.649 +     xkeyboard-config   |                                     []           |
   1.650 +     xpad               |                                     []           |
   1.651 +                        +--------------------------------------------------+
   1.652 +                          it ja ko ku lg lt lv mk mn ms mt nb nl nn no nso
   1.653 +                          46 35 11  2  1  1  2  2  3 11  0 15 96  7  5  0
   1.654 +
   1.655 +                          or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv
   1.656 +                        +----------------------------------------------+
   1.657 +     GNUnet             |                                              |
   1.658 +     a2ps               |       ()     []      [] []       []    [] [] |
   1.659 +     aegis              |                      () ()                   |
   1.660 +     ant-phone          |                      []                      |
   1.661 +     anubis             |       []             [] []                   |
   1.662 +     ap-utils           |       ()                                     |
   1.663 +     aspell             |                      [] []                   |
   1.664 +     bash               |              []      [] []                   |
   1.665 +     batchelor          |                      []                      |
   1.666 +     bfd                |                                              |
   1.667 +     bibshelf           |                                              |
   1.668 +     binutils           |                         []                [] |
   1.669 +     bison              |       []     []      [] []                [] |
   1.670 +     bluez-pin          |       []     []   [] [] []    []       [] [] |
   1.671 +     clisp              |                         []                   |
   1.672 +     console-tools      |                         []                   |
   1.673 +     coreutils          |       []                []       []       [] |
   1.674 +     cpio               |       []                                  [] |
   1.675 +     cpplib             |                                              |
   1.676 +     darkstat           |       []     []      []       []       [] [] |
   1.677 +     dialog             |       [] []  []   [] [] [] []                |
   1.678 +     diffutils          |       []     []      [] []             [] [] |
   1.679 +     doodle             |                                     []       |
   1.680 +     e2fsprogs          |       []                                  [] |
   1.681 +     enscript           |              []      [] []                [] |
   1.682 +     error              |              []      []       []             |
   1.683 +     fetchmail          |       []                []    []    []       |
   1.684 +     fileutils          |       []             [] []       []       [] |
   1.685 +     findutils          |       [] []          []       []       [] [] |
   1.686 +     flex               |       []     []      [] []                [] |
   1.687 +     fslint             |              []      []                []    |
   1.688 +     gas                |                                              |
   1.689 +     gawk               |       []     []      []                   [] |
   1.690 +     gbiff              |                      []                      |
   1.691 +     gcal               |                                           [] |
   1.692 +     gcc                |                                              |
   1.693 +     gettext-examples   |       []             [] []    []       [] [] |
   1.694 +     gettext-runtime    |       []             [] []    [] []    [] [] |
   1.695 +     gettext-tools      |       []             [] []    [] []    [] [] |
   1.696 +     gimp-print         |                               []          [] |
   1.697 +     gip                |                   []          []       []    |
   1.698 +     gliv               |              []      []       []             |
   1.699 +     glunarclock        |              []      [] []    []       [] [] |
   1.700 +     gmult              |              []   [] []                []    |
   1.701 +     gnubiff            |                      ()                   [] |
   1.702 +     gnucash            |       () []             []    []          [] |
   1.703 +     gnucash-glossary   |          []                   []          [] |
   1.704 +     gpe-aerial         |          []  []      [] []             [] [] |
   1.705 +     gpe-beam           |          []  []      [] []             [] [] |
   1.706 +     gpe-calendar       |          []  []      [] []    []       [] [] |
   1.707 +     gpe-clock          |          []  []      [] []    []       [] [] |
   1.708 +     gpe-conf           |          []  []      [] []    []          [] |
   1.709 +     gpe-contacts       |                      [] []             [] [] |
   1.710 +     gpe-edit           |          []  []      [] []    []       [] [] |
   1.711 +     gpe-go             |              []      [] []             [] [] |
   1.712 +     gpe-login          |          []  []      [] []    []       [] [] |
   1.713 +     gpe-ownerinfo      |          []  []      [] []    []       [] [] |
   1.714 +     gpe-sketchbook     |          []  []      [] []    []       [] [] |
   1.715 +     gpe-su             |          []  []      [] []    []       [] [] |
   1.716 +     gpe-taskmanager    |          []  []      [] []    []       [] [] |
   1.717 +     gpe-timesheet      |          []  []      [] []    []       [] [] |
   1.718 +     gpe-today          |          []  []      [] []    []       [] [] |
   1.719 +     gpe-todo           |    []    []  []      [] []    []       [] [] |
   1.720 +     gphoto2            |                      []       []       [] [] |
   1.721 +     gprof              |              []      []                   [] |
   1.722 +     gpsdrive           |    []                []                      |
   1.723 +     gramadoir          |                               []             |
   1.724 +     grep               |       [] []  []      [] []       []    []    |
   1.725 +     gretl              |       []                                     |
   1.726 +     gsasl              |       []             []             [] [] [] |
   1.727 +     gss                |       []             []                   [] |
   1.728 +     gst-plugins        | []                                  [] [] [] |
   1.729 +     gstreamer          |                         []          [] [] [] |
   1.730 +     gtick              |                      [] []                [] |
   1.731 +     gtkspell           |              []   [] [] []    []       []    |
   1.732 +     hello              |       []     []      [] []    []       [] [] |
   1.733 +     id-utils           |              []      [] []                [] |
   1.734 +     impost             |                                              |
   1.735 +     indent             |              []      [] []    []       [] [] |
   1.736 +     iso_3166           |          []                []       [] [] [] |
   1.737 +     iso_3166_1         |                               [] [] [] []    |
   1.738 +     iso_3166_2         |                                              |
   1.739 +     iso_3166_3         |                      []    []          []    |
   1.740 +     iso_4217           |                            []          []    |
   1.741 +     iso_639            |                            []          [] [] |
   1.742 +     jpilot             |                                              |
   1.743 +     jtag               |                               []             |
   1.744 +     jwhois             |       []     []      [] ()                () |
   1.745 +     kbd                |       []             []                   [] |
   1.746 +     latrine            |                      []                   [] |
   1.747 +     ld                 |                                           [] |
   1.748 +     libc               |       []     []         []    []          [] |
   1.749 +     libextractor       |                      []                      |
   1.750 +     libgpewidget       |          []  []      []       []       [] [] |
   1.751 +     libgphoto2         |                         []                [] |
   1.752 +     libgphoto2_port    |                         []                   |
   1.753 +     libgsasl           |       []             []                []    |
   1.754 +     libiconv           |       []     []   [] [] []    [] [] [] [] [] |
   1.755 +     libidn             |       []                                  () |
   1.756 +     lifelines          |       []                                  [] |
   1.757 +     lilypond           |                                              |
   1.758 +     lingoteach         |              []                              |
   1.759 +     lynx               |              []         []                [] |
   1.760 +     m4                 |       []     []      [] []                [] |
   1.761 +     mailutils          |       []             [] []                   |
   1.762 +     make               |       []     []         []                [] |
   1.763 +     man-db             |                      []                   [] |
   1.764 +     minicom            |       []     []      [] []                   |
   1.765 +     mysecretdiary      |              []      [] []                [] |
   1.766 +     nano               |              []      []                   [] |
   1.767 +     nano_1_0           |       []             [] []                [] |
   1.768 +     opcodes            |                      []                   [] |
   1.769 +     parted             |       [] []  []                           [] |
   1.770 +     psmisc             |       []             []                      |
   1.771 +     ptx                |       [] []  []      [] []                [] |
   1.772 +     pwdutils           |       []                                     |
   1.773 +     python             |                                              |
   1.774 +     radius             |       []                []                   |
   1.775 +     recode             |       []     []      [] []       []       [] |
   1.776 +     rpm                |       [] []             []                [] |
   1.777 +     screem             |                                              |
   1.778 +     scrollkeeper       |       []             [] []    []    [] [] [] |
   1.779 +     sed                |       [] []  []      [] []    []       [] [] |
   1.780 +     sh-utils           |                         []       []    []    |
   1.781 +     shared-mime-info   |          []  []         []          [] [] [] |
   1.782 +     sharutils          |                         []             [] [] |
   1.783 +     silky              |                               []             |
   1.784 +     skencil            |          []  []                           [] |
   1.785 +     sketch             |          []  []                           [] |
   1.786 +     solfege            |                                              |
   1.787 +     soundtracker       |                               []          [] |
   1.788 +     sp                 |                                              |
   1.789 +     stardict           |                         []    []             |
   1.790 +     tar                |       []             [] []                [] |
   1.791 +     texinfo            |       []             [] []                [] |
   1.792 +     textutils          |                         []       []       [] |
   1.793 +     tin                |                                              |
   1.794 +     tp-robot           |                         []                   |
   1.795 +     tuxpaint           |       [] []  []      []       []    [] [] [] |
   1.796 +     unicode-han-tra... |                                              |
   1.797 +     unicode-transla... |                                              |
   1.798 +     util-linux         |              []         []                [] |
   1.799 +     vorbis-tools       |                      [] []                   |
   1.800 +     wastesedge         |                                              |
   1.801 +     wdiff              |       []     []      [] []    []          [] |
   1.802 +     wget               |                                              |
   1.803 +     xchat              |    []                   []    [] [] [] [] [] |
   1.804 +     xkeyboard-config   |                                              |
   1.805 +     xpad               |                                              |
   1.806 +                        +----------------------------------------------+
   1.807 +                          or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv
   1.808 +                           1  3 47 29  57    6 78 73  5 44 12 12 50 85
   1.809 +
   1.810 +                          ta tg th tk tr uk ven vi wa xh zh_CN zh_TW zu
   1.811 +                        +-----------------------------------------------+
   1.812 +     GNUnet             |                                               |  0
   1.813 +     a2ps               |             [] []     []                      | 19
   1.814 +     aegis              |                                               |  0
   1.815 +     ant-phone          |             []        []                      |  5
   1.816 +     anubis             |             [] []     []                      | 11
   1.817 +     ap-utils           |                ()     []                      |  2
   1.818 +     aspell             |                []     [] []                   | 13
   1.819 +     bash               |                       []                      | 11
   1.820 +     batchelor          |             []        []                      |  7
   1.821 +     bfd                |                                               |  1
   1.822 +     bibshelf           |                       []                      |  5
   1.823 +     binutils           |             []                                |  6
   1.824 +     bison              |             []        []                      | 18
   1.825 +     bluez-pin          |             [] []     [] []     []            | 25
   1.826 +     clisp              |                                               |  7
   1.827 +     console-tools      |             []        []                      |  5
   1.828 +     coreutils          |             []        []                      | 17
   1.829 +     cpio               |             [] []     []                      |  7
   1.830 +     cpplib             |             []        []                      |  8
   1.831 +     darkstat           |                       []        ()    ()      | 15
   1.832 +     dialog             |             [] []     []                      | 25
   1.833 +     diffutils          |             []        []        []    []      | 28
   1.834 +     doodle             |                       []                      |  5
   1.835 +     e2fsprogs          |             []                                |  8
   1.836 +     enscript           |             []                                | 12
   1.837 +     error              |             []        []              []      | 16
   1.838 +     fetchmail          |             []                                | 12
   1.839 +     fileutils          |             []                  []    []      | 18
   1.840 +     findutils          |             []        []                      | 17
   1.841 +     flex               |             []        []                      | 15
   1.842 +     fslint             |                       []                      |  7
   1.843 +     gas                |             []                                |  3
   1.844 +     gawk               |             []                                | 14
   1.845 +     gbiff              |                       []                      |  5
   1.846 +     gcal               |             []                                |  5
   1.847 +     gcc                |             []                  []            |  4
   1.848 +     gettext-examples   |             [] []     []        []    []      | 21
   1.849 +     gettext-runtime    |             [] []     []        []    []      | 25
   1.850 +     gettext-tools      |             [] []     []        []    []      | 19
   1.851 +     gimp-print         |                []                             | 11
   1.852 +     gip                |                       []                      |  8
   1.853 +     gliv               |             []        []                      |  7
   1.854 +     glunarclock        |                       [] []                   | 13
   1.855 +     gmult              |             []        []        []            | 13
   1.856 +     gnubiff            |                       []                      |  3
   1.857 +     gnucash            |             ()                        []      | 10
   1.858 +     gnucash-glossary   |                       []              []      |  9
   1.859 +     gpe-aerial         |                       []        []            | 13
   1.860 +     gpe-beam           |                       []        []            | 13
   1.861 +     gpe-calendar       |                       [] []     []    []      | 18
   1.862 +     gpe-clock          |             []        [] []     []            | 17
   1.863 +     gpe-conf           |                       []        []            | 12
   1.864 +     gpe-contacts       |                       []        []            |  7
   1.865 +     gpe-edit           |             []        [] []           []      | 15
   1.866 +     gpe-go             |             []        []                      | 11
   1.867 +     gpe-login          |             []        [] []     []    []      | 18
   1.868 +     gpe-ownerinfo      |             []        []        []    []      | 19
   1.869 +     gpe-sketchbook     |             []        []                      | 14
   1.870 +     gpe-su             |             []        []        []            | 16
   1.871 +     gpe-taskmanager    |             []        []        []            | 17
   1.872 +     gpe-timesheet      |             []        []        []    []      | 17
   1.873 +     gpe-today          |             []        [] []     []    []      | 19
   1.874 +     gpe-todo           |                       [] []           []      | 17
   1.875 +     gphoto2            |                []               []    []      | 18
   1.876 +     gprof              |             []        []                      | 10
   1.877 +     gpsdrive           |                                               |  3
   1.878 +     gramadoir          |                       []                      |  6
   1.879 +     grep               |             [] []     []              []      | 32
   1.880 +     gretl              |                                               |  4
   1.881 +     gsasl              |                       []        []            | 12
   1.882 +     gss                |                       []                      |  5
   1.883 +     gst-plugins        |                []     []              []      | 17
   1.884 +     gstreamer          |             [] []     []              []      | 15
   1.885 +     gtick              |                       []                      | 11
   1.886 +     gtkspell           |                       [] []     []    []      | 21
   1.887 +     hello              |             [] []     []        []            | 37
   1.888 +     id-utils           |             []        []                      | 13
   1.889 +     impost             |                       []                      |  3
   1.890 +     indent             |             []        []        []    []      | 25
   1.891 +     iso_3166           |          [] []        []                      | 12
   1.892 +     iso_3166_1         |             []           []                   | 20
   1.893 +     iso_3166_2         |                                               |  2
   1.894 +     iso_3166_3         |                          []     []            |  8
   1.895 +     iso_4217           |             []        []                      | 10
   1.896 +     iso_639            |                       [] []                   | 12
   1.897 +     jpilot             |             [] []               []            |  6
   1.898 +     jtag               |                                               |  2
   1.899 +     jwhois             |             []        []              []      | 12
   1.900 +     kbd                |             []        []                      | 12
   1.901 +     latrine            |             []        []                      |  8
   1.902 +     ld                 |             []                                |  5
   1.903 +     libc               |             []                  []            | 22
   1.904 +     libextractor       |                                               |  1
   1.905 +     libgpewidget       |                       [] []                   | 17
   1.906 +     libgphoto2         |                                 []            |  9
   1.907 +     libgphoto2_port    |                                               |  5
   1.908 +     libgsasl           |                       []                      |  7
   1.909 +     libiconv           |             [] []     [] []     []            | 32
   1.910 +     libidn             |                       []        []            |  6
   1.911 +     lifelines          |                                               |  4
   1.912 +     lilypond           |                                               |  1
   1.913 +     lingoteach         |                       []                      |  6
   1.914 +     lynx               |             [] []     []                      | 15
   1.915 +     m4                 |                       []        []            | 17
   1.916 +     mailutils          |                []                             |  7
   1.917 +     make               |             []                  []            | 18
   1.918 +     man-db             |                                               |  5
   1.919 +     minicom            |                                               | 11
   1.920 +     mysecretdiary      |             []        []                      | 12
   1.921 +     nano               |                       []              []      | 13
   1.922 +     nano_1_0           |             [] []     []                      | 18
   1.923 +     opcodes            |             []        []                      |  9
   1.924 +     parted             |             [] []               []            | 18
   1.925 +     psmisc             |                       []                      |  7
   1.926 +     ptx                |             []                  []            | 23
   1.927 +     pwdutils           |                                               |  1
   1.928 +     python             |                                               |  0
   1.929 +     radius             |                []                             |  6
   1.930 +     recode             |             []        []                      | 22
   1.931 +     rpm                |             [] []                             | 11
   1.932 +     screem             |                                               |  1
   1.933 +     scrollkeeper       |             [] []                     []      | 24
   1.934 +     sed                |             []        []              []      | 21
   1.935 +     sh-utils           |             []                                | 15
   1.936 +     shared-mime-info   |                []               []    []      | 21
   1.937 +     sharutils          |             []        []              []      | 20
   1.938 +     silky              |                                               |  3
   1.939 +     skencil            |                                               |  6
   1.940 +     sketch             |                                               |  6
   1.941 +     solfege            |                                               |  4
   1.942 +     soundtracker       |             []                                |  8
   1.943 +     sp                 |             []                                |  3
   1.944 +     stardict           |                []     []        []    []      | 10
   1.945 +     tar                |             [] []     []              []      | 15
   1.946 +     texinfo            |             []                  []            | 14
   1.947 +     textutils          |             []                  []    []      | 17
   1.948 +     tin                |                                               |  1
   1.949 +     tp-robot           |                       []        []    []      |  8
   1.950 +     tuxpaint           |             []        [] []     []            | 34
   1.951 +     unicode-han-tra... |                                               |  0
   1.952 +     unicode-transla... |                                               |  2
   1.953 +     util-linux         |             [] []     []                      | 18
   1.954 +     vorbis-tools       |                []                             | 10
   1.955 +     wastesedge         |                                               |  1
   1.956 +     wdiff              |             []        []                      | 22
   1.957 +     wget               |             []        []                      |  7
   1.958 +     xchat              |                []     []        []    []      | 26
   1.959 +     xkeyboard-config   |                       []                      |  2
   1.960 +     xpad               |                       []                      |  5
   1.961 +                        +-----------------------------------------------+
   1.962 +       73 teams           ta tg th tk tr uk ven vi wa xh zh_CN zh_TW zu
   1.963 +      149 domains          0  0  0  1 77 30  0  92 16  0  42    32    0  1746
   1.964 +
   1.965 +   Some counters in the preceding matrix are higher than the number of
   1.966 +visible blocks let us expect.  This is because a few extra PO files are
   1.967 +used for implementing regional variants of languages, or language
   1.968 +dialects.
   1.969 +
   1.970 +   For a PO file in the matrix above to be effective, the package to
   1.971 +which it applies should also have been internationalized and
   1.972 +distributed as such by its maintainer.  There might be an observable
   1.973 +lag between the mere existence a PO file and its wide availability in a
   1.974 +distribution.
   1.975 +
   1.976 +   If May 2005 seems to be old, you may fetch a more recent copy of
   1.977 +this `ABOUT-NLS' file on most GNU archive sites.  The most up-to-date
   1.978 +matrix with full percentage details can be found at
   1.979 +`http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
   1.980 +
   1.981 +1.6 Using `gettext' in new packages
   1.982 +===================================
   1.983 +
   1.984 +If you are writing a freely available program and want to
   1.985 +internationalize it you are welcome to use GNU `gettext' in your
   1.986 +package.  Of course you have to respect the GNU Library General Public
   1.987 +License which covers the use of the GNU `gettext' library.  This means
   1.988 +in particular that even non-free programs can use `libintl' as a shared
   1.989 +library, whereas only free software can use `libintl' as a static
   1.990 +library or use modified versions of `libintl'.
   1.991 +
   1.992 +   Once the sources are changed appropriately and the setup can handle
   1.993 +the use of `gettext' the only thing missing are the translations.  The
   1.994 +Free Translation Project is also available for packages which are not
   1.995 +developed inside the GNU project.  Therefore the information given above
   1.996 +applies also for every other Free Software Project.  Contact
   1.997 +`translation@iro.umontreal.ca' to make the `.pot' files available to
   1.998 +the translation teams.
   1.999 +