這個 Recent Topics 第三版是 phpbbhacks 的 Acid 製作的最新版
功能與各位在 plus 上面看到的一樣,而且比 Latest Topic 功能還強\r
可以顯示文章種類(公告,置頂,鎖定等),而且沒有觀看權限的文章/版面將不會讓會員看到
代碼: 選擇全部
#####################################################################################
## Hack Title: Recent Topics (third version)
## Hack Version: 1.0.3 (phpBB 2.0.4 or lower)
## Author: Acid
## Credits: Matt Slovig (prior 2.x-Script) | Philip Mayer (original 1.4x-Script)
## Support: http://www.phpbbhacks.com/forums/
##
## Description: Shows recent topics on an extra site (last 24 hour, last week,
## yesterday, last x days, today).
##
## Files to edit: 3
## language/lang_english/lang_main.php
## includes/page_header.php
## templates/subSilver/index_body.tpl
##
## new Files: 2
## recent.php
## templates/xxx/recent_body.tpl
##
#####################################################################################
##
## Installation/Author Notes:
## First always make a back-up from the files that you're going to edit.
##
## to edit the length of the topic title open recent.php
## and change the value in the first line.
##
#####################################################################################
##
## Versionen:
##
## v1.0.3
## - the name entered by a guest will be displayed now
## v1.0.2
## - some cosmetic changings
## v1.0.1
## - auth settings fixed
## v1.0.0
## - Release
##
########################################################################################## 代碼: 選擇全部
$lang['last_24h'] = '最後 24 小時';
$lang['today'] = '今天';
$lang['yesterday'] = '昨天';
$lang['last_week'] = '上週';
$lang['last_xdays1'] = '最後 ';
$lang['last_xdays2'] = ' 天內';
$lang['link'] = '檢視近日發表的文章';
$lang['show_posts'] = '顯示主題:';
$lang['showing_posts'] = '顯示中:';
$lang['day_posts'] = '天內';
$lang['last_posts'] = '最後';
$lang['Started'] = '開始於';
$lang['Title'] = '總共有 <font size=4>%s</font> 篇主題 %s'; // %s topics | %s sort method
$lang['xdays'] = '在 %s 天內發表'; // %s days
$lang['tday'] = '在今天內發表';
$lang['yday'] = '在昨天內發表';
$lang['week'] = '在上週內發表';
$lang['24h'] = '在 24 小時內發表';
$lang['Replies'] = '回覆';
$lang['Views'] = '觀看次數';

