Overview
Comment: | Now uses extended sympars -- sympar + switches |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e408b99c7f136bf55604afc4ff027fde |
User & Date: | gawthrop@users.sourceforge.net on 1998-07-25 18:49:00 |
Other Links: | branch diff | manifest | tags |
Context
1998-07-25
| ||
18:50:53 | Lower case names check-in: 0a340b14d4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:49:00 | Now uses extended sympars -- sympar + switches check-in: e408b99c7f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:35:02 | Initial revision check-in: 636b58fc0c user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/sympar2global_txt2lang from [afc066bc3b] to [d0a4142906].
︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | + + + - - + + + + | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1998/06/15 15:24:33 peterg ## Initial revision ## ############################################################### # Set up language stuff. language=$2 case $language in m) |
︙ | |||
48 49 50 51 52 53 54 | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | - + + + + + + + + + + + | BEGIN{ var = "foobar"; print "global ..." } {i++; print tolower($1), "..."; var = $1} END{ print var ";" # Repeat the last variable to avoid the trailing ... |