ABOUT-NLS 92 KB

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