I was looking over some source code I'd come across and noticed something about
the
formats for the printf statements. Each format was in brackets and preceeded by
an _ character.
For example:
printf (_("Try `%s --help' for more information.\n"), program_name);
Why was the format setup that way?