Just need to change some of the text that the module displays by default on each of my user's individual guestbooks. The top tab says "My guestbook" and I want to change it to "My comments." Under all replies it says "Add guestbook entry" and I want that changed to "Add comment." There are a few more instances like this. I found language files to switch to different languages like French, but could not find a standard one for English. The files for this module are here: http://drupal.org/project/guestbook

(P.S. - Please be a little bit detailed in your reply as I am a novice builder)

link|improve this question
feedback

1 Answer

Any strings wrapped in t() calls can be overwritten by theming functions in your theme layer. It looks like the change that you want to make is on line 938 of the current latest 6.x branch:

$info[$uid]['title'] = t('My guestbook') . ($unread ? ' ('. $unread .')' : '');

You can use the String Overrides module to change the text displayed by this string.

link|improve this answer
feedback

protected by Community Mar 7 at 11:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.