ABOUT-NLS 78 KB

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