aboutsummaryrefslogtreecommitdiffstats
path: root/test/nlstringtest.awk
blob: da0d91b02d6afbf347e27413d5a7d2e2a8655404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
BEGIN {
  n = 2
  TEXTDOMAIN = "nlstringtest"
#  bindtextdomain ("./")
  bindtextdomain (ARGV[1])

  printf dcngettext ("a piece of cake", "%d pieces of cake", n) "\n", n

  print _"%s is replaced by %s."
  print _"%s is replaced by %s." "\n"
  printf _"%s is replaced by %s." "\n", "FF", "EUR"
}