ABOUT-NLS (sarg-2.3.11) | : | ABOUT-NLS (sarg-2.4.0) | ||
---|---|---|---|---|
1 Notes on the Free Translation Project | 1 Notes on the Free Translation Project | |||
*************************************** | *************************************** | |||
Free software is going international! The Free Translation Project is a | Free software is going international! The Free Translation Project is | |||
way to get maintainers of free software, translators, and users all | a way to get maintainers of free software, translators, and users all | |||
together, so that free software will gradually become able to speak many | together, so that free software will gradually become able to speak many | |||
languages. A few packages already provide translations for their | languages. A few packages already provide translations for their | |||
messages. | messages. | |||
If you found this 'ABOUT-NLS' file inside a distribution, you may | If you found this `ABOUT-NLS' file inside a distribution, you may | |||
assume that the distributed package does use GNU 'gettext' internally, | assume that the distributed package does use GNU `gettext' internally, | |||
itself available at your nearest GNU archive site. But you do _not_ | itself available at your nearest GNU archive site. But you do _not_ | |||
need to install GNU 'gettext' prior to configuring, installing or using | need to install GNU `gettext' prior to configuring, installing or using | |||
this package with messages translated. | this package with messages translated. | |||
Installers will find here some useful hints. These notes also | Installers will find here some useful hints. These notes also | |||
explain how users should proceed for getting the programs to use the | explain how users should proceed for getting the programs to use the | |||
available translations. They tell how people wanting to contribute and | available translations. They tell how people wanting to contribute and | |||
work on translations can contact the appropriate team. | work on translations can contact the appropriate team. | |||
1.1 INSTALL Matters | When reporting bugs in the `intl/' directory or bugs which may be | |||
related to internationalization, you should tell about the version of | ||||
`gettext' which is used. The information can be found in the | ||||
`intl/VERSION' file, in internationalized packages. | ||||
1.1 Quick configuration advice | ||||
============================== | ||||
If you want to exploit the full power of internationalization, you | ||||
should configure it using | ||||
./configure --with-included-gettext | ||||
to force usage of internationalizing routines provided within this | ||||
package, despite the existence of internationalizing capabilities in the | ||||
operating system where this package is being installed. So far, only | ||||
the `gettext' implementation in the GNU C library version 2 provides as | ||||
many features (such as locale alias, message inheritance, automatic | ||||
charset conversion or plural form handling) as the implementation here. | ||||
It is also not possible to offer this additional functionality on top | ||||
of a `catgets' implementation. Future versions of GNU `gettext' will | ||||
very likely convey even more functionality. So it might be a good idea | ||||
to change to GNU `gettext' as soon as possible. | ||||
So you need _not_ provide this option if you are using GNU libc 2 or | ||||
you have installed a recent copy of the GNU gettext package with the | ||||
included `libintl'. | ||||
1.2 INSTALL Matters | ||||
=================== | =================== | |||
Some packages are "localizable" when properly installed; the programs | Some packages are "localizable" when properly installed; the programs | |||
they contain can be made to speak your own native language. Most such | they contain can be made to speak your own native language. Most such | |||
packages use GNU 'gettext'. Other packages have their own ways to | packages use GNU `gettext'. Other packages have their own ways to | |||
internationalization, predating GNU 'gettext'. | internationalization, predating GNU `gettext'. | |||
By default, this package will be installed to allow translation of | By default, this package will be installed to allow translation of | |||
messages. It will automatically detect whether the system already | messages. It will automatically detect whether the system already | |||
provides the GNU 'gettext' functions. Installers may use special | provides the GNU `gettext' functions. If not, the included GNU | |||
options at configuration time for changing the default behaviour. The | `gettext' library will be used. This library is wholly contained | |||
command: | within this package, usually in the `intl/' subdirectory, so prior | |||
installation of the GNU `gettext' package is _not_ required. | ||||
Installers may use special options at configuration time for changing | ||||
the default behaviour. The commands: | ||||
./configure --with-included-gettext | ||||
./configure --disable-nls | ./configure --disable-nls | |||
will _totally_ disable translation of messages. | will, respectively, bypass any pre-existing `gettext' to use the | |||
internationalizing routines provided within this package, or else, | ||||
When you already have GNU 'gettext' installed on your system and run | _totally_ disable translation of messages. | |||
configure without an option for your new package, 'configure' will | ||||
probably detect the previously built and installed 'libintl' library and | When you already have GNU `gettext' installed on your system and run | |||
will decide to use it. If not, you may have to to use the | configure without an option for your new package, `configure' will | |||
'--with-libintl-prefix' option to tell 'configure' where to look for it. | probably detect the previously built and installed `libintl.a' file and | |||
will decide to use this. This might not be desirable. You should use | ||||
the more recent version of the GNU `gettext' library. I.e. if the file | ||||
`intl/VERSION' shows that the library which comes with this package is | ||||
more recent, you should use | ||||
./configure --with-included-gettext | ||||
to prevent auto-detection. | ||||
The configuration process will not test for the `catgets' function | ||||
and therefore it will not be used. The reason is that even an | ||||
emulation of `gettext' on top of `catgets' could not provide all the | ||||
extensions of the GNU `gettext' library. | ||||
Internationalized packages usually have many 'po/LL.po' files, where | Internationalized packages usually have many `po/LL.po' files, where | |||
LL gives an ISO 639 two-letter code identifying the language. Unless | LL gives an ISO 639 two-letter code identifying the language. Unless | |||
translations have been forbidden at 'configure' time by using the | translations have been forbidden at `configure' time by using the | |||
'--disable-nls' switch, all available translations are installed | `--disable-nls' switch, all available translations are installed | |||
together with the package. However, the environment variable 'LINGUAS' | together with the package. However, the environment variable `LINGUAS' | |||
may be set, prior to configuration, to limit the installed set. | may be set, prior to configuration, to limit the installed set. | |||
'LINGUAS' should then contain a space separated list of two-letter | `LINGUAS' should then contain a space separated list of two-letter | |||
codes, stating which languages are allowed. | codes, stating which languages are allowed. | |||
1.2 Using This Package | 1.3 Using This Package | |||
====================== | ====================== | |||
As a user, if your language has been installed for this package, you | As a user, if your language has been installed for this package, you | |||
only have to set the 'LANG' environment variable to the appropriate | only have to set the `LANG' environment variable to the appropriate | |||
'LL_CC' combination. If you happen to have the 'LC_ALL' or some other | `LL_CC' combination. If you happen to have the `LC_ALL' or some other | |||
'LC_xxx' environment variables set, you should unset them before setting | `LC_xxx' environment variables set, you should unset them before | |||
'LANG', otherwise the setting of 'LANG' will not have the desired | setting `LANG', otherwise the setting of `LANG' will not have the | |||
effect. Here 'LL' is an ISO 639 two-letter language code, and 'CC' is | desired effect. Here `LL' is an ISO 639 two-letter language code, and | |||
an ISO 3166 two-letter country code. For example, let's suppose that | `CC' is an ISO 3166 two-letter country code. For example, let's | |||
you speak German and live in Germany. At the shell prompt, merely | suppose that you speak German and live in Germany. At the shell | |||
execute 'setenv LANG de_DE' (in 'csh'), 'export LANG; LANG=de_DE' (in | prompt, merely execute `setenv LANG de_DE' (in `csh'), | |||
'sh') or 'export LANG=de_DE' (in 'bash'). This can be done from your | `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). | |||
'.login' or '.profile' file, once and for all. | This can be done from your `.login' or `.profile' file, once and for | |||
all. | ||||
You might think that the country code specification is redundant. | You might think that the country code specification is redundant. | |||
But in fact, some languages have dialects in different countries. For | But in fact, some languages have dialects in different countries. For | |||
example, 'de_AT' is used for Austria, and 'pt_BR' for Brazil. The | example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The | |||
country code serves to distinguish the dialects. | country code serves to distinguish the dialects. | |||
The locale naming convention of 'LL_CC', with 'LL' denoting the | The locale naming convention of `LL_CC', with `LL' denoting the | |||
language and 'CC' denoting the country, is the one use on systems based | language and `CC' denoting the country, is the one use on systems based | |||
on GNU libc. On other systems, some variations of this scheme are used, | on GNU libc. On other systems, some variations of this scheme are | |||
such as 'LL' or 'LL_CC.ENCODING'. You can get the list of locales | used, such as `LL' or `LL_CC.ENCODING'. You can get the list of | |||
supported by your system for your language by running the command | locales supported by your system for your language by running the | |||
'locale -a | grep '^LL''. | command `locale -a | grep '^LL''. | |||
Not all programs have translations for all languages. By default, an | Not all programs have translations for all languages. By default, an | |||
English message is shown in place of a nonexistent translation. If you | English message is shown in place of a nonexistent translation. If you | |||
understand other languages, you can set up a priority list of languages. | understand other languages, you can set up a priority list of languages. | |||
This is done through a different environment variable, called | This is done through a different environment variable, called | |||
'LANGUAGE'. GNU 'gettext' gives preference to 'LANGUAGE' over 'LANG' | `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' | |||
for the purpose of message handling, but you still need to have 'LANG' | for the purpose of message handling, but you still need to have `LANG' | |||
set to the primary language; this is required by other parts of the | set to the primary language; this is required by other parts of the | |||
system libraries. For example, some Swedish users who would rather read | system libraries. For example, some Swedish users who would rather | |||
translations in German than English for when Swedish is not available, | read translations in German than English for when Swedish is not | |||
set 'LANGUAGE' to 'sv:de' while leaving 'LANG' to 'sv_SE'. | available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. | |||
Special advice for Norwegian users: The language code for Norwegian | Special advice for Norwegian users: The language code for Norwegian | |||
bokma*l changed from 'no' to 'nb' recently (in 2003). During the | bokma*l changed from `no' to `nb' recently (in 2003). During the | |||
transition period, while some message catalogs for this language are | transition period, while some message catalogs for this language are | |||
installed under 'nb' and some older ones under 'no', it's recommended | installed under `nb' and some older ones under `no', it's recommended | |||
for Norwegian users to set 'LANGUAGE' to 'nb:no' so that both newer and | for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and | |||
older translations are used. | older translations are used. | |||
In the 'LANGUAGE' environment variable, but not in the 'LANG' | In the `LANGUAGE' environment variable, but not in the `LANG' | |||
environment variable, 'LL_CC' combinations can be abbreviated as 'LL' to | environment variable, `LL_CC' combinations can be abbreviated as `LL' | |||
denote the language's main dialect. For example, 'de' is equivalent to | to denote the language's main dialect. For example, `de' is equivalent | |||
'de_DE' (German as spoken in Germany), and 'pt' to 'pt_PT' (Portuguese | to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' | |||
as spoken in Portugal) in this context. | (Portuguese as spoken in Portugal) in this context. | |||
1.3 Translating Teams | 1.4 Translating Teams | |||
===================== | ===================== | |||
For the Free Translation Project to be a success, we need interested | For the Free Translation Project to be a success, we need interested | |||
people who like their own language and write it well, and who are also | people who like their own language and write it well, and who are also | |||
able to synergize with other translators speaking the same language. | able to synergize with other translators speaking the same language. | |||
Each translation team has its own mailing list. The up-to-date list of | Each translation team has its own mailing list. The up-to-date list of | |||
teams can be found at the Free Translation Project's homepage, | teams can be found at the Free Translation Project's homepage, | |||
'http://translationproject.org/', in the "Teams" area. | `http://translationproject.org/', in the "Teams" area. | |||
If you'd like to volunteer to _work_ at translating messages, you | If you'd like to volunteer to _work_ at translating messages, you | |||
should become a member of the translating team for your own language. | should become a member of the translating team for your own language. | |||
The subscribing address is _not_ the same as the list itself, it has | The subscribing address is _not_ the same as the list itself, it has | |||
'-request' appended. For example, speakers of Swedish can send a | `-request' appended. For example, speakers of Swedish can send a | |||
message to 'sv-request@li.org', having this message body: | message to `sv-request@li.org', having this message body: | |||
subscribe | subscribe | |||
Keep in mind that team members are expected to participate _actively_ | Keep in mind that team members are expected to participate | |||
in translations, or at solving translational difficulties, rather than | _actively_ in translations, or at solving translational difficulties, | |||
merely lurking around. If your team does not exist yet and you want to | rather than merely lurking around. If your team does not exist yet and | |||
start one, or if you are unsure about what to do or how to get started, | you want to start one, or if you are unsure about what to do or how to | |||
please write to 'coordinator@translationproject.org' to reach the | get started, please write to `coordinator@translationproject.org' to | |||
coordinator for all translator teams. | reach the coordinator for all translator teams. | |||
The English team is special. It works at improving and uniformizing | The English team is special. It works at improving and uniformizing | |||
the terminology in use. Proven linguistic skills are praised more than | the terminology in use. Proven linguistic skills are praised more than | |||
programming skills, here. | programming skills, here. | |||
1.4 Available Packages | 1.5 Available Packages | |||
====================== | ====================== | |||
Languages are not equally supported in all packages. The following | Languages are not equally supported in all packages. The following | |||
matrix shows the current state of internationalization, as of Jun 2014. | matrix shows the current state of internationalization, as of May 2010. | |||
The matrix shows, in regard of each package, for which languages PO | The matrix shows, in regard of each package, for which languages PO | |||
files have been submitted to translation coordination, with a | files have been submitted to translation coordination, with a | |||
translation percentage of at least 50%. | translation percentage of at least 50%. | |||
Ready PO files af am an ar as ast az be bg bn bn_IN bs ca crh cs | Ready PO files af am ar as ast az be be@latin bg bn_IN bs ca crh | |||
+---------------------------------------------------+ | +---------------------------------------------------+ | |||
a2ps | [] [] [] | | a2ps | [] [] | | |||
aegis | | | aegis | | | |||
ant-phone | | | ||||
anubis | | | anubis | | | |||
aspell | [] [] [] | | aspell | [] [] | | |||
bash | [] [] [] | | bash | | | |||
bfd | | | bfd | | | |||
binutils | [] | | bibshelf | [] | | |||
binutils | | | ||||
bison | | | bison | | | |||
bison-runtime | [] | | bison-runtime | [] | | |||
buzztrax | [] | | bluez-pin | [] [] | | |||
ccd2cue | | | bombono-dvd | | | |||
ccide | | | buzztard | | | |||
cflow | | | cflow | | | |||
clisp | | | clisp | | | |||
coreutils | [] [] | | coreutils | [] [] | | |||
cpio | | | cpio | | | |||
cppi | | | cppi | | | |||
cpplib | [] | | cpplib | [] | | |||
cryptsetup | [] | | cryptsetup | | | |||
datamash | | | dfarc | | | |||
denemo | [] [] | | dialog | [] [] | | |||
dfarc | [] | | ||||
dialog | [] [] [] | | ||||
dico | | | dico | | | |||
diffutils | [] | | diffutils | [] | | |||
dink | [] | | dink | | | |||
direvent | | | doodle | | | |||
doodle | [] | | e2fsprogs | [] | | |||
dos2unix | | | enscript | [] | | |||
dos2unix-man | | | exif | | | |||
e2fsprogs | [] [] | | fetchmail | [] | | |||
enscript | [] | | findutils | [] | | |||
exif | [] | | flex | [] | | |||
fetchmail | [] [] | | freedink | | | |||
findutils | [] | | ||||
flex | [] | | ||||
freedink | [] [] | | ||||
fusionforge | | | ||||
gas | | | gas | | | |||
gawk | [] | | gawk | [] [] | | |||
gcal | [] | | gcal | [] | | |||
gcc | | | gcc | | | |||
gdbm | | | gettext-examples | [] [] [] [] | | |||
gettext-examples | [] [] [] [] [] | | gettext-runtime | [] [] [] | | |||
gettext-runtime | [] [] [] | | gettext-tools | [] [] | | |||
gettext-tools | [] [] | | gip | [] | | |||
gjay | | | gjay | | | |||
glunarclock | [] [] [] | | gliv | [] | | |||
gnubiff | [] | | glunarclock | [] [] | | |||
gnubik | [] | | gnubiff | | | |||
gnucash | () () [] | | gnucash | [] | | |||
gnuchess | | | gnuedu | | | |||
gnulib | [] | | gnulib | | | |||
gnunet | | | gnunet | | | |||
gnunet-gtk | | | gnunet-gtk | | | |||
gnutls | | | ||||
gold | | | gold | | | |||
gphoto2 | [] | | gpe-aerial | | | |||
gprof | [] | | gpe-beam | | | |||
gpe-bluetooth | | | ||||
gpe-calendar | | | ||||
gpe-clock | [] | | ||||
gpe-conf | | | ||||
gpe-contacts | | | ||||
gpe-edit | | | ||||
gpe-filemanager | | | ||||
gpe-go | | | ||||
gpe-login | | | ||||
gpe-ownerinfo | [] | | ||||
gpe-package | | | ||||
gpe-sketchbook | | | ||||
gpe-su | [] | | ||||
gpe-taskmanager | [] | | ||||
gpe-timesheet | [] | | ||||
gpe-today | [] | | ||||
gpe-todo | | | ||||
gphoto2 | | | ||||
gprof | [] | | ||||
gpsdrive | | | ||||
gramadoir | | | gramadoir | | | |||
grep | [] [] [] | | grep | | | |||
grub | [] | | grub | [] [] | | |||
gsasl | | | gsasl | | | |||
gss | | | gss | | | |||
gst-plugins-bad | [] [] | | gst-plugins-bad | [] | | |||
gst-plugins-base | [] [] [] | | gst-plugins-base | [] | | |||
gst-plugins-good | [] [] [] | | gst-plugins-good | [] | | |||
gst-plugins-ugly | [] [] [] | | gst-plugins-ugly | [] | | |||
gstreamer | [] [] [] [] | | gstreamer | [] [] [] | | |||
gtick | [] | | gtick | | | |||
gtkam | [] [] | | gtkam | [] | | |||
gtkspell | [] [] [] [] [] | | gtkorphan | [] | | |||
guix | | | gtkspell | [] [] [] | | |||
guix-packages | | | gutenprint | | | |||
gutenprint | [] | | hello | [] | | |||
hello | [] | | ||||
help2man | | | help2man | | | |||
help2man-texi | | | ||||
hylafax | | | hylafax | | | |||
idutils | | | idutils | | | |||
iso_15924 | [] | | indent | [] [] | | |||
iso_3166 | [] [] [] [] [] [] [] [] [] [] | | iso_15924 | | | |||
iso_3166 | [] [] [] [] [] [] [] [] | | ||||
iso_3166_2 | | | iso_3166_2 | | | |||
iso_4217 | [] | | iso_4217 | | | |||
iso_639 | [] [] [] [] [] [] [] [] [] | | iso_639 | [] [] [] [] [] | | |||
iso_639_3 | [] [] | | iso_639_3 | [] | | |||
iso_639_5 | | | ||||
jwhois | | | jwhois | | | |||
kbd | [] | | kbd | | | |||
klavaro | [] [] [] [] [] | | keytouch | [] | | |||
ld | [] | | keytouch-editor | | | |||
leafpad | [] [] [] [] | | keytouch-keyboa... | [] | | |||
libc | [] [] [] | | klavaro | [] | | |||
libexif | () | | latrine | | | |||
ld | [] | | ||||
leafpad | [] [] | | ||||
libc | [] [] | | ||||
libexif | () | | ||||
libextractor | | | libextractor | | | |||
libgnutls | [] | | libgnutls | | | |||
libgphoto2 | [] | | libgpewidget | | | |||
libgphoto2_port | [] | | libgpg-error | | | |||
libgphoto2 | | | ||||
libgphoto2_port | | | ||||
libgsasl | | | libgsasl | | | |||
libiconv | [] [] | | libiconv | [] | | |||
libidn | [] | | libidn | | | |||
liferea | [] [] [] [] | | lifelines | | | |||
lilypond | [] [] | | liferea | [] [] | | |||
lordsawar | [] | | lilypond | | | |||
linkdr | [] | | ||||
lordsawar | | | ||||
lprng | | | lprng | | | |||
lynx | [] [] | | lynx | [] | | |||
m4 | [] | | m4 | | | |||
mailfromd | | | mailfromd | | | |||
mailutils | | | mailutils | | | |||
make | [] | | make | | | |||
man-db | [] [] | | man-db | | | |||
man-db-manpages | | | man-db-manpages | | | |||
midi-instruments | [] [] [] | | minicom | | | |||
minicom | [] | | mkisofs | | | |||
mkisofs | [] | | myserver | | | |||
myserver | [] | | nano | [] [] | | |||
nano | [] [] [] | | ||||
opcodes | | | opcodes | | | |||
parted | [] | | parted | | | |||
pies | | | pies | | | |||
pnmixer | | | popt | | | |||
popt | [] | | psmisc | | | |||
procps-ng | | | pspp | [] | | |||
procps-ng-man | | | ||||
psmisc | [] | | ||||
pspp | [] | | ||||
pushover | [] | | ||||
pwdutils | | | pwdutils | | | |||
pyspread | | | radius | [] | | |||
radius | [] | | recode | [] [] | | |||
recode | [] [] [] | | rosegarden | | | |||
recutils | | | ||||
rpm | | | rpm | | | |||
rush | | | rush | | | |||
sarg | | | sarg | | | |||
sed | [] [] [] [] | | screem | | | |||
sharutils | [] | | scrollkeeper | [] [] [] | | |||
sed | [] [] | | ||||
sharutils | [] [] | | ||||
shishi | | | shishi | | | |||
skribilo | | | skencil | | | |||
solfege | [] [] | | solfege | | | |||
solfege-manual | | | solfege-manual | | | |||
spotmachine | | | soundtracker | | | |||
sudo | [] [] | | sp | | | |||
sudoers | [] [] | | sysstat | | | |||
sysstat | [] | | tar | [] | | |||
tar | [] [] [] | | texinfo | | | |||
texinfo | [] [] | | ||||
texinfo_document | [] [] | | ||||
tigervnc | [] | | ||||
tin | | | tin | | | |||
tin-man | | | unicode-han-tra... | | | |||
tracgoogleappsa... | | | unicode-transla... | | | |||
trader | | | util-linux-ng | [] | | |||
util-linux | [] | | ||||
ve | | | ||||
vice | | | vice | | | |||
vmm | | | vmm | | | |||
vorbis-tools | [] | | vorbis-tools | | | |||
wastesedge | | | wastesedge | | | |||
wcd | | | wdiff | | | |||
wcd-man | | | wget | [] [] | | |||
wdiff | [] [] | | ||||
wget | [] | | ||||
wyslij-po | | | wyslij-po | | | |||
xboard | | | xchat | [] [] [] [] | | |||
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | | |||
xkeyboard-config | [] [] [] | | xkeyboard-config | [] [] [] | | |||
+---------------------------------------------------+ | +---------------------------------------------------+ | |||
af am an ar as ast az be bg bn bn_IN bs ca crh cs | af am ar as ast az be be@latin bg bn_IN bs ca crh | |||
4 0 2 5 3 11 0 8 25 3 3 1 55 4 74 | 6 0 2 3 19 1 11 3 28 3 1 38 5 | |||
da de el en en_GB en_ZA eo es et eu fa fi fr | ||||
+--------------------------------------------------+ | ||||
a2ps | [] [] [] [] [] [] [] [] [] | | ||||
aegis | [] [] [] [] | | ||||
anubis | [] [] [] [] [] | | ||||
aspell | [] [] [] [] [] [] [] | | ||||
bash | [] [] [] | | ||||
bfd | [] [] [] [] | | ||||
binutils | [] [] [] | | ||||
bison | [] [] [] [] [] [] [] [] | | ||||
bison-runtime | [] [] [] [] [] [] [] [] | | ||||
buzztrax | [] [] [] [] | | ||||
ccd2cue | [] [] [] [] | | ||||
ccide | [] [] [] [] [] [] | | ||||
cflow | [] [] [] [] [] | | ||||
clisp | [] [] [] [] [] | | ||||
coreutils | [] [] [] [] [] | | ||||
cpio | [] [] [] [] [] | | ||||
cppi | [] [] [] [] [] | | ||||
cpplib | [] [] [] [] [] [] | | ||||
cryptsetup | [] [] [] [] [] | | ||||
datamash | [] [] [] [] | | ||||
denemo | [] | | ||||
dfarc | [] [] [] [] [] [] | | ||||
dialog | [] [] [] [] [] [] [] [] [] | | ||||
dico | [] [] [] [] | | ||||
diffutils | [] [] [] [] [] [] | | ||||
dink | [] [] [] [] [] [] | | ||||
direvent | [] [] [] [] | | ||||
doodle | [] [] [] [] | | ||||
dos2unix | [] [] [] [] [] | | ||||
dos2unix-man | [] [] [] | | ||||
e2fsprogs | [] [] [] [] [] | | ||||
enscript | [] [] [] [] [] [] | | ||||
exif | [] [] [] [] [] [] | | ||||
fetchmail | [] () [] [] [] [] [] | | ||||
findutils | [] [] [] [] [] [] [] [] | | ||||
flex | [] [] [] [] [] [] | | ||||
freedink | [] [] [] [] [] [] [] [] | | ||||
fusionforge | [] [] [] | | ||||
gas | [] [] [] | | ||||
gawk | [] [] [] [] [] | | ||||
gcal | [] [] [] [] | | ||||
gcc | [] | | ||||
gdbm | [] [] [] [] [] | | ||||
gettext-examples | [] [] [] [] [] [] [] | | ||||
gettext-runtime | [] [] [] [] [] [] | | ||||
gettext-tools | [] [] [] [] [] | | ||||
gjay | [] [] [] [] | | ||||
glunarclock | [] [] [] [] [] | | ||||
gnubiff | () [] [] () | | ||||
gnubik | [] [] [] [] [] | | ||||
gnucash | [] () () () () () () | | ||||
gnuchess | [] [] [] [] | | ||||
gnulib | [] [] [] [] [] [] [] | | ||||
gnunet | [] | | ||||
gnunet-gtk | [] | | ||||
gold | [] [] [] | | ||||
gphoto2 | [] () [] [] | | ||||
gprof | [] [] [] [] [] [] | | ||||
gramadoir | [] [] [] [] [] | | ||||
grep | [] [] [] [] [] [] [] | | ||||
grub | [] [] [] [] [] | | ||||
gsasl | [] [] [] [] [] | | ||||
gss | [] [] [] [] [] | | ||||
gst-plugins-bad | [] [] [] | | ||||
gst-plugins-base | [] [] [] [] [] [] | | ||||
gst-plugins-good | [] [] [] [] [] [] [] | | ||||
gst-plugins-ugly | [] [] [] [] [] [] [] [] | | ||||
gstreamer | [] [] [] [] [] [] [] | | ||||
gtick | [] () [] [] [] | | ||||
gtkam | [] () [] [] [] [] | | ||||
gtkspell | [] [] [] [] [] [] [] [] | | ||||
guix | [] [] | | ||||
guix-packages | | | ||||
gutenprint | [] [] [] [] | | ||||
hello | [] [] [] [] [] [] [] [] | | ||||
help2man | [] [] [] [] [] [] [] | | ||||
help2man-texi | [] [] [] | | ||||
hylafax | [] [] | | ||||
idutils | [] [] [] [] [] | | ||||
iso_15924 | [] () [] [] () [] () | | ||||
iso_3166 | [] () [] [] [] [] () [] () | | ||||
iso_3166_2 | [] () () () | | ||||
iso_4217 | [] () [] [] [] () [] () | | ||||
iso_639 | [] () [] [] () [] () | | ||||
iso_639_3 | () () () | | ||||
iso_639_5 | () () () | | ||||
jwhois | [] [] [] [] [] | | ||||
kbd | [] [] [] [] [] [] | | ||||
klavaro | [] [] [] [] [] [] [] | | ||||
ld | [] [] [] [] | | ||||
leafpad | [] [] [] [] [] [] [] [] | | ||||
libc | [] [] [] [] [] | | ||||
libexif | [] [] () [] [] | | ||||
libextractor | [] | | ||||
libgnutls | [] [] [] [] | | ||||
libgphoto2 | [] () [] | | ||||
libgphoto2_port | [] () [] [] [] [] | | ||||
libgsasl | [] [] [] [] [] | | ||||
libiconv | [] [] [] [] [] [] [] | | ||||
libidn | [] [] [] [] [] | | ||||
liferea | [] () [] [] [] [] [] | | ||||
lilypond | [] [] [] [] [] [] | | ||||
lordsawar | [] [] | | ||||
lprng | | | ||||
lynx | [] [] [] [] [] [] | | ||||
m4 | [] [] [] [] [] [] | | ||||
mailfromd | [] | | ||||
mailutils | [] [] [] [] | | ||||
make | [] [] [] [] [] | | ||||
man-db | [] [] [] [] | | ||||
man-db-manpages | [] [] | | ||||
midi-instruments | [] [] [] [] [] [] [] [] [] | | ||||
minicom | [] [] [] [] [] | | ||||
mkisofs | [] [] [] | | ||||
myserver | [] [] [] [] | | ||||
nano | [] [] [] [] [] [] [] | | ||||
opcodes | [] [] [] [] [] | | ||||
parted | [] [] [] | | ||||
pies | [] | | ||||
pnmixer | [] [] | | ||||
popt | [] [] [] [] [] [] | | ||||
procps-ng | [] [] | | ||||
procps-ng-man | [] [] | | ||||
psmisc | [] [] [] [] [] [] [] | | ||||
pspp | [] [] [] | | ||||
pushover | () [] [] [] | | ||||
pwdutils | [] [] [] | | ||||
pyspread | [] [] [] | | ||||
radius | [] [] | | ||||
recode | [] [] [] [] [] [] [] | | ||||
recutils | [] [] [] [] | | ||||
rpm | [] [] [] [] [] | | ||||
rush | [] [] [] | | ||||
sarg | [] [] | | ||||
sed | [] [] [] [] [] [] [] [] | | ||||
sharutils | [] [] [] [] | | ||||
shishi | [] [] [] | | ||||
skribilo | [] [] [] | | ||||
solfege | [] [] [] [] [] [] [] [] | | ||||
solfege-manual | [] [] [] [] [] | | ||||
spotmachine | [] [] [] [] [] | | ||||
sudo | [] [] [] [] [] [] | | ||||
sudoers | [] [] [] [] [] [] | | ||||
sysstat | [] [] [] [] [] [] | | ||||
tar | [] [] [] [] [] [] [] | | ||||
texinfo | [] [] [] [] [] | | ||||
texinfo_document | [] [] [] [] | | ||||
tigervnc | [] [] [] [] [] [] | | ||||
tin | [] [] [] [] | | ||||
tin-man | [] | | ||||
tracgoogleappsa... | [] [] [] [] [] | | ||||
trader | [] [] [] [] [] [] | | ||||
util-linux | [] [] [] [] | | ||||
ve | [] [] [] [] [] | | ||||
vice | () () () | | ||||
vmm | [] [] | | ||||
vorbis-tools | [] [] [] [] | | ||||
wastesedge | [] | | ||||
wcd | [] [] [] [] | | ||||
wcd-man | [] | | ||||
wdiff | [] [] [] [] [] [] [] | | ||||
wget | [] [] [] [] [] [] | | ||||
wyslij-po | [] [] [] [] | | ||||
xboard | [] [] [] [] | | ||||
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | | ||||
xkeyboard-config | [] [] [] [] [] [] [] | | ||||
+--------------------------------------------------+ | ||||
da de el en en_GB en_ZA eo es et eu fa fi fr | ||||
119 131 32 1 6 0 94 95 22 13 4 102 139 | ||||
ga gd gl gu he hi hr hu hy ia id is it ja ka kk | cs da de el en en_GB en_ZA eo es et eu fa fi | |||
+-------------------------------------------------+ | +-------------------------------------------------+ | |||
a2ps | [] [] [] [] | | a2ps | [] [] [] [] [] [] [] [] | | |||
aegis | [] | | aegis | [] [] [] | | |||
anubis | [] [] [] [] | | ant-phone | [] () | | |||
aspell | [] [] [] [] [] | | anubis | [] [] [] | | |||
bash | [] [] [] [] | | aspell | [] [] [] [] [] | | |||
bfd | [] [] | | bash | [] [] [] [] | | |||
binutils | [] [] [] | | bfd | [] [] | | |||
bison | [] | | bibshelf | [] [] [] [] | | |||
bison-runtime | [] [] [] [] [] [] [] [] | | binutils | [] [] | | |||
buzztrax | | | bison | [] [] [] | | |||
ccd2cue | [] | | bison-runtime | [] [] [] [] [] | | |||
ccide | [] [] | | bluez-pin | [] [] [] [] [] [] [] | | |||
cflow | [] [] [] | | bombono-dvd | [] [] | | |||
clisp | | | buzztard | [] [] [] | | |||
coreutils | [] [] | | cflow | [] [] [] | | |||
cpio | [] [] [] [] [] [] | | clisp | [] [] [] [] | | |||
cppi | [] [] [] [] [] | | coreutils | [] [] [] [] | | |||
cpplib | [] [] | | cpio | [] | | |||
cryptsetup | [] | | cppi | [] | | |||
datamash | | | cpplib | [] [] [] | | |||
denemo | [] | | cryptsetup | [] | | |||
dfarc | [] [] [] | | dfarc | [] [] [] [] | | |||
dialog | [] [] [] [] [] [] [] [] [] [] | | dialog | [] [] [] [] [] | | |||
dico | | | dico | | | |||
diffutils | [] [] [] [] | | diffutils | [] [] [] [] [] [] [] | | |||
dink | [] | | dink | [] [] [] | | |||
direvent | [] | | doodle | [] | | |||
doodle | [] [] | | e2fsprogs | [] [] [] | | |||
dos2unix | [] [] | | enscript | [] [] [] | | |||
dos2unix-man | | | exif | () [] [] [] | | |||
e2fsprogs | [] [] | | fetchmail | [] [] () [] [] [] | | |||
enscript | [] [] [] | | findutils | [] [] [] [] | | |||
exif | [] [] [] [] [] [] | | flex | [] [] [] | | |||
fetchmail | [] [] [] | | freedink | [] [] [] [] | | |||
findutils | [] [] [] [] [] [] [] | | gas | [] | | |||
flex | [] | | gawk | [] [] [] | | |||
freedink | [] [] [] [] | | gcal | [] | | |||
fusionforge | | | gcc | [] [] | | |||
gas | [] | | gettext-examples | [] [] [] [] [] | | |||
gawk | [] () [] | | gettext-runtime | [] [] [] [] [] | | |||
gcal | | | gettext-tools | [] [] [] | | |||
gcc | | | gip | [] [] [] [] [] | | |||
gdbm | | | gjay | [] [] | | |||
gettext-examples | [] [] [] [] [] [] [] | | gliv | [] [] [] [] | | |||
gettext-runtime | [] [] [] [] [] [] [] | | glunarclock | [] [] [] | | |||
gettext-tools | [] [] [] | | gnubiff | () | | |||
gjay | [] | | gnucash | [] () () () () () | | |||
glunarclock | [] [] [] [] [] [] | | gnuedu | [] [] | | |||
gnubiff | [] [] () | | gnulib | [] [] [] | | |||
gnubik | [] [] [] | | ||||
gnucash | () () () () () | | ||||
gnuchess | | | ||||
gnulib | [] [] [] [] [] | | ||||
gnunet | | | gnunet | | | |||
gnunet-gtk | | | gnunet-gtk | [] | | |||
gold | [] [] | | gnutls | [] [] | | |||
gphoto2 | [] [] [] [] | | gold | [] [] | | |||
gprof | [] [] [] [] | | gpe-aerial | [] [] [] [] [] | | |||
gramadoir | [] [] [] | | gpe-beam | [] [] [] [] [] | | |||
grep | [] [] [] [] [] [] [] | | gpe-bluetooth | [] [] [] | | |||
grub | [] [] [] | | gpe-calendar | [] [] | | |||
gsasl | [] [] [] [] [] | | gpe-clock | [] [] [] [] [] | | |||
gss | [] [] [] [] [] | | gpe-conf | [] [] [] [] | | |||
gst-plugins-bad | [] [] [] | | gpe-contacts | [] [] [] [] | | |||
gst-plugins-base | [] [] [] [] | | gpe-edit | [] [] [] | | |||
gst-plugins-good | [] [] [] [] [] [] | | gpe-filemanager | [] [] [] [] | | |||
gst-plugins-ugly | [] [] [] [] [] [] | | gpe-go | [] [] [] [] [] | | |||
gstreamer | [] [] [] [] [] | | gpe-login | [] [] [] | | |||
gtick | [] [] [] [] [] | | gpe-ownerinfo | [] [] [] [] [] | | |||
gtkam | [] [] [] [] [] | | gpe-package | [] [] [] [] | | |||
gtkspell | [] [] [] [] [] [] [] [] [] [] | | gpe-sketchbook | [] [] [] [] [] | | |||
guix | | | gpe-su | [] [] [] [] [] | | |||
guix-packages | | | gpe-taskmanager | [] [] [] [] [] | | |||
gutenprint | [] [] [] | | gpe-timesheet | [] [] [] [] [] | | |||
hello | [] [] [] [] [] | | gpe-today | [] [] [] [] [] | | |||
help2man | [] [] [] | | gpe-todo | [] [] [] [] | | |||
help2man-texi | | | gphoto2 | [] [] () [] [] [] [] | | |||
hylafax | [] | | gprof | [] [] [] [] | | |||
idutils | [] [] | | gpsdrive | [] [] [] | | |||
iso_15924 | [] [] [] [] [] [] | | gramadoir | [] [] [] | | |||
iso_3166 | [] [] [] [] [] [] [] [] [] [] [] [] [] | | grep | [] [] | | |||
iso_3166_2 | [] [] | | grub | [] [] [] | | |||
iso_4217 | [] [] [] [] [] [] | | gsasl | [] [] | | |||
iso_639 | [] [] [] [] [] [] [] [] [] | | gss | [] | | |||
iso_639_3 | [] [] | | gst-plugins-bad | [] [] [] [] [] [] | | |||
iso_639_5 | | | gst-plugins-base | [] [] [] [] [] [] | | |||
jwhois | [] [] [] [] | | gst-plugins-good | [] [] [] [] [] [] [] | | |||
kbd | [] [] [] | | gst-plugins-ugly | [] [] [] [] [] [] [] | | |||
klavaro | [] [] [] [] [] | | gstreamer | [] [] [] [] [] [] | | |||
ld | [] [] [] [] | | gtick | [] () [] [] | | |||
leafpad | [] [] [] [] [] [] [] () | | gtkam | [] [] () [] [] | | |||
libc | [] [] [] [] [] | | gtkorphan | [] [] [] [] | | |||
libexif | [] | | gtkspell | [] [] [] [] [] [] [] [] | | |||
gutenprint | [] [] [] [] | | ||||
hello | [] [] [] [] [] | | ||||
help2man | [] [] | | ||||
hylafax | [] [] | | ||||
idutils | [] [] [] | | ||||
indent | [] [] [] [] [] [] [] [] | | ||||
iso_15924 | [] () [] [] [] | | ||||
iso_3166 | [] [] [] () [] [] [] () [] | | ||||
iso_3166_2 | () | | ||||
iso_4217 | [] [] [] () [] [] [] | | ||||
iso_639 | [] [] [] () [] [] [] | | ||||
iso_639_3 | | | ||||
jwhois | [] [] | | ||||
kbd | [] [] [] [] [] | | ||||
keytouch | [] [] [] | | ||||
keytouch-editor | [] [] [] | | ||||
keytouch-keyboa... | [] [] | | ||||
klavaro | [] [] [] [] | | ||||
latrine | [] () [] | | ||||
ld | [] [] [] | | ||||
leafpad | [] [] [] [] [] [] [] | | ||||
libc | [] [] [] [] [] | | ||||
libexif | [] [] () | | ||||
libextractor | | | libextractor | | | |||
libgnutls | [] | | libgnutls | [] | | |||
libgphoto2 | [] [] | | libgpewidget | [] [] [] | | |||
libgphoto2_port | [] [] | | libgpg-error | [] [] | | |||
libgsasl | [] [] [] [] | | libgphoto2 | [] () | | |||
libiconv | [] [] [] [] [] [] [] | | libgphoto2_port | [] () [] | | |||
libidn | [] [] [] [] | | libgsasl | [] | | |||
liferea | [] [] [] [] [] | | libiconv | [] [] [] [] [] [] | | |||
lilypond | [] | | libidn | [] [] [] [] | | |||
lordsawar | | | lifelines | [] () | | |||
lprng | [] | | liferea | [] [] [] [] [] | | |||
lynx | [] [] [] [] | | lilypond | [] [] [] [] | | |||
m4 | [] [] [] [] [] | | linkdr | [] [] [] [] | | |||
lordsawar | [] | | ||||
lprng | | | ||||
lynx | [] [] [] [] | | ||||
m4 | [] [] [] [] [] | | ||||
mailfromd | | | mailfromd | | | |||
mailutils | | | mailutils | [] | | |||
make | [] [] [] [] | | make | [] [] [] [] | | |||
man-db | [] [] | | man-db | | | |||
man-db-manpages | [] [] | | man-db-manpages | | | |||
midi-instruments | [] [] [] [] [] [] [] [] [] | | minicom | [] [] [] [] [] | | |||
minicom | [] [] [] | | mkisofs | [] | | |||
mkisofs | [] [] | | myserver | | | |||
myserver | [] | | nano | [] [] [] [] | | |||
nano | [] [] [] [] [] [] | | opcodes | [] [] [] | | |||
opcodes | [] [] [] | | parted | [] [] | | |||
parted | [] [] [] [] [] | | ||||
pies | | | pies | | | |||
pnmixer | [] [] | | popt | [] [] [] [] [] [] | | |||
popt | [] [] [] [] [] [] [] [] [] [] | | psmisc | [] [] [] [] | | |||
procps-ng | | | pspp | [] | | |||
procps-ng-man | | | pwdutils | [] | | |||
psmisc | [] [] [] [] | | radius | [] | | |||
pspp | [] [] | | recode | [] [] [] [] [] [] [] | | |||
pushover | [] | | rosegarden | () () () () | | |||
pwdutils | [] | | rpm | [] [] [] | | |||
pyspread | | | rush | | | |||
radius | [] | | ||||
recode | [] [] [] [] [] [] [] | | ||||
recutils | | | ||||
rpm | [] | | ||||
rush | [] | | ||||
sarg | | | sarg | | | |||
sed | [] [] [] [] [] [] [] | | screem | | | |||
sharutils | | | scrollkeeper | [] [] [] [] [] [] | | |||
sed | [] [] [] [] [] [] [] | | ||||
sharutils | [] [] [] [] [] | | ||||
shishi | | | shishi | | | |||
skribilo | [] | | skencil | [] () [] | | |||
solfege | [] [] | | solfege | [] [] [] [] | | |||
solfege-manual | | | solfege-manual | [] [] | | |||
spotmachine | | | soundtracker | [] [] [] | | |||
sudo | [] [] [] [] | | sp | [] | | |||
sudoers | [] [] [] | | sysstat | [] [] [] [] | | |||
sysstat | [] [] [] [] | | tar | [] [] [] [] [] | | |||
tar | [] [] [] [] [] [] | | texinfo | [] [] [] | | |||
texinfo | [] [] [] | | tin | [] [] | | |||
texinfo_document | [] [] [] | | unicode-han-tra... | | | |||
tigervnc | | | unicode-transla... | | | |||
tin | | | util-linux-ng | [] [] [] [] [] | | |||
tin-man | | | vice | () () | | |||
tracgoogleappsa... | [] [] [] [] | | vmm | [] | | |||
trader | [] [] | | vorbis-tools | [] [] | | |||
util-linux | [] | | wastesedge | [] | | |||
ve | [] | | wdiff | [] [] [] | | |||
vice | () () | | wget | [] [] [] [] | | |||
vmm | | | wyslij-po | [] | | |||
vorbis-tools | [] [] | | xchat | [] [] [] [] [] [] | | |||
wastesedge | [] | | xdg-user-dirs | [] [] [] [] [] [] [] [] [] | | |||
wcd | | | xkeyboard-config | [] [] [] [] [] [] | | |||
wcd-man | | | ||||
wdiff | [] [] [] | | ||||
wget | [] [] [] [] | | ||||
wyslij-po | [] [] [] | | ||||
xboard | | | ||||
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | | ||||
xkeyboard-config | [] [] [] [] [] [] | | ||||
+-------------------------------------------------+ | +-------------------------------------------------+ | |||
ga gd gl gu he hi hr hu hy ia id is it ja ka kk | cs da de el en en_GB en_ZA eo es et eu fa fi | |||
35 2 47 4 8 2 60 71 2 6 81 11 87 57 0 3 | 64 105 117 18 1 8 0 28 89 18 19 0 104 | |||
kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl | fr ga gl gu he hi hr hu hy id is it ja ka kn | |||
+--------------------------------------------------+ | ||||
a2ps | [] [] | | ||||
aegis | [] | | ||||
anubis | [] [] [] | | ||||
aspell | [] [] | | ||||
bash | [] [] | | ||||
bfd | | | ||||
binutils | | | ||||
bison | [] | | ||||
bison-runtime | [] [] [] [] [] [] | | ||||
buzztrax | | | ||||
ccd2cue | | | ||||
ccide | [] [] | | ||||
cflow | [] | | ||||
clisp | [] | | ||||
coreutils | [] [] | | ||||
cpio | [] | | ||||
cppi | | | ||||
cpplib | [] | | ||||
cryptsetup | [] | | ||||
datamash | [] [] | | ||||
denemo | | | ||||
dfarc | [] [] | | ||||
dialog | [] [] [] [] [] [] | | ||||
dico | | | ||||
diffutils | [] [] [] | | ||||
dink | [] | | ||||
direvent | [] | | ||||
doodle | [] | | ||||
dos2unix | [] [] | | ||||
dos2unix-man | [] | | ||||
e2fsprogs | [] | | ||||
enscript | [] | | ||||
exif | [] [] [] | | ||||
fetchmail | [] | | ||||
findutils | [] [] | | ||||
flex | [] | | ||||
freedink | [] [] | | ||||
fusionforge | | | ||||
gas | | | ||||
gawk | [] | | ||||
gcal | | | ||||
gcc | | | ||||
gdbm | | | ||||
gettext-examples | [] [] [] [] [] [] | | ||||
gettext-runtime | [] [] [] | | ||||
gettext-tools | [] | | ||||
gjay | | | ||||
glunarclock | [] [] | | ||||
gnubiff | [] | | ||||
gnubik | [] [] | | ||||
gnucash | () () () () () () () [] | | ||||
gnuchess | [] [] | | ||||
gnulib | [] | | ||||
gnunet | | | ||||
gnunet-gtk | | | ||||
gold | | | ||||
gphoto2 | [] | | ||||
gprof | [] [] | | ||||
gramadoir | [] | | ||||
grep | [] [] | | ||||
grub | [] [] [] | | ||||
gsasl | [] | | ||||
gss | | | ||||
gst-plugins-bad | [] [] [] | | ||||
gst-plugins-base | [] [] [] | | ||||
gst-plugins-good | [] [] [] [] | | ||||
gst-plugins-ugly | [] [] [] [] [] | | ||||
gstreamer | [] [] [] | | ||||
gtick | [] | | ||||
gtkam | [] [] | | ||||
gtkspell | [] [] [] [] [] [] [] | | ||||
guix | | | ||||
guix-packages | | | ||||
gutenprint | [] | | ||||
hello | [] [] [] | | ||||
help2man | [] | | ||||
help2man-texi | | | ||||
hylafax | [] | | ||||
idutils | [] | | ||||
iso_15924 | () [] [] | | ||||
iso_3166 | [] [] [] () [] [] [] [] [] [] | | ||||
iso_3166_2 | () [] | | ||||
iso_4217 | () [] [] [] | | ||||
iso_639 | [] [] () [] [] [] [] | | ||||
iso_639_3 | [] () [] | | ||||
iso_639_5 | () | | ||||
jwhois | [] [] | | ||||
kbd | [] | | ||||
klavaro | [] [] | | ||||
ld | | | ||||
leafpad | [] [] [] [] [] | | ||||
libc | [] [] | | ||||
libexif | [] | | ||||
libextractor | [] | | ||||
libgnutls | [] [] | | ||||
libgphoto2 | [] | | ||||
libgphoto2_port | [] | | ||||
libgsasl | [] | | ||||
libiconv | [] [] | | ||||
libidn | [] | | ||||
liferea | [] [] [] | | ||||
lilypond | [] | | ||||
lordsawar | | | ||||
lprng | | | ||||
lynx | [] | | ||||
m4 | [] | | ||||
mailfromd | | | ||||
mailutils | | | ||||
make | [] [] | | ||||
man-db | [] | | ||||
man-db-manpages | [] | | ||||
midi-instruments | [] [] [] [] [] [] [] | | ||||
minicom | [] | | ||||
mkisofs | [] | | ||||
myserver | | | ||||
nano | [] [] [] | | ||||
opcodes | [] | | ||||
parted | [] [] | | ||||
pies | | | ||||
pnmixer | [] | | ||||
popt | [] [] [] [] [] | | ||||
procps-ng | | | ||||
procps-ng-man | | | ||||
psmisc | [] | | ||||
pspp | [] [] | | ||||
pushover | | | ||||
pwdutils | [] | | ||||
pyspread | | | ||||
radius | [] | | ||||
recode | [] [] | | ||||
recutils | [] | | ||||
rpm | [] | | ||||
rush | [] | | ||||
sarg | | | ||||
sed | [] [] | | ||||
sharutils | [] | | ||||
shishi | | | ||||
skribilo | | | ||||
solfege | [] [] | | ||||
solfege-manual | [] | | ||||
spotmachine | [] | | ||||
sudo | [] [] [] | | ||||
sudoers | [] [] [] | | ||||
sysstat | [] [] | | ||||
tar | [] [] [] | | ||||
texinfo | [] | | ||||
texinfo_document | [] | | ||||
tigervnc | [] | | ||||
tin | | | ||||
tin-man | | | ||||
tracgoogleappsa... | [] [] [] | | ||||
trader | [] | | ||||
util-linux | [] | | ||||
ve | [] | | ||||
vice | [] | | ||||
vmm | [] | | ||||
vorbis-tools | [] | | ||||
wastesedge | [] | | ||||
wcd | [] | | ||||
wcd-man | [] | | ||||
wdiff | [] | | ||||
wget | [] [] | | ||||
wyslij-po | [] | | ||||
xboard | [] | | ||||
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] | | ||||
xkeyboard-config | [] [] [] | | ||||
+--------------------------------------------------+ | ||||
kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl | ||||
5 15 4 6 0 13 23 3 3 3 4 11 2 42 1 125 | ||||
nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr | ||||
+------------------------------------------------+ | +------------------------------------------------+ | |||
a2ps | [] [] [] [] [] [] [] | | a2ps | [] [] [] | | |||
aegis | [] [] | | aegis | [] [] | | |||
anubis | [] [] [] | | ant-phone | [] [] | | |||
aspell | [] [] [] [] [] [] [] | | anubis | [] [] [] | | |||
bash | [] [] [] [] [] [] | | aspell | [] [] [] [] | | |||
bfd | [] [] | | bash | [] [] [] | | |||
binutils | [] [] | | bfd | [] [] | | |||
bison | [] [] [] | | bibshelf | [] [] [] [] | | |||
bison-runtime | [] [] [] [] [] [] [] [] | | binutils | [] [] | | |||
buzztrax | [] | | bison | [] [] [] | | |||
ccd2cue | [] [] | | bison-runtime | [] [] [] [] [] | | |||
ccide | [] [] [] | | bluez-pin | [] [] [] [] [] [] [] | | |||
cflow | [] [] [] | | bombono-dvd | | | |||
clisp | [] | | buzztard | [] | | |||
coreutils | [] [] [] [] | | cflow | [] [] | | |||
cpio | [] [] [] | | clisp | [] | | |||
cppi | [] [] [] | | coreutils | [] [] [] [] [] | | |||
cpplib | [] [] [] | | cpio | [] [] [] | | |||
cryptsetup | [] [] [] | | cppi | [] | | |||
datamash | [] [] | | cpplib | [] [] | | |||
denemo | | | cryptsetup | [] [] [] | | |||
dfarc | [] [] [] | | dfarc | [] [] | | |||
dialog | [] [] [] [] [] [] [] | | dialog | [] [] [] [] [] [] [] | | |||
dico | [] | | dico | | | |||
diffutils | [] [] [] | | diffutils | [] [] [] [] [] [] [] [] | | |||
dink | | | dink | [] | | |||
direvent | [] [] [] | | doodle | [] [] | | |||
doodle | [] [] | | e2fsprogs | [] [] | | |||
dos2unix | [] [] [] [] | | enscript | [] [] [] [] | | |||
dos2unix-man | [] [] | | exif | [] [] [] [] [] | | |||
e2fsprogs | [] | | fetchmail | [] [] [] [] | | |||
enscript | [] [] [] [] [] [] | | findutils | [] [] [] [] [] | | |||
exif | [] [] [] [] [] [] | | flex | [] [] | | |||
fetchmail | [] [] [] | | freedink | [] [] | | |||
findutils | [] [] [] [] [] [] | | gas | [] [] | | |||
flex | [] [] [] [] [] | | gawk | [] [] [] [] () [] | | |||
freedink | [] [] [] [] [] | | gcal | [] | | |||
fusionforge | | | gcc | [] | | |||
gas | | | gettext-examples | [] [] [] [] [] [] | | |||
gawk | [] | | gettext-runtime | [] [] [] [] [] | | |||
gcal | | | gettext-tools | [] [] [] [] | | |||
gcc | | | gip | [] [] [] [] [] | | |||
gdbm | [] [] [] | | gjay | | | |||
gettext-examples | [] [] [] [] [] [] [] [] | | gliv | () | | |||
gettext-runtime | [] [] [] [] [] [] [] [] [] | | glunarclock | [] [] [] | | |||
gettext-tools | [] [] [] [] [] [] [] | | gnubiff | () [] () | | |||
gjay | [] | | gnucash | () () () () [] | | |||
glunarclock | [] [] [] [] [] [] | | gnuedu | [] [] | | |||
gnubiff | [] | | gnulib | [] [] [] [] [] | | |||
gnubik | [] [] [] [] | | ||||
gnucash | () () () () () [] | | ||||
gnuchess | [] [] | | ||||
gnulib | [] [] [] [] [] | | ||||
gnunet | | | gnunet | | | |||
gnunet-gtk | | | gnunet-gtk | [] | | |||
gold | | | gnutls | [] [] | | |||
gphoto2 | [] [] [] [] [] | | gold | [] | | |||
gprof | [] [] [] [] | | gpe-aerial | [] [] | | |||
gramadoir | [] [] | | gpe-beam | [] [] [] | | |||
grep | [] [] [] [] [] [] | | gpe-bluetooth | [] [] [] | | |||
grub | [] [] [] [] [] | | gpe-calendar | [] | | |||
gsasl | [] [] [] | | gpe-clock | [] [] [] [] | | |||
gss | [] [] [] [] | | gpe-conf | [] [] [] | | |||
gst-plugins-bad | [] [] [] [] [] | | gpe-contacts | [] [] [] | | |||
gst-plugins-base | [] [] [] [] [] [] | | gpe-edit | [] [] | | |||
gst-plugins-good | [] [] [] [] [] [] [] | | gpe-filemanager | [] [] [] | | |||
gst-plugins-ugly | [] [] [] [] [] [] [] | | gpe-go | [] [] [] [] | | |||
gstreamer | [] [] [] [] [] [] [] | | gpe-login | [] [] | | |||
gtick | [] [] [] [] [] | | gpe-ownerinfo | [] [] [] [] | | |||
gtkam | [] [] [] [] [] [] | | gpe-package | [] [] | | |||
gtkspell | [] [] [] [] [] [] [] [] [] | | gpe-sketchbook | [] [] [] | | |||
guix | | | gpe-su | [] [] [] [] [] | | |||
guix-packages | | | gpe-taskmanager | [] [] [] [] | | |||
gutenprint | [] [] | | gpe-timesheet | [] [] [] [] | | |||
hello | [] [] [] [] [] [] | | gpe-today | [] [] [] [] [] [] | | |||
help2man | [] [] [] [] | | gpe-todo | [] [] | | |||
help2man-texi | [] | | gphoto2 | [] [] [] [] [] | | |||
hylafax | | | gprof | [] [] [] | | |||
idutils | [] [] [] | | gpsdrive | [] [] [] | | |||
iso_15924 | [] () [] [] [] [] | | gramadoir | [] [] [] | | |||
iso_3166 | [] [] [] [] () [] [] [] [] [] [] [] [] | | grep | [] | | |||
iso_3166_2 | [] () [] | | grub | [] [] [] | | |||
iso_4217 | [] [] () [] [] [] [] [] | | gsasl | [] [] [] [] | | |||
iso_639 | [] [] [] () [] [] [] [] [] [] | | gss | [] [] [] [] | | |||
iso_639_3 | [] () | | gst-plugins-bad | [] [] [] [] | | |||
iso_639_5 | () [] | | gst-plugins-base | [] [] [] [] [] | | |||
jwhois | [] [] [] [] | | gst-plugins-good | [] [] [] [] [] | | |||
kbd | [] [] | | gst-plugins-ugly | [] [] [] [] [] | | |||
klavaro | [] [] [] [] [] | | gstreamer | [] [] [] [] | | |||
ld | | | gtick | [] [] [] [] | | |||
leafpad | [] [] [] [] [] [] [] [] | | gtkam | [] [] [] [] [] | | |||
libc | [] [] [] | | gtkorphan | [] [] [] | | |||
libexif | [] () [] | | gtkspell | [] [] [] [] [] [] [] [] | | |||
libextractor | [] | | gutenprint | [] [] [] | | |||
libgnutls | [] | | hello | [] [] | | |||
libgphoto2 | [] | | help2man | [] | | |||
libgphoto2_port | [] [] [] [] [] | | hylafax | [] | | |||
libgsasl | [] [] [] [] | | idutils | [] [] [] [] [] | | |||
libiconv | [] [] [] [] [] | | indent | [] [] [] [] [] [] [] | | |||
libidn | [] [] [] | | iso_15924 | () [] [] | | |||
liferea | [] [] [] [] () [] [] | | iso_3166 | () [] [] [] [] [] [] [] [] [] [] | | |||
lilypond | | | iso_3166_2 | () [] [] [] | | |||
iso_4217 | () [] [] [] [] | | ||||
iso_639 | () [] [] [] [] [] [] [] | | ||||
iso_639_3 | () [] [] | | ||||
jwhois | [] [] [] [] | | ||||
kbd | [] [] | | ||||
keytouch | [] [] [] [] [] | | ||||
keytouch-editor | [] [] [] [] | | ||||
keytouch-keyboa... | [] [] [] [] | | ||||
klavaro | [] [] | | ||||
latrine | [] [] | | ||||
ld | [] [] [] | | ||||
leafpad | [] [] [] [] [] [] () | | ||||
libc | [] [] [] [] | | ||||
libexif | | | ||||
libextractor | | | ||||
libgnutls | [] [] | | ||||
libgpewidget | [] [] [] | | ||||
libgpg-error | [] [] | | ||||
libgphoto2 | [] [] [] | | ||||
libgphoto2_port | [] [] [] | | ||||
libgsasl | [] [] [] [] | | ||||
libiconv | [] [] [] [] [] | | ||||
libidn | [] [] [] | | ||||
lifelines | () | | ||||
liferea | [] [] [] [] | | ||||
lilypond | [] | | ||||
linkdr | [] [] [] [] | | ||||
lordsawar | | | lordsawar | | | |||
lprng | [] | | lprng | [] | | |||
lynx | [] [] | | lynx | [] [] [] [] [] | | |||
m4 | [] [] [] [] [] | | m4 | [] [] [] [] [] | | |||
mailfromd | [] | | mailfromd | | | |||
mailutils | [] | | mailutils | [] [] | | |||
make | [] [] [] | | make | [] [] [] [] [] [] [] [] | | |||
man-db | [] [] [] | | man-db | [] [] | | |||
man-db-manpages | [] [] [] | | man-db-manpages | [] | | |||
midi-instruments | [] [] [] [] [] [] [] [] | | minicom | [] [] [] [] | | |||
minicom | [] [] [] [] | | mkisofs | [] [] [] | | |||
mkisofs | [] [] [] | | myserver | | | |||
myserver | [] [] | | nano | [] [] [] [] [] | | |||
nano | [] [] [] [] [] [] | | opcodes | [] [] [] | | |||
opcodes | | | parted | [] [] [] [] | | |||
parted | [] [] [] [] [] [] | | pies | | | |||
pies | [] | | popt | [] [] [] [] [] [] [] [] | | |||
pnmixer | [] | | psmisc | [] [] | | |||
popt | [] [] [] [] [] [] | | pspp | | | |||
procps-ng | [] | | pwdutils | [] [] | | |||
procps-ng-man | [] | | radius | [] [] | | |||
psmisc | [] [] [] [] | | recode | [] [] [] [] [] [] [] | | |||
pspp | [] [] | | rosegarden | () () () () | | |||
pushover | | | rpm | [] [] | | |||
pwdutils | [] | | rush | | | |||
pyspread | [] [] | | sarg | [] | | |||
radius | [] [] | | screem | [] [] | | |||
recode | [] [] [] [] [] [] [] [] | | scrollkeeper | [] [] [] | | |||
recutils | [] [] | | sed | [] [] [] [] [] [] [] | | |||
rpm | [] | | sharutils | [] [] [] [] [] [] | | |||
rush | [] [] [] | | shishi | [] | | |||
sarg | [] [] | | skencil | [] | | |||
sed | [] [] [] [] [] [] [] [] | | solfege | [] [] [] | | |||
sharutils | [] [] [] | | solfege-manual | [] [] | | |||
shishi | [] [] | | soundtracker | [] [] | | |||
skribilo | [] | | sp | [] () | | |||
solfege | [] [] [] | | sysstat | [] [] [] [] | | |||
solfege-manual | [] [] | | tar | [] [] [] [] [] [] | | |||
spotmachine | [] [] | | texinfo | [] [] [] [] | | |||
sudo | [] [] [] [] [] [] | | tin | [] | | |||
sudoers | [] [] [] [] | | unicode-han-tra... | | | |||
sysstat | [] [] [] [] [] | | unicode-transla... | [] [] | | |||
tar | [] [] [] [] [] | | util-linux-ng | [] [] [] [] [] | | |||
texinfo | [] [] [] | | vice | () () () | | |||
texinfo_document | [] [] | | vmm | [] | | |||
tigervnc | [] [] [] | | vorbis-tools | [] | | |||
tin | [] | | wastesedge | () () | | |||
tin-man | | | wdiff | | | |||
tracgoogleappsa... | [] [] [] [] | | wget | [] [] [] [] [] [] [] | | |||
trader | [] [] | | wyslij-po | [] [] | | |||
util-linux | [] [] | | xchat | [] [] [] [] [] [] [] [] | | |||
ve | [] [] [] | | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] | | |||
vice | | | xkeyboard-config | [] [] [] [] | | |||
vmm | | | ||||
vorbis-tools | [] [] [] | | ||||
wastesedge | | | ||||
wcd | | | ||||
wcd-man | | | ||||
wdiff | [] [] [] [] [] | | ||||
wget | [] [] [] [] [] | | ||||
wyslij-po | [] [] [] [] | | ||||
xboard | [] [] [] | | ||||
xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] | | ||||
xkeyboard-config | [] [] [] [] | | ||||
+------------------------------------------------+ | +------------------------------------------------+ | |||
nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr | fr ga gl gu he hi hr hu hy id is it ja ka kn | |||
7 3 6 114 1 12 88 32 82 3 40 45 7 101 | 121 53 20 4 8 2 5 53 2 120 5 83 66 0 4 | |||
ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne | ||||
+-----------------------------------------------+ | ||||
a2ps | [] | | ||||
aegis | | | ||||
ant-phone | | | ||||
anubis | [] [] | | ||||
aspell | [] | | ||||
bash | | | ||||
bfd | | | ||||
bibshelf | [] [] | | ||||
binutils | | | ||||
bison | [] | | ||||
bison-runtime | [] [] [] [] [] | | ||||
bluez-pin | [] [] [] [] [] | | ||||
bombono-dvd | | | ||||
buzztard | | | ||||
cflow | | | ||||
clisp | | | ||||
coreutils | [] | | ||||
cpio | | | ||||
cppi | | | ||||
cpplib | | | ||||
cryptsetup | | | ||||
dfarc | [] | | ||||
dialog | [] [] [] [] [] | | ||||
dico | | | ||||
diffutils | [] [] | | ||||
dink | | | ||||
doodle | | | ||||
e2fsprogs | | | ||||
enscript | | | ||||
exif | [] | | ||||
fetchmail | | | ||||
findutils | | | ||||
flex | | | ||||
freedink | [] | | ||||
gas | | | ||||
gawk | | | ||||
gcal | | | ||||
gcc | | | ||||
gettext-examples | [] [] [] [] | | ||||
gettext-runtime | [] | | ||||
gettext-tools | [] | | ||||
gip | [] [] | | ||||
gjay | | | ||||
gliv | | | ||||
glunarclock | [] | | ||||
gnubiff | | | ||||
gnucash | () () () () | | ||||
gnuedu | | | ||||
gnulib | | | ||||
gnunet | | | ||||
gnunet-gtk | | | ||||
gnutls | [] | | ||||
gold | | | ||||
gpe-aerial | [] | | ||||
gpe-beam | [] | | ||||
gpe-bluetooth | [] [] | | ||||
gpe-calendar | [] | | ||||
gpe-clock | [] [] [] [] [] | | ||||
gpe-conf | [] [] | | ||||
gpe-contacts | [] [] | | ||||
gpe-edit | [] | | ||||
gpe-filemanager | [] [] | | ||||
gpe-go | [] [] [] | | ||||
gpe-login | [] | | ||||
gpe-ownerinfo | [] [] | | ||||
gpe-package | [] [] | | ||||
gpe-sketchbook | [] [] | | ||||
gpe-su | [] [] [] [] [] [] | | ||||
gpe-taskmanager | [] [] [] [] [] [] | | ||||
gpe-timesheet | [] [] | | ||||
gpe-today | [] [] [] [] | | ||||
gpe-todo | [] [] | | ||||
gphoto2 | | | ||||
gprof | [] | | ||||
gpsdrive | | | ||||
gramadoir | | | ||||
grep | | | ||||
grub | | | ||||
gsasl | | | ||||
gss | | | ||||
gst-plugins-bad | [] [] | | ||||
gst-plugins-base | [] [] | | ||||
gst-plugins-good | [] [] | | ||||
gst-plugins-ugly | [] [] [] [] [] | | ||||
gstreamer | | | ||||
gtick | | | ||||
gtkam | [] | | ||||
gtkorphan | [] [] | | ||||
gtkspell | [] [] [] [] [] [] [] | | ||||
gutenprint | | | ||||
hello | [] [] [] | | ||||
help2man | | | ||||
hylafax | | | ||||
idutils | | | ||||
indent | | | ||||
iso_15924 | [] [] | | ||||
iso_3166 | [] [] () [] [] [] [] [] | | ||||
iso_3166_2 | | | ||||
iso_4217 | [] [] | | ||||
iso_639 | [] [] | | ||||
iso_639_3 | [] | | ||||
jwhois | [] | | ||||
kbd | | | ||||
keytouch | [] | | ||||
keytouch-editor | [] | | ||||
keytouch-keyboa... | [] | | ||||
klavaro | [] | | ||||
latrine | [] | | ||||
ld | | | ||||
leafpad | [] [] [] | | ||||
libc | [] | | ||||
libexif | | | ||||
libextractor | | | ||||
libgnutls | [] | | ||||
libgpewidget | [] [] | | ||||
libgpg-error | | | ||||
libgphoto2 | | | ||||
libgphoto2_port | | | ||||
libgsasl | | | ||||
libiconv | | | ||||
libidn | | | ||||
lifelines | | | ||||
liferea | | | ||||
lilypond | | | ||||
linkdr | | | ||||
lordsawar | | | ||||
lprng | | | ||||
lynx | | | ||||
m4 | | | ||||
mailfromd | | | ||||
mailutils | | | ||||
make | [] | | ||||
man-db | | | ||||
man-db-manpages | | | ||||
minicom | [] | | ||||
mkisofs | | | ||||
myserver | | | ||||
nano | [] [] | | ||||
opcodes | | | ||||
parted | | | ||||
pies | | | ||||
popt | [] [] [] | | ||||
psmisc | | | ||||
pspp | | | ||||
pwdutils | | | ||||
radius | | | ||||
recode | | | ||||
rosegarden | | | ||||
rpm | | | ||||
rush | | | ||||
sarg | | | ||||
screem | | | ||||
scrollkeeper | [] [] | | ||||
sed | | | ||||
sharutils | | | ||||
shishi | | | ||||
skencil | | | ||||
solfege | [] | | ||||
solfege-manual | | | ||||
soundtracker | | | ||||
sp | | | ||||
sysstat | [] | | ||||
tar | [] | | ||||
texinfo | [] | | ||||
tin | | | ||||
unicode-han-tra... | | | ||||
unicode-transla... | | | ||||
util-linux-ng | | | ||||
vice | | | ||||
vmm | | | ||||
vorbis-tools | | | ||||
wastesedge | | | ||||
wdiff | | | ||||
wget | [] | | ||||
wyslij-po | | | ||||
xchat | [] [] [] | | ||||
xdg-user-dirs | [] [] [] [] [] [] [] [] | | ||||
xkeyboard-config | [] [] [] | | ||||
+-----------------------------------------------+ | ||||
ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne | ||||
20 5 10 1 12 48 4 2 2 4 24 10 19 3 1 | ||||
sv sw ta te tg th tr uk ur vi wa wo zh_CN | nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr | |||
+----------------------------------------------+ | +---------------------------------------------------+ | |||
a2ps | [] [] [] [] [] | | a2ps | [] [] [] [] [] [] [] [] | | |||
aegis | [] | | aegis | [] [] [] | | |||
anubis | [] [] [] [] | | ant-phone | [] [] | | |||
aspell | [] [] [] [] [] | | anubis | [] [] [] | | |||
bash | [] [] [] [] | | aspell | [] [] [] [] [] | | |||
bfd | [] [] [] | | bash | [] [] | | |||
binutils | [] [] [] | | bfd | [] | | |||
bison | [] [] [] [] | | bibshelf | [] [] | | |||
bison-runtime | [] [] [] [] [] [] | | binutils | [] [] | | |||
buzztrax | [] [] [] | | bison | [] [] [] | | |||
ccd2cue | [] [] [] | | bison-runtime | [] [] [] [] [] [] [] | | |||
ccide | [] [] [] [] | | bluez-pin | [] [] [] [] [] [] [] [] | | |||
cflow | [] [] [] [] | | bombono-dvd | [] () | | |||
clisp | | | buzztard | [] [] | | |||
coreutils | [] [] [] | | cflow | [] | | |||
cpio | [] [] [] [] [] | | clisp | [] [] | | |||
cppi | [] [] [] [] | | coreutils | [] [] [] [] [] [] | | |||
cpplib | [] [] [] [] [] | | cpio | [] [] [] | | |||
cryptsetup | [] [] [] | | cppi | [] | | |||
datamash | [] [] [] | | cpplib | [] | | |||
denemo | [] | | cryptsetup | [] | | |||
dfarc | [] [] | | dfarc | [] | | |||
dialog | [] [] [] [] [] [] | | dialog | [] [] [] [] | | |||
dico | [] | | dico | [] | | |||
diffutils | [] [] [] [] [] | | diffutils | [] [] [] [] [] [] | | |||
dink | [] | | dink | () | | |||
direvent | [] [] | | doodle | [] [] | | |||
doodle | [] [] | | e2fsprogs | [] [] | | |||
dos2unix | [] [] [] [] | | enscript | [] [] [] [] [] | | |||
dos2unix-man | [] [] [] | | exif | [] [] [] () [] | | |||
e2fsprogs | [] [] [] [] | | fetchmail | [] [] [] [] | | |||
enscript | [] [] [] [] | | findutils | [] [] [] [] [] | | |||
exif | [] [] [] [] [] | | flex | [] [] [] [] [] | | |||
fetchmail | [] [] [] [] | | freedink | [] [] | | |||
findutils | [] [] [] [] [] | | gas | | | |||
flex | [] [] [] [] | | gawk | [] [] [] [] | | |||
freedink | [] [] [] | | gcal | | | |||
fusionforge | | | gcc | [] | | |||
gas | [] | | gettext-examples | [] [] [] [] [] [] [] [] | | |||
gawk | [] [] [] | | gettext-runtime | [] [] [] [] [] [] [] [] [] | | |||
gcal | [] [] [] | | gettext-tools | [] [] [] [] [] [] | | |||
gcc | [] | | gip | [] [] [] [] [] | | |||
gdbm | [] [] | | gjay | | | |||
gettext-examples | [] [] [] [] [] | | gliv | [] [] [] [] [] [] | | |||
gettext-runtime | [] [] [] [] [] | | glunarclock | [] [] [] [] [] | | |||
gettext-tools | [] [] [] [] [] | | gnubiff | [] () | | |||
gjay | [] [] [] | | gnucash | [] () () () | | |||
glunarclock | [] [] [] [] | | gnuedu | [] | | |||
gnubiff | [] [] | | gnulib | [] [] [] [] | | |||
gnubik | [] [] [] [] | | gnunet | | | |||
gnucash | () () () () [] | | gnunet-gtk | | | |||
gnuchess | [] [] [] | | gnutls | [] [] | | |||
gnulib | [] [] [] [] | | gold | | | |||
gnunet | | | gpe-aerial | [] [] [] [] [] [] [] | | |||
gnunet-gtk | | | gpe-beam | [] [] [] [] [] [] [] | | |||
gold | [] [] | | gpe-bluetooth | [] [] | | |||
gphoto2 | [] [] [] [] | | gpe-calendar | [] [] [] [] | | |||
gprof | [] [] [] [] | | gpe-clock | [] [] [] [] [] [] [] [] | | |||
gramadoir | [] [] [] | | gpe-conf | [] [] [] [] [] [] [] | | |||
grep | [] [] [] [] [] | | gpe-contacts | [] [] [] [] [] | | |||
grub | [] [] [] [] | | gpe-edit | [] [] [] | | |||
gsasl | [] [] [] [] | | gpe-filemanager | [] [] [] | | |||
gss | [] [] [] | | gpe-go | [] [] [] [] [] [] [] [] | | |||
gst-plugins-bad | [] [] [] [] [] | | gpe-login | [] [] | | |||
gst-plugins-base | [] [] [] [] [] | | gpe-ownerinfo | [] [] [] [] [] [] [] [] | | |||
gst-plugins-good | [] [] [] [] [] | | gpe-package | [] [] | | |||
gst-plugins-ugly | [] [] [] [] [] | | gpe-sketchbook | [] [] [] [] [] [] [] | | |||
gstreamer | [] [] [] [] [] | | gpe-su | [] [] [] [] [] [] [] [] | | |||
gtick | [] [] [] | | gpe-taskmanager | [] [] [] [] [] [] [] [] | | |||
gtkam | [] [] [] [] | | gpe-timesheet | [] [] [] [] [] [] [] [] | | |||
gtkspell | [] [] [] [] [] [] [] | | gpe-today | [] [] [] [] [] [] [] [] | | |||
guix | | | gpe-todo | [] [] [] [] [] | | |||
guix-packages | | | gphoto2 | [] [] [] [] [] [] [] [] | | |||
gutenprint | [] [] [] [] | | gprof | [] [] [] | | |||
hello | [] [] [] [] [] [] | | gpsdrive | [] [] | | |||
help2man | [] [] [] | | gramadoir | [] [] | | |||
help2man-texi | [] | | grep | [] [] [] [] | | |||
hylafax | [] | | grub | [] [] [] | | |||
idutils | [] [] [] | | gsasl | [] [] [] [] | | |||
iso_15924 | [] () [] [] () [] | | gss | [] [] [] | | |||
iso_3166 | [] [] () [] [] () [] [] | | gst-plugins-bad | [] [] [] [] [] | | |||
iso_3166_2 | () [] [] () [] | | gst-plugins-base | [] [] [] [] [] | | |||
iso_4217 | [] () [] [] () [] | | gst-plugins-good | [] [] [] [] [] | | |||
iso_639 | [] [] [] () [] [] () [] [] | | gst-plugins-ugly | [] [] [] [] [] [] | | |||
iso_639_3 | [] () [] [] () | | gstreamer | [] [] [] [] [] | | |||
iso_639_5 | () [] () | | gtick | [] [] [] | | |||
jwhois | [] [] [] [] | | gtkam | [] [] [] [] [] [] | | |||
kbd | [] [] [] [] | | gtkorphan | [] | | |||
klavaro | [] [] [] [] [] [] | | gtkspell | [] [] [] [] [] [] [] [] [] [] | | |||
ld | [] [] [] [] [] | | gutenprint | [] [] | | |||
leafpad | [] [] [] [] [] [] | | hello | [] [] [] [] | | |||
libc | [] [] [] [] [] | | help2man | [] [] | | |||
libexif | [] [] () | | hylafax | [] | | |||
libextractor | [] [] | | idutils | [] [] [] [] [] | | |||
libgnutls | [] [] [] [] | | indent | [] [] [] [] [] [] [] | | |||
libgphoto2 | [] [] [] | | iso_15924 | [] [] [] [] | | |||
libgphoto2_port | [] [] [] [] | | iso_3166 | [] [] [] [] [] () [] [] [] [] [] [] [] [] | | |||
libgsasl | [] [] [] [] | | iso_3166_2 | [] [] [] | | |||
libiconv | [] [] [] [] [] | | iso_4217 | [] [] [] [] [] [] [] [] | | |||
libidn | () [] [] [] | | iso_639 | [] [] [] [] [] [] [] [] [] | | |||
liferea | [] [] [] [] [] | | iso_639_3 | [] [] | | |||
lilypond | [] | | jwhois | [] [] [] [] | | |||
lordsawar | | | kbd | [] [] [] | | |||
lprng | [] | | keytouch | [] [] [] | | |||
lynx | [] [] [] [] | | keytouch-editor | [] [] [] | | |||
m4 | [] [] [] | | keytouch-keyboa... | [] [] [] | | |||
mailfromd | [] [] | | klavaro | [] [] | | |||
mailutils | [] | | latrine | [] [] | | |||
make | [] [] [] [] | | ld | | | |||
man-db | [] [] [] | | leafpad | [] [] [] [] [] [] [] [] [] | | |||
man-db-manpages | [] [] | | libc | [] [] [] [] | | |||
midi-instruments | [] [] [] [] [] [] | | libexif | [] [] () [] | | |||
minicom | [] [] | | libextractor | | | |||
mkisofs | [] [] [] | | libgnutls | [] [] | | |||
myserver | [] | | libgpewidget | [] [] [] | | |||
nano | [] [] [] [] | | libgpg-error | [] [] | | |||
opcodes | [] [] [] | | libgphoto2 | [] [] | | |||
parted | [] [] [] [] [] | | libgphoto2_port | [] [] [] [] | | |||
pies | [] [] | | libgsasl | [] [] [] [] [] | | |||
pnmixer | [] [] [] | | libiconv | [] [] [] [] [] | | |||
popt | [] [] [] [] [] [] [] | | libidn | [] [] | | |||
procps-ng | [] [] | | lifelines | [] [] | | |||
procps-ng-man | [] | | liferea | [] [] [] [] [] () () [] | | |||
psmisc | [] [] [] [] | | lilypond | [] | | |||
pspp | [] [] [] | | linkdr | [] [] [] | | |||
pushover | [] | | lordsawar | | | |||
pwdutils | [] [] | | lprng | [] | | |||
pyspread | [] | | lynx | [] [] [] | | |||
radius | [] [] | | m4 | [] [] [] [] [] | | |||
recode | [] [] [] [] | | mailfromd | [] | | |||
recutils | [] [] [] | | mailutils | [] | | |||
rpm | [] [] [] [] | | make | [] [] [] [] | | |||
rush | [] [] | | man-db | [] [] [] | | |||
sarg | | | man-db-manpages | [] [] [] | | |||
sed | [] [] [] [] [] | | minicom | [] [] [] [] | | |||
sharutils | [] [] [] [] | | mkisofs | [] [] [] | | |||
shishi | [] [] | | myserver | | | |||
skribilo | [] [] | | nano | [] [] [] [] | | |||
solfege | [] [] [] [] | | opcodes | [] [] | | |||
solfege-manual | [] | | parted | [] [] [] [] | | |||
spotmachine | [] [] [] | | pies | [] | | |||
sudo | [] [] [] [] [] | | popt | [] [] [] [] | | |||
sudoers | [] [] [] [] | | psmisc | [] [] [] | | |||
sysstat | [] [] [] [] [] | | pspp | [] [] | | |||
tar | [] [] [] [] [] | | pwdutils | [] | | |||
texinfo | [] [] [] | | radius | [] [] [] | | |||
texinfo_document | [] | | recode | [] [] [] [] [] [] [] [] | | |||
tigervnc | [] [] [] | | rosegarden | () () | | |||
tin | [] | | rpm | [] [] [] | | |||
tin-man | | | rush | [] [] | | |||
tracgoogleappsa... | [] [] [] [] [] | | sarg | | | |||
trader | [] | | screem | | | |||
util-linux | [] [] [] [] | | scrollkeeper | [] [] [] [] [] [] [] [] | | |||
ve | [] [] [] [] | | sed | [] [] [] [] [] [] [] [] [] | | |||
vice | () () | | sharutils | [] [] [] [] | | |||
vmm | | | shishi | [] | | |||
vorbis-tools | [] [] | | skencil | [] [] | | |||
wastesedge | | | solfege | [] [] [] [] | | |||
wcd | [] [] [] | | solfege-manual | [] [] [] | | |||
wcd-man | [] | | soundtracker | [] | | |||
wdiff | [] [] [] [] | | sp | | | |||
wget | [] [] [] | | sysstat | [] [] [] [] | | |||
wyslij-po | [] [] | | tar | [] [] [] [] | | |||
xboard | [] [] | | texinfo | [] [] [] [] | | |||
xdg-user-dirs | [] [] [] [] [] [] [] [] | | tin | [] | | |||
xkeyboard-config | [] [] [] [] | | unicode-han-tra... | | | |||
+----------------------------------------------+ | unicode-transla... | | | |||
sv sw ta te tg th tr uk ur vi wa wo zh_CN | util-linux-ng | [] [] [] [] [] | | |||
106 1 4 3 0 13 51 115 1 125 7 1 100 | vice | [] | | |||
vmm | [] | | ||||
zh_HK zh_TW | vorbis-tools | [] [] | | |||
+-------------+ | wastesedge | [] | | |||
a2ps | | 30 | wdiff | [] [] | | |||
aegis | | 9 | wget | [] [] [] [] [] [] [] | | |||
anubis | | 19 | wyslij-po | [] [] [] | | |||
aspell | | 29 | xchat | [] [] [] [] [] [] [] [] [] | | |||
bash | [] | 23 | xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | | |||
bfd | | 11 | xkeyboard-config | [] [] [] [] [] | | |||
binutils | | 12 | +---------------------------------------------------+ | |||
bison | [] | 18 | nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr | |||
bison-runtime | [] | 38 | 135 10 4 7 105 1 29 61 47 91 3 55 47 8 37 | |||
buzztrax | | 9 | ||||
ccd2cue | | 10 | sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW | |||
ccide | | 17 | +---------------------------------------------------+ | |||
cflow | | 16 | a2ps | [] [] [] [] [] | 27 | |||
clisp | | 10 | aegis | [] | 9 | |||
coreutils | | 18 | ant-phone | [] [] [] [] | 9 | |||
cpio | | 20 | anubis | [] [] [] [] | 15 | |||
cppi | | 17 | aspell | [] [] [] | 20 | |||
cpplib | [] | 19 | bash | [] [] | 11 | |||
cryptsetup | | 14 | bfd | [] | 6 | |||
datamash | | 11 | bibshelf | [] [] [] | 16 | |||
denemo | | 5 | binutils | [] [] | 8 | |||
dfarc | | 17 | bison | [] [] | 12 | |||
dialog | [] | 42 | bison-runtime | [] [] [] [] [] [] | 29 | |||
dico | | 6 | bluez-pin | [] [] [] [] [] [] [] [] | 37 | |||
diffutils | | 22 | bombono-dvd | [] | 4 | |||
dink | | 10 | buzztard | [] | 7 | |||
direvent | | 11 | cflow | [] [] [] | 9 | |||
doodle | | 12 | clisp | | 10 | |||
dos2unix | [] | 18 | coreutils | [] [] [] [] | 22 | |||
dos2unix-man | | 9 | cpio | [] [] [] [] [] [] | 13 | |||
e2fsprogs | | 15 | cppi | [] [] | 5 | |||
enscript | | 21 | cpplib | [] [] [] [] [] [] | 13 | |||
exif | | 27 | cryptsetup | [] [] | 7 | |||
fetchmail | | 19 | dfarc | [] | 9 | |||
findutils | | 29 | dialog | [] [] [] [] [] [] [] | 30 | |||
flex | [] | 19 | dico | [] | 2 | |||
freedink | | 24 | diffutils | [] [] [] [] [] [] | 30 | |||
fusionforge | | 3 | dink | | 4 | |||
gas | | 5 | doodle | [] [] | 7 | |||
gawk | | 13 | e2fsprogs | [] [] [] | 11 | |||
gcal | | 8 | enscript | [] [] [] [] | 17 | |||
gcc | | 2 | exif | [] [] [] | 16 | |||
gdbm | | 10 | fetchmail | [] [] [] | 17 | |||
gettext-examples | [] [] | 40 | findutils | [] [] [] [] [] | 20 | |||
gettext-runtime | [] [] | 35 | flex | [] [] [] [] | 15 | |||
gettext-tools | [] | 24 | freedink | [] | 10 | |||
gjay | | 9 | gas | [] | 4 | |||
glunarclock | [] | 27 | gawk | [] [] [] [] | 18 | |||
gnubiff | | 9 | gcal | [] [] | 5 | |||
gnubik | | 19 | gcc | [] [] [] | 7 | |||
gnucash | () | 6 | gettext-examples | [] [] [] [] [] [] [] | 34 | |||
gnuchess | | 11 | gettext-runtime | [] [] [] [] [] [] [] | 30 | |||
gnulib | | 23 | gettext-tools | [] [] [] [] [] [] | 22 | |||
gnunet | | 1 | gip | [] [] [] [] | 22 | |||
gnunet-gtk | | 1 | gjay | [] | 3 | |||
gold | | 7 | gliv | [] [] [] | 14 | |||
gphoto2 | [] | 19 | glunarclock | [] [] [] [] [] | 19 | |||
gprof | | 21 | gnubiff | [] [] | 4 | |||
gramadoir | | 14 | gnucash | () [] () () | 9 | |||
grep | [] | 31 | gnuedu | [] [] | 7 | |||
grub | | 21 | gnulib | [] [] [] [] | 16 | |||
gsasl | [] | 19 | gnunet | [] | 1 | |||
gss | | 17 | gnunet-gtk | [] [] [] | 5 | |||
gst-plugins-bad | | 21 | gnutls | [] [] [] | 10 | |||
gst-plugins-base | | 27 | gold | [] | 4 | |||
gst-plugins-good | | 32 | gpe-aerial | [] [] [] | 18 | |||
gst-plugins-ugly | | 34 | gpe-beam | [] [] [] | 19 | |||
gstreamer | [] | 32 | gpe-bluetooth | [] [] [] | 13 | |||
gtick | | 19 | gpe-calendar | [] [] [] [] | 12 | |||
gtkam | | 24 | gpe-clock | [] [] [] [] [] | 28 | |||
gtkspell | [] [] | 48 | gpe-conf | [] [] [] [] | 20 | |||
guix | | 2 | gpe-contacts | [] [] [] | 17 | |||
guix-packages | | 0 | gpe-edit | [] [] [] | 12 | |||
gutenprint | | 15 | gpe-filemanager | [] [] [] [] | 16 | |||
hello | [] | 30 | gpe-go | [] [] [] [] [] | 25 | |||
help2man | | 18 | gpe-login | [] [] [] | 11 | |||
help2man-texi | | 5 | gpe-ownerinfo | [] [] [] [] [] | 25 | |||
hylafax | | 5 | gpe-package | [] [] [] | 13 | |||
idutils | | 14 | gpe-sketchbook | [] [] [] | 20 | |||
iso_15924 | [] | 23 | gpe-su | [] [] [] [] [] | 30 | |||
iso_3166 | [] [] | 58 | gpe-taskmanager | [] [] [] [] [] | 29 | |||
iso_3166_2 | | 9 | gpe-timesheet | [] [] [] [] [] | 25 | |||
iso_4217 | [] [] | 28 | gpe-today | [] [] [] [] [] [] | 30 | |||
iso_639 | [] [] | 46 | gpe-todo | [] [] [] [] | 17 | |||
iso_639_3 | | 10 | gphoto2 | [] [] [] [] [] | 24 | |||
iso_639_5 | | 2 | gprof | [] [] [] | 15 | |||
jwhois | [] | 20 | gpsdrive | [] [] [] | 11 | |||
kbd | | 17 | gramadoir | [] [] [] | 11 | |||
klavaro | | 30 | grep | [] [] [] | 10 | |||
ld | [] | 15 | grub | [] [] [] | 14 | |||
leafpad | [] | 39 | gsasl | [] [] [] [] | 14 | |||
libc | [] | 24 | gss | [] [] [] | 11 | |||
libexif | | 10 | gst-plugins-bad | [] [] [] [] | 22 | |||
libextractor | | 5 | gst-plugins-base | [] [] [] [] [] | 24 | |||
libgnutls | | 13 | gst-plugins-good | [] [] [] [] [] | 25 | |||
libgphoto2 | | 10 | gst-plugins-ugly | [] [] [] [] [] | 29 | |||
libgphoto2_port | [] | 19 | gstreamer | [] [] [] [] | 22 | |||
libgsasl | | 18 | gtick | [] [] [] | 13 | |||
libiconv | [] | 29 | gtkam | [] [] [] | 20 | |||
libidn | | 17 | gtkorphan | [] [] [] | 14 | |||
liferea | | 29 | gtkspell | [] [] [] [] [] [] [] [] [] | 45 | |||
lilypond | | 11 | gutenprint | [] | 10 | |||
lordsawar | | 3 | hello | [] [] [] [] [] [] | 21 | |||
lprng | | 3 | help2man | [] [] | 7 | |||
lynx | | 19 | hylafax | [] | 5 | |||
m4 | [] | 22 | idutils | [] [] [] [] | 17 | |||
mailfromd | | 4 | indent | [] [] [] [] [] [] | 30 | |||
mailutils | | 6 | iso_15924 | () [] () [] [] | 16 | |||
make | | 19 | iso_3166 | [] [] () [] [] () [] [] [] () | 53 | |||
man-db | | 15 | iso_3166_2 | () [] () [] | 9 | |||
man-db-manpages | | 10 | iso_4217 | [] () [] [] () [] [] | 26 | |||
midi-instruments | [] | 43 | iso_639 | [] [] [] () [] () [] [] [] [] | 38 | |||
minicom | [] | 17 | iso_639_3 | [] () | 8 | |||
mkisofs | | 13 | jwhois | [] [] [] [] [] | 16 | |||
myserver | | 9 | kbd | [] [] [] [] [] | 15 | |||
nano | [] | 30 | keytouch | [] [] [] | 16 | |||
opcodes | | 12 | keytouch-editor | [] [] [] | 14 | |||
parted | [] | 23 | keytouch-keyboa... | [] [] [] | 14 | |||
pies | | 4 | klavaro | [] | 11 | |||
pnmixer | | 9 | latrine | [] [] [] | 10 | |||
popt | [] | 36 | ld | [] [] [] [] | 11 | |||
procps-ng | | 5 | leafpad | [] [] [] [] [] [] | 33 | |||
procps-ng-man | | 4 | libc | [] [] [] [] [] | 21 | |||
psmisc | [] | 22 | libexif | [] () | 6 | |||
pspp | | 13 | libextractor | [] | 1 | |||
pushover | | 6 | libgnutls | [] [] [] | 9 | |||
pwdutils | | 8 | libgpewidget | [] [] [] | 14 | |||
pyspread | | 6 | libgpg-error | [] [] [] | 9 | |||
radius | | 9 | libgphoto2 | [] [] | 8 | |||
recode | | 31 | libgphoto2_port | [] [] [] [] | 13 | |||
recutils | | 10 | libgsasl | [] [] [] | 13 | |||
rpm | [] | 13 | libiconv | [] [] [] [] | 21 | |||
rush | | 10 | libidn | () [] [] | 11 | |||
sarg | | 4 | lifelines | [] | 4 | |||
sed | [] | 35 | liferea | [] [] [] | 21 | |||
sharutils | | 13 | lilypond | [] | 7 | |||
shishi | | 7 | linkdr | [] [] [] [] [] | 17 | |||
skribilo | | 7 | lordsawar | | 1 | |||
solfege | | 21 | lprng | [] | 3 | |||
solfege-manual | | 9 | lynx | [] [] [] [] | 17 | |||
spotmachine | | 11 | m4 | [] [] [] [] | 19 | |||
sudo | | 26 | mailfromd | [] [] | 3 | |||
sudoers | | 22 | mailutils | [] | 5 | |||
sysstat | | 23 | make | [] [] [] [] | 21 | |||
tar | [] | 30 | man-db | [] [] [] | 8 | |||
texinfo | | 17 | man-db-manpages | | 4 | |||
texinfo_document | | 13 | minicom | [] [] | 16 | |||
tigervnc | | 14 | mkisofs | [] [] | 9 | |||
tin | [] | 7 | myserver | | 0 | |||
tin-man | | 1 | nano | [] [] [] [] | 21 | |||
tracgoogleappsa... | [] | 22 | opcodes | [] [] [] | 11 | |||
trader | | 12 | parted | [] [] [] [] [] | 15 | |||
util-linux | | 13 | pies | [] [] | 3 | |||
ve | | 14 | popt | [] [] [] [] [] [] | 27 | |||
vice | | 1 | psmisc | [] [] | 11 | |||
vmm | | 3 | pspp | | 4 | |||
vorbis-tools | | 13 | pwdutils | [] [] | 6 | |||
wastesedge | | 3 | radius | [] [] | 9 | |||
wcd | | 8 | recode | [] [] [] [] | 28 | |||
wcd-man | | 3 | rosegarden | () | 0 | |||
wdiff | [] | 23 | rpm | [] [] [] | 11 | |||
wget | | 21 | rush | [] [] | 4 | |||
wyslij-po | | 14 | sarg | | 1 | |||
xboard | | 10 | screem | [] | 3 | |||
xdg-user-dirs | [] [] | 68 | scrollkeeper | [] [] [] [] [] | 27 | |||
xkeyboard-config | [] | 28 | sed | [] [] [] [] [] | 30 | |||
+-------------+ | sharutils | [] [] [] [] [] | 22 | |||
89 teams zh_HK zh_TW | shishi | [] | 3 | |||
166 domains 7 42 2809 | skencil | [] [] | 7 | |||
solfege | [] [] [] [] | 16 | ||||
solfege-manual | [] | 8 | ||||
soundtracker | [] [] [] | 9 | ||||
sp | [] | 3 | ||||
sysstat | [] [] | 15 | ||||
tar | [] [] [] [] [] [] | 23 | ||||
texinfo | [] [] [] [] | 16 | ||||
tin | | 4 | ||||
unicode-han-tra... | | 0 | ||||
unicode-transla... | | 2 | ||||
util-linux-ng | [] [] [] [] | 20 | ||||
vice | () () | 1 | ||||
vmm | [] | 4 | ||||
vorbis-tools | [] | 6 | ||||
wastesedge | | 2 | ||||
wdiff | [] [] | 7 | ||||
wget | [] [] [] [] [] | 26 | ||||
wyslij-po | [] [] | 8 | ||||
xchat | [] [] [] [] [] [] | 36 | ||||
xdg-user-dirs | [] [] [] [] [] [] [] [] [] | 60 | ||||
xkeyboard-config | [] [] [] [] | 25 | ||||
+---------------------------------------------------+ | ||||
84 teams sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW | ||||
178 domains 119 1 3 2 0 10 66 50 155 17 97 7 41 261 | ||||
0 | ||||
Some counters in the preceding matrix are higher than the number of | Some counters in the preceding matrix are higher than the number of | |||
visible blocks let us expect. This is because a few extra PO files are | visible blocks let us expect. This is because a few extra PO files are | |||
used for implementing regional variants of languages, or language | used for implementing regional variants of languages, or language | |||
dialects. | dialects. | |||
For a PO file in the matrix above to be effective, the package to | For a PO file in the matrix above to be effective, the package to | |||
which it applies should also have been internationalized and distributed | which it applies should also have been internationalized and | |||
as such by its maintainer. There might be an observable lag between the | distributed as such by its maintainer. There might be an observable | |||
mere existence a PO file and its wide availability in a distribution. | lag between the mere existence a PO file and its wide availability in a | |||
distribution. | ||||
If Jun 2014 seems to be old, you may fetch a more recent copy of this | ||||
'ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix | If May 2010 seems to be old, you may fetch a more recent copy of | |||
with full percentage details can be found at | this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date | |||
'http://translationproject.org/extra/matrix.html'. | matrix with full percentage details can be found at | |||
`http://translationproject.org/extra/matrix.html'. | ||||
1.5 Using 'gettext' in new packages | 1.6 Using `gettext' in new packages | |||
=================================== | =================================== | |||
If you are writing a freely available program and want to | If you are writing a freely available program and want to | |||
internationalize it you are welcome to use GNU 'gettext' in your | internationalize it you are welcome to use GNU `gettext' in your | |||
package. Of course you have to respect the GNU Lesser General Public | package. Of course you have to respect the GNU Library General Public | |||
License which covers the use of the GNU 'gettext' library. This means | License which covers the use of the GNU `gettext' library. This means | |||
in particular that even non-free programs can use 'libintl' as a shared | in particular that even non-free programs can use `libintl' as a shared | |||
library, whereas only free software can use 'libintl' as a static | library, whereas only free software can use `libintl' as a static | |||
library or use modified versions of 'libintl'. | library or use modified versions of `libintl'. | |||
Once the sources are changed appropriately and the setup can handle | Once the sources are changed appropriately and the setup can handle | |||
the use of 'gettext' the only thing missing are the translations. The | the use of `gettext' the only thing missing are the translations. The | |||
Free Translation Project is also available for packages which are not | Free Translation Project is also available for packages which are not | |||
developed inside the GNU project. Therefore the information given above | developed inside the GNU project. Therefore the information given above | |||
applies also for every other Free Software Project. Contact | applies also for every other Free Software Project. Contact | |||
'coordinator@translationproject.org' to make the '.pot' files available | `coordinator@translationproject.org' to make the `.pot' files available | |||
to the translation teams. | to the translation teams. | |||
End of changes. 83 change blocks. | ||||
1226 lines changed or deleted | 1174 lines changed or added |