1
DMarvelus
language file problems
  • 2006/3/28 7:20

  • DMarvelus

  • Just popping in

  • Posts: 70

  • Since: 2005/1/29


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?

2
m0nty
Re: language file problems
  • 2006/3/28 10:03

  • m0nty

  • XOOPS is my life!

  • Posts: 3337

  • Since: 2003/10/24


yeah, when you call module B's function, y not call module b's language file too in an include statement or somethin..

3
DMarvelus
Re: language file problems
  • 2006/3/29 17:31

  • DMarvelus

  • Just popping in

  • Posts: 70

  • Since: 2005/1/29


Quote:

m0nty wrote:
yeah, when you call module B's function, y not call module b's language file too in an include statement or somethin..

good idea. i'll try it.