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

« back to all changes in this revision

Viewing changes to 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
 
1)
5
 
gettext.c       Source for the 'gettext' program.
6
 
 
7
 
2) The msgfmt, msgunfmt, msgcmp, msgcomm, msgmerge, xgettext programs.
8
 
 
9
 
Bottom-up structure:
10
 
 
11
 
str-list.h
12
 
str-list.c
13
 
                A list-of-immutable-strings type.
14
 
 
15
 
dir-list.h
16
 
dir-list.c
17
 
                Management of the list of directories where PO files are
18
 
                searched.
19
 
 
20
 
pos.h
21
 
                Source file positions.
22
 
 
23
 
message.h
24
 
message.c
25
 
                The message type, with many utility routines.
26
 
                A list-of-messages type.
27
 
                A list-of-lists-of-messages type.
28
 
 
29
 
write-po.h
30
 
write-po.c
31
 
                Output of a list-of-messages to a PO file.
32
 
 
33
 
msgunfmt.c      Main source for the 'msgunfmt' program.
34
 
 
35
 
open-po.h
36
 
open-po.c
37
 
                Opening PO files for reading.
38
 
 
39
 
po-lex.h
40
 
po-lex.c
41
 
                Lexical analysis of PO files.
42
 
 
43
 
po.h
44
 
po-hash.h
45
 
po-hash-gen.y
46
 
po-gram.h
47
 
po-gram-gen.y
48
 
po.c
49
 
                Parsing of PO files.
50
 
        po.h
51
 
                        General parser structure.
52
 
        po-hash.h
53
 
        po-hash-gen.y
54
 
                        Lexical analysis and parsing of pseudo-comments in
55
 
                        PO files, introduced by "#:" and "#".
56
 
        po-gram.h
57
 
        po-gram-gen.y
58
 
                        Parsing of PO files, based on po-lex.{h,c}.
59
 
        po.c
60
 
                        Top-level parser functions and callbacks.
61
 
 
62
 
msgfmt.c        Main source for the 'msgfmt' program.
63
 
msgcmp.c        Main source for the 'msgcmp' program.
64
 
msgcomm.c       Main source for the 'msgcomm' program.
65
 
msgmerge.c      Main source for the 'msgmerge' program.
66
 
 
67
 
xget-lex.h
68
 
xget-lex.c
69
 
                Lexical analysis of C/C++ files.
70
 
 
71
 
xgettext.c      Main source for the 'xgettext' program.