Blame test/nlstringtest.awk

Packit 575503
BEGIN {
Packit 575503
  n = 2
Packit 575503
  TEXTDOMAIN = "nlstringtest"
Packit 575503
#  bindtextdomain ("./")
Packit 575503
  bindtextdomain (ARGV[1])
Packit 575503
Packit 575503
  printf dcngettext ("a piece of cake", "%d pieces of cake", n) "\n", n
Packit 575503
Packit 575503
  print _"%s is replaced by %s."
Packit 575503
  print _"%s is replaced by %s." "\n"
Packit 575503
  printf _"%s is replaced by %s." "\n", "FF", "EUR"
Packit 575503
}