If you enable the Multilingual content of i18n module, a Translate tab will
Click the translate link and you can translate the node title field label.
Alternatively, if you want to translate the title field label on the node form without enabling the Multilingual content, you can do it on code level.
With the help of the Field translation in i18n module, we can find the the field label in Translate interface. But the title field label cannot be translated in the same way.
So i alter the node form and wrap the title string with t(). This can be done by creating a custom module and implement the hook_form_alter() as follow.
function <module>_form_alter(&$form, &$form_state, $form_id) { if ($form['#attributes']['class'][0] == 'node-form') { $form['title']['#title'] = t($form['title']['#title']); } }
Done =)
Using the t() for the title works. You can also use the title module (https://www.drupal.org/project/title). This lets you replace the title with an ordinary drupal field, whose title is of course translatable.
LikeLike
Thanks for your suggestion. =D
LikeLike