是在小弟我找尋全體PM的時候,不小心找到的東西!
請下載我已經中文化過後的版本:
下載點:
admin_priv_msgs_v121TC.zip
作者首頁:
http://www.nivisec.com/
代碼: 選擇全部
#################################################################
## Mod Title: Admin Private Messages Viewer
## Mod Version: 1.2.1
## Author: Nivisec < nivisec@hotmail.com >
## Description: Administrator Panel Plug-in to display
## a list of private messages for the board
## and allow an admin to view them.
##
## Installation Level: easy
## Installation Time: 2 Minutes
## Files To Edit: n/a
## Included Files: admin_priv_msgs.tpl
## admin_priv_msgs.php
## admin_priv_msgs_view.tpl
## admin_priv_msgs_install.txt
## lang_admin_priv_msgs.php
##
## Example Screenshots: http://www.nivisec.com/mods/viewforum.php?f=3
## Discussion Forum: http://www.nivisec.com/mods/viewforum.php?f=3
##
#################################################################
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites
#################################################################
##
## Author Note:
##
## Once the files are installed to use it just look in your
## admin panel under User Admin section to the left. You
## should now see one titled Private Messages.
##
## You should add a clause to your user registration area
## saying you are using this mod, as well as alert current
## users you have installed it. Otherwise, this may be
## illegal according to the current ToS the user signed up
## for. This is your responsibility, not mine.
##
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
##
## Revision History:
##
## v1.2.1
## - Quick fix, had used OR instead of AND in a sql query.
##
## v1.2.0
## - Updated code to follow the phpBB coding standards.
## - Updated mod to work with phpBB2 final release.
## - After many annoying e-mails added a delete function
## even though I said I would not.
## - Discontinued support for anything other than final phpBB2!
##
## v1.1.0
## - Rewrote the whole thing due to people getting errors.
## - If you tried the mod before, make sure to do the upgrade note
## below or the mod may not work now!
## ***IMPORTANT To Updgrade***
## - Delete admin_priv_msgs_view.php -- from admin directory (i.e. admin/)
## - Overwrite the rest of the files.
##
## v1.0.1
## - Ok, so forgot to add one thing in and everyone
## was getting multiple copies of all topics...
## - Now it's final :) I didn't notice that it was
## pulling multiple copies based on type before.
##
## v1.0.0
## - Initial Release and Final.
##
#################################################################
#
#-----[ EDIT TO YOUR LANGUAGE (Optional) ]------------------------------------------
#
FILE lang_admin_priv_msgs.php
#
#-----[ UPLOAD ]------------------------------------------
#
admin_priv_msgs.tpl -- /templates/subSilver/admin/
admin_priv_msgs_view.tpl -- /templates/subSilver/admin/
admin_priv_msgs.php -- /admin/
lang_admin_priv_msgs.php -- /language/lang_english/
#
# EoM[php]<?php
$lang['Private_Messages'] = '私人訊息';
$lang['To'] = "收件人";
$lang['Subject'] = "主題";
$lang['Sent_Date'] = "發送日期";
$lang['Explain_Modes'] = "你有下列六種模式可以選擇,你可以選擇任何一種你想要看到的來看,所有的訊息將可以依照你所選擇的方式下去排列";
$lang['Mode_1'] = "已閱讀的私人訊息";
$lang['Mode_2'] = "新的私人訊息";
$lang['Mode_3'] = "發送的私人訊息";
$lang['Mode_4'] = "存放在儲存夾的私人訊息";
$lang['Mode_5'] = "存放在寄件夾的私人訊息";
$lang['Mode_6'] = "尚未閱讀的私人訊息";
$lang['Deleted_Topic'] = "刪除掉訊息編號 %d"; //%d = topic id
$lang['Delete'] = "刪除";
?>[/php]

