msgunfmt.tcl 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Reading tcl/msgcat .msg files.
  2. # Copyright (C) 2002 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software Foundation,
  16. # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  17. namespace eval msgcat {
  18. namespace export mcset mcdump
  19. variable header ""
  20. }
  21. proc msgcat::puts_po_string {str} {
  22. # Replace " with \"
  23. regsub -all "\"" $str "\\\"" str
  24. # Replace \ with \\
  25. regsub -all "\\\\" $str "\\\\\\" str
  26. # Replace newline with \n
  27. regsub -all [subst "\n"] $str "\\n" str
  28. regsub -all [subst "\a"] $str "\\a" str
  29. regsub -all [subst "\b"] $str "\\b" str
  30. regsub -all [subst "\f"] $str "\\f" str
  31. regsub -all [subst "\r"] $str "\\r" str
  32. regsub -all [subst "\t"] $str "\\t" str
  33. regsub -all [subst "\v"] $str "\\v" str
  34. # Output it.
  35. puts -nonewline "\"$str\""
  36. }
  37. proc msgcat::write_po_message {msgid msgstr} {
  38. puts -nonewline "msgid "
  39. puts_po_string $msgid
  40. puts ""
  41. puts -nonewline "msgstr "
  42. puts_po_string $msgstr
  43. puts ""
  44. puts ""
  45. }
  46. # This gets called once for each message in the .msg catalog.
  47. proc msgcat::mcset {locale src {dest ""}} {
  48. msgcat::write_po_message $src $dest
  49. }
  50. # Main function.
  51. proc msgcat::mcdump {langfile} {
  52. if {[file exists $langfile]} {
  53. # msgunfmt expects the output in UTF-8 encoding.
  54. fconfigure stdout -encoding utf-8
  55. set msgcat::header ""
  56. set fd [open $langfile r]
  57. # In newer tcl versions, the .msg files are in UTF-8 encoding.
  58. fconfigure $fd -encoding utf-8
  59. eval [read $fd]
  60. close $fd
  61. if {$msgcat::header == ""} {
  62. # Provide a minimal header.
  63. set msgcat::header [subst "MIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\n"]
  64. }
  65. msgcat::write_po_message "" $msgcat::header
  66. } else {
  67. # Tell msgunfmt to emit an internationalized error message.
  68. exit 2
  69. }
  70. }
  71. # Main code: call the main function on the first and only argument.
  72. msgcat::mcdump [lindex $argv 0]
  73. exit 0