|
Ok ... maybe this is the place:
... in index.php
PHP Code:
if ( $User['username'] != "" && $User['username'] != "Unregistered" ) $childnav = "{$Globals['pp_lang']['welcomeuser']} {$User['username']}!";
else $childnav = "{$Globals['pp_lang']['welcome']} {$Globals['galleryname']}!";
... I'm thinking this is the right area..? Can I simply change the last line here?
else $childnav = "{$Globals['pp_lang']['welcome']}!";
... and then I would have to modify the language tables as well, I'm guessing..? Hmmm ... this may be a larger project than I'd first thought, as I'd need a translation for the phrase into each language used ... correct?
|