Commit | Line | Data |
---|---|---|
cd38c86f JS |
1 | #!/bin/sh |
2 | # Tcl ignores the next line -*- tcl -*- \ | |
3 | exec tclsh "$0" -- "$@" | |
4 | ||
5 | # This is a really stupid program, which serves as an alternative to | |
6 | # msgfmt. It _only_ translates to Tcl mode, does _not_ validate the | |
7 | # input, and does _not_ output any statistics. | |
8 | ||
9 | proc u2a {s} { | |
10 | set res "" | |
11 | foreach i [split $s ""] { | |
12 | scan $i %c c | |
13 | if {$c<128} { | |
9dc37931 AG |
14 | # escape '[', '\', '$' and ']' |
15 | if {$c == 0x5b || $c == 0x5d || $c == 0x24} { | |
cd38c86f JS |
16 | append res "\\" |
17 | } | |
18 | append res $i | |
19 | } else { | |
20 | append res \\u[format %04.4x $c] | |
21 | } | |
22 | } | |
23 | return $res | |
24 | } | |
25 | ||
26 | set output_directory "." | |
27 | set lang "dummy" | |
28 | set files [list] | |
95a8b67c | 29 | set show_statistics 0 |
cd38c86f JS |
30 | |
31 | # parse options | |
95a8b67c | 32 | for {set i 0} {$i < $argc} {incr i} { |
cd38c86f | 33 | set arg [lindex $argv $i] |
95a8b67c JS |
34 | if {$arg == "--statistics"} { |
35 | incr show_statistics | |
36 | continue | |
37 | } | |
38 | if {$arg == "--tcl"} { | |
39 | # we know | |
cd38c86f JS |
40 | continue |
41 | } | |
42 | if {$arg == "-l"} { | |
43 | incr i | |
44 | set lang [lindex $argv $i] | |
45 | continue | |
46 | } | |
47 | if {$arg == "-d"} { | |
48 | incr i | |
49 | set tmp [lindex $argv $i] | |
50 | regsub "\[^/\]$" $tmp "&/" output_directory | |
51 | continue | |
52 | } | |
53 | lappend files $arg | |
54 | } | |
55 | ||
56 | proc flush_msg {} { | |
f94872df | 57 | global msgid msgstr mode lang out fuzzy |
95a8b67c | 58 | global translated_count fuzzy_count not_translated_count |
cd38c86f JS |
59 | |
60 | if {![info exists msgid] || $mode == ""} { | |
61 | return | |
62 | } | |
63 | set mode "" | |
f94872df | 64 | if {$fuzzy == 1} { |
95a8b67c | 65 | incr fuzzy_count |
f94872df JS |
66 | set fuzzy 0 |
67 | return | |
68 | } | |
cd38c86f JS |
69 | |
70 | if {$msgid == ""} { | |
71 | set prefix "set ::msgcat::header" | |
72 | } else { | |
9a25ae82 | 73 | if {$msgstr == ""} { |
95a8b67c | 74 | incr not_translated_count |
9a25ae82 JS |
75 | return |
76 | } | |
cd38c86f | 77 | set prefix "::msgcat::mcset $lang \"[u2a $msgid]\"" |
95a8b67c | 78 | incr translated_count |
cd38c86f JS |
79 | } |
80 | ||
81 | puts $out "$prefix \"[u2a $msgstr]\"" | |
82 | } | |
83 | ||
f94872df | 84 | set fuzzy 0 |
95a8b67c JS |
85 | set translated_count 0 |
86 | set fuzzy_count 0 | |
87 | set not_translated_count 0 | |
cd38c86f JS |
88 | foreach file $files { |
89 | regsub "^.*/\(\[^/\]*\)\.po$" $file "$output_directory\\1.msg" outfile | |
90 | set in [open $file "r"] | |
91 | fconfigure $in -encoding utf-8 | |
92 | set out [open $outfile "w"] | |
93 | ||
94 | set mode "" | |
95 | while {[gets $in line] >= 0} { | |
96 | if {[regexp "^#" $line]} { | |
f94872df JS |
97 | if {[regexp ", fuzzy" $line]} { |
98 | set fuzzy 1 | |
99 | } else { | |
100 | flush_msg | |
101 | } | |
cd38c86f JS |
102 | continue |
103 | } elseif {[regexp "^msgid \"(.*)\"$" $line dummy match]} { | |
104 | flush_msg | |
105 | set msgid $match | |
106 | set mode "msgid" | |
107 | } elseif {[regexp "^msgstr \"(.*)\"$" $line dummy match]} { | |
108 | set msgstr $match | |
109 | set mode "msgstr" | |
110 | } elseif {$line == ""} { | |
111 | flush_msg | |
112 | } elseif {[regexp "^\"(.*)\"$" $line dummy match]} { | |
113 | if {$mode == "msgid"} { | |
114 | append msgid $match | |
115 | } elseif {$mode == "msgstr"} { | |
116 | append msgstr $match | |
117 | } else { | |
118 | puts stderr "I do not know what to do: $match" | |
119 | } | |
120 | } else { | |
121 | puts stderr "Cannot handle $line" | |
122 | } | |
123 | } | |
124 | flush_msg | |
125 | close $in | |
126 | close $out | |
127 | } | |
128 | ||
95a8b67c | 129 | if {$show_statistics} { |
2cd9ad2e SP |
130 | set str "" |
131 | ||
132 | append str "$translated_count translated message" | |
133 | if {$translated_count != 1} { | |
134 | append str s | |
135 | } | |
136 | ||
137 | if {$fuzzy_count > 1} { | |
138 | append str ", $fuzzy_count fuzzy translation" | |
139 | if {$fuzzy_count != 1} { | |
140 | append str s | |
141 | } | |
142 | } | |
143 | if {$not_translated_count > 0} { | |
144 | append str ", $not_translated_count untranslated message" | |
145 | if {$not_translated_count != 1} { | |
146 | append str s | |
147 | } | |
148 | } | |
149 | ||
150 | append str . | |
151 | puts $str | |
95a8b67c | 152 | } |