 |
vtiger The Honest Open Source CRM
|
| Previous topic :: Next topic |
| Author |
Message |
jonb
Joined: 25 May 2007
Posts: 42
Location: Santa Fe, NM
|
| Posted: Thu Jun 07, 2007 6:56 pm Post subject: new module strings problem |
|
|
Hey everyone,
I'm in the process of creating a new module. Everything seems to be going ok, except for one thing. When there are no items in my module, I get the following....
Code:
No Licensess Found !
You can Create a Licenses now. Click the link below:
-Create a Licenses
Note it uses 'Licenses' instead of 'License'. Does anyone know where it gets this from? My module is named 'License' and all of the strings I can find refer to 'License', not 'Licenses'. It's driving me nuts and any input would be much appreciated :) |
|
| Back to top |
|
jonb
Joined: 25 May 2007
Posts: 42
Location: Santa Fe, NM
|
| Posted: Thu Jun 07, 2007 7:00 pm Post subject: new module strings problem |
|
|
Blah, I just found where it was at. For some reason, my line in the utils/language/en_us.lang.php was wrong.
I ended up changing it to...
Code: 'License' => 'License',
from
Code: 'License' => 'Licenses',
The latter seems to follow the convention in the file, but it works now so I can't argue. |
|
| Back to top |
|
| |
|