Giriş
Giriş
Üye Ol
Main-Board
Gündem
Giriş
Giriş
Üye Ol
Ana Sayfa
Webmaster
Profile Comments TÜRKÇE PAKET
Profile Comments TÜRKÇE PAKET
654
Son güncelleme: 28.03.2008 22:03
MaktüL
yazar: vbgamer45
Açıklama: Üyelerin profiline yorum yapabilirsiniz.
modun orjinalini kurduktan sonra
http://custom.simplemachines.org/mods/index.php?mod=436
Türkçesi için bu işlemleri, yapın
Language/Modifications.turkish.php dosyasını açın
bulun
?>
üstüne ekleyin
//Begin Profile Comments Text Strings
//Permissions
$txt['permissiongroup_pcomments'] = 'Profil Yorumları';
$txt['permissionname_pcomments_view'] = 'Yorumlara bakabilir';
$txt['permissionhelp_pcomments_view'] = 'Yorumlara bakmasına izin ver.';
$txt['permissionname_pcomments_add'] = 'Yorum ekleyebilir';
$txt['permissionhelp_pcomments_add'] = 'Diğer profillere yorum yapmasına izin ver.';
$txt['permissionname_pcomments_edit_own'] = 'Kendi yorumunu düzeltebilir..';
$txt['permissionhelp_pcomments_edit_own'] = 'Kullanıcının kendi yorumunu düzenlmesine izin ver.';
$txt['permissionname_pcomments_edit_any'] = 'Herhangi birinin yorumunu düzeltebilir.';
$txt['permissionhelp_pcomments_edit_any'] = 'Yorumu düzenlemesi için izin ver.';
$txt['permissionname_pcomments_delete_own'] = 'Kendi yorumunu silebilsin.';
$txt['permissionhelp_pcomments_delete_own'] = 'kullanıcının kendi yorumunu silmesine izin ver.';
$txt['permissionname_pcomments_delete_any'] = 'Herhangi birinin yorumunu silebilsin';
$txt['permissionhelp_pcomments_delete_any'] = 'Kendi profilindeki yorumları silmesine izin ver.';
$txt['cannot_pcomments_add'] = 'Yorum ekleme izniniz yok.';
$txt['cannot_pcomments_edit_own'] = 'Kendi yorumunuzu düzeltme izniniz yok.';
$txt['cannot_pcomments_edit_any'] = 'Bu yorumu düzeltme izniniz yok.';
$txt['cannot_pcomments_delete_own'] = 'Kendi yorumunuzu silme izniniz yok.';
$txt['cannot_pcomments_delete_any'] = 'Bu yorumu silemezsiniz.';
//END Profile Comments Text Strings
profil.template.php dosyasını açın
Bulun
//Start Profile Comments Mod
if(allowedTo('pcomments_view'))
{
echo '<tr>';
echo '<td colspan="2" class="titlebg">User Comments</td></tr>';
echo '<tr><td colspan="2" class="catbg"><a href="', $scripturl, '?action=comment;sa=add;u=' . $context['member']['id'] . '">Add Comment</a></td></tr>';
//Loop though all the comments
$dbresult = db_query("SELECT p.ID_COMMENT, p.ID_MEMBER, p.comment, p.subject, p.date, m.realName, p.COMMENT_MEMBER_ID FROM {$db_prefix}profile_comments as p, {$db_prefix}members AS m WHERE p.ID_MEMBER = m.ID_MEMBER AND COMMENT_MEMBER_ID = " . $context['member']['id'] . " ORDER BY ID_COMMENT DESC", __FILE__, __LINE__);
$comment_count = db_affected_rows();
while($row = mysql_fetch_assoc($dbresult))
{
echo '<tr class="catbg"><td colspan="2">' . $row['subject'] . ' | ' . timeformat($row['date']) . ' | <a href="' . $scripturl . '?action=profile;u=' . $row['ID_MEMBER'] . '">' . $row['realName'] . '</a></td></tr>';
echo '<tr><td colspan="2" class="windowbg">' . doUBBC($row['comment']) . '<br />';
if(allowedTo('pcomments_edit_any') || allowedTo('pcomments_edit_own') && $row['ID_MEMBER'] == $ID_MEMBER)
{
echo '<a href="', $scripturl, '?action=comment;sa=edit;id=' . $row['ID_COMMENT'] . '">[Edit Comment]</a>';
}
if(allowedTo('pcomments_delete_any') || allowedTo('pcomments_delete_own') && $row['ID_MEMBER'] == $ID_MEMBER)
{
echo ' <a href="', $scripturl, '?action=comment;sa=delete;id=' . $row['ID_COMMENT'] . '">[Delete Comment]</a>';
}
echo '</td>';
echo '</tr>';
}
if($comment_count != 0)
echo '<tr><td colspan="2" class="catbg"><a href="', $scripturl, '?action=comment;sa=add;u=' . $context['member']['id'] . '">Add Comment</a></td></tr>';
}
//End Profile Comments Mod
Değiştirin
//Start Profile Comments Mod
if(allowedTo('pcomments_view'))
{
echo '<tr>';
echo '<td colspan="2" class="titlebg">Kullan?c? Yorumlar?</td></tr>';
echo '<tr><td colspan="2" class="catbg"><a href="', $scripturl, '?action=comment;sa=add;u=' . $context['member']['id'] . '">Yorum ekle</a></td></tr>';
//Loop though all the comments
$dbresult = db_query("SELECT p.ID_COMMENT, p.ID_MEMBER, p.comment, p.subject, p.date, m.realName, p.COMMENT_MEMBER_ID FROM {$db_prefix}profile_comments as p, {$db_prefix}members AS m WHERE p.ID_MEMBER = m.ID_MEMBER AND COMMENT_MEMBER_ID = " . $context['member']['id'] . " ORDER BY ID_COMMENT DESC", __FILE__, __LINE__);
$comment_count = db_affected_rows();
while($row = mysql_fetch_assoc($dbresult))
{
echo '<tr class="catbg"><td colspan="2">' . $row['subject'] . ' | ' . timeformat($row['date']) . ' | <a href="' . $scripturl . '?action=profile;u=' . $row['ID_MEMBER'] . '">' . $row['realName'] . '</a></td></tr>';
echo '<tr><td colspan="2" class="windowbg">' . parse_bbc($row['comment']) . '<br />';
if(allowedTo('pcomments_edit_any') || allowedTo('pcomments_edit_own') && $row['ID_MEMBER'] == $ID_MEMBER)
{
echo '<a href="', $scripturl, '?action=comment;sa=edit;id=' . $row['ID_COMMENT'] . '">[Yorumu düzenle]</a>';
}
if(allowedTo('pcomments_delete_any') || allowedTo('pcomments_delete_own') && $row['ID_MEMBER'] == $ID_MEMBER)
{
echo ' <a href="', $scripturl, '?action=comment;sa=delete;id=' . $row['ID_COMMENT'] . '">[Yorumu Sil]</a>';
}
echo '</td>';
echo '</tr>';
}
if($comment_count != 0)
echo '<tr><td colspan="2" class="catbg"><a href="', $scripturl, '?action=comment;sa=add;u=' . $context['member']['id'] . '">Yorum ekle</a></td></tr>';
}
//End Profile Comments Mod
admin ** Üye izinleri seçeneğinden kullanıcıların izinlerini ayarlamayı unutmayın.
#18.01.2008 01:11
0
0
0
MaktüL
Modu Indirin.Kurun.Sonra Manuel
Modifications.turkish.php aç
?>
//Begin Profile Comments Text Strings
//Permissions
$txt['permissiongroup_pcomments'] = 'Profil Yorumları';
$txt['permissionname_pcomments_view'] = 'Yorumları Oku';
$txt['permissionhelp_pcomments_view'] = 'Eğer Kullanıcı, Kullanıcı Yorumlarına Bakmaya İzinliyse';
$txt['permissionname_pcomments_add'] = 'Yorum Eklemeye İzin Ver';
$txt['permissionhelp_pcomments_add'] = 'Eğer Kullanıcı, Diğerlerinin Profiline Yorum
Yazmaya İzinliyse';
$txt['permissionname_pcomments_edit_own'] = 'Kendi Yorumunu Düzelt';
$txt['permissionhelp_pcomments_edit_own'] = 'Kullanıcıya Kendi Yorumlarını Düzeltmek (Düzenlemek) İçin İzin Verir';
$txt['permissionname_pcomments_edit_any'] = 'Herhangi Bir Yorumu Düzelt';
$txt['permissionhelp_pcomments_edit_any'] = 'Kullanıcıya Herhangi Bir Yorumu Düzeltmesi İçin İzin Verir';
$txt['permissionname_pcomments_delete_own'] = 'Kendi Yorumunu Sil';
$txt['permissionhelp_pcomments_delete_own'] = 'Kullanıcıya Kendi Yorumlarını Silmesi İçin İzin Verir';
$txt['permissionname_pcomments_delete_any'] = 'Herhangi Bir Yorumu Sil';
$txt['permissionhelp_pcomments_delete_any'] = 'Kullanıcıya Herhangi Bir Yorumu Silmek İçin İzin Verir';
$txt['cannot_pcomments_add'] = 'Yorum Eklemek İçin İzinli Değilsin';
$txt['cannot_pcomments_edit_own'] = 'Kendi Yorumunu Düzeltmek İçin İzinli Değilsin';
$txt['cannot_pcomments_edit_any'] = 'Herhangi Bir Yorumu Düzeltmek İçin İzinli Değilsin';
$txt['cannot_pcomments_delete_own'] = 'Kendi Yorumunu Silmeye İzinli Değilsin';
$txt['cannot_pcomments_delete_any'] = 'Herhangi Bir Yorumu Silmek İçin İzinli Değilsin';
//END Profile Comments Text Strings
Profile.template.php aç
global $context, $settings, $options, $scripturl, $modSettings, $txt;
// First do the containing table and table header.
global $context, $settings, $options, $scripturl, $modSettings, $txt, $db_prefix,$ID_MEMBER;
// First do the containing table and table header.
<td class="windowbg2" colspan="2">';
if (!$context['user']['is_owner'] && $context['can_send_pm'])
echo '
<a href="', $scripturl, '?action=pm;sa=send;u=', $context['member']['id'], '">', $txt[688], '.</a><br />
<br />';
echo '
<a href="', $scripturl, '?action=profile;u=', $context['member']['id'], ';sa=showPosts">', $txt[460], ' ', $txt[461], '.</a><br />
<a href="', $scripturl, '?action=profile;u=', $context['member']['id'], ';sa=statPanel">', $txt['statPanel_show'], '.</a><br />
<br />
</td>
</tr>
';
//Start Profile Comments Mod
if(allowedTo('pcomments_view'))
{
echo '<tr>';
echo '<td colspan="2" class="titlebg">User Comments</td></tr>';
echo '<tr><td colspan="2" class="catbg"><a href="', $scripturl, '?action=comment;sa=add;u=' . $context['member']['id'] . '">Add Comment</a></td></tr>';
//Loop though all the comments
$dbresult = db_query("SELECT p.ID_COMMENT, p.ID_MEMBER, p.comment, p.subject, p.date, m.realName, p.COMMENT_MEMBER_ID FROM {$db_prefix}profile_comments as p, {$db_prefix}members AS m WHERE p.ID_MEMBER = m.ID_MEMBER AND COMMENT_MEMBER_ID = " . $context['member']['id'] . " ORDER BY ID_COMMENT DESC", __FILE__, __LINE__);
$comment_count = db_affected_rows();
while($row = mysql_fetch_assoc($dbresult))
{
echo '<tr class="catbg"><td colspan="2">' . $row['subject'] . ' | ' . timeformat($row['date']) . ' | <a href="' . $scripturl . '?action=profile;u=' . $row['ID_MEMBER'] . '">' . $row['realName'] . '</a></td></tr>';
echo '<tr><td colspan="2" class="windowbg">' . parse_bbc($row['comment']) . '<br />';
if(allowedTo('pcomments_edit_any') || allowedTo('pcomments_edit_own') && $row['ID_MEMBER'] == $ID_MEMBER)
{
echo '<a href="', $scripturl, '?action=comment;sa=edit;id=' . $row['ID_COMMENT'] . '">[Edit Comment]</a>';
}
if(allowedTo('pcomments_delete_any') || allowedTo('pcomments_delete_own') && $row['ID_MEMBER'] == $ID_MEMBER)
{
echo ' <a href="', $scripturl, '?action=comment;sa=delete;id=' . $row['ID_COMMENT'] . '">[Delete Comment]</a>';
}
echo '</td>';
echo '</tr>';
}
if($comment_count != 0)
echo '<tr><td colspan="2" class="catbg"><a href="', $scripturl, '?action=comment;sa=add;u=' . $context['member']['id'] . '">Add Comment</a></td></tr>';
}
//End Profile Comments Mod
echo '
ana dizindeki index.php aç
'collapse' => array('Subs-Boards.php[/swf2][swf3]CollapseCategory'),
'comment' => array('ProfileComments.php[/swf2][swf3]CommentsMain'),
Sources/ManagePermissions.php aç
pm' => array(
'pm_read' => false,
'pm_send' => false,
),
'pcomments' => array(
'pcomments_view' => false,
'pcomments_add' => false,
'pcomments_edit_own' => false,
'pcomments_edit_any' => false,
'pcomments_delete_own' => false,
'pcomments_delete_any' => false,
),
#18.01.2008 01:12
0
0
0
pr0fil3
saols
#28.03.2008 22:03
0
0
0
Profile Comments TÜRKÇE PAKET Konusuna Benzer Konular
Türkçe - Almanca - Ingilizce sözlük
05.03.2004
Türkçe Dil Yaması
02.04.2004
arapça ve türkçe allah lafzı
26.12.2007
Yemek Duasi (Türkce) bilen var mi ????
10.05.2004
Buharda Paket Böreği
29.03.2008
Plastik Gıda Ambalajı
28.03.2008 22:03
Main-Board 2004 - 2024
Bugün
Aramalar
Üyeler
Toplist
Hakkımızda
Kurallar
İletişim
İzmit Çelik Kapı
İzmit Tesisat
İzmit Mutfak Dolabı