Not sure if this belongs in the Gallery in Other Applications forum, but anyway. Here are some needed additions to:
gallery\contrib\phpBB2\phpBB2-manual_changes.txt
Find:
<!-- Gallery -->
&&<a href="{U_GALLERY}" class="mainmenu"><img src="images/g1-icon.gif" width="12" height="13" border="0" alt="L_GALLERY" /></a>&
<!-- Gallery -->
Replace:
<!-- Gallery -->
&&<a href="{U_GALLERY}" class="mainmenu"><img src="images/g1-icon.gif" width="12" height="13" border="0" alt="{L_GALLERY}" /></a>&
<!-- Gallery -->
Also, these additions are needed in gallery\contrib\phpBB2\phpBB2-manual_changes.txt:
*******************************************************
* File: phpBB2/language/lang_english/lang_main.php
*******************************************************
Find:
$lang['datetime']['Dec'] = 'Dec';
After add:
// Added for Gallery
$lang['Gallery'] = 'Gallery';
*******************************************************
* File: phpBB2/includes/page_header.php
*******************************************************
Find:
'L_WHOSONLINE_MOD' => sprintf($lang['Mod_online_color'], '<span style="color:#' . $theme['fontcolor2'] . '">', '</span>'),
After add:
'L_GALLERY' => $lang['Gallery'],
All that mumbo jumbo does is put the correct "Gallery" as the alt text for images/g1-icon.gif. Certainly not a crucial item, but needed to have a correct alt text for images/g1-icon.gif based on phpBB coding. Hope this helps.
Posts: 69
Gonna bump this as I don't think it was considered when I first posted it. Certainly not a big deal...