1
lets say i have a module A that calls a function from another module B. and this function is supposed to return a string, say in english describing something.
How can that happen? If I put the english define(..) in module Bs english language file, then when module A make the call, it will not pick it up. however, the only other solution i can think of is to put the define in every other language file that calls the function in module B.
Can any one think of any better solutions?