I started to use CMS just a couple of weeks ago. Very easy to use, and very nice modules to use with it.
Today I installed NMS. Everything went fine, but the only thing that I can't get fixed it the label of the "send" button. I would like to change it to "verstuur". That's actually the Dutch translation, but I don't know if this module supports any translation files. I've used the "lang='nl_NL'" tag, but no result.
Is there anybody who knows how to get the job done? Thank you in advance!
GrtZ,
S@mmy
Dutch website: http://www.vve-cumlaude.nl
Change "send" button in NMS
Re: Change "send" button in NMS
Try this:
go to Modules/NMS
and edit action.default.php
it is 11th or 12th line starting with
$this->CreateInputSubmit($id, 'submit', ............
chnage it to
$this->CreateInputSubmit($id, 'submit', 'Verstuur'));
and you should be sorted
go to Modules/NMS
and edit action.default.php
it is 11th or 12th line starting with
$this->CreateInputSubmit($id, 'submit', ............
chnage it to
$this->CreateInputSubmit($id, 'submit', 'Verstuur'));
and you should be sorted
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: Change "send" button in NMS
actually, the correct solution is to change it to:
$this->Lang('submit')
then the translation engine should just work.
$this->Lang('submit')
then the translation engine should just work.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Change "send" button in NMS
Thank you, it's fixed. There was no language file for a Dutch translation. I edited the English language file, to change the label of the send button.
ThanX for your help,
S@mmy
ThanX for your help,
S@mmy