[外掛][譯文]簡易合併主題控制介面

MODs Released by Other phpbb Sites
非官方認證通過之 MOD ,或許有安全性之疑慮,所有問題由原發表者回覆!

版主: 版主管理群

主題已鎖定
頭像
godbless
竹貓忠實會員
竹貓忠實會員
文章: 647
註冊時間: 2002-05-17 06:02
來自: 台北市南京東路4段
聯繫:

[外掛][譯文]簡易合併主題控制介面

文章 godbless »

適用版本:
2.0.4~2.0.6(2.0.4之前的我沒測試過)

來源:
http://rpgnet.clanmckeen.com/demo/viewforum.php?f=28

[php]<?php
##############################################################
## MOD Title: Simply Merge Threads
## MOD Author: Ptirhiik < admin@rpgnet-fr.com > (Pierre) http://www.rpgnet-fr.com
## MOD Description:
## This mod allows to merge two topics
## MOD Version: 1.0.1
##
## Installation Level: Easy
## Installation Time: 10 Minutes
## Files To Edit:
## viewtopic.php
## includes/functions.php
## templates/subSilver/subSilver.cfg
##
## Included Files:
## lang_extend_merge.php
## merge.php
## merge_body.tpl
## merge_select_body.tpl
## topic_merge.gif
##
## --- lang settings ---
## mod-lang_settings/lang_extend_mac.php
##
## --- topics list ---
## mod-topics_list/functions_topics_list.php
## mod-topics_list/topics_list_box.tpl
##
## mod-topics_list/graph.gif/folder_announce_own.gif
## mod-topics_list/graph.gif/folder_announce_new_own.gif
## mod-topics_list/graph.gif/folder_own.gif
## mod-topics_list/graph.gif/folder_new_own.gif
## mod-topics_list/graph.gif/folder_hot_own.gif
## mod-topics_list/graph.gif/folder_new_hot_own.gif
## mod-topics_list/graph.gif/folder_lock_own.gif
## mod-topics_list/graph.gif/folder_lock_new_own.gif
## mod-topics_list/graph.gif/folder_sticky_own.gif
## mod-topics_list/graph.gif/folder_sticky_new_own.gif
##############################################################
## 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:
## o To be able to edit your languages installed on the board, please install the administration
## language management tool included in the mod-lang_settings directory : MOD-lang_settings.txt
##
##############################################################
## MOD History:
##
## 2003-10-21 - Version 1.0.1
## - add the use of the lang settings
## - add the use of the topics list
## - fix the loose of poll while merging a poll to a topic without a poll
##
## 2003-07-27 - Version 1.0.0
## - first release
##
## 2003-07-12 - Version 0.0.1
## - first beta
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
?>[/php]

正體中文譯文:
載點:
http://gffclan.net/files/lang_chinese_t ... ge_101.zip
[php]
<?php
/***************************************************************************
* lang_extend_merge.php [English]
* -------------------------------
* begin : 28/09/2003
* copyright : Ptirhiik
* email : ptirhiik@clanmckeen.com
*
* version : 1.0.1 - 21/10/2003
*
*
***************************************************************************/
/***************************************************************************
* lang_main_news.php [正體中文語系]
* -------------------
* begin : Thursday, March 13, 2003
* by : phpbb-tw 譯文組 phpBB-tw Team
* members 組員介紹 : http://phpbb-tw.net/phpbb/groupcp.php?g=13226
*
****************************************************************************/
/***************************************************************************
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
***************************************************************************/

if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}

// admin part
if ( $lang_extend_admin )
{
$lang['Lang_extend_merge'] = '簡易合併主題控制台';
}

$lang['Refresh'] = '重新整理';
$lang['Merge_topics'] = '合併這個主題';
$lang['Merge_title'] = '新主題';
$lang['Merge_title_explain'] = '這個將會是新主題的名稱,假使你要系統使用合併標的主題的名稱作為新的主題名稱的話,就讓它保持空白,不要填寫任何東西。';
$lang['Merge_topic_from'] = '被合併的主題';
$lang['Merge_topic_from_explain'] = '這個主題將會被合併到另一個主題之中,你可以輸入主題的ID,或是主題所在的網址,或是這個主題其中一篇文章的網址';
$lang['Merge_topic_to'] = '合併標的主題';
$lang['Merge_topic_to_explain'] = '這個主題將會是所有被合併主題的標的,你可以輸入主題的ID,或是主題所在的網址,或是這個主題其中一篇文章的網址';
$lang['Merge_from_not_found'] = '找不到要被合併的主題';
$lang['Merge_to_not_found'] = '找不到合併後的標的主題';
$lang['Merge_topics_equals'] = '別鬧了!你不能同一篇主題下去合併';
$lang['Merge_from_not_authorized'] = '你對要被合併主題的版面並沒有版主以上的權限,合併失敗';
$lang['Merge_to_not_authorized'] = '你對要合併標的的版面並沒有版主以上的權限,合併失敗';
$lang['Merge_poll_from'] = '有一個投票選項在被合併的主題之中,這個投票選項將會被複製到合併標的主題之中';
$lang['Merge_poll_from_and_to'] = '合併標的裡面已經有一個投票選項,這個被合併主題內的投票選項將會被刪除,只保留合併標的主題內的投票選項';
$lang['Merge_confirm_process'] = '你確定要合併 <br />"<b>%s</b>"<br />到<br />"<b>%s</b>"';
$lang['Merge_topic_done'] = '這個主題已經成功的合併了';
?>[/php]

簡單說明:
這是一個可以用在2.0.4~2.0.6的簡易型的合併主題/文章的控制介面\r
跟以往的版面控制台不一樣的是:
真的是簡單到了極點...
你可以自由的選擇某篇文章的ID或是某個主題的ID
然後讓文章/主題併入到另一個主題內,甚至於連投票選項都能夠保留的下來!
當然前提是你的標的主題沒有另一個投票選項...

推薦指數:3顆星
外掛問題區發問格式就在這裡,請務必一定照著格式來~!
你不照著規則來,就算是也搞不清楚你的問題在哪裡!
新手問問題不是罪惡
罪惡的是自己沒有先做好本分和功課,說話的口氣也不好,再加上態度有好像我們這群人欠你多少似的~~!!
竹貓星球發問規則:
http://phpbb-tw.net/phpbb/viewtopic.php?t=16149
發問比率最高的句子翻譯:
Please ensure both the install/ and contrib/ directories are deleted
請確認install和contrib資料夾已被刪除(奇怪,翻一下英漢字典有這麼困難嗎)
主題已鎖定

回到「非官方認證外掛」