Home | History | Annotate | Line # | Download | only in gettext-tools
      1  1.1  christos 1 Notes on the Free Translation Project
      2  1.1  christos ***************************************
      3  1.1  christos 
      4  1.1  christos Free software is going international!  The Free Translation Project is
      5  1.1  christos a way to get maintainers of free software, translators, and users all
      6  1.1  christos together, so that free software will gradually become able to speak many
      7  1.1  christos languages.  A few packages already provide translations for their
      8  1.1  christos messages.
      9  1.1  christos 
     10  1.1  christos    If you found this `ABOUT-NLS' file inside a distribution, you may
     11  1.1  christos assume that the distributed package does use GNU `gettext' internally,
     12  1.1  christos itself available at your nearest GNU archive site.  But you do _not_
     13  1.1  christos need to install GNU `gettext' prior to configuring, installing or using
     14  1.1  christos this package with messages translated.
     15  1.1  christos 
     16  1.1  christos    Installers will find here some useful hints.  These notes also
     17  1.1  christos explain how users should proceed for getting the programs to use the
     18  1.1  christos available translations.  They tell how people wanting to contribute and
     19  1.1  christos work on translations can contact the appropriate team.
     20  1.1  christos 
     21  1.1  christos    When reporting bugs in the `intl/' directory or bugs which may be
     22  1.1  christos related to internationalization, you should tell about the version of
     23  1.1  christos `gettext' which is used.  The information can be found in the
     24  1.1  christos `intl/VERSION' file, in internationalized packages.
     25  1.1  christos 
     26  1.1  christos 1.1 Quick configuration advice
     27  1.1  christos ==============================
     28  1.1  christos 
     29  1.1  christos If you want to exploit the full power of internationalization, you
     30  1.1  christos should configure it using
     31  1.1  christos 
     32  1.1  christos      ./configure --with-included-gettext
     33  1.1  christos 
     34  1.1  christos to force usage of internationalizing routines provided within this
     35  1.1  christos package, despite the existence of internationalizing capabilities in the
     36  1.1  christos operating system where this package is being installed.  So far, only
     37  1.1  christos the `gettext' implementation in the GNU C library version 2 provides as
     38  1.1  christos many features (such as locale alias, message inheritance, automatic
     39  1.1  christos charset conversion or plural form handling) as the implementation here.
     40  1.1  christos It is also not possible to offer this additional functionality on top
     41  1.1  christos of a `catgets' implementation.  Future versions of GNU `gettext' will
     42  1.1  christos very likely convey even more functionality.  So it might be a good idea
     43  1.1  christos to change to GNU `gettext' as soon as possible.
     44  1.1  christos 
     45  1.1  christos    So you need _not_ provide this option if you are using GNU libc 2 or
     46  1.1  christos you have installed a recent copy of the GNU gettext package with the
     47  1.1  christos included `libintl'.
     48  1.1  christos 
     49  1.1  christos 1.2 INSTALL Matters
     50  1.1  christos ===================
     51  1.1  christos 
     52  1.1  christos Some packages are "localizable" when properly installed; the programs
     53  1.1  christos they contain can be made to speak your own native language.  Most such
     54  1.1  christos packages use GNU `gettext'.  Other packages have their own ways to
     55  1.1  christos internationalization, predating GNU `gettext'.
     56  1.1  christos 
     57  1.1  christos    By default, this package will be installed to allow translation of
     58  1.1  christos messages.  It will automatically detect whether the system already
     59  1.1  christos provides the GNU `gettext' functions.  If not, the included GNU
     60  1.1  christos `gettext' library will be used.  This library is wholly contained
     61  1.1  christos within this package, usually in the `intl/' subdirectory, so prior
     62  1.1  christos installation of the GNU `gettext' package is _not_ required.
     63  1.1  christos Installers may use special options at configuration time for changing
     64  1.1  christos the default behaviour.  The commands:
     65  1.1  christos 
     66  1.1  christos      ./configure --with-included-gettext
     67  1.1  christos      ./configure --disable-nls
     68  1.1  christos 
     69  1.1  christos will, respectively, bypass any pre-existing `gettext' to use the
     70  1.1  christos internationalizing routines provided within this package, or else,
     71  1.1  christos _totally_ disable translation of messages.
     72  1.1  christos 
     73  1.1  christos    When you already have GNU `gettext' installed on your system and run
     74  1.1  christos configure without an option for your new package, `configure' will
     75  1.1  christos probably detect the previously built and installed `libintl.a' file and
     76  1.1  christos will decide to use this.  This might not be desirable.  You should use
     77  1.1  christos the more recent version of the GNU `gettext' library.  I.e. if the file
     78  1.1  christos `intl/VERSION' shows that the library which comes with this package is
     79  1.1  christos more recent, you should use
     80  1.1  christos 
     81  1.1  christos      ./configure --with-included-gettext
     82  1.1  christos 
     83  1.1  christos to prevent auto-detection.
     84  1.1  christos 
     85  1.1  christos    The configuration process will not test for the `catgets' function
     86  1.1  christos and therefore it will not be used.  The reason is that even an
     87  1.1  christos emulation of `gettext' on top of `catgets' could not provide all the
     88  1.1  christos extensions of the GNU `gettext' library.
     89  1.1  christos 
     90  1.1  christos    Internationalized packages usually have many `po/LL.po' files, where
     91  1.1  christos LL gives an ISO 639 two-letter code identifying the language.  Unless
     92  1.1  christos translations have been forbidden at `configure' time by using the
     93  1.1  christos `--disable-nls' switch, all available translations are installed
     94  1.1  christos together with the package.  However, the environment variable `LINGUAS'
     95  1.1  christos may be set, prior to configuration, to limit the installed set.
     96  1.1  christos `LINGUAS' should then contain a space separated list of two-letter
     97  1.1  christos codes, stating which languages are allowed.
     98  1.1  christos 
     99  1.1  christos 1.3 Using This Package
    100  1.1  christos ======================
    101  1.1  christos 
    102  1.1  christos As a user, if your language has been installed for this package, you
    103  1.1  christos only have to set the `LANG' environment variable to the appropriate
    104  1.1  christos `LL_CC' combination.  Here `LL' is an ISO 639 two-letter language code,
    105  1.1  christos and `CC' is an ISO 3166 two-letter country code.  For example, let's
    106  1.1  christos suppose that you speak German and live in Germany.  At the shell
    107  1.1  christos prompt, merely execute `setenv LANG de_DE' (in `csh'),
    108  1.1  christos `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
    109  1.1  christos This can be done from your `.login' or `.profile' file, once and for
    110  1.1  christos all.
    111  1.1  christos 
    112  1.1  christos    You might think that the country code specification is redundant.
    113  1.1  christos But in fact, some languages have dialects in different countries.  For
    114  1.1  christos example, `de_AT' is used for Austria, and `pt_BR' for Brazil.  The
    115  1.1  christos country code serves to distinguish the dialects.
    116  1.1  christos 
    117  1.1  christos    The locale naming convention of `LL_CC', with `LL' denoting the
    118  1.1  christos language and `CC' denoting the country, is the one use on systems based
    119  1.1  christos on GNU libc.  On other systems, some variations of this scheme are
    120  1.1  christos used, such as `LL' or `LL_CC.ENCODING'.  You can get the list of
    121  1.1  christos locales supported by your system for your language by running the
    122  1.1  christos command `locale -a | grep '^LL''.
    123  1.1  christos 
    124  1.1  christos    Not all programs have translations for all languages.  By default, an
    125  1.1  christos English message is shown in place of a nonexistent translation.  If you
    126  1.1  christos understand other languages, you can set up a priority list of languages.
    127  1.1  christos This is done through a different environment variable, called
    128  1.1  christos `LANGUAGE'.  GNU `gettext' gives preference to `LANGUAGE' over `LANG'
    129  1.1  christos for the purpose of message handling, but you still need to have `LANG'
    130  1.1  christos set to the primary language; this is required by other parts of the
    131  1.1  christos system libraries.  For example, some Swedish users who would rather
    132  1.1  christos read translations in German than English for when Swedish is not
    133  1.1  christos available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
    134  1.1  christos 
    135  1.1  christos    Special advice for Norwegian users: The language code for Norwegian
    136  1.1  christos bokma*l changed from `no' to `nb' recently (in 2003).  During the
    137  1.1  christos transition period, while some message catalogs for this language are
    138  1.1  christos installed under `nb' and some older ones under `no', it's recommended
    139  1.1  christos for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
    140  1.1  christos older translations are used.
    141  1.1  christos 
    142  1.1  christos    In the `LANGUAGE' environment variable, but not in the `LANG'
    143  1.1  christos environment variable, `LL_CC' combinations can be abbreviated as `LL'
    144  1.1  christos to denote the language's main dialect.  For example, `de' is equivalent
    145  1.1  christos to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
    146  1.1  christos (Portuguese as spoken in Portugal) in this context.
    147  1.1  christos 
    148  1.1  christos 1.4 Translating Teams
    149  1.1  christos =====================
    150  1.1  christos 
    151  1.1  christos For the Free Translation Project to be a success, we need interested
    152  1.1  christos people who like their own language and write it well, and who are also
    153  1.1  christos able to synergize with other translators speaking the same language.
    154  1.1  christos Each translation team has its own mailing list.  The up-to-date list of
    155  1.1  christos teams can be found at the Free Translation Project's homepage,
    156  1.1  christos `http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
    157  1.1  christos area.
    158  1.1  christos 
    159  1.1  christos    If you'd like to volunteer to _work_ at translating messages, you
    160  1.1  christos should become a member of the translating team for your own language.
    161  1.1  christos The subscribing address is _not_ the same as the list itself, it has
    162  1.1  christos `-request' appended.  For example, speakers of Swedish can send a
    163  1.1  christos message to `sv-request (a] li.org', having this message body:
    164  1.1  christos 
    165  1.1  christos      subscribe
    166  1.1  christos 
    167  1.1  christos    Keep in mind that team members are expected to participate
    168  1.1  christos _actively_ in translations, or at solving translational difficulties,
    169  1.1  christos rather than merely lurking around.  If your team does not exist yet and
    170  1.1  christos you want to start one, or if you are unsure about what to do or how to
    171  1.1  christos get started, please write to `translation (a] iro.umontreal.ca' to reach the
    172  1.1  christos coordinator for all translator teams.
    173  1.1  christos 
    174  1.1  christos    The English team is special.  It works at improving and uniformizing
    175  1.1  christos the terminology in use.  Proven linguistic skills are praised more than
    176  1.1  christos programming skills, here.
    177  1.1  christos 
    178  1.1  christos 1.5 Available Packages
    179  1.1  christos ======================
    180  1.1  christos 
    181  1.1  christos Languages are not equally supported in all packages.  The following
    182  1.1  christos matrix shows the current state of internationalization, as of October
    183  1.1  christos 2006.  The matrix shows, in regard of each package, for which languages
    184  1.1  christos PO files have been submitted to translation coordination, with a
    185  1.1  christos translation percentage of at least 50%.
    186  1.1  christos 
    187  1.1  christos      Ready PO files       af am ar az be bg bs ca cs cy da de el en en_GB eo
    188  1.1  christos                         +----------------------------------------------------+
    189  1.1  christos      GNUnet             |                                  []                |
    190  1.1  christos      a2ps               |             []                [] [] []     []      |
    191  1.1  christos      aegis              |                                  ()                |
    192  1.1  christos      ant-phone          |                                  ()                |
    193  1.1  christos      anubis             |                                  []                |
    194  1.1  christos      ap-utils           |                                                    |
    195  1.1  christos      aspell             |                      [] []    [] []        []      |
    196  1.1  christos      bash               |                      []          []             [] |
    197  1.1  christos      batchelor          |                                  []                |
    198  1.1  christos      bfd                |                                                    |
    199  1.1  christos      bibshelf           |                                  []                |
    200  1.1  christos      binutils           |                               []                   |
    201  1.1  christos      bison              |                               [] []                |
    202  1.1  christos      bison-runtime      |                                                    |
    203  1.1  christos      bluez-pin          | []                      []       [] []          [] |
    204  1.1  christos      cflow              |                               []                   |
    205  1.1  christos      clisp              |                                  []    []          |
    206  1.1  christos      console-tools      |                         []       []                |
    207  1.1  christos      coreutils          |                []    []          []                |
    208  1.1  christos      cpio               |                                                    |
    209  1.1  christos      cpplib             |                      []       [] []                |
    210  1.1  christos      cryptonit          |                                  []                |
    211  1.1  christos      darkstat           |                []             () []                |
    212  1.1  christos      dialog             |                      [] [] [] [] [] []             |
    213  1.1  christos      diffutils          |                      [] []    [] [] []          [] |
    214  1.1  christos      doodle             |                                  []                |
    215  1.1  christos      e2fsprogs          |                         []       []                |
    216  1.1  christos      enscript           |                      []       [] []        []      |
    217  1.1  christos      error              |                      []       [] []        []      |
    218  1.1  christos      fetchmail          |                      []       [] () []             |
    219  1.1  christos      fileutils          |                               [] []                |
    220  1.1  christos      findutils          |                []    []       []                   |
    221  1.1  christos      flex               |                      []       [] []                |
    222  1.1  christos      fslint             |                                  []                |
    223  1.1  christos      gas                |                                                    |
    224  1.1  christos      gawk               |                      []       [] []                |
    225  1.1  christos      gbiff              |                                  []                |
    226  1.1  christos      gcal               |                      []                            |
    227  1.1  christos      gcc                |                                  []                |
    228  1.1  christos      gettext-examples   | []                   []          [] []          [] |
    229  1.1  christos      gettext-runtime    |             []       []       [] []             [] |
    230  1.1  christos      gettext-tools      |                      []          []                |
    231  1.1  christos      gimp-print         |                         []    [] []        []      |
    232  1.1  christos      gip                |                []                                  |
    233  1.1  christos      gliv               |                                  []                |
    234  1.1  christos      glunarclock        |                []                                  |
    235  1.1  christos      gmult              | []                               []                |
    236  1.1  christos      gnubiff            |                                  ()                |
    237  1.1  christos      gnucash            |                                  () ()     []      |
    238  1.1  christos      gnucash-glossary   |                               [] ()                |
    239  1.1  christos      gnuedu             |                                                    |
    240  1.1  christos      gnulib             | []          [] []    []       [] []                |
    241  1.1  christos      gnunet-gtk         |                                                    |
    242  1.1  christos      gnutls             |                                                    |
    243  1.1  christos      gpe-aerial         |                         []       []                |
    244  1.1  christos      gpe-beam           |                         []       []                |
    245  1.1  christos      gpe-calendar       |                                                    |
    246  1.1  christos      gpe-clock          |                         []       []                |
    247  1.1  christos      gpe-conf           |                         []       []                |
    248  1.1  christos      gpe-contacts       |                                                    |
    249  1.1  christos      gpe-edit           |                         []                         |
    250  1.1  christos      gpe-filemanager    |                                                    |
    251  1.1  christos      gpe-go             |                         []                         |
    252  1.1  christos      gpe-login          |                         []       []                |
    253  1.1  christos      gpe-ownerinfo      |                         []       []                |
    254  1.1  christos      gpe-package        |                                                    |
    255  1.1  christos      gpe-sketchbook     |                         []       []                |
    256  1.1  christos      gpe-su             |                         []       []                |
    257  1.1  christos      gpe-taskmanager    |                         []       []                |
    258  1.1  christos      gpe-timesheet      |                         []                         |
    259  1.1  christos      gpe-today          |                         []       []                |
    260  1.1  christos      gpe-todo           |                                                    |
    261  1.1  christos      gphoto2            |                         []    [] []        []      |
    262  1.1  christos      gprof              |                               [] []                |
    263  1.1  christos      gpsdrive           |                                  ()    ()          |
    264  1.1  christos      gramadoir          | []                               []                |
    265  1.1  christos      grep               | []          [] []    []          [] []             |
    266  1.1  christos      gretl              |                                                    |
    267  1.1  christos      gsasl              |                                                    |
    268  1.1  christos      gss                |                                                    |
    269  1.1  christos      gst-plugins        | []                   [] []    []                   |
    270  1.1  christos      gst-plugins-base   |                []    []       []                   |
    271  1.1  christos      gst-plugins-good   | []       []    []    [] []    []           []      |
    272  1.1  christos      gstreamer          | []             []    [] []    [] []        []      |
    273  1.1  christos      gtick              |                                  ()                |
    274  1.1  christos      gtkam              |                         []    [] []                |
    275  1.1  christos      gtkorphan          |                []                []                |
    276  1.1  christos      gtkspell           |             []                   [] []          [] |
    277  1.1  christos      gutenprint         |                               []                   |
    278  1.1  christos      hello              |                []    []       [] []             [] |
    279  1.1  christos      id-utils           |                               [] []                |
    280  1.1  christos      impost             |                                                    |
    281  1.1  christos      indent             |                      []          []             [] |
    282  1.1  christos      iso_3166           |                                  []             [] |
    283  1.1  christos      iso_3166_2         |                                                    |
    284  1.1  christos      iso_4217           |                                  []                |
    285  1.1  christos      iso_639            |                                  []             [] |
    286  1.1  christos      jpilot             |                         []                         |
    287  1.1  christos      jtag               |                                                    |
    288  1.1  christos      jwhois             |                                                    |
    289  1.1  christos      kbd                |                         []    [] [] []             |
    290  1.1  christos      keytouch           |                                                    |
    291  1.1  christos      keytouch-editor    |                                                    |
    292  1.1  christos      keytouch-keyboa... |                                                    |
    293  1.1  christos      latrine            |                                  ()                |
    294  1.1  christos      ld                 |                               []                   |
    295  1.1  christos      leafpad            |                []    [] []       [] []             |
    296  1.1  christos      libc               |                      [] []    [] [] []             |
    297  1.1  christos      libexif            |                                  []                |
    298  1.1  christos      libextractor       |                                  []                |
    299  1.1  christos      libgpewidget       |                         []    [] []                |
    300  1.1  christos      libgpg-error       |                                  []                |
    301  1.1  christos      libgphoto2         |                               [] []                |
    302  1.1  christos      libgphoto2_port    |                               [] []                |
    303  1.1  christos      libgsasl           |                                                    |
    304  1.1  christos      libiconv           |                                  []             [] |
    305  1.1  christos      libidn             |                               []                [] |
    306  1.1  christos      lifelines          |                               [] ()                |
    307  1.1  christos      lilypond           |                                  []                |
    308  1.1  christos      lingoteach         |                                                    |
    309  1.1  christos      lynx               |                      [] []    [] []                |
    310  1.1  christos      m4                 |                         []    [] [] []             |
    311  1.1  christos      mailutils          |                      []                            |
    312  1.1  christos      make               |                               [] []                |
    313  1.1  christos      man-db             |                      [] ()    [] []                |
    314  1.1  christos      minicom            |                         []    [] []                |
    315  1.1  christos      mysecretdiary      |                               [] []                |
    316  1.1  christos      nano               |                []    []          []                |
    317  1.1  christos      nano_1_0           |                      [] ()    [] []                |
    318  1.1  christos      opcodes            |                                  []                |
    319  1.1  christos      parted             |                                                    |
    320  1.1  christos      pilot-qof          |                                            []      |
    321  1.1  christos      psmisc             |                []                                  |
    322  1.1  christos      pwdutils           |                                                    |
    323  1.1  christos      python             |                                                    |
    324  1.1  christos      qof                |                                                    |
    325  1.1  christos      radius             |                      []                            |
    326  1.1  christos      recode             |             []       []       [] [] []          [] |
    327  1.1  christos      rpm                |                         []    []                   |
    328  1.1  christos      screem             |                                                    |
    329  1.1  christos      scrollkeeper       |          [] []       [] [] [] [] []        []      |
    330  1.1  christos      sed                |                      []          []             [] |
    331  1.1  christos      sh-utils           |                               [] []                |
    332  1.1  christos      shared-mime-info   |                []       []                 []   [] |
    333  1.1  christos      sharutils          |                []    [] []    [] [] []             |
    334  1.1  christos      shishi             |                                                    |
    335  1.1  christos      silky              |                                                    |
    336  1.1  christos      skencil            |                               [] ()                |
    337  1.1  christos      sketch             |                               [] ()                |
    338  1.1  christos      solfege            |                                                    |
    339  1.1  christos      soundtracker       |                               [] []                |
    340  1.1  christos      sp                 |                                  []                |
    341  1.1  christos      stardict           |                         []                         |
    342  1.1  christos      system-tools-ba... |       []       [] [] [] []    [] [] []     []      |
    343  1.1  christos      tar                |                []                                  |
    344  1.1  christos      texinfo            |                               [] []             [] |
    345  1.1  christos      textutils          |                      []       [] []                |
    346  1.1  christos      tin                |                                  ()        ()      |
    347  1.1  christos      tp-robot           |                                  []                |
    348  1.1  christos      tuxpaint           | []             []             [] []        []      |
    349  1.1  christos      unicode-han-tra... |                                                    |
    350  1.1  christos      unicode-transla... |                                                    |
    351  1.1  christos      util-linux         |                      [] []    [] []                |
    352  1.1  christos      vorbis-tools       |             []          []    []           []      |
    353  1.1  christos      wastesedge         |                                  ()                |
    354  1.1  christos      wdiff              |                      []       [] []        []      |
    355  1.1  christos      wget               |                      []          []                |
    356  1.1  christos      xchat              |             [] []    []          [] []     []      |
    357  1.1  christos      xkeyboard-config   |                                                    |
    358  1.1  christos      xpad               |                []             []                   |
    359  1.1  christos                         +----------------------------------------------------+
    360  1.1  christos                           af am ar az be bg bs ca cs cy da de el en en_GB eo
    361  1.1  christos                           10  0  1  2  9 22  1 42 41  2 60 95 16  1  17   16
    362  1.1  christos 
    363  1.1  christos                           es et eu fa fi fr  ga gl gu he hi hr hu id is it
    364  1.1  christos                         +--------------------------------------------------+
    365  1.1  christos      GNUnet             |                                                  |
    366  1.1  christos      a2ps               |    []       [] []                             () |
    367  1.1  christos      aegis              |                                                  |
    368  1.1  christos      ant-phone          |                []                                |
    369  1.1  christos      anubis             |                []                                |
    370  1.1  christos      ap-utils           |             [] []                                |
    371  1.1  christos      aspell             |                []  []                         [] |
    372  1.1  christos      bash               | []             []                    []          |
    373  1.1  christos      batchelor          |                []  []                            |
    374  1.1  christos      bfd                | []                                               |
    375  1.1  christos      bibshelf           | []                 []                         [] |
    376  1.1  christos      binutils           | []          [] []                                |
    377  1.1  christos      bison              | [] []          []  []                   []    [] |
    378  1.1  christos      bison-runtime      |    []          []  []                   []    [] |
    379  1.1  christos      bluez-pin          |             [] []  []                [] []       |
    380  1.1  christos      cflow              |                    []                            |
    381  1.1  christos      clisp              | []             []                                |
    382  1.1  christos      console-tools      |                                                  |
    383  1.1  christos      coreutils          | [] []       [] []  []                []          |
    384  1.1  christos      cpio               | []             []  []                            |
    385  1.1  christos      cpplib             | []             []                                |
    386  1.1  christos      cryptonit          |                []                                |
    387  1.1  christos      darkstat           | []             ()  []                [] []       |
    388  1.1  christos      dialog             | [] [] []    [] []  []                []       [] |
    389  1.1  christos      diffutils          | []          [] []  [] []    []       [] []    [] |
    390  1.1  christos      doodle             |                    []                         [] |
    391  1.1  christos      e2fsprogs          | []             []                             [] |
    392  1.1  christos      enscript           |                []  []             []             |
    393  1.1  christos      error              | []          [] []  []                []          |
    394  1.1  christos      fetchmail          | []                                               |
    395  1.1  christos      fileutils          | [] []          []  []                []       [] |
    396  1.1  christos      findutils          |    []          []  []                []          |
    397  1.1  christos      flex               | []             []  []                            |
    398  1.1  christos      fslint             |                []                                |
    399  1.1  christos      gas                | []             []                                |
    400  1.1  christos      gawk               | []             []  []       []                   |
    401  1.1  christos      gbiff              |                []                                |
    402  1.1  christos      gcal               | []             []                                |
    403  1.1  christos      gcc                | []                                               |
    404  1.1  christos      gettext-examples   | []             []  []                [] []    [] |
    405  1.1  christos      gettext-runtime    | []          [] []  []                   []    [] |
    406  1.1  christos      gettext-tools      | []             []                             [] |
    407  1.1  christos      gimp-print         | []             []                                |
    408  1.1  christos      gip                | []    []       []                                |
    409  1.1  christos      gliv               |                ()                                |
    410  1.1  christos      glunarclock        |             []     []                []          |
    411  1.1  christos      gmult              |       []       []                             [] |
    412  1.1  christos      gnubiff            |                ()                             () |
    413  1.1  christos      gnucash            | ()             ()                    ()          |
    414  1.1  christos      gnucash-glossary   | []                                            [] |
    415  1.1  christos      gnuedu             | []                                               |
    416  1.1  christos      gnulib             | [] [] []    [] []  [] []             []          |
    417  1.1  christos      gnunet-gtk         |                                                  |
    418  1.1  christos      gnutls             |                                                  |
    419  1.1  christos      gpe-aerial         | []             []                                |
    420  1.1  christos      gpe-beam           | []             []                                |
    421  1.1  christos      gpe-calendar       |                                                  |
    422  1.1  christos      gpe-clock          | []          [] []                    []          |
    423  1.1  christos      gpe-conf           |                []                                |
    424  1.1  christos      gpe-contacts       | []             []                                |
    425  1.1  christos      gpe-edit           | []             []                    [] []       |
    426  1.1  christos      gpe-filemanager    | []                                               |
    427  1.1  christos      gpe-go             | []             []                    []          |
    428  1.1  christos      gpe-login          | []             []                    []          |
    429  1.1  christos      gpe-ownerinfo      | []          [] []                    [] []       |
    430  1.1  christos      gpe-package        | []                                               |
    431  1.1  christos      gpe-sketchbook     | []             []                                |
    432  1.1  christos      gpe-su             | []          [] []                    []          |
    433  1.1  christos      gpe-taskmanager    | []          [] []                                |
    434  1.1  christos      gpe-timesheet      | []             []  []                   []       |
    435  1.1  christos      gpe-today          | []          [] []  []                            |
    436  1.1  christos      gpe-todo           | []                                               |
    437  1.1  christos      gphoto2            | []          [] []                    []       [] |
    438  1.1  christos      gprof              | []             []  []                   []       |
    439  1.1  christos      gpsdrive           | ()             ()                    []       () |
    440  1.1  christos      gramadoir          |                []  []                            |
    441  1.1  christos      grep               | [] [] []    [] []  [] []    []    [] [] []    [] |
    442  1.1  christos      gretl              | []             []                             [] |
    443  1.1  christos      gsasl              |                    []                   []       |
    444  1.1  christos      gss                |                []                                |
    445  1.1  christos      gst-plugins        |                []                    []       [] |
    446  1.1  christos      gst-plugins-base   |                                      []       [] |
    447  1.1  christos      gst-plugins-good   |       []                             []       [] |
    448  1.1  christos      gstreamer          |             []                       []       [] |
    449  1.1  christos      gtick              |                    []                            |
    450  1.1  christos      gtkam              | []             []                    []       [] |
    451  1.1  christos      gtkorphan          |                []                             [] |
    452  1.1  christos      gtkspell           | []    []    [] []  []                         [] |
    453  1.1  christos      gutenprint         |                                      []          |
    454  1.1  christos      hello              | [] [] [] [] [] []  [] []    []    [] [] []    [] |
    455  1.1  christos      id-utils           |                []  []                [] []    [] |
    456  1.1  christos      impost             |                []  []                            |
    457  1.1  christos      indent             | [] [] []    [] []  [] []             [] []    [] |
    458  1.1  christos      iso_3166           |             [] []                    []          |
    459  1.1  christos      iso_3166_2         |                []                                |
    460  1.1  christos      iso_4217           |    []       []        []             []          |
    461  1.1  christos      iso_639            |          [] [] []  []                []          |
    462  1.1  christos      jpilot             | []             []                                |
    463  1.1  christos      jtag               |                []                                |
    464  1.1  christos      jwhois             | []             []                    [] []    [] |
    465  1.1  christos      kbd                | []             []                                |
    466  1.1  christos      keytouch           |                    []                            |
    467  1.1  christos      keytouch-editor    |                    []                            |
    468  1.1  christos      keytouch-keyboa... |                    []                            |
    469  1.1  christos      latrine            |                []  []                         [] |
    470  1.1  christos      ld                 | []             []                                |
    471  1.1  christos      leafpad            | []             []  []       []       []       [] |
    472  1.1  christos      libc               | []          [] []     []             []          |
    473  1.1  christos      libexif            | []                                               |
    474  1.1  christos      libextractor       |                    []                            |
    475  1.1  christos      libgpewidget       | []             []  []                [] []       |
    476  1.1  christos      libgpg-error       |                                                  |
    477  1.1  christos      libgphoto2         | []             []                             [] |
    478  1.1  christos      libgphoto2_port    |                []                             [] |
    479  1.1  christos      libgsasl           |                []  []                            |
    480  1.1  christos      libiconv           |    []              []                            |
    481  1.1  christos      libidn             |                []                             [] |
    482  1.1  christos      lifelines          |                ()                                |
    483  1.1  christos      lilypond           |                []                                |
    484  1.1  christos      lingoteach         |                []                       []    [] |
    485  1.1  christos      lynx               |    []                                []       [] |
    486  1.1  christos      m4                 |                []  [] []                []       |
    487  1.1  christos      mailutils          | []             []                                |
    488  1.1  christos      make               | []          [] []  [] []    []    []    []       |
    489  1.1  christos      man-db             | ()                                               |
    490  1.1  christos      minicom            | []          [] []                    []          |
    491  1.1  christos      mysecretdiary      | []             []                       []       |
    492  1.1  christos      nano               | []    []       []  []                []       [] |
    493  1.1  christos      nano_1_0           | []             []     []                []    [] |
    494  1.1  christos      opcodes            | []          [] []  []                            |
    495  1.1  christos      parted             | []             []                       []    [] |
    496  1.1  christos      pilot-qof          |                                                  |
    497  1.1  christos      psmisc             |       []                             []       [] |
    498  1.1  christos      pwdutils           |                                                  |
    499  1.1  christos      python             |                                                  |
    500  1.1  christos      qof                |                                         []       |
    501  1.1  christos      radius             | []             []                                |
    502  1.1  christos      recode             | []             []  [] []    []       [] []    [] |
    503  1.1  christos      rpm                |                []                       []       |
    504  1.1  christos      screem             |                                                  |
    505  1.1  christos      scrollkeeper       | []          []                       []          |
    506  1.1  christos      sed                | [] []          []  []                []          |
    507  1.1  christos      sh-utils           | [] []       [] []  []                []       [] |
    508  1.1  christos      shared-mime-info   | []    []    [] []                    []       [] |
    509  1.1  christos      sharutils          | [] []       [] []  [] []             []       [] |
    510  1.1  christos      shishi             |                                                  |
    511  1.1  christos      silky              |                []                                |
    512  1.1  christos      skencil            | []             []                                |
    513  1.1  christos      sketch             | []             []                                |
    514  1.1  christos      solfege            |                                               [] |
    515  1.1  christos      soundtracker       | []             []                             [] |
    516  1.1  christos      sp                 |                []                                |
    517  1.1  christos      stardict           |                                      []          |
    518  1.1  christos      system-tools-ba... | []    []    [] []                 [] [] []    [] |
    519  1.1  christos      tar                | [] []       [] []  []                []       [] |
    520  1.1  christos      texinfo            |                []           []                   |
    521  1.1  christos      textutils          | []             []  [] []             []          |
    522  1.1  christos      tin                |    []          ()                                |
    523  1.1  christos      tp-robot           |             [] []  []                []          |
    524  1.1  christos      tuxpaint           |                    []                []          |
    525  1.1  christos      unicode-han-tra... |                                                  |
    526  1.1  christos      unicode-transla... |                []  []                            |
    527  1.1  christos      util-linux         | [] []       [] []                    [] []    [] |
    528  1.1  christos      vorbis-tools       | []             []                                |
    529  1.1  christos      wastesedge         |                ()                                |
    530  1.1  christos      wdiff              | [] []          []  [] []             [] []    [] |
    531  1.1  christos      wget               |    []       [] []  []             [] [] []    [] |
    532  1.1  christos      xchat              | []    []    [] []        []    []    []       [] |
    533  1.1  christos      xkeyboard-config   |             [] []                    []       [] |
    534  1.1  christos      xpad               | []                 []                []          |
    535  1.1  christos                         +--------------------------------------------------+
    536  1.1  christos                           es et eu fa fi fr  ga gl gu he hi hr hu id is it
    537  1.1  christos                           88 22 14  2 40 115 61 14  1  8  1  6 59 31  0 52
    538  1.1  christos 
    539  1.1  christos                           ja ko ku ky lg lt lv mk mn ms mt nb ne nl nn no
    540  1.1  christos                         +-------------------------------------------------+
    541  1.1  christos      GNUnet             |                                                 |
    542  1.1  christos      a2ps               |    ()                      []          []    () |
    543  1.1  christos      aegis              |                                        ()       |
    544  1.1  christos      ant-phone          |                                        []       |
    545  1.1  christos      anubis             |                            []    []    []       |
    546  1.1  christos      ap-utils           |                            []                   |
    547  1.1  christos      aspell             |                         []             []       |
    548  1.1  christos      bash               |                                        []       |
    549  1.1  christos      batchelor          |                            []          []       |
    550  1.1  christos      bfd                |                                                 |
    551  1.1  christos      bibshelf           |                            []                   |
    552  1.1  christos      binutils           |                                                 |
    553  1.1  christos      bison              |                            []    []    []       |
    554  1.1  christos      bison-runtime      |                            []    []    []       |
    555  1.1  christos      bluez-pin          |       []                   []          []       |
    556  1.1  christos      cflow              |                                                 |
    557  1.1  christos      clisp              |                                        []       |
    558  1.1  christos      console-tools      |                                                 |
    559  1.1  christos      coreutils          |                                        []       |
    560  1.1  christos      cpio               |                                                 |
    561  1.1  christos      cpplib             |                                        []       |
    562  1.1  christos      cryptonit          |                                        []       |
    563  1.1  christos      darkstat           |                            []          []       |
    564  1.1  christos      dialog             |                            []          []       |
    565  1.1  christos      diffutils          | []                         []          []       |
    566  1.1  christos      doodle             |                                                 |
    567  1.1  christos      e2fsprogs          |                                        []       |
    568  1.1  christos      enscript           |                                        []       |
    569  1.1  christos      error              |                                        []       |
    570  1.1  christos      fetchmail          | []                                     []       |
    571  1.1  christos      fileutils          | []          []                                  |
    572  1.1  christos      findutils          |                                        []       |
    573  1.1  christos      flex               |    []                                  []       |
    574  1.1  christos      fslint             |                            []          []       |
    575  1.1  christos      gas                |                                                 |
    576  1.1  christos      gawk               | []                                     []       |
    577  1.1  christos      gbiff              |                                        []       |
    578  1.1  christos      gcal               |                                                 |
    579  1.1  christos      gcc                |                                                 |
    580  1.1  christos      gettext-examples   | []                                     []       |
    581  1.1  christos      gettext-runtime    | [] []                                  []       |
    582  1.1  christos      gettext-tools      | [] []                                           |
    583  1.1  christos      gimp-print         | []                                     []       |
    584  1.1  christos      gip                |                            []          []       |
    585  1.1  christos      gliv               |                                        []       |
    586  1.1  christos      glunarclock        |                            []          []       |
    587  1.1  christos      gmult              | []                         []                   |
    588  1.1  christos      gnubiff            |                                                 |
    589  1.1  christos      gnucash            | ()                               ()             |
    590  1.1  christos      gnucash-glossary   |                                        []       |
    591  1.1  christos      gnuedu             |                                                 |
    592  1.1  christos      gnulib             | [] []                      []          []       |
    593  1.1  christos      gnunet-gtk         |                                                 |
    594  1.1  christos      gnutls             |                                                 |
    595  1.1  christos      gpe-aerial         |                                        []       |
    596  1.1  christos      gpe-beam           |                                        []       |
    597  1.1  christos      gpe-calendar       | []                                              |
    598  1.1  christos      gpe-clock          | [] []                                  []       |
    599  1.1  christos      gpe-conf           |    []                                  []       |
    600  1.1  christos      gpe-contacts       |    []                                           |
    601  1.1  christos      gpe-edit           | [] []                                  []       |
    602  1.1  christos      gpe-filemanager    | [] []                                           |
    603  1.1  christos      gpe-go             | [] []                                  []       |
    604  1.1  christos      gpe-login          | [] []                                  []       |
    605  1.1  christos      gpe-ownerinfo      | []                                     []       |
    606  1.1  christos      gpe-package        | [] []                                           |
    607  1.1  christos      gpe-sketchbook     |    []                                  []       |
    608  1.1  christos      gpe-su             | [] []                                  []       |
    609  1.1  christos      gpe-taskmanager    | [] [] []                               []       |
    610  1.1  christos      gpe-timesheet      |                                        []       |
    611  1.1  christos      gpe-today          | []                                     []       |
    612  1.1  christos      gpe-todo           | []                                              |
    613  1.1  christos      gphoto2            | []                                     []       |
    614  1.1  christos      gprof              |                                                 |
    615  1.1  christos      gpsdrive           | ()                                     ()    () |
    616  1.1  christos      gramadoir          |                                        ()       |
    617  1.1  christos      grep               | []       []                      []    []       |
    618  1.1  christos      gretl              |                                                 |
    619  1.1  christos      gsasl              |                                        []       |
    620  1.1  christos      gss                |                                                 |
    621  1.1  christos      gst-plugins        |                                        []       |
    622  1.1  christos      gst-plugins-base   |                                                 |
    623  1.1  christos      gst-plugins-good   |                                        []       |
    624  1.1  christos      gstreamer          |                                        []       |
    625  1.1  christos      gtick              |                                                 |
    626  1.1  christos      gtkam              | []                                              |
    627  1.1  christos      gtkorphan          |                                        []       |
    628  1.1  christos      gtkspell           |                         []             []       |
    629  1.1  christos      gutenprint         |                                                 |
    630  1.1  christos      hello              | [] []                      []    []    [] []    |
    631  1.1  christos      id-utils           |                                        []       |
    632  1.1  christos      impost             |                                                 |
    633  1.1  christos      indent             | []                                     []       |
    634  1.1  christos      iso_3166           |                                        []       |
    635  1.1  christos      iso_3166_2         |                                        []       |
    636  1.1  christos      iso_4217           | []                      []             []       |
    637  1.1  christos      iso_639            | []                                     []       |
    638  1.1  christos      jpilot             | ()                                     ()    () |
    639  1.1  christos      jtag               |                                                 |
    640  1.1  christos      jwhois             |                                        []       |
    641  1.1  christos      kbd                |                                        []       |
    642  1.1  christos      keytouch           |                                        []       |
    643  1.1  christos      keytouch-editor    |                                                 |
    644  1.1  christos      keytouch-keyboa... |                                                 |
    645  1.1  christos      latrine            |                                        []       |
    646  1.1  christos      ld                 |                                                 |
    647  1.1  christos      leafpad            | []             []                               |
    648  1.1  christos      libc               | [] []                            []    []    [] |
    649  1.1  christos      libexif            |                                                 |
    650  1.1  christos      libextractor       |                                                 |
    651  1.1  christos      libgpewidget       |                                        []       |
    652  1.1  christos      libgpg-error       |                                                 |
    653  1.1  christos      libgphoto2         | []                                              |
    654  1.1  christos      libgphoto2_port    | []                                              |
    655  1.1  christos      libgsasl           |                                        []       |
    656  1.1  christos      libiconv           |                                                 |
    657  1.1  christos      libidn             | []                                     []       |
    658  1.1  christos      lifelines          |                                        []       |
    659  1.1  christos      lilypond           |                                                 |
    660  1.1  christos      lingoteach         |                                        []       |
    661  1.1  christos      lynx               | []                                     []       |
    662  1.1  christos      m4                 | []                                     []       |
    663  1.1  christos      mailutils          |                                                 |
    664  1.1  christos      make               | [] []                                  []       |
    665  1.1  christos      man-db             | ()                                              |
    666  1.1  christos      minicom            | []                                              |
    667  1.1  christos      mysecretdiary      |                                        []       |
    668  1.1  christos      nano               |                            []    []    []       |
    669  1.1  christos      nano_1_0           |                            []    []       []    |
    670  1.1  christos      opcodes            |                                        []       |
    671  1.1  christos      parted             | []                                     []       |
    672  1.1  christos      pilot-qof          |                                                 |
    673  1.1  christos      psmisc             | []                               []    []       |
    674  1.1  christos      pwdutils           |                                                 |
    675  1.1  christos      python             |                                                 |
    676  1.1  christos      qof                |                                                 |
    677  1.1  christos      radius             |                                                 |
    678  1.1  christos      recode             |                                        []       |
    679  1.1  christos      rpm                | [] []                                           |
    680  1.1  christos      screem             | []                                              |
    681  1.1  christos      scrollkeeper       |                                  [] [] [] []    |
    682  1.1  christos      sed                | []                                     []       |
    683  1.1  christos      sh-utils           | []                               []             |
    684  1.1  christos      shared-mime-info   |    []          []                []    [] []    |
    685  1.1  christos      sharutils          | []                                     []       |
    686  1.1  christos      shishi             |                                                 |
    687  1.1  christos      silky              |                                        []       |
    688  1.1  christos      skencil            |                                                 |
    689  1.1  christos      sketch             |                                                 |
    690  1.1  christos      solfege            |                                                 |
    691  1.1  christos      soundtracker       |                                                 |
    692  1.1  christos      sp                 | ()                                              |
    693  1.1  christos      stardict           |                      []                []       |
    694  1.1  christos      system-tools-ba... | [] []          []                      []       |
    695  1.1  christos      tar                | []       []                            []       |
    696  1.1  christos      texinfo            | []                               []    []       |
    697  1.1  christos      textutils          | [] []                            []             |
    698  1.1  christos      tin                |                                                 |
    699  1.1  christos      tp-robot           |                                        []       |
    700  1.1  christos      tuxpaint           |                                           []    |
    701  1.1  christos      unicode-han-tra... |                                                 |
    702  1.1  christos      unicode-transla... |                                                 |
    703  1.1  christos      util-linux         | []                                     []       |
    704  1.1  christos      vorbis-tools       |                                        []       |
    705  1.1  christos      wastesedge         |                                        []       |
    706  1.1  christos      wdiff              |                            []    []             |
    707  1.1  christos      wget               | []                                     []       |
    708  1.1  christos      xchat              | [] []                []                []       |
    709  1.1  christos      xkeyboard-config   |                                        []       |
    710  1.1  christos      xpad               |    []                      []          []       |
    711  1.1  christos                         +-------------------------------------------------+
    712  1.1  christos                           ja ko ku ky lg lt lv mk mn ms mt nb ne nl nn no
    713  1.1  christos                           52 24  2  2  1  3  0  2  3 21  0 15  1 97  5  1
    714  1.1  christos 
    715  1.1  christos                           nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv  ta
    716  1.1  christos                         +------------------------------------------------------+
    717  1.1  christos      GNUnet             |                                                      |
    718  1.1  christos      a2ps               |           ()     []      [] []       []    [] []     |
    719  1.1  christos      aegis              |                          () ()                       |
    720  1.1  christos      ant-phone          |                          []                   []     |
    721  1.1  christos      anubis             |           []             [] []                       |
    722  1.1  christos      ap-utils           |           ()                                         |
    723  1.1  christos      aspell             |                          [] []                       |
    724  1.1  christos      bash               |                  []      [] []                       |
    725  1.1  christos      batchelor          |                          []                   []     |
    726  1.1  christos      bfd                |                                                      |
    727  1.1  christos      bibshelf           |                                               []     |
    728  1.1  christos      binutils           |                             []                []     |
    729  1.1  christos      bison              |           []     []      [] []                []     |
    730  1.1  christos      bison-runtime      |           []             []          []       []     |
    731  1.1  christos      bluez-pin          |           []     []   [] [] []    [] []    [] []     |
    732  1.1  christos      cflow              |           []                                         |
    733  1.1  christos      clisp              |                             []                       |
    734  1.1  christos      console-tools      |                             []                       |
    735  1.1  christos      coreutils          |           []                []       []       []     |
    736  1.1  christos      cpio               |           []                []                []     |
    737  1.1  christos      cpplib             |                                               []     |
    738  1.1  christos      cryptonit          |                  []                           []     |
    739  1.1  christos      darkstat           |           []     []      []       []       [] []     |
    740  1.1  christos      dialog             |           [] []  []   [] [] [] []          [] []     |
    741  1.1  christos      diffutils          |           []     []      [] []             [] []     |
    742  1.1  christos      doodle             |                                         []    []     |
    743  1.1  christos      e2fsprogs          |           []                                  []     |
    744  1.1  christos      enscript           |                  []      [] []       []       []     |
    745  1.1  christos      error              |                  []      []       []          []     |
    746  1.1  christos      fetchmail          |           []                []          []           |
    747  1.1  christos      fileutils          |           []             [] []       []       []     |
    748  1.1  christos      findutils          |           [] []          []       [] []       []     |
    749  1.1  christos      flex               |           []     []      [] []                []     |
    750  1.1  christos      fslint             |                  []      []                [] []     |
    751  1.1  christos      gas                |                                                      |
    752  1.1  christos      gawk               |           []     []      []                   []     |
    753  1.1  christos      gbiff              |                          []                          |
    754  1.1  christos      gcal               |                                               []     |
    755  1.1  christos      gcc                |                                               []     |
    756  1.1  christos      gettext-examples   |           [] []          [] []    [] []    [] []     |
    757  1.1  christos      gettext-runtime    |           [] []          [] []    [] []    [] []     |
    758  1.1  christos      gettext-tools      |           []             [] []    [] []    [] []     |
    759  1.1  christos      gimp-print         |                                   []          []     |
    760  1.1  christos      gip                |                       []          []       [] []     |
    761  1.1  christos      gliv               |                  []      []       []          []     |
    762  1.1  christos      glunarclock        |                  []      [] []    []       [] []     |
    763  1.1  christos      gmult              |                       [] []                [] []     |
    764  1.1  christos      gnubiff            |                          ()                          |
    765  1.1  christos      gnucash            |           ()                                  []     |
    766  1.1  christos      gnucash-glossary   |              []                   []          []     |
    767  1.1  christos      gnuedu             |                                                      |
    768  1.1  christos      gnulib             |           []             [] []       []       []     |
    769  1.1  christos      gnunet-gtk         |                                               []     |
    770  1.1  christos      gnutls             |           []                                  []     |
    771  1.1  christos      gpe-aerial         |              []  []      [] []       []    [] []     |
    772  1.1  christos      gpe-beam           |              []  []      [] []       []    [] []     |
    773  1.1  christos      gpe-calendar       |                             []                       |
    774  1.1  christos      gpe-clock          |              []  []      [] []    [] []    [] []     |
    775  1.1  christos      gpe-conf           |              []  []      [] []    [] []       []     |
    776  1.1  christos      gpe-contacts       |                          [] []       []    [] []     |
    777  1.1  christos      gpe-edit           |              []  []      [] []    [] []    [] []     |
    778  1.1  christos      gpe-filemanager    |                                      []       []     |
    779  1.1  christos      gpe-go             |                  []      [] []       []    [] []     |
    780  1.1  christos      gpe-login          |              []  []      [] []    [] []    [] []     |
    781  1.1  christos      gpe-ownerinfo      |              []  []      [] []    [] []    [] []     |
    782  1.1  christos      gpe-package        |                                      []       []     |
    783  1.1  christos      gpe-sketchbook     |              []  []      [] []    [] []    [] []     |
    784  1.1  christos      gpe-su             |              []  []      [] []    [] []    [] []     |
    785  1.1  christos      gpe-taskmanager    |              []  []      [] []    [] []    [] []     |
    786  1.1  christos      gpe-timesheet      |              []  []      [] []    [] []    [] []     |
    787  1.1  christos      gpe-today          |              []  []      [] []    [] []    [] []     |
    788  1.1  christos      gpe-todo           |                             []       []    [] []     |
    789  1.1  christos      gphoto2            |           []             []       []       [] []     |
    790  1.1  christos      gprof              |                  []      []                   []     |
    791  1.1  christos      gpsdrive           |        []                []                   []     |
    792  1.1  christos      gramadoir          |                                   []          []     |
    793  1.1  christos      grep               |           [] []  []      [] []       []    [] []     |
    794  1.1  christos      gretl              |           []                                         |
    795  1.1  christos      gsasl              |           []                               [] []     |
    796  1.1  christos      gss                |           []             []                   []     |
    797  1.1  christos      gst-plugins        |     []                                  [] [] []     |
    798  1.1  christos      gst-plugins-base   |                                               []     |
    799  1.1  christos      gst-plugins-good   |     []                                  [] [] []     |
    800  1.1  christos      gstreamer          |                                         [] [] []     |
    801  1.1  christos      gtick              |                             []                       |
    802  1.1  christos      gtkam              |           []     []         []                []     |
    803  1.1  christos      gtkorphan          |                                               []     |
    804  1.1  christos      gtkspell           |                  []   [] [] []    [] []    [] []     |
    805  1.1  christos      gutenprint         |                                               []     |
    806  1.1  christos      hello              |           []     []      [] []    [] []    [] []     |
    807  1.1  christos      id-utils           |                  []      [] []                []     |
    808  1.1  christos      impost             |                                               []     |
    809  1.1  christos      indent             |                  []      [] []    []       [] []     |
    810  1.1  christos      iso_3166           |              []                []    [] [] [] []     |
    811  1.1  christos      iso_3166_2         |                                                      |
    812  1.1  christos      iso_4217           |                                []    []    [] []     |
    813  1.1  christos      iso_639            |                                []    []    [] []     |
    814  1.1  christos      jpilot             |                                                      |
    815  1.1  christos      jtag               |                                   []                 |
    816  1.1  christos      jwhois             |           []     []      []                   []     |
    817  1.1  christos      kbd                |           []             []                   []     |
    818  1.1  christos      keytouch           |                                               []     |
    819  1.1  christos      keytouch-editor    |                                               []     |
    820  1.1  christos      keytouch-keyboa... |                                               []     |
    821  1.1  christos      latrine            |                          []                   []     |
    822  1.1  christos      ld                 |                                               []     |
    823  1.1  christos      leafpad            |           [] []             []    []          []  [] |
    824  1.1  christos      libc               |           []     []         []    []          []     |
    825  1.1  christos      libexif            |           []                                         |
    826  1.1  christos      libextractor       |                          []                   []     |
    827  1.1  christos      libgpewidget       |              []  []      []       [] []    [] []     |
    828  1.1  christos      libgpg-error       |           []             []                          |
    829  1.1  christos      libgphoto2         |           []                                         |
    830  1.1  christos      libgphoto2_port    |           []                []                []     |
    831  1.1  christos      libgsasl           |           []             []                [] []     |
    832  1.1  christos      libiconv           |                                      []    []        |
    833  1.1  christos      libidn             |           []                               [] ()     |
    834  1.1  christos      lifelines          |           []                                  []     |
    835  1.1  christos      lilypond           |                                                      |
    836  1.1  christos      lingoteach         |                  []                                  |
    837  1.1  christos      lynx               |                  []         []                []     |
    838  1.1  christos      m4                 |           []     []      [] []                []     |
    839  1.1  christos      mailutils          |           []             [] []                []     |
    840  1.1  christos      make               |           []     []         []                []     |
    841  1.1  christos      man-db             |                          []                   []     |
    842  1.1  christos      minicom            |           []     []      [] []                []     |
    843  1.1  christos      mysecretdiary      |                  []      [] []                []     |
    844  1.1  christos      nano               |                  []      []                   []     |
    845  1.1  christos      nano_1_0           |           []             [] []                []     |
    846  1.1  christos      opcodes            |                          []                   []     |
    847  1.1  christos      parted             |           []                                         |
    848  1.1  christos      pilot-qof          |                                               []     |
    849  1.1  christos      psmisc             |           []                                  []     |
    850  1.1  christos      pwdutils           |           []                                  []     |
    851  1.1  christos      python             |                                                      |
    852  1.1  christos      qof                |                  []                           []     |
    853  1.1  christos      radius             |           []                []                       |
    854  1.1  christos      recode             |           [] []  []      [] []       []       []     |
    855  1.1  christos      rpm                |           [] []             []                []     |
    856  1.1  christos      screem             |                                                      |
    857  1.1  christos      scrollkeeper       |           []             [] []    []    [] [] []     |
    858  1.1  christos      sed                |           [] []  []      [] []    [] []    [] []     |
    859  1.1  christos      sh-utils           |                             []       []    []        |
    860  1.1  christos      shared-mime-info   |              []  []                     [] [] []     |
    861  1.1  christos      sharutils          |           []                []             [] []     |
    862  1.1  christos      shishi             |           []                                         |
    863  1.1  christos      silky              |                                   []                 |
    864  1.1  christos      skencil            |              []  []                           []     |
    865  1.1  christos      sketch             |              []  []                           []     |
    866  1.1  christos      solfege            |                                               []     |
    867  1.1  christos      soundtracker       |                                   []          []     |
    868  1.1  christos      sp                 |                                                      |
    869  1.1  christos      stardict           |                             []    []          []     |
    870  1.1  christos      system-tools-ba... |        [] [] []  []      []             [] [] []  [] |
    871  1.1  christos      tar                |           []             [] []       []       []     |
    872  1.1  christos      texinfo            |           []             [] []                []     |
    873  1.1  christos      textutils          |                             []       []       []     |
    874  1.1  christos      tin                |                             ()                       |
    875  1.1  christos      tp-robot           |                             []                       |
    876  1.1  christos      tuxpaint           |              []                      [] [] [] []     |
    877  1.1  christos      unicode-han-tra... |                                                      |
    878  1.1  christos      unicode-transla... |                                                      |
    879  1.1  christos      util-linux         |                  []         []       []       []     |
    880  1.1  christos      vorbis-tools       |                          [] []                       |
    881  1.1  christos      wastesedge         |                                                      |
    882  1.1  christos      wdiff              |           []     []      [] []    []          []     |
    883  1.1  christos      wget               |              []             []    []          []     |
    884  1.1  christos      xchat              |        []                   []    [] [] [] [] []     |
    885  1.1  christos      xkeyboard-config   |                                      []       []     |
    886  1.1  christos      xpad               |                                   [] []       []     |
    887  1.1  christos                         +------------------------------------------------------+
    888  1.1  christos                           nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv  ta
    889  1.1  christos                            0   2  3 58 30  54    5 73 72  4 40 46 11 50 128  2
    890  1.1  christos 
    891  1.1  christos                           tg th tk tr uk ven vi  wa xh zh_CN zh_HK zh_TW zu
    892  1.1  christos                         +---------------------------------------------------+
    893  1.1  christos      GNUnet             |                    []                             |  2
    894  1.1  christos      a2ps               |          [] []     []                             | 19
    895  1.1  christos      aegis              |                                                   |  0
    896  1.1  christos      ant-phone          |          []        []                             |  6
    897  1.1  christos      anubis             |          [] []     []                             | 11
    898  1.1  christos      ap-utils           |             ()     []                             |  4
    899  1.1  christos      aspell             |             []     []  []                         | 15
    900  1.1  christos      bash               |                    []                             | 11
    901  1.1  christos      batchelor          |          []        []                             |  9
    902  1.1  christos      bfd                |                                                   |  1
    903  1.1  christos      bibshelf           |                    []                             |  7
    904  1.1  christos      binutils           |          []        []                     []      |  9
    905  1.1  christos      bison              |          []        []                     []      | 19
    906  1.1  christos      bison-runtime      |                    []         []          []      | 15
    907  1.1  christos      bluez-pin          |          [] []     []  []     []          []      | 28
    908  1.1  christos      cflow              |             []     []                             |  5
    909  1.1  christos      clisp              |                                                   |  6
    910  1.1  christos      console-tools      |          []        []                             |  5
    911  1.1  christos      coreutils          |          []        []                             | 16
    912  1.1  christos      cpio               |          [] []     []                             |  9
    913  1.1  christos      cpplib             |          []        []         []          []      | 11
    914  1.1  christos      cryptonit          |                                                   |  5
    915  1.1  christos      darkstat           |                    []         ()          ()      | 15
    916  1.1  christos      dialog             |          [] []     []         []          []      | 30
    917  1.1  christos      diffutils          |          []        []         []          []      | 28
    918  1.1  christos      doodle             |                    []                             |  6
    919  1.1  christos      e2fsprogs          |          []        []                             | 10
    920  1.1  christos      enscript           |          [] []     []                             | 16
    921  1.1  christos      error              |          []        []         []          []      | 18
    922  1.1  christos      fetchmail          |          []        []                             | 12
    923  1.1  christos      fileutils          |          []                   []          []      | 18
    924  1.1  christos      findutils          |          []        []                     []      | 17
    925  1.1  christos      flex               |          []        []                             | 15
    926  1.1  christos      fslint             |                    []                             |  9
    927  1.1  christos      gas                |          []                                       |  3
    928  1.1  christos      gawk               |          []        []                             | 15
    929  1.1  christos      gbiff              |                    []                             |  5
    930  1.1  christos      gcal               |          []                                       |  5
    931  1.1  christos      gcc                |          []                   []          []      |  6
    932  1.1  christos      gettext-examples   |          [] []     []         []    []    []      | 27
    933  1.1  christos      gettext-runtime    |          [] []     []         []    []    []      | 28
    934  1.1  christos      gettext-tools      |          [] []     []         []          []      | 19
    935  1.1  christos      gimp-print         |             []     []                             | 12
    936  1.1  christos      gip                |                    []                     []      | 12
    937  1.1  christos      gliv               |          []        []                             |  8
    938  1.1  christos      glunarclock        |                    []  []                 []      | 15
    939  1.1  christos      gmult              |          []        []         []          []      | 15
    940  1.1  christos      gnubiff            |                    []                             |  1
    941  1.1  christos      gnucash            |          ()                                       |  2
    942  1.1  christos      gnucash-glossary   |                    []                     []      |  9
    943  1.1  christos      gnuedu             |                    []                             |  2
    944  1.1  christos      gnulib             |          [] []     []         []          []      | 28
    945  1.1  christos      gnunet-gtk         |                                                   |  1
    946  1.1  christos      gnutls             |                                                   |  2
    947  1.1  christos      gpe-aerial         |                    []         []                  | 14
    948  1.1  christos      gpe-beam           |                    []         []                  | 14
    949  1.1  christos      gpe-calendar       |                    []                             |  3
    950  1.1  christos      gpe-clock          |          []        []  []     []                  | 21
    951  1.1  christos      gpe-conf           |                    []         []                  | 14
    952  1.1  christos      gpe-contacts       |                    []         []                  | 10
    953  1.1  christos      gpe-edit           |          []        []  []                 []      | 20
    954  1.1  christos      gpe-filemanager    |                    []                             |  6
    955  1.1  christos      gpe-go             |          []        []                             | 15
    956  1.1  christos      gpe-login          |          []        []  []     []          []      | 21
    957  1.1  christos      gpe-ownerinfo      |          []        []         []          []      | 21
    958  1.1  christos      gpe-package        |                    []                             |  6
    959  1.1  christos      gpe-sketchbook     |          []        []                             | 16
    960  1.1  christos      gpe-su             |          []        []         []                  | 20
    961  1.1  christos      gpe-taskmanager    |          []        []         []                  | 20
    962  1.1  christos      gpe-timesheet      |          []        []         []          []      | 18
    963  1.1  christos      gpe-today          |          []        []  []     []          []      | 21
    964  1.1  christos      gpe-todo           |                    []                             |  7
    965  1.1  christos      gphoto2            |             []     []         []          []      | 20
    966  1.1  christos      gprof              |          []        []                             | 11
    967  1.1  christos      gpsdrive           |                                                   |  4
    968  1.1  christos      gramadoir          |                    []                             |  7
    969  1.1  christos      grep               |          [] []     []                     []      | 34
    970  1.1  christos      gretl              |                                                   |  4
    971  1.1  christos      gsasl              |                    []         []                  |  8
    972  1.1  christos      gss                |                    []                             |  5
    973  1.1  christos      gst-plugins        |             []     []                     []      | 15
    974  1.1  christos      gst-plugins-base   |             []     []         []                  |  9
    975  1.1  christos      gst-plugins-good   |             []     []         []    []    []      | 20
    976  1.1  christos      gstreamer          |          [] []     []                             | 17
    977  1.1  christos      gtick              |                    []                             |  3
    978  1.1  christos      gtkam              |                    []                             | 13
    979  1.1  christos      gtkorphan          |                    []                             |  7
    980  1.1  christos      gtkspell           |             []     []  []     []    []    []      | 26
    981  1.1  christos      gutenprint         |                                                   |  3
    982  1.1  christos      hello              |          [] []     []         []          []      | 37
    983  1.1  christos      id-utils           |          []        []                             | 14
    984  1.1  christos      impost             |                    []                             |  4
    985  1.1  christos      indent             |          []        []         []          []      | 25
    986  1.1  christos      iso_3166           |       [] []        []               []            | 16
    987  1.1  christos      iso_3166_2         |                                                   |  2
    988  1.1  christos      iso_4217           |          []        []                             | 14
    989  1.1  christos      iso_639            |                    []                             | 14
    990  1.1  christos      jpilot             |          [] []     []         []                  |  7
    991  1.1  christos      jtag               |                    []                             |  3
    992  1.1  christos      jwhois             |          []        []                     []      | 13
    993  1.1  christos      kbd                |          []        []                             | 12
    994  1.1  christos      keytouch           |                    []                             |  4
    995  1.1  christos      keytouch-editor    |                                                   |  2
    996  1.1  christos      keytouch-keyboa... |                    []                             |  3
    997  1.1  christos      latrine            |          []        []                             |  8
    998  1.1  christos      ld                 |          []        []         []          []      |  8
    999  1.1  christos      leafpad            |          []        []         []          []      | 23
   1000  1.1  christos      libc               |          []                   []          []      | 23
   1001  1.1  christos      libexif            |                    []                             |  4
   1002  1.1  christos      libextractor       |                    []                             |  5
   1003  1.1  christos      libgpewidget       |                    []  []     []                  | 19
   1004  1.1  christos      libgpg-error       |                    []                             |  4
   1005  1.1  christos      libgphoto2         |             []                                    |  8
   1006  1.1  christos      libgphoto2_port    |             []     []                     []      | 11
   1007  1.1  christos      libgsasl           |                    []                             |  8
   1008  1.1  christos      libiconv           |                    []                             |  7
   1009  1.1  christos      libidn             |                    []         []                  | 10
   1010  1.1  christos      lifelines          |                                                   |  4
   1011  1.1  christos      lilypond           |                                                   |  2
   1012  1.1  christos      lingoteach         |                    []                             |  6
   1013  1.1  christos      lynx               |          [] []     []                             | 15
   1014  1.1  christos      m4                 |                    []         []          []      | 18
   1015  1.1  christos      mailutils          |             []                                    |  8
   1016  1.1  christos      make               |          []        []         []                  | 20
   1017  1.1  christos      man-db             |                    []                             |  6
   1018  1.1  christos      minicom            |                    []                             | 14
   1019  1.1  christos      mysecretdiary      |          []        []                             | 12
   1020  1.1  christos      nano               |                    []                     []      | 17
   1021  1.1  christos      nano_1_0           |          [] []     []                             | 18
   1022  1.1  christos      opcodes            |          []        []                             | 10
   1023  1.1  christos      parted             |          [] []                            []      | 10
   1024  1.1  christos      pilot-qof          |                    []                             |  3
   1025  1.1  christos      psmisc             |                    []                             | 10
   1026  1.1  christos      pwdutils           |                    []                             |  3
   1027  1.1  christos      python             |                                                   |  0
   1028  1.1  christos      qof                |                    []                             |  4
   1029  1.1  christos      radius             |             []                                    |  6
   1030  1.1  christos      recode             |          []        []         []                  | 25
   1031  1.1  christos      rpm                |          [] []     []                     []      | 14
   1032  1.1  christos      screem             |                    []                             |  2
   1033  1.1  christos      scrollkeeper       |          [] []     []                     []      | 26
   1034  1.1  christos      sed                |          []        []                     []      | 22
   1035  1.1  christos      sh-utils           |          []                                       | 15
   1036  1.1  christos      shared-mime-info   |             []     []         []          []      | 24
   1037  1.1  christos      sharutils          |          []        []                     []      | 23
   1038  1.1  christos      shishi             |                                                   |  1
   1039  1.1  christos      silky              |                    []                             |  4
   1040  1.1  christos      skencil            |                    []                             |  7
   1041  1.1  christos      sketch             |                                                   |  6
   1042  1.1  christos      solfege            |                                                   |  2
   1043  1.1  christos      soundtracker       |          []        []                             |  9
   1044  1.1  christos      sp                 |          []                                       |  3
   1045  1.1  christos      stardict           |             []     []         []          []      | 11
   1046  1.1  christos      system-tools-ba... |    []    [] []     []     []  []          []      | 37
   1047  1.1  christos      tar                |          [] []     []                     []      | 20
   1048  1.1  christos      texinfo            |          []        []         []                  | 15
   1049  1.1  christos      textutils          |          []                   []          []      | 17
   1050  1.1  christos      tin                |                                                   |  1
   1051  1.1  christos      tp-robot           |                    []         []          []      | 10
   1052  1.1  christos      tuxpaint           |                    []  []                 []      | 16
   1053  1.1  christos      unicode-han-tra... |                                                   |  0
   1054  1.1  christos      unicode-transla... |                                                   |  2
   1055  1.1  christos      util-linux         |          [] []     []                             | 20
   1056  1.1  christos      vorbis-tools       |             []     []                             | 11
   1057  1.1  christos      wastesedge         |                                                   |  1
   1058  1.1  christos      wdiff              |          []        []                             | 22
   1059  1.1  christos      wget               |          []        []                     []      | 19
   1060  1.1  christos      xchat              |             []     []         []          []      | 29
   1061  1.1  christos      xkeyboard-config   |          [] []     []                     []      | 11
   1062  1.1  christos      xpad               |                    []         []          []      | 14
   1063  1.1  christos                         +---------------------------------------------------+
   1064  1.1  christos        77 teams           tg th tk tr uk ven vi  wa xh zh_CN zh_HK zh_TW zu
   1065  1.1  christos       170 domains          0  1  1 77 39  0  136 10  1  48     5    54    0  2028
   1066  1.1  christos 
   1067  1.1  christos    Some counters in the preceding matrix are higher than the number of
   1068  1.1  christos visible blocks let us expect.  This is because a few extra PO files are
   1069  1.1  christos used for implementing regional variants of languages, or language
   1070  1.1  christos dialects.
   1071  1.1  christos 
   1072  1.1  christos    For a PO file in the matrix above to be effective, the package to
   1073  1.1  christos which it applies should also have been internationalized and
   1074  1.1  christos distributed as such by its maintainer.  There might be an observable
   1075  1.1  christos lag between the mere existence a PO file and its wide availability in a
   1076  1.1  christos distribution.
   1077  1.1  christos 
   1078  1.1  christos    If October 2006 seems to be old, you may fetch a more recent copy of
   1079  1.1  christos this `ABOUT-NLS' file on most GNU archive sites.  The most up-to-date
   1080  1.1  christos matrix with full percentage details can be found at
   1081  1.1  christos `http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
   1082  1.1  christos 
   1083  1.1  christos 1.6 Using `gettext' in new packages
   1084  1.1  christos ===================================
   1085  1.1  christos 
   1086  1.1  christos If you are writing a freely available program and want to
   1087  1.1  christos internationalize it you are welcome to use GNU `gettext' in your
   1088  1.1  christos package.  Of course you have to respect the GNU Library General Public
   1089  1.1  christos License which covers the use of the GNU `gettext' library.  This means
   1090  1.1  christos in particular that even non-free programs can use `libintl' as a shared
   1091  1.1  christos library, whereas only free software can use `libintl' as a static
   1092  1.1  christos library or use modified versions of `libintl'.
   1093  1.1  christos 
   1094  1.1  christos    Once the sources are changed appropriately and the setup can handle
   1095  1.1  christos the use of `gettext' the only thing missing are the translations.  The
   1096  1.1  christos Free Translation Project is also available for packages which are not
   1097  1.1  christos developed inside the GNU project.  Therefore the information given above
   1098  1.1  christos applies also for every other Free Software Project.  Contact
   1099  1.1  christos `translation (a] iro.umontreal.ca' to make the `.pot' files available to
   1100  1.1  christos the translation teams.
   1101  1.1  christos 
   1102