• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-tcl/
1#!@TCLSH@
2# Example for use of GNU gettext.
3# This file is in the public domain.
4#
5# Source code of the Tcl program.
6
7package require msgcat
8::msgcat::mcload [file join "@pkgdatadir@" "msgs"]
9proc _ {s} {return [::msgcat::mc $s]}
10
11puts [_ "Hello, world!"]
12puts [format [_ "This program is running as process number %d."] [pid]]
13