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