There is a nice feature in bash, about localization (language translation):
TEXTDOMAIN=coreutils
LANG=fr_CH.utf8
echo $"system boot"
démarrage système
(Nota: For this work, fr_CH.utf8 was already generated on your system... Else you may try with your own locale... or install locales and generate one.)
The problem:
But if this work fine with simple strings, when string contain a \n (or worst: a backtick ` things are more complicated:
echo $"Written by %s, %s, %s,\nand %s.\n"
Written by %s, %s, %s,\nand %s.\n
This is not attended answer.
(Nota2: For this work, exact message has to be prepared in .mo message file, in this sample/test, I use existant coreutils.mo files, which could be unformated with the command msgunfmt.)
At all, the only way I've found to do the translation is:
eval echo \$\"$'Written by %s, %s, %s,\nand %s.\n'\"
Écrit par %s, %s, %s,
et %s.
or
msg=$'Written by %s, %s, %s,\nand %s.\n'
eval echo \$\""$msg"\"
Écrit par %s, %s, %s,
et %s.
(You could see two double quotes... not very sexy...)
And finally I could:
WRITTERS=(Hans Pierre Jackob Heliott)
eval printf \$\""$msg"\" ${WRITTERS[@]}
Écrit par Hans, Pierre, Jackob,
et Heliott.
But as I've heard recently that eval is evil... ;-)
In fact, I don't have problem with an eval that's run with only hard coded part, but I would appreciate a way to keep this eval out and to write this kind of part in a more natural or readable manner.
At all @techno 's answer let me see that my first idea is something dangerous as if WRITTERS contain some ;ls, for sample...
Edit: So question is:
How could I keep this eval out and/or write this in a more sexy fashion
Nota:
$ printf "I use bash %s on Debian %s\n" $BASH_VERSION $(</etc/debian_version)
I use bash 4.1.5(1)-release on Debian 6.0.6

\n, tryecho -e. It is still not very clear what exactly is being asked in other parts of the question. Why are you usingechoat all? What's wrong withprintf $"message key" $var1 $var2? – n.m. Dec 25 '12 at 7:21$"$msg"will work fine only if$msgdon't contain a\n. If so, need to write ugly thing likeeval... \$\""$msg"\"... – F. Hauri Dec 25 '12 at 7:34