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