diff options
Diffstat (limited to 'ABOUT-NLS')
-rw-r--r-- | ABOUT-NLS | 1379 |
1 files changed, 0 insertions, 1379 deletions
diff --git a/ABOUT-NLS b/ABOUT-NLS deleted file mode 100644 index 3cc82865..00000000 --- a/ABOUT-NLS +++ /dev/null | |||
@@ -1,1379 +0,0 @@ | |||
1 | 1 Notes on the Free Translation Project | ||
2 | *************************************** | ||
3 | |||
4 | Free software is going international! The Free Translation Project is a | ||
5 | way to get maintainers of free software, translators, and users all | ||
6 | together, so that free software will gradually become able to speak many | ||
7 | languages. A few packages already provide translations for their | ||
8 | messages. | ||
9 | |||
10 | If you found this 'ABOUT-NLS' file inside a distribution, you may | ||
11 | assume that the distributed package does use GNU 'gettext' internally, | ||
12 | itself available at your nearest GNU archive site. But you do _not_ | ||
13 | need to install GNU 'gettext' prior to configuring, installing or using | ||
14 | this package with messages translated. | ||
15 | |||
16 | Installers will find here some useful hints. These notes also | ||
17 | explain how users should proceed for getting the programs to use the | ||
18 | available translations. They tell how people wanting to contribute and | ||
19 | work on translations can contact the appropriate team. | ||
20 | |||
21 | 1.1 INSTALL Matters | ||
22 | =================== | ||
23 | |||
24 | Some packages are "localizable" when properly installed; the programs | ||
25 | they contain can be made to speak your own native language. Most such | ||
26 | packages use GNU 'gettext'. Other packages have their own ways to | ||
27 | internationalization, predating GNU 'gettext'. | ||
28 | |||
29 | By default, this package will be installed to allow translation of | ||
30 | messages. It will automatically detect whether the system already | ||
31 | provides the GNU 'gettext' functions. Installers may use special | ||
32 | options at configuration time for changing the default behaviour. The | ||
33 | command: | ||
34 | |||
35 | ./configure --disable-nls | ||
36 | |||
37 | will _totally_ disable translation of messages. | ||
38 | |||
39 | When you already have GNU 'gettext' installed on your system and run | ||
40 | configure without an option for your new package, 'configure' will | ||
41 | probably detect the previously built and installed 'libintl' library and | ||
42 | will decide to use it. If not, you may have to to use the | ||
43 | '--with-libintl-prefix' option to tell 'configure' where to look for it. | ||
44 | |||
45 | Internationalized packages usually have many 'po/LL.po' files, where | ||
46 | LL gives an ISO 639 two-letter code identifying the language. Unless | ||
47 | translations have been forbidden at 'configure' time by using the | ||
48 | '--disable-nls' switch, all available translations are installed | ||
49 | together with the package. However, the environment variable 'LINGUAS' | ||
50 | may be set, prior to configuration, to limit the installed set. | ||
51 | 'LINGUAS' should then contain a space separated list of two-letter | ||
52 | codes, stating which languages are allowed. | ||
53 | |||
54 | 1.2 Using This Package | ||
55 | ====================== | ||
56 | |||
57 | As a user, if your language has been installed for this package, you | ||
58 | only have to set the 'LANG' environment variable to the appropriate | ||
59 | 'LL_CC' combination. If you happen to have the 'LC_ALL' or some other | ||
60 | 'LC_xxx' environment variables set, you should unset them before setting | ||
61 | 'LANG', otherwise the setting of 'LANG' will not have the desired | ||
62 | effect. Here 'LL' is an ISO 639 two-letter language code, and 'CC' is | ||
63 | an ISO 3166 two-letter country code. For example, let's suppose that | ||
64 | you speak German and live in Germany. At the shell prompt, merely | ||
65 | execute 'setenv LANG de_DE' (in 'csh'), 'export LANG; LANG=de_DE' (in | ||
66 | 'sh') or 'export LANG=de_DE' (in 'bash'). This can be done from your | ||
67 | '.login' or '.profile' file, once and for all. | ||
68 | |||
69 | You might think that the country code specification is redundant. | ||
70 | But in fact, some languages have dialects in different countries. For | ||
71 | example, 'de_AT' is used for Austria, and 'pt_BR' for Brazil. The | ||
72 | country code serves to distinguish the dialects. | ||
73 | |||
74 | The locale naming convention of 'LL_CC', with 'LL' denoting the | ||
75 | language and 'CC' denoting the country, is the one use on systems based | ||
76 | on GNU libc. On other systems, some variations of this scheme are used, | ||
77 | such as 'LL' or 'LL_CC.ENCODING'. You can get the list of locales | ||
78 | supported by your system for your language by running the command | ||
79 | 'locale -a | grep '^LL''. | ||
80 | |||
81 | Not all programs have translations for all languages. By default, an | ||
82 | English message is shown in place of a nonexistent translation. If you | ||
83 | understand other languages, you can set up a priority list of languages. | ||
84 | This is done through a different environment variable, called | ||
85 | 'LANGUAGE'. GNU 'gettext' gives preference to 'LANGUAGE' over 'LANG' | ||
86 | for the purpose of message handling, but you still need to have 'LANG' | ||
87 | set to the primary language; this is required by other parts of the | ||
88 | system libraries. For example, some Swedish users who would rather read | ||
89 | translations in German than English for when Swedish is not available, | ||
90 | set 'LANGUAGE' to 'sv:de' while leaving 'LANG' to 'sv_SE'. | ||
91 | |||
92 | Special advice for Norwegian users: The language code for Norwegian | ||
93 | bokma*l changed from 'no' to 'nb' recently (in 2003). During the | ||
94 | transition period, while some message catalogs for this language are | ||
95 | installed under 'nb' and some older ones under 'no', it's recommended | ||
96 | for Norwegian users to set 'LANGUAGE' to 'nb:no' so that both newer and | ||
97 | older translations are used. | ||
98 | |||
99 | In the 'LANGUAGE' environment variable, but not in the 'LANG' | ||
100 | environment variable, 'LL_CC' combinations can be abbreviated as 'LL' to | ||
101 | denote the language's main dialect. For example, 'de' is equivalent to | ||
102 | 'de_DE' (German as spoken in Germany), and 'pt' to 'pt_PT' (Portuguese | ||
103 | as spoken in Portugal) in this context. | ||
104 | |||
105 | 1.3 Translating Teams | ||
106 | ===================== | ||
107 | |||
108 | For the Free Translation Project to be a success, we need interested | ||
109 | people who like their own language and write it well, and who are also | ||
110 | able to synergize with other translators speaking the same language. | ||
111 | Each translation team has its own mailing list. The up-to-date list of | ||
112 | teams can be found at the Free Translation Project's homepage, | ||
113 | 'http://translationproject.org/', in the "Teams" area. | ||
114 | |||
115 | If you'd like to volunteer to _work_ at translating messages, you | ||
116 | should become a member of the translating team for your own language. | ||
117 | The subscribing address is _not_ the same as the list itself, it has | ||
118 | '-request' appended. For example, speakers of Swedish can send a | ||
119 | message to 'sv-request@li.org', having this message body: | ||
120 | |||
121 | subscribe | ||
122 | |||
123 | Keep in mind that team members are expected to participate _actively_ | ||
124 | in translations, or at solving translational difficulties, rather than | ||
125 | merely lurking around. If your team does not exist yet and you want to | ||
126 | start one, or if you are unsure about what to do or how to get started, | ||
127 | please write to 'coordinator@translationproject.org' to reach the | ||
128 | coordinator for all translator teams. | ||
129 | |||
130 | The English team is special. It works at improving and uniformizing | ||
131 | the terminology in use. Proven linguistic skills are praised more than | ||
132 | programming skills, here. | ||
133 | |||
134 | 1.4 Available Packages | ||
135 | ====================== | ||
136 | |||
137 | Languages are not equally supported in all packages. The following | ||
138 | matrix shows the current state of internationalization, as of Jun 2014. | ||
139 | The matrix shows, in regard of each package, for which languages PO | ||
140 | files have been submitted to translation coordination, with a | ||
141 | translation percentage of at least 50%. | ||
142 | |||
143 | Ready PO files af am an ar as ast az be bg bn bn_IN bs ca crh cs | ||
144 | +---------------------------------------------------+ | ||
145 | a2ps | [] [] [] | | ||
146 | aegis | | | ||
147 | anubis | | | ||
148 | aspell | [] [] [] | | ||
149 | bash | [] [] [] | | ||
150 | bfd | | | ||
151 | binutils | [] | | ||
152 | bison | | | ||
153 | bison-runtime | [] | | ||
154 | buzztrax | [] | | ||
155 | ccd2cue | | | ||
156 | ccide | | | ||
157 | cflow | | | ||
158 | clisp | | | ||
159 | coreutils | [] [] | | ||
160 | cpio | | | ||
161 | cppi | | | ||
162 | cpplib | [] | | ||
163 | cryptsetup | [] | | ||
164 | datamash | | | ||
165 | denemo | [] [] | | ||
166 | dfarc | [] | | ||
167 | dialog | [] [] [] | | ||
168 | dico | | | ||
169 | diffutils | [] | | ||
170 | dink | [] | | ||
171 | direvent | | | ||
172 | doodle | [] | | ||
173 | dos2unix | | | ||
174 | dos2unix-man | | | ||
175 | e2fsprogs | [] [] | | ||
176 | enscript | [] | | ||
177 | exif | [] | | ||
178 | fetchmail | [] [] | | ||
179 | findutils | [] | | ||
180 | flex | [] | | ||
181 | freedink | [] [] | | ||
182 | fusionforge | | | ||
183 | gas | | | ||
184 | gawk | [] | | ||
185 | gcal | [] | | ||
186 | gcc | | | ||
187 | gdbm | | | ||
188 | gettext-examples | [] [] [] [] [] | | ||
189 | gettext-runtime | [] [] [] | | ||
190 | gettext-tools | [] [] | | ||
191 | gjay | | | ||
192 | glunarclock | [] [] [] | | ||
193 | gnubiff | [] | | ||
194 | gnubik | [] | | ||
195 | gnucash | () () [] | | ||
196 | gnuchess | | | ||
197 | gnulib | [] | | ||
198 | gnunet | | | ||
199 | gnunet-gtk | | | ||
200 | gold | | | ||
201 | gphoto2 | [] | | ||
202 | gprof | [] | | ||
203 | gramadoir | | | ||
204 | grep | [] [] [] | | ||
205 | grub | [] | | ||
206 | gsasl | | | ||
207 | gss | | | ||
208 | gst-plugins-bad | [] [] | | ||
209 | gst-plugins-base | [] [] [] | | ||
210 | gst-plugins-good | [] [] [] | | ||
211 | gst-plugins-ugly | [] [] [] | | ||
212 | gstreamer | [] [] [] [] | | ||
213 | gtick | [] | | ||
214 | gtkam | [] [] | | ||
215 | gtkspell | [] [] [] [] [] | | ||
216 | guix | | | ||
217 | guix-packages | | | ||
218 | gutenprint | [] | | ||
219 | hello | [] | | ||
220 | help2man | | | ||
221 | help2man-texi | | | ||
222 | hylafax | | | ||
223 | idutils | | | ||
224 | iso_15924 | [] | | ||
225 | iso_3166 | [] [] [] [] [] [] [] [] [] [] | | ||
226 | iso_3166_2 | | | ||
227 | iso_4217 | [] | | ||
228 | iso_639 | [] [] [] [] [] [] [] [] [] | | ||
229 | iso_639_3 | [] [] | | ||
230 | iso_639_5 | | | ||
231 | jwhois | | | ||
232 | kbd | [] | | ||
233 | klavaro | [] [] [] [] [] | | ||
234 | ld | [] | | ||
235 | leafpad | [] [] [] [] | | ||
236 | libc | [] [] [] | | ||
237 | libexif | () | | ||
238 | libextractor | | | ||
239 | libgnutls | [] | | ||
240 | libgphoto2 | [] | | ||
241 | libgphoto2_port | [] | | ||
242 | libgsasl | | | ||
243 | libiconv | [] [] | | ||
244 | libidn | [] | | ||
245 | liferea | [] [] [] [] | | ||
246 | lilypond | [] [] | | ||
247 | lordsawar | [] | | ||
248 | lprng | | | ||
249 | lynx | [] [] | | ||
250 | m4 | [] | | ||
251 | mailfromd | | | ||
252 | mailutils | | | ||
253 | make | [] | | ||
254 | man-db | [] [] | | ||
255 | man-db-manpages | | | ||
256 | midi-instruments | [] [] [] | | ||
257 | minicom | [] | | ||
258 | mkisofs | [] | | ||
259 | myserver | [] | | ||
260 | nano | [] [] [] | | ||
261 | opcodes | | | ||
262 | parted | [] | | ||
263 | pies | | | ||
264 | pnmixer | | | ||
265 | popt | [] | | ||
266 | procps-ng | | | ||
267 | procps-ng-man | | | ||
268 | psmisc | [] | | ||
269 | pspp | [] | | ||
270 | pushover | [] | | ||
271 | pwdutils | | | ||
272 | pyspread | | | ||
273 | radius | [] | | ||
274 | recode | [] [] [] | | ||
275 | recutils | | | ||
276 | rpm | | | ||
277 | rush | | | ||
278 | sarg | | | ||
279 | sed | [] [] [] [] | | ||
280 | sharutils | [] | | ||
281 | shishi | | | ||
282 | skribilo | | | ||
283 | solfege | [] [] | | ||
284 | solfege-manual | | | ||
285 | spotmachine | | | ||
286 | sudo | [] [] | | ||
287 | sudoers | [] [] | | ||
288 | sysstat | [] | | ||
289 | tar | [] [] [] | | ||
290 | texinfo | [] [] | | ||
291 | texinfo_document | [] [] | | ||
292 | tigervnc | [] | | ||
293 | tin | | | ||
294 | tin-man | | | ||
295 | tracgoogleappsa... | | | ||
296 | trader | | | ||
297 | util-linux | [] | | ||
298 | ve | | | ||
299 | vice | | | ||
300 | vmm | | | ||
301 | vorbis-tools | [] | | ||
302 | wastesedge | | | ||
303 | wcd | | | ||
304 | wcd-man | | | ||
305 | wdiff | [] [] | | ||
306 | wget | [] | | ||
307 | wyslij-po | | | ||
308 | xboard | | | ||
309 | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | | ||
310 | xkeyboard-config | [] [] [] | | ||
311 | +---------------------------------------------------+ | ||
312 | af am an ar as ast az be bg bn bn_IN bs ca crh cs | ||
313 | 4 0 2 5 3 11 0 8 25 3 3 1 55 4 74 | ||
314 | |||
315 | da de el en en_GB en_ZA eo es et eu fa fi fr | ||
316 | +--------------------------------------------------+ | ||
317 | a2ps | [] [] [] [] [] [] [] [] [] | | ||
318 | aegis | [] [] [] [] | | ||
319 | anubis | [] [] [] [] [] | | ||
320 | aspell | [] [] [] [] [] [] [] | | ||
321 | bash | [] [] [] | | ||
322 | bfd | [] [] [] [] | | ||
323 | binutils | [] [] [] | | ||
324 | bison | [] [] [] [] [] [] [] [] | | ||
325 | bison-runtime | [] [] [] [] [] [] [] [] | | ||
326 | buzztrax | [] [] [] [] | | ||
327 | ccd2cue | [] [] [] [] | | ||
328 | ccide | [] [] [] [] [] [] | | ||
329 | cflow | [] [] [] [] [] | | ||
330 | clisp | [] [] [] [] [] | | ||
331 | coreutils | [] [] [] [] [] | | ||
332 | cpio | [] [] [] [] [] | | ||
333 | cppi | [] [] [] [] [] | | ||
334 | cpplib | [] [] [] [] [] [] | | ||
335 | cryptsetup | [] [] [] [] [] | | ||
336 | datamash | [] [] [] [] | | ||
337 | denemo | [] | | ||
338 | dfarc | [] [] [] [] [] [] | | ||
339 | dialog | [] [] [] [] [] [] [] [] [] | | ||
340 | dico | [] [] [] [] | | ||
341 | diffutils | [] [] [] [] [] [] | | ||
342 | dink | [] [] [] [] [] [] | | ||
343 | direvent | [] [] [] [] | | ||
344 | doodle | [] [] [] [] | | ||
345 | dos2unix | [] [] [] [] [] | | ||
346 | dos2unix-man | [] [] [] | | ||
347 | e2fsprogs | [] [] [] [] [] | | ||
348 | enscript | [] [] [] [] [] [] | | ||
349 | exif | [] [] [] [] [] [] | | ||
350 | fetchmail | [] () [] [] [] [] [] | | ||
351 | findutils | [] [] [] [] [] [] [] [] | | ||
352 | flex | [] [] [] [] [] [] | | ||
353 | freedink | [] [] [] [] [] [] [] [] | | ||
354 | fusionforge | [] [] [] | | ||
355 | gas | [] [] [] | | ||
356 | gawk | [] [] [] [] [] | | ||
357 | gcal | [] [] [] [] | | ||
358 | gcc | [] | | ||
359 | gdbm | [] [] [] [] [] | | ||
360 | gettext-examples | [] [] [] [] [] [] [] | | ||
361 | gettext-runtime | [] [] [] [] [] [] | | ||
362 | gettext-tools | [] [] [] [] [] | | ||
363 | gjay | [] [] [] [] | | ||
364 | glunarclock | [] [] [] [] [] | | ||
365 | gnubiff | () [] [] () | | ||
366 | gnubik | [] [] [] [] [] | | ||
367 | gnucash | [] () () () () () () | | ||
368 | gnuchess | [] [] [] [] | | ||
369 | gnulib | [] [] [] [] [] [] [] | | ||
370 | gnunet | [] | | ||
371 | gnunet-gtk | [] | | ||
372 | gold | [] [] [] | | ||
373 | gphoto2 | [] () [] [] | | ||
374 | gprof | [] [] [] [] [] [] | | ||
375 | gramadoir | [] [] [] [] [] | | ||
376 | grep | [] [] [] [] [] [] [] | | ||
377 | grub | [] [] [] [] [] | | ||
378 | gsasl | [] [] [] [] [] | | ||
379 | gss | [] [] [] [] [] | | ||
380 | gst-plugins-bad | [] [] [] | | ||
381 | gst-plugins-base | [] [] [] [] [] [] | | ||
382 | gst-plugins-good | [] [] [] [] [] [] [] | | ||
383 | gst-plugins-ugly | [] [] [] [] [] [] [] [] | | ||
384 | gstreamer | [] [] [] [] [] [] [] | | ||
385 | gtick | [] () [] [] [] | | ||
386 | gtkam | [] () [] [] [] [] | | ||
387 | gtkspell | [] [] [] [] [] [] [] [] | | ||
388 | guix | [] [] | | ||
389 | guix-packages | | | ||
390 | gutenprint | [] [] [] [] | | ||
391 | hello | [] [] [] [] [] [] [] [] | | ||
392 | help2man | [] [] [] [] [] [] [] | | ||
393 | help2man-texi | [] [] [] | | ||
394 | hylafax | [] [] | | ||
395 | idutils | [] [] [] [] [] | | ||
396 | iso_15924 | [] () [] [] () [] () | | ||
397 | iso_3166 | [] () [] [] [] [] () [] () | | ||
398 | iso_3166_2 | [] () () () | | ||
399 | iso_4217 | [] () [] [] [] () [] () | | ||
400 | iso_639 | [] () [] [] () [] () | | ||
401 | iso_639_3 | () () () | | ||
402 | iso_639_5 | () () () | | ||
403 | jwhois | [] [] [] [] [] | | ||
404 | kbd | [] [] [] [] [] [] | | ||
405 | klavaro | [] [] [] [] [] [] [] | | ||
406 | ld | [] [] [] [] | | ||
407 | leafpad | [] [] [] [] [] [] [] [] | | ||
408 | libc | [] [] [] [] [] | | ||
409 | libexif | [] [] () [] [] | | ||
410 | libextractor | [] | | ||
411 | libgnutls | [] [] [] [] | | ||
412 | libgphoto2 | [] () [] | | ||
413 | libgphoto2_port | [] () [] [] [] [] | | ||
414 | libgsasl | [] [] [] [] [] | | ||
415 | libiconv | [] [] [] [] [] [] [] | | ||
416 | libidn | [] [] [] [] [] | | ||
417 | liferea | [] () [] [] [] [] [] | | ||
418 | lilypond | [] [] [] [] [] [] | | ||
419 | lordsawar | [] [] | | ||
420 | lprng | | | ||
421 | lynx | [] [] [] [] [] [] | | ||
422 | m4 | [] [] [] [] [] [] | | ||
423 | mailfromd | [] | | ||
424 | mailutils | [] [] [] [] | | ||
425 | make | [] [] [] [] [] | | ||
426 | man-db | [] [] [] [] | | ||
427 | man-db-manpages | [] [] | | ||
428 | midi-instruments | [] [] [] [] [] [] [] [] [] | | ||
429 | minicom | [] [] [] [] [] | | ||
430 | mkisofs | [] [] [] | | ||
431 | myserver | [] [] [] [] | | ||
432 | nano | [] [] [] [] [] [] [] | | ||
433 | opcodes | [] [] [] [] [] | | ||
434 | parted | [] [] [] | | ||
435 | pies | [] | | ||
436 | pnmixer | [] [] | | ||
437 | popt | [] [] [] [] [] [] | | ||
438 | procps-ng | [] [] | | ||
439 | procps-ng-man | [] [] | | ||
440 | psmisc | [] [] [] [] [] [] [] | | ||
441 | pspp | [] [] [] | | ||
442 | pushover | () [] [] [] | | ||
443 | pwdutils | [] [] [] | | ||
444 | pyspread | [] [] [] | | ||
445 | radius | [] [] | | ||
446 | recode | [] [] [] [] [] [] [] | | ||
447 | recutils | [] [] [] [] | | ||
448 | rpm | [] [] [] [] [] | | ||
449 | rush | [] [] [] | | ||
450 | sarg | [] [] | | ||
451 | sed | [] [] [] [] [] [] [] [] | | ||
452 | sharutils | [] [] [] [] | | ||
453 | shishi | [] [] [] | | ||
454 | skribilo | [] [] [] | | ||
455 | solfege | [] [] [] [] [] [] [] [] | | ||
456 | solfege-manual | [] [] [] [] [] | | ||
457 | spotmachine | [] [] [] [] [] | | ||
458 | sudo | [] [] [] [] [] [] | | ||
459 | sudoers | [] [] [] [] [] [] | | ||
460 | sysstat | [] [] [] [] [] [] | | ||
461 | tar | [] [] [] [] [] [] [] | | ||
462 | texinfo | [] [] [] [] [] | | ||
463 | texinfo_document | [] [] [] [] | | ||
464 | tigervnc | [] [] [] [] [] [] | | ||
465 | tin | [] [] [] [] | | ||
466 | tin-man | [] | | ||
467 | tracgoogleappsa... | [] [] [] [] [] | | ||
468 | trader | [] [] [] [] [] [] | | ||
469 | util-linux | [] [] [] [] | | ||
470 | ve | [] [] [] [] [] | | ||
471 | vice | () () () | | ||
472 | vmm | [] [] | | ||
473 | vorbis-tools | [] [] [] [] | | ||
474 | wastesedge | [] | | ||
475 | wcd | [] [] [] [] | | ||
476 | wcd-man | [] | | ||
477 | wdiff | [] [] [] [] [] [] [] | | ||
478 | wget | [] [] [] [] [] [] | | ||
479 | wyslij-po | [] [] [] [] | | ||
480 | xboard | [] [] [] [] | | ||
481 | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | | ||
482 | xkeyboard-config | [] [] [] [] [] [] [] | | ||
483 | +--------------------------------------------------+ | ||
484 | da de el en en_GB en_ZA eo es et eu fa fi fr | ||
485 | 119 131 32 1 6 0 94 95 22 13 4 102 139 | ||
486 | |||
487 | ga gd gl gu he hi hr hu hy ia id is it ja ka kk | ||
488 | +-------------------------------------------------+ | ||
489 | a2ps | [] [] [] [] | | ||
490 | aegis | [] | | ||
491 | anubis | [] [] [] [] | | ||
492 | aspell | [] [] [] [] [] | | ||
493 | bash | [] [] [] [] | | ||
494 | bfd | [] [] | | ||
495 | binutils | [] [] [] | | ||
496 | bison | [] | | ||
497 | bison-runtime | [] [] [] [] [] [] [] [] | | ||
498 | buzztrax | | | ||
499 | ccd2cue | [] | | ||
500 | ccide | [] [] | | ||
501 | cflow | [] [] [] | | ||
502 | clisp | | | ||
503 | coreutils | [] [] | | ||
504 | cpio | [] [] [] [] [] [] | | ||
505 | cppi | [] [] [] [] [] | | ||
506 | cpplib | [] [] | | ||
507 | cryptsetup | [] | | ||
508 | datamash | | | ||
509 | denemo | [] | | ||
510 | dfarc | [] [] [] | | ||
511 | dialog | [] [] [] [] [] [] [] [] [] [] | | ||
512 | dico | | | ||
513 | diffutils | [] [] [] [] | | ||
514 | dink | [] | | ||
515 | direvent | [] | | ||
516 | doodle | [] [] | | ||
517 | dos2unix | [] [] | | ||
518 | dos2unix-man | | | ||
519 | e2fsprogs | [] [] | | ||
520 | enscript | [] [] [] | | ||
521 | exif | [] [] [] [] [] [] | | ||
522 | fetchmail | [] [] [] | | ||
523 | findutils | [] [] [] [] [] [] [] | | ||
524 | flex | [] | | ||
525 | freedink | [] [] [] [] | | ||
526 | fusionforge | | | ||
527 | gas | [] | | ||
528 | gawk | [] () [] | | ||
529 | gcal | | | ||
530 | gcc | | | ||
531 | gdbm | | | ||
532 | gettext-examples | [] [] [] [] [] [] [] | | ||
533 | gettext-runtime | [] [] [] [] [] [] [] | | ||
534 | gettext-tools | [] [] [] | | ||
535 | gjay | [] | | ||
536 | glunarclock | [] [] [] [] [] [] | | ||
537 | gnubiff | [] [] () | | ||
538 | gnubik | [] [] [] | | ||
539 | gnucash | () () () () () | | ||
540 | gnuchess | | | ||
541 | gnulib | [] [] [] [] [] | | ||
542 | gnunet | | | ||
543 | gnunet-gtk | | | ||
544 | gold | [] [] | | ||
545 | gphoto2 | [] [] [] [] | | ||
546 | gprof | [] [] [] [] | | ||
547 | gramadoir | [] [] [] | | ||
548 | grep | [] [] [] [] [] [] [] | | ||
549 | grub | [] [] [] | | ||
550 | gsasl | [] [] [] [] [] | | ||
551 | gss | [] [] [] [] [] | | ||
552 | gst-plugins-bad | [] [] [] | | ||
553 | gst-plugins-base | [] [] [] [] | | ||
554 | gst-plugins-good | [] [] [] [] [] [] | | ||
555 | gst-plugins-ugly | [] [] [] [] [] [] | | ||
556 | gstreamer | [] [] [] [] [] | | ||
557 | gtick | [] [] [] [] [] | | ||
558 | gtkam | [] [] [] [] [] | | ||
559 | gtkspell | [] [] [] [] [] [] [] [] [] [] | | ||
560 | guix | | | ||
561 | guix-packages | | | ||
562 | gutenprint | [] [] [] | | ||
563 | hello | [] [] [] [] [] | | ||
564 | help2man | [] [] [] | | ||
565 | help2man-texi | | | ||
566 | hylafax | [] | | ||
567 | idutils | [] [] | | ||
568 | iso_15924 | [] [] [] [] [] [] | | ||
569 | iso_3166 | [] [] [] [] [] [] [] [] [] [] [] [] [] | | ||
570 | iso_3166_2 | [] [] | | ||
571 | iso_4217 | [] [] [] [] [] [] | | ||
572 | iso_639 | [] [] [] [] [] [] [] [] [] | | ||
573 | iso_639_3 | [] [] | | ||
574 | iso_639_5 | | | ||
575 | jwhois | [] [] [] [] | | ||
576 | kbd | [] [] [] | | ||
577 | klavaro | [] [] [] [] [] | | ||
578 | ld | [] [] [] [] | | ||
579 | leafpad | [] [] [] [] [] [] [] () | | ||
580 | libc | [] [] [] [] [] | | ||
581 | libexif | [] | | ||
582 | libextractor | | | ||
583 | libgnutls | [] | | ||
584 | libgphoto2 | [] [] | | ||
585 | libgphoto2_port | [] [] | | ||
586 | libgsasl | [] [] [] [] | | ||
587 | libiconv | [] [] [] [] [] [] [] | | ||
588 | libidn | [] [] [] [] | | ||
589 | liferea | [] [] [] [] [] | | ||
590 | lilypond | [] | | ||
591 | lordsawar | | | ||
592 | lprng | [] | | ||
593 | lynx | [] [] [] [] | | ||
594 | m4 | [] [] [] [] [] | | ||
595 | mailfromd | | | ||
596 | mailutils | | | ||
597 | make | [] [] [] [] | | ||
598 | man-db | [] [] | | ||
599 | man-db-manpages | [] [] | | ||
600 | midi-instruments | [] [] [] [] [] [] [] [] [] | | ||
601 | minicom | [] [] [] | | ||
602 | mkisofs | [] [] | | ||
603 | myserver | [] | | ||
604 | nano | [] [] [] [] [] [] | | ||
605 | opcodes | [] [] [] | | ||
606 | parted | [] [] [] [] [] | | ||
607 | pies | | | ||
608 | pnmixer | [] [] | | ||
609 | popt | [] [] [] [] [] [] [] [] [] [] | | ||
610 | procps-ng | | | ||
611 | procps-ng-man | | | ||
612 | psmisc | [] [] [] [] | | ||
613 | pspp | [] [] | | ||
614 | pushover | [] | | ||
615 | pwdutils | [] | | ||
616 | pyspread | | | ||
617 | radius | [] | | ||
618 | recode | [] [] [] [] [] [] [] | | ||
619 | recutils | | | ||
620 | rpm | [] | | ||
621 | rush | [] | | ||
622 | sarg | | | ||
623 | sed | [] [] [] [] [] [] [] | | ||
624 | sharutils | | | ||
625 | shishi | | | ||
626 | skribilo | [] | | ||
627 | solfege | [] [] | | ||
628 | solfege-manual | | | ||
629 | spotmachine | | | ||
630 | sudo | [] [] [] [] | | ||
631 | sudoers | [] [] [] | | ||
632 | sysstat | [] [] [] [] | | ||
633 | tar | [] [] [] [] [] [] | | ||
634 | texinfo | [] [] [] | | ||
635 | texinfo_document | [] [] [] | | ||
636 | tigervnc | | | ||
637 | tin | | | ||
638 | tin-man | | | ||
639 | tracgoogleappsa... | [] [] [] [] | | ||
640 | trader | [] [] | | ||
641 | util-linux | [] | | ||
642 | ve | [] | | ||
643 | vice | () () | | ||
644 | vmm | | | ||
645 | vorbis-tools | [] [] | | ||
646 | wastesedge | [] | | ||
647 | wcd | | | ||
648 | wcd-man | | | ||
649 | wdiff | [] [] [] | | ||
650 | wget | [] [] [] [] | | ||
651 | wyslij-po | [] [] [] | | ||
652 | xboard | | | ||
653 | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | | ||
654 | xkeyboard-config | [] [] [] [] [] [] | | ||
655 | +-------------------------------------------------+ | ||
656 | ga gd gl gu he hi hr hu hy ia id is it ja ka kk | ||
657 | 35 2 47 4 8 2 60 71 2 6 81 11 87 57 0 3 | ||
658 | |||
659 | kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl | ||
660 | +--------------------------------------------------+ | ||
661 | a2ps | [] [] | | ||
662 | aegis | [] | | ||
663 | anubis | [] [] [] | | ||
664 | aspell | [] [] | | ||
665 | bash | [] [] | | ||
666 | bfd | | | ||
667 | binutils | | | ||
668 | bison | [] | | ||
669 | bison-runtime | [] [] [] [] [] [] | | ||
670 | buzztrax | | | ||
671 | ccd2cue | | | ||
672 | ccide | [] [] | | ||
673 | cflow | [] | | ||
674 | clisp | [] | | ||
675 | coreutils | [] [] | | ||
676 | cpio | [] | | ||
677 | cppi | | | ||
678 | cpplib | [] | | ||
679 | cryptsetup | [] | | ||
680 | datamash | [] [] | | ||
681 | denemo | | | ||
682 | dfarc | [] [] | | ||
683 | dialog | [] [] [] [] [] [] | | ||
684 | dico | | | ||
685 | diffutils | [] [] [] | | ||
686 | dink | [] | | ||
687 | direvent | [] | | ||
688 | doodle | [] | | ||
689 | dos2unix | [] [] | | ||
690 | dos2unix-man | [] | | ||
691 | e2fsprogs | [] | | ||
692 | enscript | [] | | ||
693 | exif | [] [] [] | | ||
694 | fetchmail | [] | | ||
695 | findutils | [] [] | | ||
696 | flex | [] | | ||
697 | freedink | [] [] | | ||
698 | fusionforge | | | ||
699 | gas | | | ||
700 | gawk | [] | | ||
701 | gcal | | | ||
702 | gcc | | | ||
703 | gdbm | | | ||
704 | gettext-examples | [] [] [] [] [] [] | | ||
705 | gettext-runtime | [] [] [] | | ||
706 | gettext-tools | [] | | ||
707 | gjay | | | ||
708 | glunarclock | [] [] | | ||
709 | gnubiff | [] | | ||
710 | gnubik | [] [] | | ||
711 | gnucash | () () () () () () () [] | | ||
712 | gnuchess | [] [] | | ||
713 | gnulib | [] | | ||
714 | gnunet | | | ||
715 | gnunet-gtk | | | ||
716 | gold | | | ||
717 | gphoto2 | [] | | ||
718 | gprof | [] [] | | ||
719 | gramadoir | [] | | ||
720 | grep | [] [] | | ||
721 | grub | [] [] [] | | ||
722 | gsasl | [] | | ||
723 | gss | | | ||
724 | gst-plugins-bad | [] [] [] | | ||
725 | gst-plugins-base | [] [] [] | | ||
726 | gst-plugins-good | [] [] [] [] | | ||
727 | gst-plugins-ugly | [] [] [] [] [] | | ||
728 | gstreamer | [] [] [] | | ||
729 | gtick | [] | | ||
730 | gtkam | [] [] | | ||
731 | gtkspell | [] [] [] [] [] [] [] | | ||
732 | guix | | | ||
733 | guix-packages | | | ||
734 | gutenprint | [] | | ||
735 | hello | [] [] [] | | ||
736 | help2man | [] | | ||
737 | help2man-texi | | | ||
738 | hylafax | [] | | ||
739 | idutils | [] | | ||
740 | iso_15924 | () [] [] | | ||
741 | iso_3166 | [] [] [] () [] [] [] [] [] [] | | ||
742 | iso_3166_2 | () [] | | ||
743 | iso_4217 | () [] [] [] | | ||
744 | iso_639 | [] [] () [] [] [] [] | | ||
745 | iso_639_3 | [] () [] | | ||
746 | iso_639_5 | () | | ||
747 | jwhois | [] [] | | ||
748 | kbd | [] | | ||
749 | klavaro | [] [] | | ||
750 | ld | | | ||
751 | leafpad | [] [] [] [] [] | | ||
752 | libc | [] [] | | ||
753 | libexif | [] | | ||
754 | libextractor | [] | | ||
755 | libgnutls | [] [] | | ||
756 | libgphoto2 | [] | | ||
757 | libgphoto2_port | [] | | ||
758 | libgsasl | [] | | ||
759 | libiconv | [] [] | | ||
760 | libidn | [] | | ||
761 | liferea | [] [] [] | | ||
762 | lilypond | [] | | ||
763 | lordsawar | | | ||
764 | lprng | | | ||
765 | lynx | [] | | ||
766 | m4 | [] | | ||
767 | mailfromd | | | ||
768 | mailutils | | | ||
769 | make | [] [] | | ||
770 | man-db | [] | | ||
771 | man-db-manpages | [] | | ||
772 | midi-instruments | [] [] [] [] [] [] [] | | ||
773 | minicom | [] | | ||
774 | mkisofs | [] | | ||
775 | myserver | | | ||
776 | nano | [] [] [] | | ||
777 | opcodes | [] | | ||
778 | parted | [] [] | | ||
779 | pies | | | ||
780 | pnmixer | [] | | ||
781 | popt | [] [] [] [] [] | | ||
782 | procps-ng | | | ||
783 | procps-ng-man | | | ||
784 | psmisc | [] | | ||
785 | pspp | [] [] | | ||
786 | pushover | | | ||
787 | pwdutils | [] | | ||
788 | pyspread | | | ||
789 | radius | [] | | ||
790 | recode | [] [] | | ||
791 | recutils | [] | | ||
792 | rpm | [] | | ||
793 | rush | [] | | ||
794 | sarg | | | ||
795 | sed | [] [] | | ||
796 | sharutils | [] | | ||
797 | shishi | | | ||
798 | skribilo | | | ||
799 | solfege | [] [] | | ||
800 | solfege-manual | [] | | ||
801 | spotmachine | [] | | ||
802 | sudo | [] [] [] | | ||
803 | sudoers | [] [] [] | | ||
804 | sysstat | [] [] | | ||
805 | tar | [] [] [] | | ||
806 | texinfo | [] | | ||
807 | texinfo_document | [] | | ||
808 | tigervnc | [] | | ||
809 | tin | | | ||
810 | tin-man | | | ||
811 | tracgoogleappsa... | [] [] [] | | ||
812 | trader | [] | | ||
813 | util-linux | [] | | ||
814 | ve | [] | | ||
815 | vice | [] | | ||
816 | vmm | [] | | ||
817 | vorbis-tools | [] | | ||
818 | wastesedge | [] | | ||
819 | wcd | [] | | ||
820 | wcd-man | [] | | ||
821 | wdiff | [] | | ||
822 | wget | [] [] | | ||
823 | wyslij-po | [] | | ||
824 | xboard | [] | | ||
825 | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] | | ||
826 | xkeyboard-config | [] [] [] | | ||
827 | +--------------------------------------------------+ | ||
828 | kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl | ||
829 | 5 15 4 6 0 13 23 3 3 3 4 11 2 42 1 125 | ||
830 | |||
831 | nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr | ||
832 | +------------------------------------------------+ | ||
833 | a2ps | [] [] [] [] [] [] [] | | ||
834 | aegis | [] [] | | ||
835 | anubis | [] [] [] | | ||
836 | aspell | [] [] [] [] [] [] [] | | ||
837 | bash | [] [] [] [] [] [] | | ||
838 | bfd | [] [] | | ||
839 | binutils | [] [] | | ||
840 | bison | [] [] [] | | ||
841 | bison-runtime | [] [] [] [] [] [] [] [] | | ||
842 | buzztrax | [] | | ||
843 | ccd2cue | [] [] | | ||
844 | ccide | [] [] [] | | ||
845 | cflow | [] [] [] | | ||
846 | clisp | [] | | ||
847 | coreutils | [] [] [] [] | | ||
848 | cpio | [] [] [] | | ||
849 | cppi | [] [] [] | | ||
850 | cpplib | [] [] [] | | ||
851 | cryptsetup | [] [] [] | | ||
852 | datamash | [] [] | | ||
853 | denemo | | | ||
854 | dfarc | [] [] [] | | ||
855 | dialog | [] [] [] [] [] [] [] | | ||
856 | dico | [] | | ||
857 | diffutils | [] [] [] | | ||
858 | dink | | | ||
859 | direvent | [] [] [] | | ||
860 | doodle | [] [] | | ||
861 | dos2unix | [] [] [] [] | | ||
862 | dos2unix-man | [] [] | | ||
863 | e2fsprogs | [] | | ||
864 | enscript | [] [] [] [] [] [] | | ||
865 | exif | [] [] [] [] [] [] | | ||
866 | fetchmail | [] [] [] | | ||
867 | findutils | [] [] [] [] [] [] | | ||
868 | flex | [] [] [] [] [] | | ||
869 | freedink | [] [] [] [] [] | | ||
870 | fusionforge | | | ||
871 | gas | | | ||
872 | gawk | [] | | ||
873 | gcal | | | ||
874 | gcc | | | ||
875 | gdbm | [] [] [] | | ||
876 | gettext-examples | [] [] [] [] [] [] [] [] | | ||
877 | gettext-runtime | [] [] [] [] [] [] [] [] [] | | ||
878 | gettext-tools | [] [] [] [] [] [] [] | | ||
879 | gjay | [] | | ||
880 | glunarclock | [] [] [] [] [] [] | | ||
881 | gnubiff | [] | | ||
882 | gnubik | [] [] [] [] | | ||
883 | gnucash | () () () () () [] | | ||
884 | gnuchess | [] [] | | ||
885 | gnulib | [] [] [] [] [] | | ||
886 | gnunet | | | ||
887 | gnunet-gtk | | | ||
888 | gold | | | ||
889 | gphoto2 | [] [] [] [] [] | | ||
890 | gprof | [] [] [] [] | | ||
891 | gramadoir | [] [] | | ||
892 | grep | [] [] [] [] [] [] | | ||
893 | grub | [] [] [] [] [] | | ||
894 | gsasl | [] [] [] | | ||
895 | gss | [] [] [] [] | | ||
896 | gst-plugins-bad | [] [] [] [] [] | | ||
897 | gst-plugins-base | [] [] [] [] [] [] | | ||
898 | gst-plugins-good | [] [] [] [] [] [] [] | | ||
899 | gst-plugins-ugly | [] [] [] [] [] [] [] | | ||
900 | gstreamer | [] [] [] [] [] [] [] | | ||
901 | gtick | [] [] [] [] [] | | ||
902 | gtkam | [] [] [] [] [] [] | | ||
903 | gtkspell | [] [] [] [] [] [] [] [] [] | | ||
904 | guix | | | ||
905 | guix-packages | | | ||
906 | gutenprint | [] [] | | ||
907 | hello | [] [] [] [] [] [] | | ||
908 | help2man | [] [] [] [] | | ||
909 | help2man-texi | [] | | ||
910 | hylafax | | | ||
911 | idutils | [] [] [] | | ||
912 | iso_15924 | [] () [] [] [] [] | | ||
913 | iso_3166 | [] [] [] [] () [] [] [] [] [] [] [] [] | | ||
914 | iso_3166_2 | [] () [] | | ||
915 | iso_4217 | [] [] () [] [] [] [] [] | | ||
916 | iso_639 | [] [] [] () [] [] [] [] [] [] | | ||
917 | iso_639_3 | [] () | | ||
918 | iso_639_5 | () [] | | ||
919 | jwhois | [] [] [] [] | | ||
920 | kbd | [] [] | | ||
921 | klavaro | [] [] [] [] [] | | ||
922 | ld | | | ||
923 | leafpad | [] [] [] [] [] [] [] [] | | ||
924 | libc | [] [] [] | | ||
925 | libexif | [] () [] | | ||
926 | libextractor | [] | | ||
927 | libgnutls | [] | | ||
928 | libgphoto2 | [] | | ||
929 | libgphoto2_port | [] [] [] [] [] | | ||
930 | libgsasl | [] [] [] [] | | ||
931 | libiconv | [] [] [] [] [] | | ||
932 | libidn | [] [] [] | | ||
933 | liferea | [] [] [] [] () [] [] | | ||
934 | lilypond | | | ||
935 | lordsawar | | | ||
936 | lprng | [] | | ||
937 | lynx | [] [] | | ||
938 | m4 | [] [] [] [] [] | | ||
939 | mailfromd | [] | | ||
940 | mailutils | [] | | ||
941 | make | [] [] [] | | ||
942 | man-db | [] [] [] | | ||
943 | man-db-manpages | [] [] [] | | ||
944 | midi-instruments | [] [] [] [] [] [] [] [] | | ||
945 | minicom | [] [] [] [] | | ||
946 | mkisofs | [] [] [] | | ||
947 | myserver | [] [] | | ||
948 | nano | [] [] [] [] [] [] | | ||
949 | opcodes | | | ||
950 | parted | [] [] [] [] [] [] | | ||
951 | pies | [] | | ||
952 | pnmixer | [] | | ||
953 | popt | [] [] [] [] [] [] | | ||
954 | procps-ng | [] | | ||
955 | procps-ng-man | [] | | ||
956 | psmisc | [] [] [] [] | | ||
957 | pspp | [] [] | | ||
958 | pushover | | | ||
959 | pwdutils | [] | | ||
960 | pyspread | [] [] | | ||
961 | radius | [] [] | | ||
962 | recode | [] [] [] [] [] [] [] [] | | ||
963 | recutils | [] [] | | ||
964 | rpm | [] | | ||
965 | rush | [] [] [] | | ||
966 | sarg | [] [] | | ||
967 | sed | [] [] [] [] [] [] [] [] | | ||
968 | sharutils | [] [] [] | | ||
969 | shishi | [] [] | | ||
970 | skribilo | [] | | ||
971 | solfege | [] [] [] | | ||
972 | solfege-manual | [] [] | | ||
973 | spotmachine | [] [] | | ||
974 | sudo | [] [] [] [] [] [] | | ||
975 | sudoers | [] [] [] [] | | ||
976 | sysstat | [] [] [] [] [] | | ||
977 | tar | [] [] [] [] [] | | ||
978 | texinfo | [] [] [] | | ||
979 | texinfo_document | [] [] | | ||
980 | tigervnc | [] [] [] | | ||
981 | tin | [] | | ||
982 | tin-man | | | ||
983 | tracgoogleappsa... | [] [] [] [] | | ||
984 | trader | [] [] | | ||
985 | util-linux | [] [] | | ||
986 | ve | [] [] [] | | ||
987 | vice | | | ||
988 | vmm | | | ||
989 | vorbis-tools | [] [] [] | | ||
990 | wastesedge | | | ||
991 | wcd | | | ||
992 | wcd-man | | | ||
993 | wdiff | [] [] [] [] [] | | ||
994 | wget | [] [] [] [] [] | | ||
995 | wyslij-po | [] [] [] [] | | ||
996 | xboard | [] [] [] | | ||
997 | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] | | ||
998 | xkeyboard-config | [] [] [] [] | | ||
999 | +------------------------------------------------+ | ||
1000 | nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr | ||
1001 | 7 3 6 114 1 12 88 32 82 3 40 45 7 101 | ||
1002 | |||
1003 | sv sw ta te tg th tr uk ur vi wa wo zh_CN | ||
1004 | +----------------------------------------------+ | ||
1005 | a2ps | [] [] [] [] [] | | ||
1006 | aegis | [] | | ||
1007 | anubis | [] [] [] [] | | ||
1008 | aspell | [] [] [] [] [] | | ||
1009 | bash | [] [] [] [] | | ||
1010 | bfd | [] [] [] | | ||
1011 | binutils | [] [] [] | | ||
1012 | bison | [] [] [] [] | | ||
1013 | bison-runtime | [] [] [] [] [] [] | | ||
1014 | buzztrax | [] [] [] | | ||
1015 | ccd2cue | [] [] [] | | ||
1016 | ccide | [] [] [] [] | | ||
1017 | cflow | [] [] [] [] | | ||
1018 | clisp | | | ||
1019 | coreutils | [] [] [] | | ||
1020 | cpio | [] [] [] [] [] | | ||
1021 | cppi | [] [] [] [] | | ||
1022 | cpplib | [] [] [] [] [] | | ||
1023 | cryptsetup | [] [] [] | | ||
1024 | datamash | [] [] [] | | ||
1025 | denemo | [] | | ||
1026 | dfarc | [] [] | | ||
1027 | dialog | [] [] [] [] [] [] | | ||
1028 | dico | [] | | ||
1029 | diffutils | [] [] [] [] [] | | ||
1030 | dink | [] | | ||
1031 | direvent | [] [] | | ||
1032 | doodle | [] [] | | ||
1033 | dos2unix | [] [] [] [] | | ||
1034 | dos2unix-man | [] [] [] | | ||
1035 | e2fsprogs | [] [] [] [] | | ||
1036 | enscript | [] [] [] [] | | ||
1037 | exif | [] [] [] [] [] | | ||
1038 | fetchmail | [] [] [] [] | | ||
1039 | findutils | [] [] [] [] [] | | ||
1040 | flex | [] [] [] [] | | ||
1041 | freedink | [] [] [] | | ||
1042 | fusionforge | | | ||
1043 | gas | [] | | ||
1044 | gawk | [] [] [] | | ||
1045 | gcal | [] [] [] | | ||
1046 | gcc | [] | | ||
1047 | gdbm | [] [] | | ||
1048 | gettext-examples | [] [] [] [] [] | | ||
1049 | gettext-runtime | [] [] [] [] [] | | ||
1050 | gettext-tools | [] [] [] [] [] | | ||
1051 | gjay | [] [] [] | | ||
1052 | glunarclock | [] [] [] [] | | ||
1053 | gnubiff | [] [] | | ||
1054 | gnubik | [] [] [] [] | | ||
1055 | gnucash | () () () () [] | | ||
1056 | gnuchess | [] [] [] | | ||
1057 | gnulib | [] [] [] [] | | ||
1058 | gnunet | | | ||
1059 | gnunet-gtk | | | ||
1060 | gold | [] [] | | ||
1061 | gphoto2 | [] [] [] [] | | ||
1062 | gprof | [] [] [] [] | | ||
1063 | gramadoir | [] [] [] | | ||
1064 | grep | [] [] [] [] [] | | ||
1065 | grub | [] [] [] [] | | ||
1066 | gsasl | [] [] [] [] | | ||
1067 | gss | [] [] [] | | ||
1068 | gst-plugins-bad | [] [] [] [] [] | | ||
1069 | gst-plugins-base | [] [] [] [] [] | | ||
1070 | gst-plugins-good | [] [] [] [] [] | | ||
1071 | gst-plugins-ugly | [] [] [] [] [] | | ||
1072 | gstreamer | [] [] [] [] [] | | ||
1073 | gtick | [] [] [] | | ||
1074 | gtkam | [] [] [] [] | | ||
1075 | gtkspell | [] [] [] [] [] [] [] | | ||
1076 | guix | | | ||
1077 | guix-packages | | | ||
1078 | gutenprint | [] [] [] [] | | ||
1079 | hello | [] [] [] [] [] [] | | ||
1080 | help2man | [] [] [] | | ||
1081 | help2man-texi | [] | | ||
1082 | hylafax | [] | | ||
1083 | idutils | [] [] [] | | ||
1084 | iso_15924 | [] () [] [] () [] | | ||
1085 | iso_3166 | [] [] () [] [] () [] [] | | ||
1086 | iso_3166_2 | () [] [] () [] | | ||
1087 | iso_4217 | [] () [] [] () [] | | ||
1088 | iso_639 | [] [] [] () [] [] () [] [] | | ||
1089 | iso_639_3 | [] () [] [] () | | ||
1090 | iso_639_5 | () [] () | | ||
1091 | jwhois | [] [] [] [] | | ||
1092 | kbd | [] [] [] [] | | ||
1093 | klavaro | [] [] [] [] [] [] | | ||
1094 | ld | [] [] [] [] [] | | ||
1095 | leafpad | [] [] [] [] [] [] | | ||
1096 | libc | [] [] [] [] [] | | ||
1097 | libexif | [] [] () | | ||
1098 | libextractor | [] [] | | ||
1099 | libgnutls | [] [] [] [] | | ||
1100 | libgphoto2 | [] [] [] | | ||
1101 | libgphoto2_port | [] [] [] [] | | ||
1102 | libgsasl | [] [] [] [] | | ||
1103 | libiconv | [] [] [] [] [] | | ||
1104 | libidn | () [] [] [] | | ||
1105 | liferea | [] [] [] [] [] | | ||
1106 | lilypond | [] | | ||
1107 | lordsawar | | | ||
1108 | lprng | [] | | ||
1109 | lynx | [] [] [] [] | | ||
1110 | m4 | [] [] [] | | ||
1111 | mailfromd | [] [] | | ||
1112 | mailutils | [] | | ||
1113 | make | [] [] [] [] | | ||
1114 | man-db | [] [] [] | | ||
1115 | man-db-manpages | [] [] | | ||
1116 | midi-instruments | [] [] [] [] [] [] | | ||
1117 | minicom | [] [] | | ||
1118 | mkisofs | [] [] [] | | ||
1119 | myserver | [] | | ||
1120 | nano | [] [] [] [] | | ||
1121 | opcodes | [] [] [] | | ||
1122 | parted | [] [] [] [] [] | | ||
1123 | pies | [] [] | | ||
1124 | pnmixer | [] [] [] | | ||
1125 | popt | [] [] [] [] [] [] [] | | ||
1126 | procps-ng | [] [] | | ||
1127 | procps-ng-man | [] | | ||
1128 | psmisc | [] [] [] [] | | ||
1129 | pspp | [] [] [] | | ||
1130 | pushover | [] | | ||
1131 | pwdutils | [] [] | | ||
1132 | pyspread | [] | | ||
1133 | radius | [] [] | | ||
1134 | recode | [] [] [] [] | | ||
1135 | recutils | [] [] [] | | ||
1136 | rpm | [] [] [] [] | | ||
1137 | rush | [] [] | | ||
1138 | sarg | | | ||
1139 | sed | [] [] [] [] [] | | ||
1140 | sharutils | [] [] [] [] | | ||
1141 | shishi | [] [] | | ||
1142 | skribilo | [] [] | | ||
1143 | solfege | [] [] [] [] | | ||
1144 | solfege-manual | [] | | ||
1145 | spotmachine | [] [] [] | | ||
1146 | sudo | [] [] [] [] [] | | ||
1147 | sudoers | [] [] [] [] | | ||
1148 | sysstat | [] [] [] [] [] | | ||
1149 | tar | [] [] [] [] [] | | ||
1150 | texinfo | [] [] [] | | ||
1151 | texinfo_document | [] | | ||
1152 | tigervnc | [] [] [] | | ||
1153 | tin | [] | | ||
1154 | tin-man | | | ||
1155 | tracgoogleappsa... | [] [] [] [] [] | | ||
1156 | trader | [] | | ||
1157 | util-linux | [] [] [] [] | | ||
1158 | ve | [] [] [] [] | | ||
1159 | vice | () () | | ||
1160 | vmm | | | ||
1161 | vorbis-tools | [] [] | | ||
1162 | wastesedge | | | ||
1163 | wcd | [] [] [] | | ||
1164 | wcd-man | [] | | ||
1165 | wdiff | [] [] [] [] | | ||
1166 | wget | [] [] [] | | ||
1167 | wyslij-po | [] [] | | ||
1168 | xboard | [] [] | | ||
1169 | xdg-user-dirs | [] [] [] [] [] [] [] [] | | ||
1170 | xkeyboard-config | [] [] [] [] | | ||
1171 | +----------------------------------------------+ | ||
1172 | sv sw ta te tg th tr uk ur vi wa wo zh_CN | ||
1173 | 106 1 4 3 0 13 51 115 1 125 7 1 100 | ||
1174 | |||
1175 | zh_HK zh_TW | ||
1176 | +-------------+ | ||
1177 | a2ps | | 30 | ||
1178 | aegis | | 9 | ||
1179 | anubis | | 19 | ||
1180 | aspell | | 29 | ||
1181 | bash | [] | 23 | ||
1182 | bfd | | 11 | ||
1183 | binutils | | 12 | ||
1184 | bison | [] | 18 | ||
1185 | bison-runtime | [] | 38 | ||
1186 | buzztrax | | 9 | ||
1187 | ccd2cue | | 10 | ||
1188 | ccide | | 17 | ||
1189 | cflow | | 16 | ||
1190 | clisp | | 10 | ||
1191 | coreutils | | 18 | ||
1192 | cpio | | 20 | ||
1193 | cppi | | 17 | ||
1194 | cpplib | [] | 19 | ||
1195 | cryptsetup | | 14 | ||
1196 | datamash | | 11 | ||
1197 | denemo | | 5 | ||
1198 | dfarc | | 17 | ||
1199 | dialog | [] | 42 | ||
1200 | dico | | 6 | ||
1201 | diffutils | | 22 | ||
1202 | dink | | 10 | ||
1203 | direvent | | 11 | ||
1204 | doodle | | 12 | ||
1205 | dos2unix | [] | 18 | ||
1206 | dos2unix-man | | 9 | ||
1207 | e2fsprogs | | 15 | ||
1208 | enscript | | 21 | ||
1209 | exif | | 27 | ||
1210 | fetchmail | | 19 | ||
1211 | findutils | | 29 | ||
1212 | flex | [] | 19 | ||
1213 | freedink | | 24 | ||
1214 | fusionforge | | 3 | ||
1215 | gas | | 5 | ||
1216 | gawk | | 13 | ||
1217 | gcal | | 8 | ||
1218 | gcc | | 2 | ||
1219 | gdbm | | 10 | ||
1220 | gettext-examples | [] [] | 40 | ||
1221 | gettext-runtime | [] [] | 35 | ||
1222 | gettext-tools | [] | 24 | ||
1223 | gjay | | 9 | ||
1224 | glunarclock | [] | 27 | ||
1225 | gnubiff | | 9 | ||
1226 | gnubik | | 19 | ||
1227 | gnucash | () | 6 | ||
1228 | gnuchess | | 11 | ||
1229 | gnulib | | 23 | ||
1230 | gnunet | | 1 | ||
1231 | gnunet-gtk | | 1 | ||
1232 | gold | | 7 | ||
1233 | gphoto2 | [] | 19 | ||
1234 | gprof | | 21 | ||
1235 | gramadoir | | 14 | ||
1236 | grep | [] | 31 | ||
1237 | grub | | 21 | ||
1238 | gsasl | [] | 19 | ||
1239 | gss | | 17 | ||
1240 | gst-plugins-bad | | 21 | ||
1241 | gst-plugins-base | | 27 | ||
1242 | gst-plugins-good | | 32 | ||
1243 | gst-plugins-ugly | | 34 | ||
1244 | gstreamer | [] | 32 | ||
1245 | gtick | | 19 | ||
1246 | gtkam | | 24 | ||
1247 | gtkspell | [] [] | 48 | ||
1248 | guix | | 2 | ||
1249 | guix-packages | | 0 | ||
1250 | gutenprint | | 15 | ||
1251 | hello | [] | 30 | ||
1252 | help2man | | 18 | ||
1253 | help2man-texi | | 5 | ||
1254 | hylafax | | 5 | ||
1255 | idutils | | 14 | ||
1256 | iso_15924 | [] | 23 | ||
1257 | iso_3166 | [] [] | 58 | ||
1258 | iso_3166_2 | | 9 | ||
1259 | iso_4217 | [] [] | 28 | ||
1260 | iso_639 | [] [] | 46 | ||
1261 | iso_639_3 | | 10 | ||
1262 | iso_639_5 | | 2 | ||
1263 | jwhois | [] | 20 | ||
1264 | kbd | | 17 | ||
1265 | klavaro | | 30 | ||
1266 | ld | [] | 15 | ||
1267 | leafpad | [] | 39 | ||
1268 | libc | [] | 24 | ||
1269 | libexif | | 10 | ||
1270 | libextractor | | 5 | ||
1271 | libgnutls | | 13 | ||
1272 | libgphoto2 | | 10 | ||
1273 | libgphoto2_port | [] | 19 | ||
1274 | libgsasl | | 18 | ||
1275 | libiconv | [] | 29 | ||
1276 | libidn | | 17 | ||
1277 | liferea | | 29 | ||
1278 | lilypond | | 11 | ||
1279 | lordsawar | | 3 | ||
1280 | lprng | | 3 | ||
1281 | lynx | | 19 | ||
1282 | m4 | [] | 22 | ||
1283 | mailfromd | | 4 | ||
1284 | mailutils | | 6 | ||
1285 | make | | 19 | ||
1286 | man-db | | 15 | ||
1287 | man-db-manpages | | 10 | ||
1288 | midi-instruments | [] | 43 | ||
1289 | minicom | [] | 17 | ||
1290 | mkisofs | | 13 | ||
1291 | myserver | | 9 | ||
1292 | nano | [] | 30 | ||
1293 | opcodes | | 12 | ||
1294 | parted | [] | 23 | ||
1295 | pies | | 4 | ||
1296 | pnmixer | | 9 | ||
1297 | popt | [] | 36 | ||
1298 | procps-ng | | 5 | ||
1299 | procps-ng-man | | 4 | ||
1300 | psmisc | [] | 22 | ||
1301 | pspp | | 13 | ||
1302 | pushover | | 6 | ||
1303 | pwdutils | | 8 | ||
1304 | pyspread | | 6 | ||
1305 | radius | | 9 | ||
1306 | recode | | 31 | ||
1307 | recutils | | 10 | ||
1308 | rpm | [] | 13 | ||
1309 | rush | | 10 | ||
1310 | sarg | | 4 | ||
1311 | sed | [] | 35 | ||
1312 | sharutils | | 13 | ||
1313 | shishi | | 7 | ||
1314 | skribilo | | 7 | ||
1315 | solfege | | 21 | ||
1316 | solfege-manual | | 9 | ||
1317 | spotmachine | | 11 | ||
1318 | sudo | | 26 | ||
1319 | sudoers | | 22 | ||
1320 | sysstat | | 23 | ||
1321 | tar | [] | 30 | ||
1322 | texinfo | | 17 | ||
1323 | texinfo_document | | 13 | ||
1324 | tigervnc | | 14 | ||
1325 | tin | [] | 7 | ||
1326 | tin-man | | 1 | ||
1327 | tracgoogleappsa... | [] | 22 | ||
1328 | trader | | 12 | ||
1329 | util-linux | | 13 | ||
1330 | ve | | 14 | ||
1331 | vice | | 1 | ||
1332 | vmm | | 3 | ||
1333 | vorbis-tools | | 13 | ||
1334 | wastesedge | | 3 | ||
1335 | wcd | | 8 | ||
1336 | wcd-man | | 3 | ||
1337 | wdiff | [] | 23 | ||
1338 | wget | | 21 | ||
1339 | wyslij-po | | 14 | ||
1340 | xboard | | 10 | ||
1341 | xdg-user-dirs | [] [] | 68 | ||
1342 | xkeyboard-config | [] | 28 | ||
1343 | +-------------+ | ||
1344 | 89 teams zh_HK zh_TW | ||
1345 | 166 domains 7 42 2809 | ||
1346 | |||
1347 | Some counters in the preceding matrix are higher than the number of | ||
1348 | visible blocks let us expect. This is because a few extra PO files are | ||
1349 | used for implementing regional variants of languages, or language | ||
1350 | dialects. | ||
1351 | |||
1352 | For a PO file in the matrix above to be effective, the package to | ||
1353 | which it applies should also have been internationalized and distributed | ||
1354 | as such by its maintainer. There might be an observable lag between the | ||
1355 | mere existence a PO file and its wide availability in a distribution. | ||
1356 | |||
1357 | If Jun 2014 seems to be old, you may fetch a more recent copy of this | ||
1358 | 'ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix | ||
1359 | with full percentage details can be found at | ||
1360 | 'http://translationproject.org/extra/matrix.html'. | ||
1361 | |||
1362 | 1.5 Using 'gettext' in new packages | ||
1363 | =================================== | ||
1364 | |||
1365 | If you are writing a freely available program and want to | ||
1366 | internationalize it you are welcome to use GNU 'gettext' in your | ||
1367 | package. Of course you have to respect the GNU Lesser General Public | ||
1368 | License which covers the use of the GNU 'gettext' library. This means | ||
1369 | in particular that even non-free programs can use 'libintl' as a shared | ||
1370 | library, whereas only free software can use 'libintl' as a static | ||
1371 | library or use modified versions of 'libintl'. | ||
1372 | |||
1373 | Once the sources are changed appropriately and the setup can handle | ||
1374 | the use of 'gettext' the only thing missing are the translations. The | ||
1375 | Free Translation Project is also available for packages which are not | ||
1376 | developed inside the GNU project. Therefore the information given above | ||
1377 | applies also for every other Free Software Project. Contact | ||
1378 | 'coordinator@translationproject.org' to make the '.pot' files available | ||
1379 | to the translation teams. | ||