~ubuntu-branches/ubuntu/breezy/gettext/breezy

« back to all changes in this revision

Viewing changes to gettext-tools/src/FILES

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-03-14 17:40:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040314174002-p1ad5ldve1hqzhye
Tags: 0.14.1-2
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
                Short description of the source files
 
2
                =====================================
 
3
 
 
4
The msg* and xgettext programs.
 
5
 
 
6
Bottom-up structure:
 
7
 
 
8
str-list.h
 
9
str-list.c
 
10
                A list-of-immutable-strings type.
 
11
 
 
12
dir-list.h
 
13
dir-list.c
 
14
                Management of the list of directories where PO files are
 
15
                searched.
 
16
 
 
17
file-list.h
 
18
file-list.c
 
19
                Reading a file list from a file. Used by those programs which
 
20
                accept multiple file arguments and have a --files-from option.
 
21
 
 
22
pos.h
 
23
                Source file positions.
 
24
 
 
25
message.h
 
26
message.c
 
27
                The message type, with many utility routines.
 
28
                A list-of-messages type.
 
29
                A list-of-lists-of-messages type.
 
30
 
 
31
msgl-ascii.h
 
32
msgl-ascii.c
 
33
                Message list test for ASCII character set.
 
34
 
 
35
write-po.h
 
36
write-po.c
 
37
                Output of a list-of-messages to a PO file.
 
38
write-properties.h
 
39
write-properties.c
 
40
                Output of a list-of-messages to a Java .properties file.
 
41
write-stringtable.h
 
42
write-stringtable.c
 
43
                Output of a list-of-messages to a NeXTstep/GNUstep .strings
 
44
                file.
 
45
 
 
46
+-------------- Reading PO files
 
47
| open-po.h
 
48
| open-po.c
 
49
|               Opening PO files for reading.
 
50
|
 
51
| po-charset.h
 
52
| po-charset.c
 
53
|               Charset handling while reading PO files.
 
54
|
 
55
| po-lex.h
 
56
| po-lex.c
 
57
|               Lexical analysis of PO files.
 
58
|
 
59
| read-po-abstract.h
 
60
| po-hash.h
 
61
| po-hash-gen.y
 
62
| po-gram.h
 
63
| po-gram-gen.y
 
64
| read-properties.h
 
65
| read-properties.c
 
66
| read-stringtable.h
 
67
| read-stringtable.c
 
68
| read-po-abstract.c
 
69
|               Parsing of PO files and Java .properties and NeXTstep/GNUstep
 
70
|              .strings files.
 
71
|         read-po-abstract.h
 
72
|                       General parser structure.
 
73
|         po-hash.h
 
74
|         po-hash-gen.y
 
75
|                       Lexical analysis and parsing of pseudo-comments in
 
76
|                       PO files, introduced by "#:" and "#".
 
77
|         po-gram.h
 
78
|         po-gram-gen.y
 
79
|                       Parsing of PO files, based on po-lex.{h,c}.
 
80
|         read-properties.h
 
81
|         read-properties.c
 
82
|                       Parsing of Java .properties files.
 
83
|         read-stringtable.h
 
84
|         read-stringtable.c
 
85
|                       Parsing of NeXTstep/GNUstep .strings files.
 
86
|         read-po-abstract.c
 
87
|                       Top-level parser functions and callbacks.
 
88
|
 
89
| read-po.h
 
90
| read-po.c
 
91
|               Reading of a PO file, returning a list-of-messages.
 
92
|
 
93
+-------------- Reading PO files
 
94
 
 
95
msgl-iconv.h
 
96
msgl-iconv.c
 
97
                Convert a list-of-messages to another character encoding.
 
98
 
 
99
msgl-cat.h
 
100
msgl-cat.c
 
101
                Concatenate message lists from several files, with handling
 
102
                of duplicate msgids.
 
103
 
 
104
msgcmp.c        Main source for the 'msgcmp' program.
 
105
 
 
106
+-------------- The 'msgmerge' program
 
107
| msgl-equal.h
 
108
| msgl-equal.c
 
109
|               Comparing two lists-of-messages.
 
110
| plural-count.h
 
111
| plural-count.c
 
112
|               Extracting the plural count of a header of a lists-of-messages.
 
113
| msgmerge.c
 
114
|               Main source for the 'msgmerge' program.
 
115
|
 
116
+-------------- The 'msgmerge' program
 
117
 
 
118
msgcomm.c       Main source for the 'msgcomm' program.
 
119
msgattrib.c     Main source for the 'msgattrib' program.
 
120
msgcat.c        Main source for the 'msgcat' program.
 
121
msgconv.c       Main source for the 'msgconv' program.
 
122
msguniq.c       Main source for the 'msguniq' program.
 
123
 
 
124
msgl-charset.h
 
125
msgl-charset.c
 
126
                Compare the encoding of a list-of-messages with the locale
 
127
                encoding.
 
128
 
 
129
msgexec.c       Main source for the 'msgexec' program.
 
130
msgfilter.c     Main source for the 'msgfilter' program.
 
131
msggrep.c       Main source for the 'msggrep' program.
 
132
 
 
133
+-------------- The 'msgen' program
 
134
| msgl-english.h
 
135
| msgl-english.c
 
136
|               English message initialization.
 
137
| msgen.c
 
138
|               Main source for the 'msgen' program.
 
139
|
 
140
+-------------- The 'msgen' program
 
141
 
 
142
po-time.h
 
143
po-time.c
 
144
                Create time stamps for use in PO/POT files.
 
145
 
 
146
plural-table.h
 
147
plural-table.c
 
148
                Table of plural form formulas.
 
149
 
 
150
+-------------- The 'msginit' program
 
151
| hostname.c
 
152
|               The 'hostname' program.
 
153
| user-email.sh.in
 
154
|               Determine the user's email address.
 
155
| urlget.c
 
156
|               The 'urlget' program.
 
157
| project-id
 
158
|               Determine the package's name.
 
159
| msginit.c
 
160
|               Main source for the 'msginit' program.
 
161
|
 
162
+-------------- The 'msginit' program
 
163
 
 
164
+-------------- The 'msgunfmt' program
 
165
| msgunfmt.h
 
166
|               Declarations.
 
167
| read-mo.h
 
168
| read-mo.c
 
169
|               Reading GNU .mo files.
 
170
| read-java.h
 
171
| read-java.c
 
172
|               Reading Java ResourceBundle files.
 
173
| read-csharp.h
 
174
| read-csharp.c
 
175
| msgunfmt.cs
 
176
|               Reading C# satellite assemblies.
 
177
| read-resources.h
 
178
| read-resources.c
 
179
| msgunfmt.cs
 
180
|               Reading C# .resources files.
 
181
| read-tcl.h
 
182
| read-tcl.c
 
183
| msgunfmt.tcl
 
184
|               Reading Tcl .msg files.
 
185
| msgunfmt.c
 
186
|               Main source for the 'msgunfmt' program.
 
187
|
 
188
+-------------- The 'msgunfmt' program
 
189
 
 
190
format.h        Declarations of the language dependent format string handlers.
 
191
format-invalid.h  Declarations of some error messages for invalid strings.
 
192
format-c.c             Format string handling for C.
 
193
format-sh.c            Format string handling for Shell.
 
194
format-python.c        Format string handling for Python.
 
195
format-lisp.c          Format string handling for Common Lisp.
 
196
format-elisp.c         Format string handling for Emacs Lisp.
 
197
format-librep.c        Format string handling for librep.
 
198
format-java.c          Format string handling for Java.
 
199
format-csharp.c        Format string handling for C#.
 
200
format-awk.c           Format string handling for awk.
 
201
format-pascal.c        Format string handling for Object Pascal.
 
202
format-ycp.c           Format string handling for YCP.
 
203
format-tcl.c           Format string handling for Tcl.
 
204
format-perl.c          Format string handling for Perl.
 
205
format-perl-brace.c    Format string handling for Perl, braced syntax.
 
206
format-php.c           Format string handling for PHP.
 
207
format-gcc-internal.c  Format string handling GCC internal.
 
208
format-qt.c            Format string handling for Qt.
 
209
format.c        Table of the language dependent format string handlers.
 
210
 
 
211
+-------------- The 'msgfmt' program
 
212
| msgfmt.h
 
213
|               Declarations.
 
214
| plural.c
 
215
|               Parsing plural expressions.
 
216
| plural-eval.c
 
217
|               Evaluating plursl expressions.
 
218
| write-mo.h
 
219
| write-mo.c
 
220
|               Generating GNU .mo files.
 
221
| write-java.h
 
222
| write-java.c
 
223
|               Generating Java ResourceBundle files.
 
224
| write-csharp.h
 
225
| write-csharp.c
 
226
|               Generating C# satellite assemblies.
 
227
| write-resources.h
 
228
| write-resources.c
 
229
| msgfmt.cs
 
230
|               Generating C# .resources files.
 
231
| write-tcl.h
 
232
| write-tcl.c
 
233
|               Generating Tcl .msg files.
 
234
| write-qt.h
 
235
| write-qt.c
 
236
|               Generating Qt .qm files.
 
237
| msgfmt.c
 
238
|               Main source for the 'msgfmt' program.
 
239
|
 
240
+-------------- The 'msgfmt' program
 
241
 
 
242
+-------------- The 'xgettext' program
 
243
| xgettext.h
 
244
|               Declarations used by the backends.
 
245
| x-c.h
 
246
| x-c.c
 
247
|               String extractor for C.
 
248
| x-po.h
 
249
| x-properties.h
 
250
| x-stringtable.h
 
251
| x-po.c
 
252
|               String extractor from PO files and Java .properties and
 
253
|               NeXTstep/GNUstep .strings files.
 
254
| x-sh.h
 
255
| x-sh.c
 
256
|               String extractor for Shell.
 
257
| x-python.h
 
258
| x-python.c
 
259
|               String extractor for Python.
 
260
| x-lisp.h
 
261
| x-lisp.c
 
262
|               String extractor for Common Lisp.
 
263
| x-elisp.h
 
264
| x-elisp.c
 
265
|               String extractor for Emacs Lisp.
 
266
| x-librep.h
 
267
| x-librep.c
 
268
|               String extractor for librep.
 
269
| x-smalltalk.h
 
270
| x-smalltalk.c
 
271
|               String extractor for Smalltalk.
 
272
| x-java.h
 
273
| x-java.c
 
274
|               String extractor for Java.
 
275
| x-csharp.h
 
276
| x-csharp.c
 
277
|               String extractor for C#.
 
278
| x-awk.h
 
279
| x-awk.c
 
280
|               String extractor for awk.
 
281
| x-ycp.h
 
282
| x-ycp.c
 
283
|               String extractor for YCP.
 
284
| x-tcl.h
 
285
| x-tcl.c
 
286
|               String extractor for Tcl.
 
287
| x-perl.h
 
288
| x-perl.c
 
289
|               String extractor for Perl.
 
290
| x-php.h
 
291
| x-php.c
 
292
|               String extractor for PHP.
 
293
| x-rst.h
 
294
| x-rst.c
 
295
|               String extractor from .rst files, for Object Pascal.
 
296
| x-glade.h
 
297
| x-glade.c
 
298
|               String extractor from .glade files, GNOME GUI descriptions.
 
299
| xgettext.c
 
300
|               Main source for the 'xgettext' program.
 
301
|
 
302
+-------------- The 'xgettext' program
 
303
 
 
304
+-------------- The 'gettextpo' library
 
305
|
 
306
| gettext-po.h
 
307
| gettext-po.c
 
308
|               Public API for reading PO files.
 
309
|
 
310
+-------------- The 'gettextpo' library