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