Misafir Misafir
| Konu: Avatar Yanında Kişisel Mesajları göstermek için Paz Mart 02, 2008 4:51 pm | |
| themenız/index.template.php yi açın
bulun - Kod:
-
if ($context['user']['is_logged']) { echo ' <a href="', $scripturl, '?action=unread">', $txt['unread_since_visit'], '</a> <br /> <a href="', $scripturl, '?action=unreadreplies">', $txt['show_unread_replies'], '</a><br />'; değiştirin - Kod:
-
if ($context['user']['is_logged']) { // Only tell them about their messages if they can read their messages! if ($context['allow_pm']) echo ' ', $txt[152], ' <a href="', $scripturl, '?action=pm">', $context['user']['messages'], ' ', $context['user']['messages'] != 1 ? $txt[153] : $txt[471], '</a>', $txt['newmessages4'], ' ', $context['user']['unread_messages'], ' ', $context['user']['unread_messages'] == 1 ? $txt['newmessages0'] : $txt['newmessages1']; echo '.<br />'; echo ' <a href="', $scripturl, '?action=unread">', $txt['unread_since_visit'], '</a> <br /> <a href="', $scripturl, '?action=unreadreplies">', $txt['show_unread_replies'], '</a><br />'; themenız/languages/index.turkish.php yi açın(çok da önemli değil. bunu yapmasanızda olur yaf)
bulun - Kod:
-
$txt[151] = 'Mesaj Yok...'; $txt[152] = 'size ait'; $txt[153] = 'mesaj var'; $txt[154] = 'Bu mesajı sil'; değiştirin - Kod:
-
$txt[151] = 'Mesaj Yok...'; $txt[152] = 'Size Ait'; $txt[153] = 'Mesaj Var'; $txt[154] = 'Bu Mesajı Sil'; |
|