Statistics
| Revision:

root / ABOUT-NLS

History | View | Annotate | Download (74.7 kB)

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