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