You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ABOUT-NLS 53KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768
  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 will gradually become able to speak many languages.
  6. A few packages already provide translations for their messages.
  7. If you found this `ABOUT-NLS' file inside a distribution, you may
  8. assume that the distributed package does use GNU `gettext' internally,
  9. itself available at your nearest GNU archive site. But you do _not_
  10. need to install GNU `gettext' prior to configuring, installing or using
  11. this package with messages translated.
  12. Installers will find here some useful hints. These notes also
  13. explain how users should proceed for getting the programs to use the
  14. available translations. They tell how people wanting to contribute and
  15. work at translations should contact the appropriate team.
  16. When reporting bugs in the `intl/' directory or bugs which may be
  17. related to internationalization, you should tell about the version of
  18. `gettext' which is used. The information can be found in the
  19. `intl/VERSION' file, in internationalized packages.
  20. Quick configuration advice
  21. ==========================
  22. If you want to exploit the full power of internationalization, you
  23. should configure it using
  24. ./configure --with-included-gettext
  25. to force usage of internationalizing routines provided within this
  26. package, despite the existence of internationalizing capabilities in the
  27. operating system where this package is being installed. So far, only
  28. the `gettext' implementation in the GNU C library version 2 provides as
  29. many features (such as locale alias, message inheritance, automatic
  30. charset conversion or plural form handling) as the implementation here.
  31. It is also not possible to offer this additional functionality on top
  32. of a `catgets' implementation. Future versions of GNU `gettext' will
  33. very likely convey even more functionality. So it might be a good idea
  34. to change to GNU `gettext' as soon as possible.
  35. So you need _not_ provide this option if you are using GNU libc 2 or
  36. you have installed a recent copy of the GNU gettext package with the
  37. included `libintl'.
  38. INSTALL Matters
  39. ===============
  40. Some packages are "localizable" when properly installed; the programs
  41. they contain can be made to speak your own native language. Most such
  42. packages use GNU `gettext'. Other packages have their own ways to
  43. internationalization, predating GNU `gettext'.
  44. By default, this package will be installed to allow translation of
  45. messages. It will automatically detect whether the system already
  46. provides the GNU `gettext' functions. If not, the GNU `gettext' own
  47. library will be used. This library is wholly contained within this
  48. package, usually in the `intl/' subdirectory, so prior installation of
  49. the GNU `gettext' package is _not_ required. Installers may use
  50. special options at configuration time for changing the default
  51. behaviour. The commands:
  52. ./configure --with-included-gettext
  53. ./configure --disable-nls
  54. will respectively bypass any pre-existing `gettext' to use the
  55. internationalizing routines provided within this package, or else,
  56. _totally_ disable translation of messages.
  57. When you already have GNU `gettext' installed on your system and run
  58. configure without an option for your new package, `configure' will
  59. probably detect the previously built and installed `libintl.a' file and
  60. will decide to use this. This might be not what is desirable. You
  61. should use the more recent version of the GNU `gettext' library. I.e.
  62. if the file `intl/VERSION' shows that the library which comes with this
  63. package is more recent, you should use
  64. ./configure --with-included-gettext
  65. to prevent auto-detection.
  66. The configuration process will not test for the `catgets' function
  67. and therefore it will not be used. The reason is that even an
  68. emulation of `gettext' on top of `catgets' could not provide all the
  69. extensions of the GNU `gettext' library.
  70. Internationalized packages have usually many `po/LL.po' files, where
  71. LL gives an ISO 639 two-letter code identifying the language. Unless
  72. translations have been forbidden at `configure' time by using the
  73. `--disable-nls' switch, all available translations are installed
  74. together with the package. However, the environment variable `LINGUAS'
  75. may be set, prior to configuration, to limit the installed set.
  76. `LINGUAS' should then contain a space separated list of two-letter
  77. codes, stating which languages are allowed.
  78. Using This Package
  79. ==================
  80. As a user, if your language has been installed for this package, you
  81. only have to set the `LANG' environment variable to the appropriate
  82. `LL_CC' combination. Here `LL' is an ISO 639 two-letter language code,
  83. and `CC' is an ISO 3166 two-letter country code. For example, let's
  84. suppose that you speak German and live in Germany. At the shell
  85. prompt, merely execute `setenv LANG de_DE' (in `csh'),
  86. `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
  87. This can be done from your `.login' or `.profile' file, once and for
  88. all.
  89. You might think that the country code specification is redundant.
  90. But in fact, some languages have dialects in different countries. For
  91. example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The
  92. country code serves to distinguish the dialects.
  93. The locale naming convention of `LL_CC', with `LL' denoting the
  94. language and `CC' denoting the country, is the one use on systems based
  95. on GNU libc. On other systems, some variations of this scheme are
  96. used, such as `LL' or `LL_CC.ENCODING'. You can get the list of
  97. locales supported by your system for your country by running the command
  98. `locale -a | grep '^LL''.
  99. Not all programs have translations for all languages. By default, an
  100. English message is shown in place of a nonexistent translation. If you
  101. understand other languages, you can set up a priority list of languages.
  102. This is done through a different environment variable, called
  103. `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG'
  104. for the purpose of message handling, but you still need to have `LANG'
  105. set to the primary language; this is required by other parts of the
  106. system libraries. For example, some Swedish users who would rather
  107. read translations in German than English for when Swedish is not
  108. available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
  109. Special advice for Norwegian users: The language code for Norwegian
  110. bokma*l changed from `no' to `nb' recently (in 2003). During the
  111. transition period, while some message catalogs for this language are
  112. installed under `nb' and some older ones under `no', it's recommended
  113. for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
  114. older translations are used.
  115. In the `LANGUAGE' environment variable, but not in the `LANG'
  116. environment variable, `LL_CC' combinations can be abbreviated as `LL'
  117. to denote the language's main dialect. For example, `de' is equivalent
  118. to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
  119. (Portuguese as spoken in Portugal) in this context.
  120. Translating Teams
  121. =================
  122. For the Free Translation Project to be a success, we need interested
  123. people who like their own language and write it well, and who are also
  124. able to synergize with other translators speaking the same language.
  125. Each translation team has its own mailing list. The up-to-date list of
  126. teams can be found at the Free Translation Project's homepage,
  127. `http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
  128. area.
  129. If you'd like to volunteer to _work_ at translating messages, you
  130. should become a member of the translating team for your own language.
  131. The subscribing address is _not_ the same as the list itself, it has
  132. `-request' appended. For example, speakers of Swedish can send a
  133. message to `sv-request@li.org', having this message body:
  134. subscribe
  135. Keep in mind that team members are expected to participate
  136. _actively_ in translations, or at solving translational difficulties,
  137. rather than merely lurking around. If your team does not exist yet and
  138. you want to start one, or if you are unsure about what to do or how to
  139. get started, please write to `translation@iro.umontreal.ca' to reach the
  140. coordinator for all translator teams.
  141. The English team is special. It works at improving and uniformizing
  142. the terminology in use. Proven linguistic skill are praised more than
  143. programming skill, here.
  144. Available Packages
  145. ==================
  146. Languages are not equally supported in all packages. The following
  147. matrix shows the current state of internationalization, as of January
  148. 2004. The matrix shows, in regard of each package, for which languages
  149. PO files have been submitted to translation coordination, with a
  150. translation percentage of at least 50%.
  151. Ready PO files af am ar az be bg bs ca cs da de el en en_GB eo es
  152. +----------------------------------------------------+
  153. a2ps | [] [] [] [] |
  154. aegis | () |
  155. ant-phone | () |
  156. anubis | |
  157. ap-utils | |
  158. aspell | [] |
  159. bash | [] [] [] [] |
  160. batchelor | |
  161. bfd | [] [] |
  162. binutils | [] [] |
  163. bison | [] [] [] |
  164. bluez-pin | [] [] [] |
  165. clisp | |
  166. clisp | [] [] [] |
  167. console-tools | [] [] |
  168. coreutils | [] [] [] [] |
  169. cpio | [] [] [] |
  170. darkstat | [] () [] |
  171. diffutils | [] [] [] [] [] [] [] |
  172. e2fsprogs | [] [] [] |
  173. enscript | [] [] [] [] |
  174. error | [] [] [] [] [] |
  175. fetchmail | [] () [] [] [] [] |
  176. fileutils | [] [] [] |
  177. findutils | [] [] [] [] [] [] [] |
  178. flex | [] [] [] [] |
  179. fslint | |
  180. gas | [] |
  181. gawk | [] [] [] [] |
  182. gbiff | [] |
  183. gcal | [] |
  184. gcc | [] [] |
  185. gettext | [] [] [] [] [] |
  186. gettext-examples | [] [] [] [] |
  187. gettext-runtime | [] [] [] [] [] |
  188. gettext-tools | [] [] [] |
  189. gimp-print | [] [] [] [] [] |
  190. gliv | |
  191. glunarclock | [] [] |
  192. gnubiff | [] |
  193. gnucash | [] () [] [] |
  194. gnucash-glossary | [] () [] |
  195. gnupg | [] () [] [] [] [] |
  196. gpe-aerial | [] |
  197. gpe-beam | [] [] |
  198. gpe-calendar | [] [] |
  199. gpe-clock | [] [] |
  200. gpe-conf | [] [] |
  201. gpe-contacts | [] [] |
  202. gpe-edit | [] |
  203. gpe-go | [] |
  204. gpe-login | [] [] |
  205. gpe-ownerinfo | [] [] |
  206. gpe-sketchbook | [] [] |
  207. gpe-su | [] [] |
  208. gpe-taskmanager | [] [] |
  209. gpe-timesheet | [] |
  210. gpe-today | [] [] |
  211. gpe-todo | [] [] |
  212. gphoto2 | [] [] [] [] |
  213. gprof | [] [] [] |
  214. gpsdrive | () () () |
  215. gramadoir | [] |
  216. grep | [] [] [] [] [] [] |
  217. gretl | [] |
  218. gtick | [] () |
  219. hello | [] [] [] [] [] [] |
  220. id-utils | [] [] |
  221. indent | [] [] [] [] |
  222. iso_3166 | [] [] [] [] [] [] [] [] [] [] |
  223. iso_3166_1 | [] [] [] [] [] [] |
  224. iso_3166_2 | |
  225. iso_3166_3 | [] |
  226. iso_4217 | [] [] [] [] |
  227. iso_639 | |
  228. jpilot | [] [] [] |
  229. jtag | |
  230. jwhois | [] |
  231. kbd | [] [] [] [] [] |
  232. latrine | () |
  233. ld | [] [] |
  234. libc | [] [] [] [] [] [] |
  235. libgpewidget | [] [] |
  236. libiconv | [] [] [] [] [] |
  237. lifelines | [] () |
  238. lilypond | [] |
  239. lingoteach | |
  240. lingoteach_lessons | () () |
  241. lynx | [] [] [] [] |
  242. m4 | [] [] [] [] |
  243. mailutils | [] [] |
  244. make | [] [] [] |
  245. man-db | [] () [] [] () |
  246. minicom | [] [] [] |
  247. mysecretdiary | [] [] [] |
  248. nano | [] () [] [] [] |
  249. nano_1_0 | [] () [] [] [] |
  250. opcodes | [] |
  251. parted | [] [] [] [] [] |
  252. ptx | [] [] [] [] [] |
  253. python | |
  254. radius | [] |
  255. recode | [] [] [] [] [] [] [] |
  256. rpm | [] [] |
  257. screem | |
  258. scrollkeeper | [] [] [] [] [] [] |
  259. sed | [] [] [] [] [] [] |
  260. sh-utils | [] [] [] |
  261. shared-mime-info | |
  262. sharutils | [] [] [] [] [] [] |
  263. silky | () |
  264. skencil | [] () [] |
  265. sketch | [] () [] |
  266. soundtracker | [] [] [] |
  267. sp | [] |
  268. tar | [] [] [] [] |
  269. texinfo | [] [] [] |
  270. textutils | [] [] [] [] |
  271. tin | () () |
  272. tp-robot | |
  273. tuxpaint | [] [] [] [] [] [] [] |
  274. unicode-han-tra... | |
  275. unicode-transla... | |
  276. util-linux | [] [] [] [] [] |
  277. vorbis-tools | [] [] [] [] |
  278. wastesedge | () |
  279. wdiff | [] [] [] [] |
  280. wget | [] [] [] [] [] [] |
  281. xchat | [] [] [] [] |
  282. xfree86_xkb_xml | [] [] |
  283. xpad | [] |
  284. +----------------------------------------------------+
  285. af am ar az be bg bs ca cs da de el en en_GB eo es
  286. 4 0 0 1 9 4 1 40 41 60 78 17 1 5 13 68
  287. et eu fa fi fr ga gl he hr hu id is it ja ko lg
  288. +-------------------------------------------------+
  289. a2ps | [] [] [] () () |
  290. aegis | |
  291. ant-phone | [] |
  292. anubis | [] |
  293. ap-utils | [] |
  294. aspell | [] [] |
  295. bash | [] [] |
  296. batchelor | [] [] |
  297. bfd | [] |
  298. binutils | [] [] |
  299. bison | [] [] [] [] |
  300. bluez-pin | [] [] [] [] [] |
  301. clisp | |
  302. clisp | [] |
  303. console-tools | |
  304. coreutils | [] [] [] [] [] [] |
  305. cpio | [] [] [] [] |
  306. darkstat | () [] [] [] |
  307. diffutils | [] [] [] [] [] [] [] |
  308. e2fsprogs | |
  309. enscript | [] [] |
  310. error | [] [] [] [] |
  311. fetchmail | [] |
  312. fileutils | [] [] [] [] [] [] |
  313. findutils | [] [] [] [] [] [] [] [] [] [] [] |
  314. flex | [] [] [] |
  315. fslint | [] |
  316. gas | [] |
  317. gawk | [] [] [] |
  318. gbiff | [] |
  319. gcal | [] |
  320. gcc | [] |
  321. gettext | [] [] [] |
  322. gettext-examples | [] [] |
  323. gettext-runtime | [] [] [] [] [] |
  324. gettext-tools | [] [] [] |
  325. gimp-print | [] [] |
  326. gliv | () |
  327. glunarclock | [] [] [] [] |
  328. gnubiff | [] |
  329. gnucash | () [] |
  330. gnucash-glossary | [] |
  331. gnupg | [] [] [] [] [] [] [] |
  332. gpe-aerial | [] |
  333. gpe-beam | [] |
  334. gpe-calendar | [] [] [] |
  335. gpe-clock | [] |
  336. gpe-conf | [] |
  337. gpe-contacts | [] [] |
  338. gpe-edit | [] [] |
  339. gpe-go | [] |
  340. gpe-login | [] [] |
  341. gpe-ownerinfo | [] [] [] |
  342. gpe-sketchbook | [] |
  343. gpe-su | [] |
  344. gpe-taskmanager | [] |
  345. gpe-timesheet | [] [] [] |
  346. gpe-today | [] [] |
  347. gpe-todo | [] [] |
  348. gphoto2 | [] [] [] |
  349. gprof | [] [] |
  350. gpsdrive | () () () |
  351. gramadoir | [] [] |
  352. grep | [] [] [] [] [] [] [] [] [] [] [] |
  353. gretl | [] [] |
  354. gtick | [] [] [] |
  355. hello | [] [] [] [] [] [] [] [] [] [] [] [] [] |
  356. id-utils | [] [] [] [] |
  357. indent | [] [] [] [] [] [] [] [] [] |
  358. iso_3166 | [] [] [] [] [] [] [] |
  359. iso_3166_1 | [] [] [] [] [] |
  360. iso_3166_2 | |
  361. iso_3166_3 | |
  362. iso_4217 | [] [] [] [] [] [] |
  363. iso_639 | |
  364. jpilot | [] () |
  365. jtag | [] |
  366. jwhois | [] [] [] [] |
  367. kbd | [] |
  368. latrine | [] |
  369. ld | [] |
  370. libc | [] [] [] [] [] [] |
  371. libgpewidget | [] [] [] [] |
  372. libiconv | [] [] [] [] [] [] [] [] [] |
  373. lifelines | () |
  374. lilypond | [] |
  375. lingoteach | [] [] |
  376. lingoteach_lessons | |
  377. lynx | [] [] [] [] |
  378. m4 | [] [] [] [] |
  379. mailutils | |
  380. make | [] [] [] [] [] [] |
  381. man-db | () () |
  382. minicom | [] [] [] [] |
  383. mysecretdiary | [] [] |
  384. nano | [] [] [] [] |
  385. nano_1_0 | [] [] [] [] |
  386. opcodes | [] |
  387. parted | [] [] [] |
  388. ptx | [] [] [] [] [] [] [] |
  389. python | |
  390. radius | [] |
  391. recode | [] [] [] [] [] [] |
  392. rpm | [] [] |
  393. screem | |
  394. scrollkeeper | [] |
  395. sed | [] [] [] [] [] [] [] [] [] |
  396. sh-utils | [] [] [] [] [] [] [] |
  397. shared-mime-info | [] [] [] |
  398. sharutils | [] [] [] [] [] |
  399. silky | () [] () () |
  400. skencil | [] |
  401. sketch | [] |
  402. soundtracker | [] [] |
  403. sp | [] () |
  404. tar | [] [] [] [] [] [] [] [] [] |
  405. texinfo | [] [] [] [] |
  406. textutils | [] [] [] [] [] [] |
  407. tin | [] () |
  408. tp-robot | [] |
  409. tuxpaint | [] [] [] [] [] [] [] [] [] |
  410. unicode-han-tra... | |
  411. unicode-transla... | [] [] |
  412. util-linux | [] [] [] [] () [] |
  413. vorbis-tools | [] |
  414. wastesedge | () |
  415. wdiff | [] [] [] [] [] [] |
  416. wget | [] [] [] [] [] [] [] |
  417. xchat | [] [] [] |
  418. xfree86_xkb_xml | [] [] |
  419. xpad | [] [] |
  420. +-------------------------------------------------+
  421. et eu fa fi fr ga gl he hr hu id is it ja ko lg
  422. 22 2 1 26 106 28 24 8 10 41 33 1 26 33 12 0
  423. lt lv mk mn ms mt nb nl nn no nso pl pt pt_BR ro ru
  424. +-----------------------------------------------------+
  425. a2ps | [] [] () () [] [] [] |
  426. aegis | () () () |
  427. ant-phone | [] [] |
  428. anubis | [] [] [] [] [] [] |
  429. ap-utils | [] () [] |
  430. aspell | [] |
  431. bash | [] [] [] |
  432. batchelor | [] |
  433. bfd | [] |
  434. binutils | [] |
  435. bison | [] [] [] [] [] |
  436. bluez-pin | [] [] [] |
  437. clisp | |
  438. clisp | [] |
  439. console-tools | [] |
  440. coreutils | [] [] |
  441. cpio | [] [] [] [] [] |
  442. darkstat | [] [] [] [] |
  443. diffutils | [] [] [] [] [] [] |
  444. e2fsprogs | [] |
  445. enscript | [] [] [] [] |
  446. error | [] [] [] |
  447. fetchmail | [] [] () [] |
  448. fileutils | [] [] [] |
  449. findutils | [] [] [] [] [] |
  450. flex | [] [] [] [] |
  451. fslint | [] [] |
  452. gas | |
  453. gawk | [] [] [] |
  454. gbiff | [] [] |
  455. gcal | |
  456. gcc | |
  457. gettext | [] [] [] |
  458. gettext-examples | [] [] [] |
  459. gettext-runtime | [] [] [] [] |
  460. gettext-tools | [] [] |
  461. gimp-print | [] |
  462. gliv | [] [] [] |
  463. glunarclock | [] [] [] [] |
  464. gnubiff | [] |
  465. gnucash | [] [] () [] |
  466. gnucash-glossary | [] [] |
  467. gnupg | [] |
  468. gpe-aerial | [] [] [] [] |
  469. gpe-beam | [] [] [] [] |
  470. gpe-calendar | [] [] [] [] |
  471. gpe-clock | [] [] [] [] |
  472. gpe-conf | [] [] [] [] |
  473. gpe-contacts | [] [] [] [] |
  474. gpe-edit | [] [] [] [] |
  475. gpe-go | [] [] [] |
  476. gpe-login | [] [] [] [] |
  477. gpe-ownerinfo | [] [] [] [] |
  478. gpe-sketchbook | [] [] [] [] |
  479. gpe-su | [] [] [] [] |
  480. gpe-taskmanager | [] [] [] [] |
  481. gpe-timesheet | [] [] [] [] |
  482. gpe-today | [] [] [] [] |
  483. gpe-todo | [] [] [] [] |
  484. gphoto2 | [] |
  485. gprof | [] [] |
  486. gpsdrive | () () [] |
  487. gramadoir | () [] |
  488. grep | [] [] [] [] [] |
  489. gretl | |
  490. gtick | [] [] [] |
  491. hello | [] [] [] [] [] [] [] [] [] [] |
  492. id-utils | [] [] [] [] |
  493. indent | [] [] [] [] |
  494. iso_3166 | [] [] [] |
  495. iso_3166_1 | [] [] |
  496. iso_3166_2 | |
  497. iso_3166_3 | [] |
  498. iso_4217 | [] [] [] [] [] [] [] [] |
  499. iso_639 | [] |
  500. jpilot | () () |
  501. jtag | |
  502. jwhois | [] [] [] [] () |
  503. kbd | [] [] [] |
  504. latrine | [] |
  505. ld | |
  506. libc | [] [] [] [] |
  507. libgpewidget | [] [] [] |
  508. libiconv | [] [] [] [] [] |
  509. lifelines | |
  510. lilypond | |
  511. lingoteach | |
  512. lingoteach_lessons | |
  513. lynx | [] [] [] |
  514. m4 | [] [] [] [] [] |
  515. mailutils | [] [] [] |
  516. make | [] [] [] [] |
  517. man-db | [] |
  518. minicom | [] [] [] [] |
  519. mysecretdiary | [] [] [] |
  520. nano | [] [] [] [] [] |
  521. nano_1_0 | [] [] [] [] [] [] |
  522. opcodes | [] [] |
  523. parted | [] [] [] [] |
  524. ptx | [] [] [] [] [] [] [] [] |
  525. python | |
  526. radius | [] [] |
  527. recode | [] [] [] [] |
  528. rpm | [] [] [] |
  529. screem | |
  530. scrollkeeper | [] [] [] [] [] |
  531. sed | [] [] [] |
  532. sh-utils | [] [] |
  533. shared-mime-info | [] [] |
  534. sharutils | [] [] |
  535. silky | () |
  536. skencil | [] [] |
  537. sketch | [] [] |
  538. soundtracker | |
  539. sp | |
  540. tar | [] [] [] [] [] [] |
  541. texinfo | [] [] [] [] |
  542. textutils | [] [] |
  543. tin | |
  544. tp-robot | [] |
  545. tuxpaint | [] [] [] [] [] [] [] [] |
  546. unicode-han-tra... | |
  547. unicode-transla... | |
  548. util-linux | [] [] [] |
  549. vorbis-tools | [] [] [] |
  550. wastesedge | |
  551. wdiff | [] [] [] [] [] |
  552. wget | [] [] [] |
  553. xchat | [] [] [] |
  554. xfree86_xkb_xml | [] [] |
  555. xpad | [] [] |
  556. +-----------------------------------------------------+
  557. lt lv mk mn ms mt nb nl nn no nso pl pt pt_BR ro ru
  558. 1 2 0 3 12 0 10 69 6 7 1 40 26 36 76 63
  559. sk sl sr sv ta th tr uk ven vi wa xh zh_CN zh_TW zu
  560. +-----------------------------------------------------+
  561. a2ps | [] [] [] [] | 16
  562. aegis | | 0
  563. ant-phone | | 3
  564. anubis | [] [] | 9
  565. ap-utils | () | 3
  566. aspell | | 4
  567. bash | | 9
  568. batchelor | | 3
  569. bfd | [] [] | 6
  570. binutils | [] [] [] | 8
  571. bison | [] [] | 14
  572. bluez-pin | [] [] [] | 14
  573. clisp | | 0
  574. clisp | | 5
  575. console-tools | | 3
  576. coreutils | [] [] [] [] | 16
  577. cpio | [] [] | 14
  578. darkstat | [] [] [] () () | 12
  579. diffutils | [] [] [] | 23
  580. e2fsprogs | [] [] | 6
  581. enscript | [] [] | 12
  582. error | [] [] [] | 15
  583. fetchmail | [] [] | 11
  584. fileutils | [] [] [] [] [] | 17
  585. findutils | [] [] [] [] [] [] | 29
  586. flex | [] [] | 13
  587. fslint | | 3
  588. gas | [] | 3
  589. gawk | [] [] | 12
  590. gbiff | | 4
  591. gcal | [] [] | 4
  592. gcc | [] | 4
  593. gettext | [] [] [] [] [] | 16
  594. gettext-examples | [] [] [] [] [] | 14
  595. gettext-runtime | [] [] [] [] [] [] [] [] | 22
  596. gettext-tools | [] [] [] [] [] [] | 14
  597. gimp-print | [] [] | 10
  598. gliv | | 3
  599. glunarclock | [] [] [] | 13
  600. gnubiff | | 3
  601. gnucash | [] [] | 9
  602. gnucash-glossary | [] [] [] | 8
  603. gnupg | [] [] [] [] | 17
  604. gpe-aerial | [] | 7
  605. gpe-beam | [] | 8
  606. gpe-calendar | [] [] [] [] | 13
  607. gpe-clock | [] [] [] | 10
  608. gpe-conf | [] [] | 9
  609. gpe-contacts | [] [] [] | 11
  610. gpe-edit | [] [] [] [] [] | 12
  611. gpe-go | | 5
  612. gpe-login | [] [] [] [] [] | 13
  613. gpe-ownerinfo | [] [] [] [] | 13
  614. gpe-sketchbook | [] [] | 9
  615. gpe-su | [] [] [] | 10
  616. gpe-taskmanager | [] [] [] | 10
  617. gpe-timesheet | [] [] [] [] | 12
  618. gpe-today | [] [] [] [] [] | 13
  619. gpe-todo | [] [] [] [] | 12
  620. gphoto2 | [] [] [] | 11
  621. gprof | [] [] | 9
  622. gpsdrive | [] [] | 3
  623. gramadoir | [] | 5
  624. grep | [] [] [] [] | 26
  625. gretl | | 3
  626. gtick | | 7
  627. hello | [] [] [] [] [] | 34
  628. id-utils | [] [] | 12
  629. indent | [] [] [] [] | 21
  630. iso_3166 | [] [] [] [] [] [] [] | 27
  631. iso_3166_1 | [] [] [] | 16
  632. iso_3166_2 | | 0
  633. iso_3166_3 | | 2
  634. iso_4217 | [] [] [] [] [] [] | 24
  635. iso_639 | | 1
  636. jpilot | [] [] [] [] [] | 9
  637. jtag | [] | 2
  638. jwhois | () [] [] | 11
  639. kbd | [] [] | 11
  640. latrine | | 2
  641. ld | [] [] | 5
  642. libc | [] [] [] [] | 20
  643. libgpewidget | [] [] [] [] | 13
  644. libiconv | [] [] [] [] [] [] [] [] | 27
  645. lifelines | [] | 2
  646. lilypond | [] | 3
  647. lingoteach | | 2
  648. lingoteach_lessons | () | 0
  649. lynx | [] [] [] | 14
  650. m4 | [] [] | 15
  651. mailutils | | 5
  652. make | [] [] [] | 16
  653. man-db | [] | 5
  654. minicom | | 11
  655. mysecretdiary | [] [] | 10
  656. nano | [] [] [] [] | 17
  657. nano_1_0 | [] [] [] | 17
  658. opcodes | [] [] | 6
  659. parted | [] [] [] | 15
  660. ptx | [] [] | 22
  661. python | | 0
  662. radius | | 4
  663. recode | [] [] [] | 20
  664. rpm | [] [] | 9
  665. screem | [] [] | 2
  666. scrollkeeper | [] [] [] | 15
  667. sed | [] [] [] [] [] [] | 24
  668. sh-utils | [] [] | 14
  669. shared-mime-info | [] [] | 7
  670. sharutils | [] [] [] [] | 17
  671. silky | () | 3
  672. skencil | [] | 6
  673. sketch | [] | 6
  674. soundtracker | [] [] | 7
  675. sp | [] | 3
  676. tar | [] [] [] [] [] | 24
  677. texinfo | [] [] [] | 14
  678. textutils | [] [] [] [] | 16
  679. tin | | 1
  680. tp-robot | | 2
  681. tuxpaint | [] [] [] [] [] | 29
  682. unicode-han-tra... | | 0
  683. unicode-transla... | | 2
  684. util-linux | [] [] | 15
  685. vorbis-tools | | 8
  686. wastesedge | | 0
  687. wdiff | [] [] [] | 18
  688. wget | [] [] [] [] [] [] [] [] | 24
  689. xchat | [] [] [] [] [] | 15
  690. xfree86_xkb_xml | [] [] [] [] [] | 11
  691. xpad | | 5
  692. +-----------------------------------------------------+
  693. 63 teams sk sl sr sv ta th tr uk ven vi wa xh zh_CN zh_TW zu
  694. 131 domains 47 19 28 83 0 0 59 13 1 1 11 0 22 22 0 1373
  695. Some counters in the preceding matrix are higher than the number of
  696. visible blocks let us expect. This is because a few extra PO files are
  697. used for implementing regional variants of languages, or language
  698. dialects.
  699. For a PO file in the matrix above to be effective, the package to
  700. which it applies should also have been internationalized and
  701. distributed as such by its maintainer. There might be an observable
  702. lag between the mere existence a PO file and its wide availability in a
  703. distribution.
  704. If January 2004 seems to be old, you may fetch a more recent copy of
  705. this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date
  706. matrix with full percentage details can be found at
  707. `http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
  708. Using `gettext' in new packages
  709. ===============================
  710. If you are writing a freely available program and want to
  711. internationalize it you are welcome to use GNU `gettext' in your
  712. package. Of course you have to respect the GNU Library General Public
  713. License which covers the use of the GNU `gettext' library. This means
  714. in particular that even non-free programs can use `libintl' as a shared
  715. library, whereas only free software can use `libintl' as a static
  716. library or use modified versions of `libintl'.
  717. Once the sources are changed appropriately and the setup can handle
  718. the use of `gettext' the only thing missing are the translations. The
  719. Free Translation Project is also available for packages which are not
  720. developed inside the GNU project. Therefore the information given above
  721. applies also for every other Free Software Project. Contact
  722. `translation@iro.umontreal.ca' to make the `.pot' files available to
  723. the translation teams.