Hi,
for our program we use a macro (named LOC in our case) to recuperate the translated string name. For example:
string sTranslatedString = LOC("STRING_KEY");
The macro calls a function which handles recuperating the translated string from the given key.
I guess, I could try to replace the "resource type" string in ResX Manager with "LOC". Then it should work. I'll give it a try. But as a general case I wonder if searching all occurences of the key in all code files wouldn't be something that works for everybody. After all, the key string is by definition unique, no?
for our program we use a macro (named LOC in our case) to recuperate the translated string name. For example:
string sTranslatedString = LOC("STRING_KEY");
The macro calls a function which handles recuperating the translated string from the given key.
I guess, I could try to replace the "resource type" string in ResX Manager with "LOC". Then it should work. I'll give it a try. But as a general case I wonder if searching all occurences of the key in all code files wouldn't be something that works for everybody. After all, the key string is by definition unique, no?