summaryrefslogtreecommitdiff
path: root/gettext-tools/examples/hello-gawk/hello.awk
blob: 872d2af15fe2e6059eccf700501a7bd1cb2a1e3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!@GAWK@ -f
# Example for use of GNU gettext.
# Copyright (C) 2003 Free Software Foundation, Inc.
# This file is in the public domain.
#
# Source code of the GNU awk program.

BEGIN {
  TEXTDOMAIN = "hello-gawk"
  bindtextdomain ("@localedir@")

  print _"Hello, world!"
  printf _"This program is running as process number %d.", PROCINFO["pid"]
  print
}