summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9a25ae8)
raw | patch | inline | side by side (parent: 9a25ae8)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Tue, 30 Oct 2007 11:25:31 +0000 (11:25 +0000) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Thu, 1 Nov 2007 04:03:24 +0000 (00:03 -0400) |
The "--statistics" option was ignored so far; no longer. Now we have
a message similar to that of msgfmt. (Untranslated, though ;-)
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
a message similar to that of msgfmt. (Untranslated, though ;-)
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
po/po2msg.sh | patch | blob | history |
diff --git a/po/po2msg.sh b/po/po2msg.sh
index 91d420b4fbda333856dba25e8b112d37e4a0eb0c..c63248e3752b8b479f75ad2fe772dd40f684be54 100644 (file)
--- a/po/po2msg.sh
+++ b/po/po2msg.sh
set output_directory "."
set lang "dummy"
set files [list]
+set show_statistics 0
# parse options
-for {set i 1} {$i < $argc} {incr i} {
+for {set i 0} {$i < $argc} {incr i} {
set arg [lindex $argv $i]
- if {$arg == "--statistics" || $arg == "--tcl"} {
+ if {$arg == "--statistics"} {
+ incr show_statistics
+ continue
+ }
+ if {$arg == "--tcl"} {
+ # we know
continue
}
if {$arg == "-l"} {
proc flush_msg {} {
global msgid msgstr mode lang out fuzzy
+ global translated_count fuzzy_count not_translated_count
if {![info exists msgid] || $mode == ""} {
return
}
set mode ""
if {$fuzzy == 1} {
+ incr fuzzy_count
set fuzzy 0
return
}
set prefix "set ::msgcat::header"
} else {
if {$msgstr == ""} {
+ incr not_translated_count
return
}
set prefix "::msgcat::mcset $lang \"[u2a $msgid]\""
+ incr translated_count
}
puts $out "$prefix \"[u2a $msgstr]\""
}
set fuzzy 0
+set translated_count 0
+set fuzzy_count 0
+set not_translated_count 0
foreach file $files {
regsub "^.*/\(\[^/\]*\)\.po$" $file "$output_directory\\1.msg" outfile
set in [open $file "r"]
close $out
}
+if {$show_statistics} {
+ puts [concat "$translated_count translated messages, " \
+ "$fuzzy_count fuzzy ones, " \
+ "$not_translated_count untranslated ones."]
+}