Nevermind my last post, it is explained in the book, but here is an ambiguous book's passage:
Concatenating translation translated strings and normal strings is
possible:
1.
T("blah ") + name + T(" blah") # invalid!
but the opposite no:
1.
name + T(" blah") # invalid!
I cannot see by reading this examples wich is the correct
concatenation. Should the first comment read valid! "instead" of
"invalid!"?

