Bulamdım kaçı konu kaçı mesaj :( Buldummm =) ama tr...

phpBB 2.0.x sürümleri için yapılmasını istediğiniz veya arayıpta bulamadığınız MODları buraya yazabilirsiniz.
Kilitli
BYSERCAN07
Kayıtlı Kullanıcı
Mesajlar: 109
Kayıt: 04.09.2006, 13:53
İletişim:

Bulamdım kaçı konu kaçı mesaj :( Buldummm =) ama tr...

Mesaj gönderen BYSERCAN07 »

ARAMA Yapsaydın Bulurdun Demeyin Yaptım Fakat Bulamadım :wink:

Yardımcı olanlara şidmidden tşk ederim :roll:

[ resmi görüntülemek için tıklayın ]
En son BYSERCAN07 tarafından 30.05.2007, 10:36 tarihinde düzenlendi, toplamda 1 kere düzenlendi.
BYSERCAN07
Kayıtlı Kullanıcı
Mesajlar: 109
Kayıt: 04.09.2006, 13:53
İletişim:

Mesaj gönderen BYSERCAN07 »

Ben Buldum Ama Biride Türkçeleştiririse Çok makbule Geçer :roll:

BEN BULDUM BEN BULDUM :lol:

Kod: Tümünü seç

############################################################## 
## MOD Title:       Pro Forum Stats MOD 
## MOD Author:       Nt3N < nt3n@fifaonline.it > (Nt3N) n/a 
## MOD Description:    This mod allows you to view more detailed stats on your forum index 
##            Stats featured by this mod: 
##            - Total posts 
##            - Total topics 
##            - Posts per user 
##            - Posts per day 
##            - Topics per day 
##            - Users per day 
##            The MOD will display all these values in just ONE line, like the next one: 
##            "Total posts: X | Total topics: X | Posts per user: X | Posts per day: X | Topics per day: X | Users per day: X" 
## MOD Version:    1.0.0 
## Compatibility: 2.0.8 (previous releases have not been tested) 
## 
## Installation Level:    Easy 
## Installation Time:    2-3 Minutes 
## 
## Files To Edit (3):    index.php 
##            language/lang_english/lang_main.php 
##                   templates/subSilver/index_body.tpl 
## 
## Included Files (0): 
## 
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/ 
############################################################## 
## Author Notes: 
## 
##   Tnx for downloading this MOD which is my first! 
##    I hope you like it! If u have any trouble while 
##    installing this MOD, feel free to contact by email! 
##    
##   Nj0y :D - questions, suggestions, etc to nt3n@fifaonline.it 
## 
##    FORZA JUVENTUS SEMPRE E COMUNQUE! 
## 
############################################################## 
## MOD History: 
## 
##  2004-08-18 - Version 1.0.0 
##      - First (bug-free) release! 
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 

# 
#-----[ OPEN ]------------------------------------------ 
# 

index.php 

# 
#-----[ FIND ]------------------------------------------ 
# 

// 
// If you don't use these stats on your index you may want to consider 
// removing them 
// 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

$total_topics = get_db_stat('topiccount'); 

# 
#-----[ FIND ]------------------------------------------ 
# 

   $template->set_filenames(array( 
      'body' => 'index_body.tpl') 
   ); 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

   $boarddays = ( time() - $board_config['board_startdate'] ) / 86400; 
   $posts_per_day = sprintf("%.2f", $total_posts / $boarddays); 
   $topics_per_day = sprintf("%.2f", $total_topics / $boarddays); 
   $users_per_day = sprintf("%.2f", $total_users / $boarddays); 
   $posts_per_user = sprintf("%.2f", $total_posts / $total_users); 


   if($posts_per_day > $total_posts) 
   { 
      $posts_per_day = $total_posts; 
   } 

   if($topics_per_day > $total_topics) 
   { 
      $topics_per_day = $total_topics; 
   } 

   if($users_per_day > $total_users) 
   { 
      $users_per_day = $total_users; 
   } 

   if($posts_per_user > $total_posts) 
   { 
      $posts_per_user = $total_posts; 
   } 

# 
#-----[ FIND ]------------------------------------------ 
# 
# You have 2 instances of this: find the SECOND one from the top 
# 

   $template->assign_vars(array( 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

      "POSTS_PER_DAY" => $posts_per_day, 
      "POSTS_PER_USER" => $posts_per_user, 
      "TOPICS_PER_DAY" => $topics_per_day, 
      "USERS_PER_DAY" => $users_per_day, 
      "TOTAL_TOPICCOUNT" => $total_topics, 
      "L_TOTAL_TOPICCOUNT" => $lang['total_topiccount'], 
      "L_POSTS_PER_DAY" => $lang['Posts_per_day'], 
      "L_TOPICS_PER_DAY" => $lang['Topics_per_day'], 
      "L_USERS_PER_DAY" => $lang['Users_per_day'], 
      "L_POSTS_PER_USER" => $lang['Posts_per_user'], 

# 
#-----[ OPEN ]------------------------------------------ 
# 

templates/subSilver/index_body.tpl 

# 
#-----[ FIND ]------------------------------------------ 
# 

   <td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span> 

# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 

   <td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS} | {L_TOTAL_TOPICCOUNT} <b>{TOTAL_TOPICCOUNT}</b> | {L_POSTS_PER_USER}<b>{POSTS_PER_USER}</b> | {L_POSTS_PER_DAY}<b>{POSTS_PER_DAY}</b> | {L_TOPICS_PER_DAY}<b>{TOPICS_PER_DAY}</b> | {L_USERS_PER_DAY}<b>{USERS_PER_DAY}</b><br />{TOTAL_USERS}<br />{NEWEST_USER}</span> 

# 
#-----[ OPEN ]------------------------------------------ 
# 

language/lang_english/lang_main.php 

# 
#-----[ FIND ]------------------------------------------ 
# 

$lang['Posted_articles_zero_total'] = 'Our users have posted a total of <b>0</b> articles'; // Number of posts 
$lang['Posted_articles_total'] = 'Our users have posted a total of <b>%d</b> articles'; // Number of posts 
$lang['Posted_article_total'] = 'Our users have posted a total of <b>%d</b> article'; // Number of posts 

# 
#-----[ REPLACE WITH ]------------------------------------------ 
# 

$lang['Posted_articles_zero_total'] = 'Total posts: <b>0</b>'; // Number of posts 
$lang['Posted_articles_total'] = 'Total posts: <b>%d</b>'; // Number of posts 
$lang['Posted_article_total'] = 'Total posts: <b>%d</b>'; // Number of posts 
$lang['Posts_per_user'] = 'Posts per user: '; 
$lang['Posts_per_day'] = 'Posts per day: '; 
$lang['Topics_per_day'] = 'Topics per day: '; 
$lang['Users_per_day'] = 'Users per day: '; 
$lang['total_topiccount'] = 'Total topics: '; 

# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM
eXspet
Kayıtlı Kullanıcı
Mesajlar: 244
Kayıt: 22.04.2007, 06:37
Konum: istanbul
İletişim:

Mesaj gönderen eXspet »

Aşağı yukarı böyle bişiler..
Siz istediğiniz gibi değiştirirsiniz tabi..
:wink:

Kod: Tümünü seç

# 
#-----[ AÇ ]------------------------------------------ 
# 

language/lang_turkish/lang_main.php 

# 
#-----[ BUL ]------------------------------------------ 
# 

$lang['Posted_articles_zero_total'] = 'Kullanıcılarımız toplam <b>0</b> mesaj gönderdiler'; // Number of posts
$lang['Posted_articles_total'] = 'Kullanıcılarımız toplam <b>%d</b> mesaj gönderdiler'; // Number of posts
$lang['Posted_article_total'] = 'Kullanıcılarımız toplam <b>%d</b> mesaj gönderdiler'; // Number of posts

# 
#-----[ BUNUNLA DEĞİŞTİR ]------------------------------------------ 
# 

$lang['Posted_articles_zero_total'] = 'Toplam Mesaj: <b>0</b>'; // Number of posts 
$lang['Posted_articles_total'] = 'Toplam mesaj: <b>%d</b>'; // Number of posts 
$lang['Posted_article_total'] = 'Toplam Mesaj: <b>%d</b>'; // Number of posts 
$lang['Posts_per_user'] = 'Üye Başına Mesaj Sayıs: '; 
$lang['Posts_per_day'] = 'Gün Başına Mesaj Sayısı: '; 
$lang['Topics_per_day'] = 'Gün Başına Başlık Sayısı: '; 
$lang['Users_per_day'] = 'Gün Başına Kullanıcı Sayısı: '; 
$lang['total_topiccount'] = 'Toplam Başlık: '; 

# 
#-----[ KAYDET VE DOSYALARI KAPAT ]------------------------------------------ 
# 
# EoM
BYSERCAN07
Kayıtlı Kullanıcı
Mesajlar: 109
Kayıt: 04.09.2006, 13:53
İletişim:

Mesaj gönderen BYSERCAN07 »

SAol valla ben çevirdim ama pek güzel olmadı bunalr kulaga daha hoş geldi saol :lol:
eXspet
Kayıtlı Kullanıcı
Mesajlar: 244
Kayıt: 22.04.2007, 06:37
Konum: istanbul
İletişim:

Mesaj gönderen eXspet »

ne demek elimizden geldiğince..
Kullanıcı avatarı
reissinan
Kayıtlı Kullanıcı
Mesajlar: 61
Kayıt: 14.11.2006, 04:45
İletişim:

Mesaj gönderen reissinan »

arkadaslar yaptım ama kafam suraya takıldı bu kodu iki kere buluyo acaba ikisinede eklemi diyo

Kod: Tümünü seç

#-----[ FIND ]------------------------------------------ 
# 
# You have 2 instances of this: find the SECOND one from the top
# 

   $template->assign_vars(array( 

# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 

      "POSTS_PER_DAY" => $posts_per_day, 
      "POSTS_PER_USER" => $posts_per_user, 
      "TOPICS_PER_DAY" => $topics_per_day, 
      "USERS_PER_DAY" => $users_per_day, 
      "TOTAL_TOPICCOUNT" => $total_topics, 
      "L_TOTAL_TOPICCOUNT" => $lang['total_topiccount'], 
      "L_POSTS_PER_DAY" => $lang['Posts_per_day'], 
      "L_TOPICS_PER_DAY" => $lang['Topics_per_day'], 
      "L_USERS_PER_DAY" => $lang['Users_per_day'], 
      "L_POSTS_PER_USER" => $lang['Posts_per_user'], 
Mr.Potter
Kayıtlı Kullanıcı
Mesajlar: 4
Kayıt: 15.04.2007, 20:44
İletişim:

Mesaj gönderen Mr.Potter »

You have 2 instances of this: find the SECOND one from the top
bundan 2 tane var diyo.... sen 2. den sonra ekliyecen....
Kilitli

“2.0.x MOD İstekleri” sayfasına dön

Kimler çevrimiçi

Bu forumu görüntüleyen kullanıcılar: Hiç bir kayıtlı kullanıcı yok ve 1 misafir