Page 1 of 1

Change "send" button in NMS

Posted: Thu May 17, 2007 8:56 pm
by S@mmy.nl
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

Re: Change "send" button in NMS

Posted: Thu May 17, 2007 9:59 pm
by christla
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

Re: Change "send" button in NMS

Posted: Thu May 17, 2007 10:36 pm
by calguy1000
actually, the correct solution is to change it to:

$this->Lang('submit')

then the translation engine should just work.

Re: Change "send" button in NMS

Posted: Fri May 18, 2007 10:16 am
by S@mmy.nl
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