Simple Machines Community Forum

SMF Support => SMF 2.0.x Support => Topic started by: RFD on April 03, 2018, 07:32:45 AM

Title: post icon legend
Post by: RFD on April 03, 2018, 07:32:45 AM
looking for the filename that has the code for the post icon legend at the bottom of board pages ....

Title: Re: post icon legend
Post by: Illori on April 03, 2018, 07:43:34 AM
should be in messageindex.template.php.
Title: Re: post icon legend
Post by: Pipke on April 03, 2018, 07:45:55 AM
\Themes\default\MessageIndex.template.php


if (!$context['no_topic_listing'])
echo '
<p class="floatleft smalltext">', !empty($modSettings['enableParticipation']) && $context['user']['is_logged'] ? '
<img src="' . $settings['images_url'] . '/topic/my_normal_post.gif" alt="" align="middle" /> ' . $txt['participation_caption'] . '<br />' : '', '
<img src="' . $settings['images_url'] . '/topic/normal_post.gif" alt="" align="middle" /> ' . $txt['normal_topic'] . '<br />
<img src="' . $settings['images_url'] . '/topic/hot_post.gif" alt="" align="middle" /> ' . sprintf($txt['hot_topics'], $modSettings['hotTopicPosts']) . '<br />
<img src="' . $settings['images_url'] . '/topic/veryhot_post.gif" alt="" align="middle" /> ' . sprintf($txt['very_hot_topics'], $modSettings['hotTopicVeryPosts']) . '
</p>
<p class="smalltext">
<img src="' . $settings['images_url'] . '/icons/quick_lock.gif" alt="" align="middle" /> ' . $txt['locked_topic'] . '<br />' . ($modSettings['enableStickyTopics'] == '1' ? '
<img src="' . $settings['images_url'] . '/icons/quick_sticky.gif" alt="" align="middle" /> ' . $txt['sticky_topic'] . '<br />' : '') . ($modSettings['pollMode'] == '1' ? '
<img src="' . $settings['images_url'] . '/topic/normal_poll.gif" alt="" align="middle" /> ' . $txt['poll'] : '') . '
</p>';

Title: Re: post icon legend
Post by: RFD on April 03, 2018, 07:46:23 AM
perfect!  thank you all!
Title: Re: post icon legend
Post by: RFD on January 14, 2019, 06:49:22 PM
yes, old thread but new question.   where's the text for the post icon images kept?

Title: Re: post icon legend
Post by: GigaWatt on January 14, 2019, 06:57:57 PM
It should be in the language files.

/Themes/default/languages/
Title: Re: post icon legend
Post by: RFD on January 14, 2019, 07:10:55 PM
Quote from: GigaWatt on January 14, 2019, 06:57:57 PM
It should be in the language files.

/Themes/default/languages/

thanx - under which php?