When you want to create a node type you go to node/add/nodetype. Then right at the top their is a title that says Submit nodetype. I would like to change the submit word to another one and the title would be "myprefered word+nodetype" instead of "submit+nodetype". But I could not find where I can change this in Drupal.

Comments

notarealperson’s picture

Bumping this one up. Trying to solve the same issue, any help is greatly appreciated!

aangel’s picture

One way is to modify your node_[form].tpl.php file, if you are using one. Add a drupal_set_title() like in this code snippet:

    drupal_set_title(t('Create New News Article'));

Node template files are discussed here:
http://drupal.org/node/101092

Andre'

pvanerk’s picture

Thanks for contributing. Helped me out!