annotate ABOUT-NLS @ 5:419fd8202db1

2002-08-23 Abel Cheung <maddog@linux.org.hk> * zh_TW.Big5.po: -> zh_TW.po * zh_CN.GB2312.po: -> zh_CN.po * zh_TW.Big5.gmo: Removed. * Makefile.in.in, gftp.pot: Remove generated file.
author baddog
date Fri, 23 Aug 2002 05:28:59 +0000
parents 8b1883341c6f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1 Notes on the Free Translation Project
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
2 *************************************
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
3
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
4 Free software is going international! The Free Translation Project
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
5 is a way to get maintainers of free software, translators, and users all
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
6 together, so that will gradually become able to speak many languages.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
7 A few packages already provide translations for their messages.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
8
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
9 If you found this `ABOUT-NLS' file inside a distribution, you may
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
10 assume that the distributed package does use GNU `gettext' internally,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
11 itself available at your nearest GNU archive site. But you do _not_
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
12 need to install GNU `gettext' prior to configuring, installing or using
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
13 this package with messages translated.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
14
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
15 Installers will find here some useful hints. These notes also
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
16 explain how users should proceed for getting the programs to use the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
17 available translations. They tell how people wanting to contribute and
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
18 work at translations should contact the appropriate team.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
19
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
20 When reporting bugs in the `intl/' directory or bugs which may be
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
21 related to internationalization, you should tell about the version of
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
22 `gettext' which is used. The information can be found in the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
23 `intl/VERSION' file, in internationalized packages.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
24
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
25 Quick configuration advice
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
26 ==========================
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
27
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
28 If you want to exploit the full power of internationalization, you
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
29 should configure it using
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
30
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
31 ./configure --with-included-gettext
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
32
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
33 to force usage of internationalizing routines provided within this
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
34 package, despite the existence of internationalizing capabilities in the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
35 operating system where this package is being installed. So far, only
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
36 the `gettext' implementation in the GNU C library version 2 provides as
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
37 many features (such as locale alias, message inheritance, automatic
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
38 charset conversion or plural form handling) as the implementation here.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
39 It is also not possible to offer this additional functionality on top
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
40 of a `catgets' implementation. Future versions of GNU `gettext' will
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
41 very likely convey even more functionality. So it might be a good idea
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
42 to change to GNU `gettext' as soon as possible.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
43
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
44 So you need _not_ provide this option if you are using GNU libc 2 or
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
45 you have installed a recent copy of the GNU gettext package with the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
46 included `libintl'.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
47
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
48 INSTALL Matters
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
49 ===============
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
50
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
51 Some packages are "localizable" when properly installed; the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
52 programs they contain can be made to speak your own native language.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
53 Most such packages use GNU `gettext'. Other packages have their own
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
54 ways to internationalization, predating GNU `gettext'.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
55
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
56 By default, this package will be installed to allow translation of
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
57 messages. It will automatically detect whether the system already
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
58 provides the GNU `gettext' functions. If not, the GNU `gettext' own
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
59 library will be used. This library is wholly contained within this
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
60 package, usually in the `intl/' subdirectory, so prior installation of
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
61 the GNU `gettext' package is _not_ required. Installers may use
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
62 special options at configuration time for changing the default
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
63 behaviour. The commands:
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
64
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
65 ./configure --with-included-gettext
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
66 ./configure --disable-nls
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
67
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
68 will respectively bypass any pre-existing `gettext' to use the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
69 internationalizing routines provided within this package, or else,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
70 _totally_ disable translation of messages.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
71
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
72 When you already have GNU `gettext' installed on your system and run
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
73 configure without an option for your new package, `configure' will
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
74 probably detect the previously built and installed `libintl.a' file and
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
75 will decide to use this. This might be not what is desirable. You
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
76 should use the more recent version of the GNU `gettext' library. I.e.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
77 if the file `intl/VERSION' shows that the library which comes with this
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
78 package is more recent, you should use
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
79
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
80 ./configure --with-included-gettext
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
81
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
82 to prevent auto-detection.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
83
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
84 The configuration process will not test for the `catgets' function
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
85 and therefore it will not be used. The reason is that even an
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
86 emulation of `gettext' on top of `catgets' could not provide all the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
87 extensions of the GNU `gettext' library.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
88
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
89 Internationalized packages have usually many `po/LL.po' files, where
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
90 LL gives an ISO 639 two-letter code identifying the language. Unless
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
91 translations have been forbidden at `configure' time by using the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
92 `--disable-nls' switch, all available translations are installed
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
93 together with the package. However, the environment variable `LINGUAS'
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
94 may be set, prior to configuration, to limit the installed set.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
95 `LINGUAS' should then contain a space separated list of two-letter
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
96 codes, stating which languages are allowed.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
97
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
98 Using This Package
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
99 ==================
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
100
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
101 As a user, if your language has been installed for this package, you
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
102 only have to set the `LANG' environment variable to the appropriate
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
103 `LL_CC' combination. Here `LL' is an ISO 639 two-letter language code,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
104 and `CC' is an ISO 3166 two-letter country code. For example, let's
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
105 suppose that you speak German and live in Germany. At the shell
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
106 prompt, merely execute `setenv LANG de_DE' (in `csh'),
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
107 `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
108 This can be done from your `.login' or `.profile' file, once and for
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
109 all.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
110
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
111 You might think that the country code specification is redundant.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
112 But in fact, some languages have dialects in different countries. For
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
113 example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
114 country code serves to distinguish the dialects.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
115
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
116 Not all programs have translations for all languages. By default, an
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
117 English message is shown in place of a nonexistent translation. If you
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
118 understand other languages, you can set up a priority list of languages.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
119 This is done through a different environment variable, called
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
120 `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG'
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
121 for the purpose of message handling, but you still need to have `LANG'
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
122 set to the primary language; this is required by other parts of the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
123 system libraries. For example, some Swedish users who would rather
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
124 read translations in German than English for when Swedish is not
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
125 available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
126
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
127 In the `LANGUAGE' environment variable, but not in the `LANG'
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
128 environment variable, `LL_CC' combinations can be abbreviated as `LL'
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
129 to denote the language's main dialect. For example, `de' is equivalent
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
130 to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
131 (Portuguese as spoken in Portugal) in this context.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
132
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
133 Translating Teams
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
134 =================
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
135
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
136 For the Free Translation Project to be a success, we need interested
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
137 people who like their own language and write it well, and who are also
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
138 able to synergize with other translators speaking the same language.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
139 Each translation team has its own mailing list. The up-to-date list of
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
140 teams can be found at the Free Translation Project's homepage,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
141 `http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
142 area.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
143
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
144 If you'd like to volunteer to _work_ at translating messages, you
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
145 should become a member of the translating team for your own language.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
146 The subscribing address is _not_ the same as the list itself, it has
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
147 `-request' appended. For example, speakers of Swedish can send a
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
148 message to `sv-request@li.org', having this message body:
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
149
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
150 subscribe
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
151
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
152 Keep in mind that team members are expected to participate
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
153 _actively_ in translations, or at solving translational difficulties,
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
154 rather than merely lurking around. If your team does not exist yet and
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
155 you want to start one, or if you are unsure about what to do or how to
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
156 get started, please write to `translation@iro.umontreal.ca' to reach the
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
157 coordinator for all translator teams.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
158
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
159 The English team is special. It works at improving and uniformizing
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
160 the terminology in use. Proven linguistic skill are praised more than
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
161 programming skill, here.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
162
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
163 Available Packages
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
164 ==================
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
165
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
166 Languages are not equally supported in all packages. The following
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
167 matrix shows the current state of internationalization, as of September
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
168 2001. The matrix shows, in regard of each package, for which languages
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
169 PO files have been submitted to translation coordination, with a
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
170 translation percentage of at least 50%.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
171
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
172 Ready PO files bg cs da de el en eo es et fi fr gl he hr id it ja
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
173 +----------------------------------------------------+
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
174 a2ps | [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
175 bash | [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
176 bfd | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
177 binutils | [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
178 bison | [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
179 clisp | [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
180 cpio | [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
181 diffutils | [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
182 enscript | [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
183 error | [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
184 fetchmail | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
185 fileutils | [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
186 findutils | [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
187 flex | [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
188 freetype | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
189 gas | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
190 gawk | [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
191 gcal | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
192 gcc | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
193 gettext | [] [] [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
194 gnupg | [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
195 gprof | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
196 grep | [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
197 hello | [] [] [] [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
198 id-utils | [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
199 indent | [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
200 jpilot | [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
201 kbd | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
202 ld | [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
203 libc | [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
204 lilypond | [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
205 lynx | [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
206 m4 | [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
207 make | [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
208 mysecretdiary | [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
209 nano | [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
210 opcodes | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
211 parted | [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
212 ptx | [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
213 python | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
214 recode | [] [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
215 sed | [] [] [] [] [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
216 sh-utils | [] [] [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
217 sharutils | [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
218 sketch | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
219 soundtracker | [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
220 sp | |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
221 tar | [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
222 texinfo | [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
223 textutils | [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
224 util-linux | [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
225 wdiff | [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
226 wget | [] [] [] [] [] [] [] [] [] [] |
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
227 +----------------------------------------------------+
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
228 bg cs da de el en eo es et fi fr gl he hr id it ja
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
229 0 14 24 32 11 1 8 23 13 1 33 22 4 0 7 9 18
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
230
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
231 ko lv nb nl nn no pl pt pt_BR ru sk sl sv tr uk zh
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
232 +----------------------------------------------------+
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
233 a2ps | [] [] [] | 6
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
234 bash | | 4
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
235 bfd | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
236 binutils | | 1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
237 bison | [] | 6
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
238 clisp | [] | 5
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
239 cpio | [] [] [] [] [] | 10
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
240 diffutils | [] [] [] [] | 11
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
241 enscript | [] [] [] | 5
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
242 error | [] [] | 4
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
243 fetchmail | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
244 fileutils | [] [] [] [] [] [] [] [] [] | 17
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
245 findutils | [] [] [] [] [] [] [] [] | 16
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
246 flex | [] [] [] | 6
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
247 freetype | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
248 gas | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
249 gawk | [] | 3
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
250 gcal | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
251 gcc | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
252 gettext | [] [] [] [] [] [] [] [] | 18
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
253 gnupg | [] [] [] | 10
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
254 gprof | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
255 grep | [] [] [] [] | 12
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
256 hello | [] [] [] [] [] [] [] [] [] [] [] | 22
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
257 id-utils | [] [] [] | 6
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
258 indent | [] [] [] [] [] [] [] | 12
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
259 jpilot | | 1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
260 kbd | [] | 1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
261 ld | | 1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
262 libc | [] [] [] [] [] [] [] [] | 16
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
263 lilypond | [] [] | 3
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
264 lynx | [] [] [] [] | 8
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
265 m4 | [] [] [] [] | 12
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
266 make | [] [] [] [] [] [] | 12
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
267 mysecretdiary | | 1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
268 nano | [] | 4
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
269 opcodes | [] | 1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
270 parted | [] [] | 5
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
271 ptx | [] [] [] [] [] [] [] [] | 15
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
272 python | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
273 recode | [] [] [] [] | 13
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
274 sed | [] [] [] [] [] [] [] | 19
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
275 sh-utils | [] [] [] [] [] [] [] [] [] [] [] | 21
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
276 sharutils | [] [] [] | 11
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
277 sketch | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
278 soundtracker | | 3
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
279 sp | | 0
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
280 tar | [] [] [] [] [] [] [] | 15
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
281 texinfo | [] | 7
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
282 textutils | [] [] [] [] [] [] [] [] | 16
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
283 util-linux | [] [] | 4
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
284 wdiff | [] [] [] [] | 7
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
285 wget | [] [] [] [] [] [] [] | 17
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
286 +----------------------------------------------------+
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
287 33 teams ko lv nb nl nn no pl pt pt_BR ru sk sl sv tr uk zh
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
288 53 domains 9 1 6 20 0 6 17 1 13 25 10 11 23 21 2 2 387
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
289
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
290 Some counters in the preceding matrix are higher than the number of
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
291 visible blocks let us expect. This is because a few extra PO files are
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
292 used for implementing regional variants of languages, or language
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
293 dialects.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
294
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
295 For a PO file in the matrix above to be effective, the package to
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
296 which it applies should also have been internationalized and
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
297 distributed as such by its maintainer. There might be an observable
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
298 lag between the mere existence a PO file and its wide availability in a
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
299 distribution.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
300
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
301 If September 2001 seems to be old, you may fetch a more recent copy
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
302 of this `ABOUT-NLS' file on most GNU archive sites. The most
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
303 up-to-date matrix with full percentage details can be found at
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
304 `http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
305
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
306 Using `gettext' in new packages
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
307 ===============================
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
308
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
309 If you are writing a freely available program and want to
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
310 internationalize it you are welcome to use GNU `gettext' in your
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
311 package. Of course you have to respect the GNU Library General Public
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
312 License which covers the use of the GNU `gettext' library. This means
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
313 in particular that even non-free programs can use `libintl' as a shared
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
314 library, whereas only free software can use `libintl' as a static
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
315 library or use modified versions of `libintl'.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
316
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
317 Once the sources are changed appropriately and the setup can handle
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
318 to use of `gettext' the only thing missing are the translations. The
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
319 Free Translation Project is also available for packages which are not
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
320 developed inside the GNU project. Therefore the information given above
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
321 applies also for every other Free Software Project. Contact
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
322 `translation@iro.umontreal.ca' to make the `.pot' files available to
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
323 the translation teams.
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
324