├── .gitignore ├── .htaccess ├── INSTALL ├── LICENSE ├── README.md ├── RELEASENOTE ├── _db ├── .htaccess └── dbstructure.sql ├── _doc └── .htaccess ├── aboutnexus.php ├── adduser.php ├── admanage.php ├── adredir.php ├── ajaxbasic.js ├── allagents.php ├── allowedemails.php ├── amountbonus.php ├── amountupload.php ├── announce.php ├── attachment.php ├── attachments └── .htaccess ├── bannedemails.php ├── bans.php ├── bitbucket-upload.php ├── bitbucket └── .htaccess ├── bitbucketlog.php ├── bookmark.php ├── catmanage.php ├── cc98bar.php ├── cheaterbox.php ├── cheaters.php ├── checkuser.php ├── classes ├── .htaccess ├── Advertisement.php ├── Attachment.php └── Components │ ├── Cache.php │ ├── Database.php │ └── Meili.php ├── clearcache.php ├── colorfade.js ├── comment.php ├── common.js ├── composer.json ├── composer.lock ├── config ├── .htaccess └── allconfig.php ├── confirm.php ├── confirm_resend.php ├── confirmemail.php ├── contactstaff.php ├── cron.php ├── curtain_imageresizer.js ├── delacctadmin.php ├── delete.php ├── deletedisabled.php ├── deletemessage.php ├── details.php ├── docleanup.php ├── domLib.js ├── domTT.js ├── domTT_drag.js ├── donate.php ├── donated.php ├── donorlist.php ├── download.php ├── downloadnotice.php ├── downloadsubs.php ├── edit.php ├── email-gateway.php ├── fadomatic.js ├── faq.php ├── faqactions.php ├── faqmanage.php ├── fastdelete.php ├── favicon.ico ├── flvplayer.swf ├── formats.php ├── forummanage.php ├── forums.php ├── freeleech.php ├── friends.php ├── fun.php ├── getattachment.php ├── getextinfoajax.php ├── getrss.php ├── getusertorrentlistajax.php ├── image.php ├── imdb ├── .htaccess ├── imdb.class.php └── imdb_config.php ├── include ├── .htaccess ├── bittorrent.php ├── bittorrent_announce.php ├── browser │ ├── browseremulator.class.php │ └── info_extractor.php ├── cleanup.php ├── config.php ├── core.php ├── functions.php ├── functions_announce.php └── globalfunctions.php ├── index.php ├── invite.php ├── ipcheck.php ├── iphistory.php ├── ipsearch.php ├── lang ├── .htaccess ├── _target │ ├── lang_cleanup.php │ ├── lang_comment.php │ ├── lang_delete.php │ ├── lang_fastdelete.php │ ├── lang_fun.php │ ├── lang_modtask.php │ ├── lang_mybonus.php │ ├── lang_offers.php │ ├── lang_subtitles.php │ ├── lang_takemessage.php │ ├── lang_takereseed.php │ ├── lang_takesignup.php │ └── lang_takeupload.php ├── chs │ ├── lang_aboutnexus.php │ ├── lang_admanage.php │ ├── lang_adredir.php │ ├── lang_attachment.php │ ├── lang_bitbucket-upload.php │ ├── lang_catmanage.php │ ├── lang_cheaterbox.php │ ├── lang_checkuser.php │ ├── lang_comment.php │ ├── lang_confirm_resend.php │ ├── lang_contactstaff.php │ ├── lang_delete.php │ ├── lang_deletedisabled.php │ ├── lang_deletemessage.php │ ├── lang_details.php │ ├── lang_donate.php │ ├── lang_downloadnotice.php │ ├── lang_edit.php │ ├── lang_faq.php │ ├── lang_fastdelete.php │ ├── lang_forummanage.php │ ├── lang_forums.php │ ├── lang_friends.php │ ├── lang_fun.php │ ├── lang_functions.php │ ├── lang_getrss.php │ ├── lang_getusertorrentlistajax.php │ ├── lang_index.php │ ├── lang_invite.php │ ├── lang_iphistory.php │ ├── lang_ipsearch.php │ ├── lang_linksmanage.php │ ├── lang_log.php │ ├── lang_login.php │ ├── lang_mailtest.php │ ├── lang_makepoll.php │ ├── lang_messages.php │ ├── lang_moforums.php │ ├── lang_moresmilies.php │ ├── lang_mybonus.php │ ├── lang_news.php │ ├── lang_offers.php │ ├── lang_ok.php │ ├── lang_polloverview.php │ ├── lang_polls.php │ ├── lang_preview.php │ ├── lang_promotionlink.php │ ├── lang_recover.php │ ├── lang_report.php │ ├── lang_reports.php │ ├── lang_rules.php │ ├── lang_sendmessage.php │ ├── lang_settings.php │ ├── lang_shoutbox.php │ ├── lang_signup.php │ ├── lang_staff.php │ ├── lang_staffbox.php │ ├── lang_subtitles.php │ ├── lang_tags.php │ ├── lang_takeconfirm.php │ ├── lang_takecontact.php │ ├── lang_takeedit.php │ ├── lang_takeflush.php │ ├── lang_takeinvite.php │ ├── lang_takelogin.php │ ├── lang_takemessage.php │ ├── lang_takereseed.php │ ├── lang_takesignup.php │ ├── lang_takeupload.php │ ├── lang_topten.php │ ├── lang_torrents.php │ ├── lang_upload.php │ ├── lang_uploaders.php │ ├── lang_usercp.php │ ├── lang_userdetails.php │ ├── lang_userhistory.php │ ├── lang_users.php │ ├── lang_viewfilelist.php │ ├── lang_viewnfo.php │ ├── lang_viewpeerlist.php │ └── lang_viewsnatches.php ├── cht │ ├── lang_aboutnexus.php │ ├── lang_admanage.php │ ├── lang_adredir.php │ ├── lang_attachment.php │ ├── lang_bitbucket-upload.php │ ├── lang_catmanage.php │ ├── lang_cheaterbox.php │ ├── lang_checkuser.php │ ├── lang_comment.php │ ├── lang_confirm_resend.php │ ├── lang_contactstaff.php │ ├── lang_delete.php │ ├── lang_deletedisabled.php │ ├── lang_deletemessage.php │ ├── lang_details.php │ ├── lang_donate.php │ ├── lang_downloadnotice.php │ ├── lang_edit.php │ ├── lang_faq.php │ ├── lang_fastdelete.php │ ├── lang_forummanage.php │ ├── lang_forums.php │ ├── lang_friends.php │ ├── lang_fun.php │ ├── lang_functions.php │ ├── lang_getrss.php │ ├── lang_getusertorrentlistajax.php │ ├── lang_index.php │ ├── lang_invite.php │ ├── lang_iphistory.php │ ├── lang_ipsearch.php │ ├── lang_linksmanage.php │ ├── lang_log.php │ ├── lang_login.php │ ├── lang_mailtest.php │ ├── lang_makepoll.php │ ├── lang_messages.php │ ├── lang_moforums.php │ ├── lang_moresmilies.php │ ├── lang_mybonus.php │ ├── lang_news.php │ ├── lang_offers.php │ ├── lang_ok.php │ ├── lang_polloverview.php │ ├── lang_polls.php │ ├── lang_preview.php │ ├── lang_promotionlink.php │ ├── lang_recover.php │ ├── lang_report.php │ ├── lang_reports.php │ ├── lang_rules.php │ ├── lang_sendmessage.php │ ├── lang_settings.php │ ├── lang_shoutbox.php │ ├── lang_signup.php │ ├── lang_staff.php │ ├── lang_staffbox.php │ ├── lang_subtitles.php │ ├── lang_tags.php │ ├── lang_takeconfirm.php │ ├── lang_takecontact.php │ ├── lang_takeedit.php │ ├── lang_takeflush.php │ ├── lang_takeinvite.php │ ├── lang_takelogin.php │ ├── lang_takemessage.php │ ├── lang_takereseed.php │ ├── lang_takesignup.php │ ├── lang_takeupload.php │ ├── lang_topten.php │ ├── lang_torrents.php │ ├── lang_upload.php │ ├── lang_uploaders.php │ ├── lang_usercp.php │ ├── lang_userdetails.php │ ├── lang_userhistory.php │ ├── lang_users.php │ ├── lang_viewfilelist.php │ ├── lang_viewnfo.php │ ├── lang_viewpeerlist.php │ └── lang_viewsnatches.php └── en │ ├── lang_aboutnexus.php │ ├── lang_admanage.php │ ├── lang_adredir.php │ ├── lang_attachment.php │ ├── lang_bitbucket-upload.php │ ├── lang_catmanage.php │ ├── lang_cheaterbox.php │ ├── lang_checkuser.php │ ├── lang_comment.php │ ├── lang_confirm_resend.php │ ├── lang_contactstaff.php │ ├── lang_delete.php │ ├── lang_deletedisabled.php │ ├── lang_deletemessage.php │ ├── lang_details.php │ ├── lang_donate.php │ ├── lang_downloadnotice.php │ ├── lang_edit.php │ ├── lang_faq.php │ ├── lang_fastdelete.php │ ├── lang_forummanage.php │ ├── lang_forums.php │ ├── lang_friends.php │ ├── lang_fun.php │ ├── lang_functions.php │ ├── lang_getrss.php │ ├── lang_getusertorrentlistajax.php │ ├── lang_index.php │ ├── lang_invite.php │ ├── lang_iphistory.php │ ├── lang_ipsearch.php │ ├── lang_linksmanage.php │ ├── lang_log.php │ ├── lang_login.php │ ├── lang_mailtest.php │ ├── lang_makepoll.php │ ├── lang_messages.php │ ├── lang_moforums.php │ ├── lang_moresmilies.php │ ├── lang_mybonus.php │ ├── lang_news.php │ ├── lang_offers.php │ ├── lang_ok.php │ ├── lang_polloverview.php │ ├── lang_polls.php │ ├── lang_preview.php │ ├── lang_promotionlink.php │ ├── lang_recover.php │ ├── lang_report.php │ ├── lang_reports.php │ ├── lang_rules.php │ ├── lang_sendmessage.php │ ├── lang_settings.php │ ├── lang_shoutbox.php │ ├── lang_signup.php │ ├── lang_staff.php │ ├── lang_staffbox.php │ ├── lang_subtitles.php │ ├── lang_tags.php │ ├── lang_takeconfirm.php │ ├── lang_takecontact.php │ ├── lang_takeedit.php │ ├── lang_takeflush.php │ ├── lang_takeinvite.php │ ├── lang_takelogin.php │ ├── lang_takemessage.php │ ├── lang_takereseed.php │ ├── lang_takesignup.php │ ├── lang_takeupload.php │ ├── lang_topten.php │ ├── lang_torrents.php │ ├── lang_upload.php │ ├── lang_uploaders.php │ ├── lang_usercp.php │ ├── lang_userdetails.php │ ├── lang_userhistory.php │ ├── lang_users.php │ ├── lang_viewfilelist.php │ ├── lang_viewnfo.php │ ├── lang_viewpeerlist.php │ └── lang_viewsnatches.php ├── linksmanage.php ├── location.php ├── log.php ├── login.php ├── logout.php ├── mailtest.php ├── makepoll.php ├── massmail.php ├── maxlogin.php ├── messages.php ├── modrules.php ├── modtask.php ├── moforums.php ├── moresmilies.php ├── mybar.php ├── mybonus.php ├── mysql_stats.php ├── news.php ├── nowarn.php ├── offers.php ├── ok.php ├── opensearch.php ├── pic ├── .htaccess ├── administrator.gif ├── alipaybutton.gif ├── attachicons │ ├── archive.gif │ ├── audio.gif │ ├── common.gif │ ├── flv.gif │ ├── image.gif │ └── torrent.gif ├── banned.gif ├── bonusformulaa.png ├── bonusformulab.png ├── category │ └── chd │ │ └── scenetorrents │ │ ├── catsprites.css │ │ ├── chs │ │ └── catsprites.png │ │ ├── cht │ │ └── catsprites.png │ │ └── en │ │ └── catsprites.png ├── cattrans.gif ├── crazy.gif ├── default_avatar.png ├── elite.gif ├── extreme.gif ├── flag │ ├── afghanistan.gif │ ├── albania.gif │ ├── algeria.gif │ ├── andorra.gif │ ├── angola.gif │ ├── antiguabarbuda.gif │ ├── argentina.gif │ ├── armenia.gif │ ├── australia.gif │ ├── austria.gif │ ├── azerbaijan.gif │ ├── bahamas.gif │ ├── bahrain.gif │ ├── bangladesh.gif │ ├── barbados.gif │ ├── belarus.gif │ ├── belgium.gif │ ├── belize.gif │ ├── benin.gif │ ├── bhutan.gif │ ├── bolivia.gif │ ├── bosniaherzegovina.gif │ ├── botswana.gif │ ├── brazil.gif │ ├── brunei.gif │ ├── bulgaria.gif │ ├── burkinafaso.gif │ ├── burma.gif │ ├── burund.gif │ ├── cambodia.gif │ ├── cameroon.gif │ ├── canada.gif │ ├── centralafricanrep.gif │ ├── chad.gif │ ├── chile.gif │ ├── china.gif │ ├── colombia.gif │ ├── columbia.gif │ ├── comoros.gif │ ├── congo.gif │ ├── costarica.gif │ ├── croatia.gif │ ├── cuba.gif │ ├── cyprus.gif │ ├── czechrep.gif │ ├── demrepcongo.gif │ ├── denmark.gif │ ├── djiboutil.gif │ ├── dominica.gif │ ├── dominicanrep.gif │ ├── ecuador.gif │ ├── egypt.gif │ ├── elsalvado.gif │ ├── eq_guinea.gif │ ├── eritrea.gif │ ├── estonia.gif │ ├── ethiopia.gif │ ├── fiji.gif │ ├── finland.gif │ ├── france.gif │ ├── gabon.gif │ ├── gambia.gif │ ├── georgia.gif │ ├── germany.gif │ ├── ghana.gif │ ├── greece.gif │ ├── grenada.gif │ ├── grenadines.gif │ ├── guatemala.gif │ ├── guineabissau.gif │ ├── guineal.gif │ ├── guyana.gif │ ├── haiti.gif │ ├── honduras.gif │ ├── hong_kong.gif │ ├── hongkong.gif │ ├── hungary.gif │ ├── iceland.gif │ ├── india.gif │ ├── indonesia.gif │ ├── iran.gif │ ├── iraq.gif │ ├── ireland.gif │ ├── israel.gif │ ├── italy.gif │ ├── ivorycoast.gif │ ├── jamaica.gif │ ├── japan.gif │ ├── jollyroger.gif │ ├── jordan.gif │ ├── kazakhstan.gif │ ├── kenya.gif │ ├── kiribati.gif │ ├── kuwait.gif │ ├── kyrgyzstan.gif │ ├── laos.gif │ ├── latvia.gif │ ├── lebanon.gif │ ├── liberia.gif │ ├── libya.gif │ ├── liechtenstein.gif │ ├── lithuania.gif │ ├── luxembourg.gif │ ├── macadonia.gif │ ├── macau.gif │ ├── madagascar.gif │ ├── malawi.gif │ ├── malaysia.gif │ ├── maldives.gif │ ├── mali.gif │ ├── malta.gif │ ├── mauritania.gif │ ├── mauritius.gif │ ├── mexico.gif │ ├── micronesia.gif │ ├── moldova.gif │ ├── monaco.gif │ ├── mongolia.gif │ ├── morocco.gif │ ├── mozambique.gif │ ├── namibia.gif │ ├── nauru.gif │ ├── nepal.gif │ ├── nethantilles.gif │ ├── netherlands.gif │ ├── newzealand.gif │ ├── nicaragua.gif │ ├── niger.gif │ ├── nigeria.gif │ ├── north_korea.gif │ ├── northkorea.gif │ ├── norway.gif │ ├── oman.gif │ ├── pakistan.gif │ ├── panama.gif │ ├── papuanewguinea.gif │ ├── paraguay.gif │ ├── peru.gif │ ├── philippines.gif │ ├── poland.gif │ ├── portugal.gif │ ├── puertorico.gif │ ├── qatar.gif │ ├── rawanda.gif │ ├── romania.gif │ ├── russia.gif │ ├── sao_tome.gif │ ├── saudiarabia.gif │ ├── senegal.gif │ ├── serbia.gif │ ├── seychelles.gif │ ├── sierraleone.gif │ ├── singapore.gif │ ├── slovakia.gif │ ├── slovenia.gif │ ├── solomon_islands.gif │ ├── somalia.gif │ ├── south_korea.gif │ ├── southafrica.gif │ ├── southkorea.gif │ ├── spain.gif │ ├── srilanka.gif │ ├── stkitts_nevis.gif │ ├── stlucia.gif │ ├── sudan.gif │ ├── suriname.gif │ ├── sweden.gif │ ├── switzerland.gif │ ├── syria.gif │ ├── taiwan.gif │ ├── tajikistan.gif │ ├── tanzania.gif │ ├── thailand.gif │ ├── togo.gif │ ├── tonga.gif │ ├── trinidadandtobago.gif │ ├── tunisia.gif │ ├── turkey.gif │ ├── turkmenistan.gif │ ├── tuvala.gif │ ├── uae.gif │ ├── uganda.gif │ ├── uk.gif │ ├── ukraine.gif │ ├── uruguay.gif │ ├── usa.gif │ ├── ussr.gif │ ├── uzbekistan.gif │ ├── vanuatu.gif │ ├── venezuela.gif │ ├── vietnam.gif │ ├── westernsamoa.gif │ ├── yemen.gif │ ├── yugoslavia.gif │ ├── zaire.gif │ ├── zambia.gif │ └── zimbabwe.gif ├── forum_pic │ ├── chs │ │ ├── avatartoobig.png │ │ ├── donate.gif │ │ ├── forum.gif │ │ ├── forumsprites.css │ │ └── search_button.gif │ ├── cht │ │ ├── avatartoobig.png │ │ ├── donate.gif │ │ ├── forum.gif │ │ ├── forumsprites.css │ │ └── search_button.gif │ └── en │ │ ├── avatartoobig.png │ │ ├── donate.gif │ │ ├── forum.gif │ │ ├── forumsprites.css │ │ └── search_button.gif ├── forummoderator.gif ├── imdb_pic │ ├── 10.gif │ ├── 100.gif │ ├── 20.gif │ ├── 30.gif │ ├── 40.gif │ ├── 50.gif │ ├── 60.gif │ ├── 70.gif │ ├── 80.gif │ ├── 90.gif │ └── nophoto.gif ├── insane.gif ├── langfilechs.png ├── langfileeng.png ├── moderator.gif ├── nexus.gif ├── nexus.png ├── paypalbutton.gif ├── peasant.gif ├── power.gif ├── progressbar.gif ├── prolink.png ├── ratio.png ├── regimages │ ├── reg1.png │ ├── reg2.png │ ├── reg3.png │ ├── reg4.png │ └── reg5.png ├── retiree.gif ├── rss_logo.jpg ├── search.gif ├── smilies │ ├── 1.gif │ ├── 10.gif │ ├── 100.gif │ ├── 101.gif │ ├── 102.gif │ ├── 103.gif │ ├── 104.gif │ ├── 105.gif │ ├── 106.gif │ ├── 107.gif │ ├── 108.gif │ ├── 109.gif │ ├── 11.gif │ ├── 110.gif │ ├── 111.gif │ ├── 112.gif │ ├── 113.gif │ ├── 114.gif │ ├── 115.gif │ ├── 116.gif │ ├── 117.gif │ ├── 118.gif │ ├── 119.gif │ ├── 12.gif │ ├── 120.gif │ ├── 121.gif │ ├── 122.gif │ ├── 123.gif │ ├── 124.gif │ ├── 125.gif │ ├── 126.gif │ ├── 127.gif │ ├── 128.gif │ ├── 129.gif │ ├── 13.gif │ ├── 130.gif │ ├── 131.gif │ ├── 132.gif │ ├── 133.gif │ ├── 134.gif │ ├── 135.gif │ ├── 136.gif │ ├── 137.gif │ ├── 138.gif │ ├── 139.gif │ ├── 14.gif │ ├── 140.gif │ ├── 141.gif │ ├── 142.gif │ ├── 143.gif │ ├── 144.gif │ ├── 145.gif │ ├── 146.gif │ ├── 147.gif │ ├── 148.gif │ ├── 149.gif │ ├── 15.gif │ ├── 150.gif │ ├── 151.gif │ ├── 152.gif │ ├── 153.gif │ ├── 154.gif │ ├── 155.gif │ ├── 156.gif │ ├── 157.gif │ ├── 158.gif │ ├── 159.gif │ ├── 16.gif │ ├── 160.gif │ ├── 161.gif │ ├── 162.gif │ ├── 163.gif │ ├── 164.gif │ ├── 165.gif │ ├── 166.gif │ ├── 167.gif │ ├── 168.gif │ ├── 169.gif │ ├── 17.gif │ ├── 170.gif │ ├── 171.gif │ ├── 172.gif │ ├── 173.gif │ ├── 174.gif │ ├── 175.gif │ ├── 176.gif │ ├── 177.gif │ ├── 178.gif │ ├── 179.gif │ ├── 18.gif │ ├── 180.gif │ ├── 181.gif │ ├── 182.gif │ ├── 183.gif │ ├── 184.gif │ ├── 185.gif │ ├── 186.gif │ ├── 187.gif │ ├── 188.gif │ ├── 189.gif │ ├── 19.gif │ ├── 190.gif │ ├── 191.gif │ ├── 2.gif │ ├── 20.gif │ ├── 21.gif │ ├── 22.gif │ ├── 23.gif │ ├── 24.gif │ ├── 25.gif │ ├── 26.gif │ ├── 27.gif │ ├── 28.gif │ ├── 29.gif │ ├── 3.gif │ ├── 30.gif │ ├── 31.gif │ ├── 32.gif │ ├── 33.gif │ ├── 34.gif │ ├── 35.gif │ ├── 36.gif │ ├── 37.gif │ ├── 38.gif │ ├── 39.gif │ ├── 4.gif │ ├── 40.gif │ ├── 41.gif │ ├── 42.gif │ ├── 43.gif │ ├── 44.gif │ ├── 45.gif │ ├── 46.gif │ ├── 47.gif │ ├── 48.gif │ ├── 49.gif │ ├── 5.gif │ ├── 50.gif │ ├── 51.gif │ ├── 52.gif │ ├── 53.gif │ ├── 54.gif │ ├── 55.gif │ ├── 56.gif │ ├── 57.gif │ ├── 58.gif │ ├── 59.gif │ ├── 6.gif │ ├── 60.gif │ ├── 61.gif │ ├── 62.gif │ ├── 63.gif │ ├── 64.gif │ ├── 65.gif │ ├── 66.gif │ ├── 67.gif │ ├── 68.gif │ ├── 69.gif │ ├── 7.gif │ ├── 70.gif │ ├── 71.gif │ ├── 72.gif │ ├── 73.gif │ ├── 74.gif │ ├── 75.gif │ ├── 76.gif │ ├── 77.gif │ ├── 78.gif │ ├── 79.gif │ ├── 8.gif │ ├── 80.gif │ ├── 81.gif │ ├── 82.gif │ ├── 83.gif │ ├── 84.gif │ ├── 85.gif │ ├── 86.gif │ ├── 87.gif │ ├── 88.gif │ ├── 89.gif │ ├── 9.gif │ ├── 90.gif │ ├── 91.gif │ ├── 92.gif │ ├── 93.gif │ ├── 94.gif │ ├── 95.gif │ ├── 96.gif │ ├── 97.gif │ ├── 98.gif │ └── 99.gif ├── staffleader.gif ├── sysop.gif ├── trans.gif ├── ultimate.gif ├── uploader.gif ├── user.gif ├── userbar │ └── 0.png ├── utorrentbig.png ├── veteran.gif ├── vip.gif ├── vuzebig.png └── watermark.png ├── polloverview.php ├── preview.php ├── promotionlink.php ├── recover.php ├── report.php ├── reports.php ├── reset.php ├── retriver.php ├── rules.php ├── scrape.php ├── searchsuggest.php ├── sendmessage.php ├── settings.php ├── shoutbox.php ├── signup.php ├── smilies.php ├── staff.php ├── staffbox.php ├── staffmess.php ├── staffpanel.php ├── stats.php ├── styles ├── .htaccess ├── BambooGreen │ ├── DomTT.css │ ├── bg.jpg │ └── theme.css ├── BlasphemyOrange │ ├── DomTT.css │ ├── bg.gif │ ├── btnbg.gif │ ├── code.gif │ ├── shade.gif │ ├── shadeactive.gif │ └── theme.css ├── BlueGene │ ├── DomTT.css │ ├── btnbg.gif │ ├── code.gif │ ├── shade.gif │ ├── shadeactive.gif │ ├── shadehover.gif │ └── theme.css ├── Classic │ ├── DomTT.css │ ├── btnbg.gif │ ├── code.gif │ ├── shade.gif │ ├── shadeactive.gif │ └── theme.css ├── DarkPassion │ ├── DomTT.css │ ├── code.gif │ └── theme.css ├── bar.gif ├── curtain_imageresizer.css ├── icons.gif ├── largefont.css ├── mediumfont.css ├── png.png ├── smallfont.css └── sprites.css ├── subs └── .htaccess ├── subtitles.php ├── suggest.js ├── suggest.php ├── tags.php ├── takeamountupload.php ├── takeconfirm.php ├── takecontact.php ├── takeedit.php ├── takeflush.php ├── takeinvite.php ├── takelogin.php ├── takemessage.php ├── takereseed.php ├── takesignup.php ├── takestaffmess.php ├── takeupdate.php ├── takeupload.php ├── testip.php ├── thanks.php ├── topten.php ├── torrent_info.php ├── torrentrss.php ├── torrents.php ├── torrents └── .htaccess ├── unco.php ├── upload.php ├── uploaders.php ├── useragreement.php ├── usercp.php ├── userdetails.php ├── userhistory.php ├── users.php ├── usersearch.php ├── videoformats.php ├── viewfilelist.php ├── viewnfo.php ├── viewpeerlist.php ├── viewsnatches.php └── warned.php /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteRule \.svn/ - [F] 4 | RewriteCond %{QUERY_STRING} ^(.+)$ 5 | RewriteRule ^(.*)forums/$ $1forums.php?action=viewtopic&%1 [L] 6 | 7 | RewriteRule ^(.*)forums/$ $1forums.php?action=viewtopic 8 | 9 | Options FollowSymLinks 10 | Order allow,deny 11 | Allow from all 12 | 13 | -------------------------------------------------------------------------------- /_db/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Order allow,deny 3 | Deny from all 4 | -------------------------------------------------------------------------------- /_doc/.htaccess: -------------------------------------------------------------------------------- 1 | Options +Indexes 2 | Order allow,deny 3 | Allow from all 4 | -------------------------------------------------------------------------------- /allagents.php: -------------------------------------------------------------------------------- 1 | \n"); 11 | print("ClientPeer ID\n"); 12 | while ($arr2 = mysqli_fetch_assoc($res2)) { 13 | print("$arr2[agent]$arr2[peer_id]\n"); 14 | } 15 | print("\n"); 16 | stdfoot(); 17 | -------------------------------------------------------------------------------- /attachments/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Order allow,deny 3 | Allow from all 4 | -------------------------------------------------------------------------------- /bitbucket/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Order allow,deny 3 | Allow from all 4 | -------------------------------------------------------------------------------- /classes/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Order allow,deny 3 | Deny from all 4 | -------------------------------------------------------------------------------- /classes/Components/Meili.php: -------------------------------------------------------------------------------- 1 | 7.3", 4 | "ext-redis": "*", 5 | "ext-mysqli": "*", 6 | "rhilip/bencode": "^2.0", 7 | "phpmailer/phpmailer": "^6.1", 8 | "meilisearch/meilisearch-php": "^1.0" 9 | }, 10 | "autoload": { 11 | "psr-4": { 12 | "NexusPHP\\": "classes/" 13 | } 14 | }, 15 | "config": { 16 | "allow-plugins": { 17 | "php-http/discovery": true 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /config/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Order allow,deny 3 | Deny from all 4 | -------------------------------------------------------------------------------- /contactstaff.php: -------------------------------------------------------------------------------- 1 | "); 10 | if ($_GET["returnto"] || $_SERVER["HTTP_REFERER"]) { 11 | print(""); 12 | } 13 | begin_compose($lang_contactstaff['text_message_to_staff'], "new"); 14 | end_compose(); 15 | print(""); 16 | end_main_frame(); 17 | stdfoot(); 18 | -------------------------------------------------------------------------------- /docleanup.php: -------------------------------------------------------------------------------- 1 | Do Clean-up"; 10 | echo "

"; 11 | echo "clean-up in progress...please wait
"; 12 | ob_flush(); 13 | flush(); 14 | if ($_GET['forceall']) { 15 | $forceall = 1; 16 | } else { 17 | $forceall = 0; 18 | echo "you may force full clean-up by adding the parameter 'forceall=1' to URL
"; 19 | } 20 | echo "

"; 21 | $tstart = getmicrotime(); 22 | require_once("include/cleanup.php"); 23 | print("

".docleanup($forceall, 1)."

"); 24 | $tend = getmicrotime(); 25 | $totaltime = ($tend - $tstart); 26 | printf("Time consumed: %f sec
", $totaltime); 27 | echo "Done
"; 28 | echo ""; 29 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhilip/NexusPHP/c6fde3abee14b8e385dc66c85d2fba804e6bfebc/favicon.ico -------------------------------------------------------------------------------- /flvplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhilip/NexusPHP/c6fde3abee14b8e385dc66c85d2fba804e6bfebc/flvplayer.swf -------------------------------------------------------------------------------- /getextinfoajax.php: -------------------------------------------------------------------------------- 1 | new_page('imdb_id_'.$imdb_id.'_'.$mode, 1296000, true); 16 | if (!$Cache->get_page()) { 17 | $infoblock = getimdb($imdb_id, $cache_stamp, $mode); 18 | if ($infoblock) { 19 | $Cache->add_whole_row(); 20 | print($infoblock); 21 | $Cache->end_whole_row(); 22 | $Cache->cache_page(); 23 | echo $Cache->next_row(); 24 | } 25 | } else { 26 | echo $Cache->next_row(); 27 | } 28 | -------------------------------------------------------------------------------- /imdb/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Order allow,deny 3 | Allow from all 4 | -------------------------------------------------------------------------------- /include/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Order allow,deny 3 | Deny from all 4 | -------------------------------------------------------------------------------- /include/bittorrent.php: -------------------------------------------------------------------------------- 1 | ".PROJECTNAME.""); 7 | define("THISTRACKER", "General"); 8 | $showversion = " - Powered by ".PROJECTNAME; 9 | $rootpath=realpath(dirname(__FILE__) . '/..'); 10 | set_include_path(get_include_path() . PATH_SEPARATOR . $rootpath); 11 | $rootpath .= "/"; 12 | include($rootpath . 'include/core.php'); 13 | include_once($rootpath . 'include/functions.php'); 14 | -------------------------------------------------------------------------------- /include/bittorrent_announce.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'msg_deleted_your_sub' => " deleted the subtitle that you uploaded. ", 6 | 'msg_your_sub_deleted' => "Your subtitle was deleted", 7 | 'msg_reason_is' => "The reason: ", 8 | ), 9 | 'chs' => array( 10 | 'msg_deleted_your_sub' => "删除了你上传的字幕。", 11 | 'msg_your_sub_deleted' => "字幕被删除", 12 | 'msg_reason_is' => "原因:", 13 | ), 14 | 'cht' => array( 15 | 'msg_deleted_your_sub' => "刪除了你上傳的字幕。", 16 | 'msg_your_sub_deleted' => "字幕被刪除", 17 | 'msg_reason_is' => "原因:", 18 | ), 19 | 'ko' => array( 20 | 'msg_deleted_your_sub' => " 업로드한 자막이 삭제되었습니다. ", 21 | 'msg_your_sub_deleted' => "자막이 삭제되었습니다.", 22 | 'msg_reason_is' => "삭제 이유: ", 23 | ), 24 | 'ja' => array( 25 | 'msg_deleted_your_sub' => " deleted the subtitle that you uploaded. ", 26 | 'msg_your_sub_deleted' => "Your subtitle was deleted", 27 | 'msg_reason_is' => "The reason: ", 28 | ), 29 | ); 30 | -------------------------------------------------------------------------------- /lang/chs/lang_adredir.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_ad_system_disabled' => "广告系统关闭中。", 6 | 'std_invalid_ad_id' => "无效的广告ID", 7 | 'std_no_redirect_url' => "无跳转链接。" 8 | ); 9 | -------------------------------------------------------------------------------- /lang/chs/lang_attachment.php: -------------------------------------------------------------------------------- 1 | "失败!没有收到文件!", 5 | 'text_file_number_limit_reached' => "失败!你暂时不能上传更多附件!请等待些时间。", 6 | 'text_file_size_too_big' => "失败!文件过大。", 7 | 'text_file_extension_not_allowed' => "失败!不允许该文件扩展名。", 8 | 'text_invalid_image_file' => "失败!图片文件无效。", 9 | 'text_cannot_move_file' => "失败!无法移动上传的文件。", 10 | 'submit_upload' => "上传", 11 | 'text_left' => "今日剩余:", 12 | 'text_of' => "/", 13 | 'text_size_limit' => "大小限制:", 14 | 'text_file_extensions' => "允许扩展名:", 15 | 'text_mouse_over_here' => "鼠标移至此", 16 | 'text_small_thumbnail' => "小缩略图", 17 | ); 18 | -------------------------------------------------------------------------------- /lang/chs/lang_cheaterbox.php: -------------------------------------------------------------------------------- 1 | "噢哦!", 5 | 'std_no_suspect_detected' => "还没有检测到任何作弊嫌疑者。", 6 | 'head_cheaterbox' => "作弊者", 7 | 'text_cheaterbox' => "作弊者 BETA", 8 | 'col_added' => "时间", 9 | 'col_suspect' => "嫌疑者", 10 | 'col_hit' => "次数", 11 | 'col_torrent' => "种子", 12 | 'col_ul' => "上传", 13 | 'col_dl' => "下载", 14 | 'col_ann_time' => "汇报时间", 15 | 'col_seeders' => "做种者", 16 | 'col_leechers' => "下载者", 17 | 'col_comment' => "备注", 18 | 'col_dealt_with' => "处理", 19 | 'col_action' => "行为", 20 | 'text_torrent_does_not_exist' => "种子不存在或已被删除", 21 | 'text_yes' => "是", 22 | 'text_no' => "否", 23 | 'submit_set_dealt' => "设为已处理", 24 | 'submit_delete' => "删除" 25 | ); 26 | -------------------------------------------------------------------------------- /lang/chs/lang_checkuser.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_no_user_id' => "没有该ID的用户!", 6 | 'std_no_permission' => "你没有该权限", 7 | 'head_detail_for' => "用户详情 - ", 8 | 'text_account_disabled' => "

该账号被禁用!

\n", 9 | 'row_join_date' => "加入日期", 10 | 'row_gender' => "性别", 11 | 'row_email' => "邮箱", 12 | 'row_ip' => "IP", 13 | 'submit_confirm_this_user' => "确认该用户", 14 | ); 15 | -------------------------------------------------------------------------------- /lang/chs/lang_contactstaff.php: -------------------------------------------------------------------------------- 1 | "联系管理组", 5 | 'text_message_to_staff' => "给管理组发短讯", 6 | 'row_subject' => "标题", 7 | 'row_body' => "正文", 8 | 'submit_send_it' => "发送", 9 | ); 10 | -------------------------------------------------------------------------------- /lang/chs/lang_delete.php: -------------------------------------------------------------------------------- 1 | "删除失败!", 5 | 'std_missing_form_date' => "有项目未填", 6 | 'std_not_owner' => "你不是发种者!你怎么会来这?\n", 7 | 'std_invalid_reason' => "无效的理由", 8 | 'std_describe_violated_rule' => "请填写具体违反的规则。", 9 | 'std_enter_reason' => "请填写删除该种子的原因。", 10 | 'head_torrent_deleted' => "成功删除种子!", 11 | 'text_go_back' => "回到刚才的地方", 12 | 'text_back_to_index' => "返回首页", 13 | 'text_torrent_deleted' => "成功删除种子!", 14 | ); 15 | -------------------------------------------------------------------------------- /lang/chs/lang_deletedisabled.php: -------------------------------------------------------------------------------- 1 | "删除被禁用户", 5 | 'text_delete_diasabled' => "删除被禁用户", 6 | 'submit_delete_all_disabled_users' => "删除所有被禁用户", 7 | 'text_delete_disabled_note' => "如果你点击下面的按钮,网站中所有的被禁止用户将被删除。除非十分确定,否则不要点此按钮。", 8 | 'text_users_are_disabled' => "个用户被删除。" 9 | ); 10 | -------------------------------------------------------------------------------- /lang/chs/lang_deletemessage.php: -------------------------------------------------------------------------------- 1 | "错误短讯ID", 5 | 'std_not_suggested' => "如果我是你,我不会这么做...", 6 | 'std_not_in_inbox' => "你的收件箱中没有该短讯。", 7 | 'std_not_in_sentbox' => "你的发件箱中没有该短讯。", 8 | 'std_unknown_pm_type' => "未知短讯类型。", 9 | ); 10 | -------------------------------------------------------------------------------- /lang/chs/lang_faq.php: -------------------------------------------------------------------------------- 1 | "常见问题", 5 | 'text_welcome_to' => "欢迎来到", 6 | 'text_welcome_content_one' => "我们的目标是提供纯粹高品质的东西。因此,只有授权的用户才能发布种子。如果你有0-day资源的来源,请不要迟疑联系我们!

这是非公开BT站点,你必须注册后才能访问。", 7 | 'text_welcome_content_two' => "在".$SITENAME."干任何事前,我们建议你先阅读站点的规则!规则只有简单几条,但我们要求用户严格遵照。

在使用前,请阅读".$SITENAME."用户协定。", 8 | 'text_contents' => "目录", 9 | ); 10 | -------------------------------------------------------------------------------- /lang/chs/lang_fastdelete.php: -------------------------------------------------------------------------------- 1 | "删除失败!", 5 | 'std_missing_form_data' => "有项目没填", 6 | 'text_no_permission' => "你没有权限删除该种子,只有版主及以上用户才可以。如果你想删除自己发布的种子,请联系他们。\n", 7 | 'std_delete_torrent' => "删除种子", 8 | 'std_delete_torrent_note' => "确认:你即将删除种子,点击", 9 | 'std_here_if_sure' => "这里来确认。" 10 | ); 11 | -------------------------------------------------------------------------------- /lang/chs/lang_getusertorrentlistajax.php: -------------------------------------------------------------------------------- 1 | "类型", 5 | 'col_name' => "标题", 6 | 'title_size' => "大小", 7 | 'title_seeders' => "种子数", 8 | 'title_leechers' => "下载数", 9 | 'col_uploaded' => "上传", 10 | 'col_downloaded' => "下载", 11 | 'col_ratio' => "分享率", 12 | 'col_anonymous' => "匿名", 13 | 'col_time_completed' => "完成时间", 14 | 'col_se_time' => "做种时间", 15 | 'col_le_time' => "下载时间", 16 | 'text_record' => "条记录", 17 | 'text_no_record' => "没有记录", 18 | ); 19 | -------------------------------------------------------------------------------- /lang/chs/lang_iphistory.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_invalid_id' => "无效的ID", 6 | 'text_user_not_found' => "没有该用户", 7 | 'head_ip_history_log_for' => "用户IP历史 - ", 8 | 'text_historical_ip_by' => "用户IP地址历史 - ", 9 | 'col_last_access' => "最近访问", 10 | 'col_ip' => "IP", 11 | 'col_hostname' => "主机名", 12 | 'text_not_available' => "无", 13 | 'text_duplicate' => "重复", 14 | ); 15 | -------------------------------------------------------------------------------- /lang/chs/lang_ipsearch.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_invalid_ip' => "无效的IP地址。", 6 | 'std_invalid_subnet_mask' => "无效的子网掩码。", 7 | 'head_search_ip_history' => "搜索IP历史", 8 | 'text_search_ip_history' => "搜索IP历史", 9 | 'row_ip' => "IP", 10 | 'row_subnet_mask' => "子网掩码", 11 | 'submit_search' => "给我搜", 12 | 'text_no_users_found' => "没有找到用户", 13 | 'text_users_used_the_ip' => "个用户使用过此IP:", 14 | 'col_username' => "用户名", 15 | 'col_last_ip' => "最近IP", 16 | 'col_last_access' => "最近访问", 17 | 'col_ip_num' => "IP数", 18 | 'col_last_access_on' => "此IP最近访问", 19 | 'col_added' => "加入时间", 20 | 'col_invited_by' => "邀请者", 21 | 'text_not_available' => "无", 22 | ); 23 | -------------------------------------------------------------------------------- /lang/chs/lang_mailtest.php: -------------------------------------------------------------------------------- 1 | "邮件测试", 5 | 'text_mail_test' => "邮件测试", 6 | 'row_enter_email' => "输入邮箱地址", 7 | 'text_enter_email_note' => "输入用于接收测试邮件的邮箱地址,如yourname@gmail.com", 8 | 'submit_send_it' => "发送!", 9 | 'text_smtp_testing_mail' => "测试邮件", 10 | 'std_error' => "错误", 11 | 'std_invalid_email_address' => "邮箱地址无效!", 12 | 'mail_test_mail_content' => "你好,如果你看见这个信息,你的SMTP邮件发送功能正常。祝愉快!", 13 | 'std_success' => "成功", 14 | 'std_success_note' => "没有错误发生,但这不意为着邮件肯定已成功发送。请检查邮箱。" 15 | ); 16 | -------------------------------------------------------------------------------- /lang/chs/lang_makepoll.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_no_poll_id' => "不存在此投票ID", 6 | 'std_missing_form_data' => "请填写必填项目!", 7 | 'head_edit_poll' => "编辑投票", 8 | 'text_edit_poll' => "编辑投票", 9 | 'head_new_poll' => "新的投票", 10 | 'text_day' => "天", 11 | 'text_hour' => "时", 12 | 'text_current_poll' => "注意:当前投票", 13 | 'text_is_only' => "发布仅", 14 | 'text_old' => "。", 15 | 'text_make_poll' => "新的投票", 16 | 'text_question' => "问题", 17 | 'text_option' => "选项", 18 | 'submit_edit_poll' => "编辑投票", 19 | 'submit_create_poll' => "创建投票", 20 | 'text_required' => " 必须填写" 21 | ); 22 | -------------------------------------------------------------------------------- /lang/chs/lang_moforums.php: -------------------------------------------------------------------------------- 1 | "论坛分区管理", 5 | 'text_forum_management' => "论坛管理", 6 | 'text_overforum_management' => "论坛分区管理", 7 | 'col_name' => "名字", 8 | 'col_viewed_by' => "最低允许查看等级", 9 | 'col_modify' => "修改", 10 | 'text_edit' => "编辑", 11 | 'text_delete' => "删除", 12 | 'js_sure_to_delete_overforum' => "你确定要删除此论坛分区吗?", 13 | 'text_no_records_found' => "对不起,没有记录!", 14 | 'text_new_overforum' => "新论坛分区", 15 | 'text_overforum_name' => "名字", 16 | 'text_overforum_description' => "描述", 17 | 'text_minimum_view_permission' => "最低允许阅读等级", 18 | 'text_overforum_order' => "论坛分区排序", 19 | 'text_overforum_order_note' => "按数字升序排列,即0显示在最顶端。", 20 | 'submit_make_overforum' => "创建新的分区", 21 | 'text_edit_overforum' => "编辑分区", 22 | 'submit_edit_overforum' => "编辑分区" 23 | ); 24 | -------------------------------------------------------------------------------- /lang/chs/lang_moresmilies.php: -------------------------------------------------------------------------------- 1 | "更多可点表情", 5 | 'text_close' => "关闭", 6 | ); 7 | -------------------------------------------------------------------------------- /lang/chs/lang_news.php: -------------------------------------------------------------------------------- 1 | "删除最近消息", 5 | 'std_are_you_sure' => "你真的要删除一条最近消息吗?如果确定,请点击", 6 | 'std_here' => "这里", 7 | 'std_if_sure' => "。", 8 | 'std_error' => "错误", 9 | 'std_news_body_empty' => "最近消息的正文不能为空!", 10 | 'std_news_title_empty' => "最近消息的标题不能为空!", 11 | 'std_something_weird_happened' => "奇怪的事情发生了。", 12 | 'std_invalid_news_id' => "最近消息的ID不存在:", 13 | 'head_edit_site_news' => "编辑最近消息", 14 | 'text_edit_site_news' => "编辑最近消息", 15 | 'text_notify_users_of_this' => "提醒用户查看这条消息。", 16 | 'head_site_news' => "最近消息", 17 | 'text_submit_news_item' => "提交新的消息" 18 | ); 19 | -------------------------------------------------------------------------------- /lang/chs/lang_polloverview.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'head_poll_overview' => "投票概况", 6 | 'text_polls_overview' => "投票概况", 7 | 'col_id' => "ID", 8 | 'col_added' => "添加时间", 9 | 'col_question' => "问题", 10 | 'text_no_users_voted' => "对不起...还没有用户投过票!", 11 | 'text_no_poll_id' => "对不起...没有该ID的投票!", 12 | 'text_poll_question' => "投票问题", 13 | 'col_option_no' => "编号", 14 | 'col_options' => "选项", 15 | 'text_polls_user_overview' => "投票用户情况", 16 | 'col_username' => "用户名", 17 | 'col_selection' => "选项", 18 | ); 19 | -------------------------------------------------------------------------------- /lang/chs/lang_polls.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_permission_denied' => "你没有该权限", 6 | 'std_delete_poll' => "删除投票", 7 | 'std_delete_poll_confirmation' => "你确定要删除该投票吗?点击\n", 8 | 'std_here_if_sure' => "这里来确认。", 9 | 'std_sorry' => "对不起...", 10 | 'std_no_polls' => "暂时没有投票!", 11 | 'head_previous_polls' => "以前的投票", 12 | 'text_previous_polls' => "以前的投票", 13 | 'text_ago' => "以前", 14 | 'text_edit' => "编辑", 15 | 'text_delete' => "删除", 16 | 'text_votes' => "投票数:" 17 | ); 18 | -------------------------------------------------------------------------------- /lang/chs/lang_preview.php: -------------------------------------------------------------------------------- 1 | "预览" 5 | ); 6 | -------------------------------------------------------------------------------- /lang/chs/lang_rules.php: -------------------------------------------------------------------------------- 1 | "规则" 5 | ); 6 | -------------------------------------------------------------------------------- /lang/chs/lang_sendmessage.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_permission_denied' => "没有该权限", 6 | 'head_send_message' => "发送短讯", 7 | 'text_mass_message' => "群发短讯给", 8 | 'text_users' => "个用户", 9 | 'text_subject' => "主题:", 10 | 'text_comment' => "评论:", 11 | 'text_from' => "发送者:", 12 | 'text_take_snapshot' => "使用快照:", 13 | 'submit_send_it' => "发送", 14 | 'submit_preview' => "预览", 15 | 'text_templates' => "模版:", 16 | 'submit_use' => "使用", 17 | 'std_no_user_id' => "没有该ID的用户。", 18 | 'text_message_to' => "发送短讯给", 19 | 'checkbox_delete_message_replying_to' => "回复后删除", 20 | 'checkbox_save_message_to_sendbox' => "保存到发件箱" 21 | ); 22 | -------------------------------------------------------------------------------- /lang/chs/lang_shoutbox.php: -------------------------------------------------------------------------------- 1 | "删", 5 | 'std_access_denied' => "拒绝访问", 6 | 'std_access_denied_note' => "游客不允许查看该页面。", 7 | 'text_to_guest' => "对游客说", 8 | 'text_guest' => "游客", 9 | 'text_ago' => "前", 10 | 'text_helpbox_disabled' => "求助区当前关闭中。你在搞什么鬼?", 11 | 'text_no_permission_to_shoutbox' => "你没有在群聊区发言的权力。你在搞什么鬼?", 12 | ); 13 | -------------------------------------------------------------------------------- /lang/chs/lang_staffbox.php: -------------------------------------------------------------------------------- 1 | "管理组信箱", 5 | 'text_staff_pm' => "管理组信箱", 6 | 'std_sorry' => "对不起", 7 | 'std_no_messages_yet' => "暂时没有短讯!", 8 | 'col_subject' => "主题", 9 | 'col_sender' => "发讯者", 10 | 'col_added' => "时间", 11 | 'col_answered' => "回复", 12 | 'col_action' => "行为", 13 | 'text_yes' => "是", 14 | 'text_no' => "否", 15 | 'submit_set_answered' => "设为已回复", 16 | 'submit_delete' => "删除", 17 | 'text_system' => "系统", 18 | 'head_view_staff_pm' => "查看管理组信箱", 19 | 'col_from' => "自", 20 | 'col_date' => "日期", 21 | 'col_answered_by' => "回复者", 22 | 'text_reply' => "回复", 23 | 'text_mark_answered' => "设为已回复", 24 | 'text_delete' => "删除", 25 | 'std_error' => "错误", 26 | 'std_no_user_id' => "没有此ID的用户。", 27 | 'head_answer_to_staff_pm' => "回复管理组信息", 28 | 'text_answering_to' => "回复", 29 | 'text_sent_by' => " - 来自", 30 | 'std_body_is_empty' => "回复不能为空白!", 31 | ); 32 | -------------------------------------------------------------------------------- /lang/chs/lang_takeconfirm.php: -------------------------------------------------------------------------------- 1 | "对不起...", 5 | 'std_no_buddy_to_confirm' => "没有需要验证的用户。:(

请点击", 6 | 'std_here_to_go_back' => "这里返回。", 7 | 'mail_title' => "网站账户验证", 8 | 'mail_here' => "这里", 9 | 'mail_content_1' => "你好,

你的账号成功通过验证。你可以进入登录页面: ", 10 | 'mail_content_2' => "

使用你的账户登录。登录后请先阅读站点规则,提问前请自行参考常见问题。

祝你好运! ".$SITENAME."!

如果你不认识邀请你的人,请将本邮件转发至".$REPORTMAIL."
------
".$SITENAME." 网站" 11 | ); 12 | -------------------------------------------------------------------------------- /lang/chs/lang_takecontact.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_method' => "方式", 6 | 'std_please_enter_something' => "请填写内容!", 7 | 'std_please_define_subject' => "你必须输入标题!", 8 | 'std_message_flooding' => "不允许滥发短讯,请在", 9 | 'std_second' => "秒", 10 | 'std_s' => "", 11 | 'std_before_sending_pm' => "后重试。", 12 | 'std_succeeded' => "成功", 13 | 'std_message_succesfully_sent' => "短讯成功发送!" 14 | ); 15 | -------------------------------------------------------------------------------- /lang/chs/lang_takeedit.php: -------------------------------------------------------------------------------- 1 | "编辑失败!", 5 | 'std_missing_form_data' => "有项目没有填写", 6 | 'std_not_owner' => "你不是发种者!怎么回事?\n", 7 | 'std_nfo_too_big' => "NFO过大!最大为65,535字节。", 8 | 'std_cannot_move_torrent' => "你没有将种子移至另一区的权限。另外,你怎么会到这?" 9 | ); 10 | -------------------------------------------------------------------------------- /lang/chs/lang_takeflush.php: -------------------------------------------------------------------------------- 1 | "失败", 5 | 'std_success' => "成功", 6 | 'std_ghost_torrents_cleaned' => "个冗余种子被成功清除。", 7 | 'std_cannot_flush_others' => "你只能清除自己的冗余种子" 8 | ); 9 | -------------------------------------------------------------------------------- /lang/chs/lang_takelogin.php: -------------------------------------------------------------------------------- 1 | "错误: 用户名或密码不正确!

忘记密码了?找回你的密码!", 5 | 'std_login_fail' => "登录失败!", 6 | 'std_account_disabled' => "该账号已被禁用。", 7 | 'std_user_account_unconfirmed' => "该账户还未通过验证。如果你没有收到验证邮件,试试重新发送验证邮件。", 8 | ); 9 | -------------------------------------------------------------------------------- /lang/chs/lang_takemessage.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_permission_denied' => "你没有该权限!", 6 | 'std_please_enter_something' => "不能为空!", 7 | 'std_message_flooding_denied' => "禁止滥发短讯。请在", 8 | 'std_before_sending_pm' => "秒后再发送。", 9 | 'std_invalid_id' => "该账号已失效", 10 | 'std_user_not_exist' => "不存在该账号", 11 | 'std_refused' => "拒绝", 12 | 'std_account_parked' => "该账号已被封存。", 13 | 'std_user_blocks_your_pms' => "该用户拒绝接受你的短讯。", 14 | 'std_user_accepts_friends_pms' => "该用户只接受其好友的短讯。", 15 | 'std_user_blocks_all_pms' => "该用户拒绝接受一切短讯。", 16 | 'std_succeeded' => "成功", 17 | 'std_messages_out_of' => "条短讯(共", 18 | 'std_were' => "条)已", 19 | 'std_message_was' => "短讯已", 20 | 'std_successfully_sent' => "成功发送!", 21 | 'std_s_were' => "已", 22 | 'std_was' => "已", 23 | 'std_updated' => "更新", 24 | 'std_no_permission_forwarding' => "你没有转发该短讯的权限。", 25 | 'std_must_enter_username' => "你必须填写要转发的用户的用户名。", 26 | ); 27 | -------------------------------------------------------------------------------- /lang/chs/lang_takereseed.php: -------------------------------------------------------------------------------- 1 | "续种请求!", 5 | 'std_it_worked' => "成功了!完成下载的用户将收到请求续种的短讯。", 6 | 'std_error' => "错误", 7 | 'std_torrent_not_dead' => "该种子没有断种。", 8 | 'std_reseed_sent_recently' => "该种子在过去15分钟内已收到一次续种请求。请耐心等待好心人续种。", 9 | ); 10 | -------------------------------------------------------------------------------- /lang/chs/lang_uploaders.php: -------------------------------------------------------------------------------- 1 | "没有找到发布员!", 5 | 'head_uploaders' => "发布员", 6 | 'text_uploaders' => "发布员", 7 | 'col_username' => "用户名", 8 | 'col_torrents_size' => "种子大小", 9 | 'col_torrents_num' => "种子数", 10 | 'col_last_upload_time' => "最近发布时间", 11 | 'col_last_upload' => "最近发布种子", 12 | 'text_not_available' => "无", 13 | 'submit_go' => "查找", 14 | 'text_select_month' => "选择月份:", 15 | 'text_order_by' => "排序", 16 | 'text_username' => "用户名", 17 | 'text_torrent_size' => "种子大小", 18 | 'text_torrent_num' => "种子数", 19 | ); 20 | -------------------------------------------------------------------------------- /lang/chs/lang_userhistory.php: -------------------------------------------------------------------------------- 1 | "错误", 5 | 'std_permission_denied' => "你没有该权限", 6 | 'std_no_posts_found' => "没有找到该帖子", 7 | 'head_posts_history' => "帖子历史", 8 | 'text_posts_history_for' => "用户帖子历史-", 9 | 'text_forum' => "论坛: ", 10 | 'text_topic' => "主题: ", 11 | 'text_post' => "帖子: ", 12 | 'text_new' => "新!", 13 | 'text_last_edited' => "最后被", 14 | 'text_at' => "编辑于", 15 | 'std_no_comments_found' => "没有找到评论", 16 | 'head_comments_history' => "评论历史", 17 | 'text_comments_history_for' => "用户评论历史-", 18 | 'text_torrent' => "种子: ", 19 | 'text_comment' => "评论: ", 20 | 'std_history_error' => "错误", 21 | 'std_unkown_action' => "未知行为", 22 | 'std_invalid_or_no_query' => "无效或没有该项。" 23 | ); 24 | -------------------------------------------------------------------------------- /lang/chs/lang_users.php: -------------------------------------------------------------------------------- 1 | "用户", 5 | 'text_users' => "

用户

\n", 6 | 'text_search' => "搜索:", 7 | 'select_any_class' => "(任何等级)", 8 | 'submit_okay' => "给我搜", 9 | 'text_prev' => "上一页", 10 | 'text_next' => "下一页", 11 | 'col_user_name' => "用户名", 12 | 'col_registered' => "注册", 13 | 'col_last_access' => "最后访问", 14 | 'col_class' => "等级", 15 | 'col_country' => "国家/地区", 16 | 'select_any_country'=> "(任何国家/地区)", 17 | ); 18 | -------------------------------------------------------------------------------- /lang/chs/lang_viewfilelist.php: -------------------------------------------------------------------------------- 1 | "路径", 5 | ); 6 | -------------------------------------------------------------------------------- /lang/chs/lang_viewnfo.php: -------------------------------------------------------------------------------- 1 | "奧哦", 5 | 'head_view_nfo' => "查看NFO文件", 6 | 'text_nfo_for' => "NFO文件:", 7 | 'title_dos_vy' => "查看DOS样式", 8 | 'text_dos_vy' => "DOS样式", 9 | 'title_windows_vy' => "查看Windows样式", 10 | 'text_windows_vy' => "Windows样式" 11 | ); 12 | -------------------------------------------------------------------------------- /lang/chs/lang_viewpeerlist.php: -------------------------------------------------------------------------------- 1 | "用户", 5 | 'col_location' => "地点", 6 | 'col_connectable' => "可连接", 7 | 'col_uploaded' => "上传", 8 | 'col_rate' => "即时速度", 9 | 'col_av_rate' => "平均速度", 10 | 'col_downloaded' => "下载", 11 | 'col_ratio' => "分享率", 12 | 'col_complete' => "完成", 13 | 'col_connected' => "连接时间", 14 | 'col_idle' => "最近汇报", 15 | 'col_client' => "客户端", 16 | 'text_anonymous' => "匿名", 17 | 'text_unknown' => "(未知)", 18 | 'text_seeders' => "做种者", 19 | 'text_leechers' => "下载者", 20 | 'row_seeders' => "做种者", 21 | 'row_leechers' => "下载者", 22 | 'text_yes' => "是", 23 | 'text_no' => "否", 24 | 'text_inf' => "无限" 25 | ); 26 | -------------------------------------------------------------------------------- /lang/chs/lang_viewsnatches.php: -------------------------------------------------------------------------------- 1 | "完成详情", 5 | 'text_snatch_detail_for' => "种子完成详情 - ", 6 | 'text_users_top_finished_recently' => "顶部的用户最后完成下载", 7 | 'col_username' => "用户名", 8 | 'col_uploaded' => "上传", 9 | 'col_downloaded' => "下载", 10 | 'col_ratio' => "分享率", 11 | 'col_when_completed' => "完成", 12 | 'col_last_action' => "最近动向", 13 | 'col_se_time' => "做种时间", 14 | 'col_le_time' => "下载时间", 15 | 'col_seeding' => "做种", 16 | 'col_pm_user' => "短讯", 17 | 'col_report_user' => "举报", 18 | 'col_on_or_off' => "在线", 19 | 'text_global' => "全局", 20 | 'text_torrent' => "本种", 21 | 'text_yes' => "是", 22 | 'text_no'=> "否", 23 | 'title_report' => "举报", 24 | 'col_ip' => "IP", 25 | 'text_per_second' => "/秒", 26 | 'text_anonymous' => "匿名", 27 | 'text_inf' => "无限", 28 | 'std_sorry' => "对不起", 29 | 'text_no_snatched_users' => "还没有用户完成该种子。", 30 | ); 31 | -------------------------------------------------------------------------------- /lang/cht/lang_adredir.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_ad_system_disabled' => "廣告系統關閉中。", 6 | 'std_invalid_ad_id' => "無效的廣告ID", 7 | 'std_no_redirect_url' => "無跳轉鏈結。" 8 | ); 9 | -------------------------------------------------------------------------------- /lang/cht/lang_attachment.php: -------------------------------------------------------------------------------- 1 | "失敗!沒有收到檔案!", 5 | 'text_file_number_limit_reached' => "失敗!你暫時無法上傳更多屬裝置!請等待些時間。", 6 | 'text_file_size_too_big' => "失敗!檔案過大。", 7 | 'text_file_extension_not_allowed' => "失敗!不允許該檔案副檔名。", 8 | 'text_invalid_image_file' => "失敗!圖片檔案無效。", 9 | 'text_cannot_move_file' => "失敗!無法移動上傳的檔案。", 10 | 'submit_upload' => "上傳", 11 | 'text_left' => "今日剩餘:", 12 | 'text_of' => "/", 13 | 'text_size_limit' => "大小限制:", 14 | 'text_file_extensions' => "允許副檔名:", 15 | 'text_mouse_over_here' => "滑鼠移至此", 16 | 'text_small_thumbnail' => "小縮略圖", 17 | ); 18 | -------------------------------------------------------------------------------- /lang/cht/lang_cheaterbox.php: -------------------------------------------------------------------------------- 1 | "噢哦!", 5 | 'std_no_suspect_detected' => "還沒有檢測到任何作弊嫌疑者。", 6 | 'head_cheaterbox' => "作弊者", 7 | 'text_cheaterbox' => "作弊者 BETA", 8 | 'col_added' => "時間", 9 | 'col_suspect' => "嫌疑者", 10 | 'col_hit' => "次數", 11 | 'col_torrent' => "種子", 12 | 'col_ul' => "上傳", 13 | 'col_dl' => "下載", 14 | 'col_ann_time' => "匯報時間", 15 | 'col_seeders' => "做種者", 16 | 'col_leechers' => "下載者", 17 | 'col_comment' => "備注", 18 | 'col_dealt_with' => "處理", 19 | 'col_action' => "行為", 20 | 'text_torrent_does_not_exist' => "種子不存在或已被刪除", 21 | 'text_yes' => "是", 22 | 'text_no' => "否", 23 | 'submit_set_dealt' => "設為已處理", 24 | 'submit_delete' => "刪除" 25 | ); 26 | -------------------------------------------------------------------------------- /lang/cht/lang_checkuser.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_no_user_id' => "沒有該ID的用戶!", 6 | 'std_no_permission' => "你沒有該權限", 7 | 'head_detail_for' => "用戶詳情 - ", 8 | 'text_account_disabled' => "

該帳號被禁用!

\n", 9 | 'row_join_date' => "加入日期", 10 | 'row_gender' => "性別", 11 | 'row_email' => "郵箱", 12 | 'row_ip' => "IP", 13 | 'submit_confirm_this_user' => "確認該用戶" 14 | ); 15 | -------------------------------------------------------------------------------- /lang/cht/lang_contactstaff.php: -------------------------------------------------------------------------------- 1 | "聯繫管理組", 5 | 'text_message_to_staff' => "給管理組發短訊", 6 | 'row_subject' => "標題", 7 | 'row_body' => "正文", 8 | 'submit_send_it' => "發送" 9 | ); 10 | -------------------------------------------------------------------------------- /lang/cht/lang_delete.php: -------------------------------------------------------------------------------- 1 | "刪除失敗!", 5 | 'std_missing_form_date' => "有項目未填", 6 | 'std_not_owner' => "你不是發種者!你怎麼會來這?\n", 7 | 'std_invalid_reason' => "無效的理由", 8 | 'std_describe_violated_rule' => "請填寫具體違反的規則。", 9 | 'std_enter_reason' => "請填寫刪除該種子的原因。", 10 | 'head_torrent_deleted' => "成功刪除種子!", 11 | 'text_go_back' => "回到剛才的地方", 12 | 'text_back_to_index' => "返回首頁", 13 | 'text_torrent_deleted' => "成功刪除種子!" 14 | ); 15 | -------------------------------------------------------------------------------- /lang/cht/lang_deletedisabled.php: -------------------------------------------------------------------------------- 1 | "移除被禁用戶", 5 | 'text_delete_diasabled' => "移除被禁用戶", 6 | 'submit_delete_all_disabled_users' => "移除所有被禁用戶", 7 | 'text_delete_disabled_note' => "如果你點擊下面的按鈕,網站中所有的被禁止用戶將被移除。除非十分確定,否則不要點此按鈕。", 8 | 'text_users_are_disabled' => "個用戶被移除。" 9 | ); 10 | -------------------------------------------------------------------------------- /lang/cht/lang_deletemessage.php: -------------------------------------------------------------------------------- 1 | "錯誤短訊ID", 5 | 'std_not_suggested' => "如果我是你,我不會這麼做...", 6 | 'std_not_in_inbox' => "你的收件箱中沒有該短訊。", 7 | 'std_not_in_sentbox' => "你的發件箱中沒有該短訊。", 8 | 'std_unknown_pm_type' => "未知短訊類型。" 9 | ); 10 | -------------------------------------------------------------------------------- /lang/cht/lang_faq.php: -------------------------------------------------------------------------------- 1 | "常見問題", 5 | 'text_welcome_to' => "歡迎來到", 6 | 'text_welcome_content_one' => "我們的目標是提供純粹高品質的東西。因此,只有授權的用戶才能發布種子。如果你有0-day資源的來源,請不要遲疑聯繫我們!

這是非公開BT站點,你必須註冊後才能訪問。", 7 | 'text_welcome_content_two' => "在".$SITENAME."幹任何事前,我們建議你先閱讀站點的規則!規則只有簡單幾條,但我們要求用戶嚴格遵照。

在使用前,請閱讀".$SITENAME."用戶協定。", 8 | 'text_contents' => "目錄", 9 | ); 10 | -------------------------------------------------------------------------------- /lang/cht/lang_fastdelete.php: -------------------------------------------------------------------------------- 1 | "刪除失敗!", 5 | 'std_missing_form_data' => "有項目沒填", 6 | 'text_no_permission' => "你沒有許可權刪除該種子,只有版主及以上用戶才可以。如果你想刪除自己發佈的種子,請聯繫他們。\n", 7 | 'std_delete_torrent' => "刪除種子", 8 | 'std_delete_torrent_note' => "確認:你即將刪除種子,點擊", 9 | 'std_here_if_sure' => "這裏來確認。" 10 | ); 11 | -------------------------------------------------------------------------------- /lang/cht/lang_getusertorrentlistajax.php: -------------------------------------------------------------------------------- 1 | "類別", 5 | 'col_name' => "標題", 6 | 'title_size' => "大小", 7 | 'title_seeders' => "種子數", 8 | 'title_leechers' => "下載數", 9 | 'col_uploaded' => "上傳", 10 | 'col_downloaded' => "下載", 11 | 'col_ratio' => "分享率", 12 | 'col_anonymous' => "匿名", 13 | 'col_time_completed' => "完成時間", 14 | 'col_se_time' => "做種時間", 15 | 'col_le_time' => "下載時間", 16 | 'text_record' => "條記錄", 17 | 'text_no_record' => "沒有記錄", 18 | ); 19 | -------------------------------------------------------------------------------- /lang/cht/lang_iphistory.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_invalid_id' => "無效的ID", 6 | 'text_user_not_found' => "沒有該用戶", 7 | 'head_ip_history_log_for' => "用戶IP曆史 - ", 8 | 'text_historical_ip_by' => "用戶IP位址曆史 - ", 9 | 'col_last_access' => "最近存取", 10 | 'col_ip' => "IP", 11 | 'col_hostname' => "主機名", 12 | 'text_not_available' => "無", 13 | 'text_duplicate' => "重複", 14 | ); 15 | -------------------------------------------------------------------------------- /lang/cht/lang_ipsearch.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_invalid_ip' => "無效的IP位址。", 6 | 'std_invalid_subnet_mask' => "無效的網路遮罩。", 7 | 'head_search_ip_history' => "搜索IP曆史", 8 | 'text_search_ip_history' => "搜索IP曆史", 9 | 'row_ip' => "IP", 10 | 'row_subnet_mask' => "網路遮罩", 11 | 'submit_search' => "給我搜", 12 | 'text_no_users_found' => "沒有找到用戶", 13 | 'text_users_used_the_ip' => "個用戶使用過此IP:", 14 | 'col_username' => "用戶名", 15 | 'col_last_ip' => "最近IP", 16 | 'col_last_access' => "最近存取", 17 | 'col_ip_num' => "IP數", 18 | 'col_last_access_on' => "此IP最近存取", 19 | 'col_added' => "加入時間", 20 | 'col_invited_by' => "邀請者", 21 | 'text_not_available' => "無", 22 | ); 23 | -------------------------------------------------------------------------------- /lang/cht/lang_mailtest.php: -------------------------------------------------------------------------------- 1 | "郵件測試", 5 | 'text_mail_test' => "郵件測試", 6 | 'row_enter_email' => "匯入郵箱位址", 7 | 'text_enter_email_note' => "匯入用于接收測試郵件的郵箱位址,如yourname@gmail.com", 8 | 'submit_send_it' => "傳送!", 9 | 'text_smtp_testing_mail' => "測試郵件", 10 | 'std_error' => "錯誤", 11 | 'std_invalid_email_address' => "郵箱位址無效!", 12 | 'mail_test_mail_content' => "你好,如果你看見這個資訊,你的SMTP郵件傳送功能正常。祝愉快!", 13 | 'std_success' => "成功", 14 | 'std_success_note' => "沒有錯誤發生,但這不意為着郵件肯定已成功傳送。請檢查郵箱。" 15 | ); 16 | -------------------------------------------------------------------------------- /lang/cht/lang_makepoll.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_no_poll_id' => "不存在此投票ID", 6 | 'std_missing_form_data' => "請填寫比填項目!", 7 | 'head_edit_poll' => "編輯投票", 8 | 'text_edit_poll' => "編輯投票", 9 | 'head_new_poll' => "新的投票", 10 | 'text_day' => "天", 11 | 'text_hour' => "時", 12 | 'text_current_poll' => "注意:當前投票", 13 | 'text_is_only' => "發布僅", 14 | 'text_old' => "。", 15 | 'text_make_poll' => "新的投票", 16 | 'text_question' => "問題", 17 | 'text_option' => "選項", 18 | 'submit_edit_poll' => "編輯投票", 19 | 'submit_create_poll' => "創建投票", 20 | 'text_required' => " 必須填寫" 21 | ); 22 | -------------------------------------------------------------------------------- /lang/cht/lang_moforums.php: -------------------------------------------------------------------------------- 1 | "論壇分區管理", 5 | 'text_forum_management' => "論壇管理", 6 | 'text_overforum_management' => "論壇分區管理", 7 | 'col_name' => "名字", 8 | 'col_viewed_by' => "最低允許查看等級", 9 | 'col_modify' => "修改", 10 | 'text_edit' => "編輯", 11 | 'text_delete' => "刪除", 12 | 'js_sure_to_delete_overforum' => "你確定要刪除此論壇分區嗎?", 13 | 'text_no_records_found' => "對不起,沒有記錄!", 14 | 'text_new_overforum' => "新論壇分區", 15 | 'text_overforum_name' => "名字", 16 | 'text_overforum_description' => "描述", 17 | 'text_minimum_view_permission' => "最低允許閱讀等級", 18 | 'text_overforum_order' => "論壇分區排序", 19 | 'text_overforum_order_note' => "按數字升序排列,即0顯示在最頂端。", 20 | 'submit_make_overforum' => "創建新的分區", 21 | 'text_edit_overforum' => "編輯分區", 22 | 'submit_edit_overforum' => "編輯分區" 23 | ); 24 | -------------------------------------------------------------------------------- /lang/cht/lang_moresmilies.php: -------------------------------------------------------------------------------- 1 | "更多可點表情", 5 | 'text_close' => "關閉", 6 | ); 7 | -------------------------------------------------------------------------------- /lang/cht/lang_news.php: -------------------------------------------------------------------------------- 1 | "刪除最近消息", 5 | 'std_are_you_sure' => "你真的要刪除一條最近消息嗎?如果確定,請點擊", 6 | 'std_here' => "這里", 7 | 'std_if_sure' => "。", 8 | 'std_error' => "錯誤", 9 | 'std_news_body_empty' => "最近消息的正文不能為空!", 10 | 'std_news_title_empty' => "最近消息的標題不能為空!", 11 | 'std_something_weird_happened' => "奇怪的事情發生了。", 12 | 'std_invalid_news_id' => "最近消息的ID不存在:", 13 | 'head_edit_site_news' => "編輯最近消息", 14 | 'text_edit_site_news' => "編輯最近消息", 15 | 'text_notify_users_of_this' => "提醒用戶查看這條消息。", 16 | 'head_site_news' => "最近消息", 17 | 'text_submit_news_item' => "提交新的消息" 18 | ); 19 | -------------------------------------------------------------------------------- /lang/cht/lang_polloverview.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'head_poll_overview' => "投票概況", 6 | 'text_polls_overview' => "投票概況", 7 | 'col_id' => "ID", 8 | 'col_added' => "添加時間", 9 | 'col_question' => "問題", 10 | 'text_no_users_voted' => "對不起...還沒有用戶投過票!", 11 | 'text_no_poll_id' => "對不起...沒有該ID的投票!", 12 | 'text_poll_question' => "投票問題", 13 | 'col_option_no' => "編號", 14 | 'col_options' => "選項", 15 | 'text_polls_user_overview' => "投票用戶情況", 16 | 'col_username' => "用戶名", 17 | 'col_selection' => "選項", 18 | ); 19 | -------------------------------------------------------------------------------- /lang/cht/lang_polls.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_permission_denied' => "你沒有該許可權", 6 | 'std_delete_poll' => "刪除投票", 7 | 'std_delete_poll_confirmation' => "你確定要刪除該投票嗎?點擊\n", 8 | 'std_here_if_sure' => "這裏來確認。", 9 | 'std_sorry' => "對不起...", 10 | 'std_no_polls' => "暫時沒有投票!", 11 | 'head_previous_polls' => "以前的投票", 12 | 'text_previous_polls' => "以前的投票", 13 | 'text_ago' => "以前", 14 | 'text_edit' => "編輯", 15 | 'text_delete' => "刪除", 16 | 'text_votes' => "投票數:" 17 | ); 18 | -------------------------------------------------------------------------------- /lang/cht/lang_preview.php: -------------------------------------------------------------------------------- 1 | "預覽" 5 | ); 6 | -------------------------------------------------------------------------------- /lang/cht/lang_rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhilip/NexusPHP/c6fde3abee14b8e385dc66c85d2fba804e6bfebc/lang/cht/lang_rules.php -------------------------------------------------------------------------------- /lang/cht/lang_sendmessage.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_permission_denied' => "沒有該許可權", 6 | 'head_send_message' => "發送短訊", 7 | 'text_mass_message' => "群發短訊給", 8 | 'text_users' => "個用戶", 9 | 'text_subject' => "主題:", 10 | 'text_comment' => "評論:", 11 | 'text_from' => "發送者:", 12 | 'text_take_snapshot' => "使用快照:", 13 | 'submit_send_it' => "發送", 14 | 'submit_preview' => "預覽", 15 | 'text_templates' => "模版:", 16 | 'submit_use' => "使用", 17 | 'std_no_user_id' => "沒有該ID的用戶。", 18 | 'text_message_to' => "發送短訊給", 19 | 'checkbox_delete_message_replying_to' => "回復後刪除", 20 | 'checkbox_save_message_to_sendbox' => "保存到發件箱" 21 | ); 22 | -------------------------------------------------------------------------------- /lang/cht/lang_shoutbox.php: -------------------------------------------------------------------------------- 1 | "刪", 5 | 'std_access_denied' => "拒絕訪問", 6 | 'std_access_denied_note' => "游客不允許查看該頁面。", 7 | 'text_to_guest' => "對游客說", 8 | 'text_guest' => "游客", 9 | 'text_ago' => "前", 10 | 'text_helpbox_disabled' => "求助區當前關閉中。你在搞什麼鬼?", 11 | 'text_no_permission_to_shoutbox' => "你沒有在群聊區發言的權力。你在搞什麼鬼?", 12 | ); 13 | -------------------------------------------------------------------------------- /lang/cht/lang_staffbox.php: -------------------------------------------------------------------------------- 1 | "管理組信箱", 5 | 'text_staff_pm' => "管理組信箱", 6 | 'std_sorry' => "對不起", 7 | 'std_no_messages_yet' => "暫時沒有短訊!", 8 | 'col_subject' => "主題", 9 | 'col_sender' => "發訊者", 10 | 'col_added' => "時間", 11 | 'col_answered' => "回復", 12 | 'col_action' => "行為", 13 | 'text_yes' => "是", 14 | 'text_no' => "否", 15 | 'submit_set_answered' => "設為已回復", 16 | 'submit_delete' => "刪除", 17 | 'text_system' => "系統", 18 | 'head_view_staff_pm' => "查看管理組信箱", 19 | 'col_from' => "自", 20 | 'col_date' => "日期", 21 | 'col_answered_by' => "回復者", 22 | 'text_reply' => "回復", 23 | 'text_mark_answered' => "設為已回復", 24 | 'text_delete' => "刪除", 25 | 'std_error' => "錯誤", 26 | 'std_no_user_id' => "沒有此ID的用戶。", 27 | 'head_answer_to_staff_pm' => "回復管理組信息", 28 | 'text_answering_to' => "回復", 29 | 'text_sent_by' => " - 來自", 30 | 'std_body_is_empty' => "回復不能為空白!", 31 | ); 32 | -------------------------------------------------------------------------------- /lang/cht/lang_takeconfirm.php: -------------------------------------------------------------------------------- 1 | "對不起...", 5 | 'std_no_buddy_to_confirm' => "沒有需要驗證的用戶。:(

請點擊", 6 | 'std_here_to_go_back' => "這裏返回。", 7 | 'mail_title' => "網站帳戶驗證", 8 | 'mail_here' => "這裏", 9 | 'mail_content_1' => "你好,

你的賬號成功通過驗證。你可以進入登錄頁面: ", 10 | 'mail_content_2' => "

使用你的賬戶登錄。登錄後請先閱讀站點規則,提問前請自行參考常見問題。

祝你好運! ".$SITENAME."!

如果你不認識邀請你的人,請將本郵件轉發至".$REPORTMAIL."
------
".$SITENAME." 網站" 11 | ); 12 | -------------------------------------------------------------------------------- /lang/cht/lang_takecontact.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_method' => "方式", 6 | 'std_please_enter_something' => "請填寫內容!", 7 | 'std_please_define_subject' => "你必須輸入標題!", 8 | 'std_message_flooding' => "不允許濫發短訊,請在", 9 | 'std_second' => "秒", 10 | 'std_s' => "", 11 | 'std_before_sending_pm' => "後重試。", 12 | 'std_succeeded' => "成功", 13 | 'std_message_succesfully_sent' => "短訊成功發送!" 14 | ); 15 | -------------------------------------------------------------------------------- /lang/cht/lang_takeedit.php: -------------------------------------------------------------------------------- 1 | "編輯失敗!", 5 | 'std_missing_form_data' => "有項目沒有填寫", 6 | 'std_not_owner' => "你不是發種者!怎麼回事?\n", 7 | 'std_nfo_too_big' => "NFO過大!最大為65,535位元組。", 8 | 'std_cannot_move_torrent' => "你沒有將種子移至另一區的許可權。另外,你怎麼會到這?" 9 | ); 10 | -------------------------------------------------------------------------------- /lang/cht/lang_takeflush.php: -------------------------------------------------------------------------------- 1 | "失敗", 5 | 'std_success' => "成功", 6 | 'std_ghost_torrents_cleaned' => "個冗余種子被成功清除。", 7 | 'std_cannot_flush_others' => "你只能清除自己的冗余種子" 8 | ); 9 | -------------------------------------------------------------------------------- /lang/cht/lang_takelogin.php: -------------------------------------------------------------------------------- 1 | "錯誤: 用戶名或密碼不正確!

忘記密碼了?找回你的密碼!", 5 | 'std_login_fail' => "登錄失敗!", 6 | 'std_account_disabled' => "該帳號已被禁用。", 7 | 'std_user_account_unconfirmed' => "該賬戶還未通過驗證。如果你沒有收到驗證郵件,試試重新發送驗證郵件。", 8 | ); 9 | -------------------------------------------------------------------------------- /lang/cht/lang_takemessage.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_permission_denied' => "你沒有該許可權!", 6 | 'std_please_enter_something' => "不能為空!", 7 | 'std_message_flooding_denied' => "禁止濫發短訊。請在", 8 | 'std_before_sending_pm' => "秒後再發送。", 9 | 'std_invalid_id' => "該帳號已失效", 10 | 'std_user_not_exist' => "不存在該帳號", 11 | 'std_refused' => "拒絕", 12 | 'std_account_parked' => "該帳號已被封存。", 13 | 'std_user_blocks_your_pms' => "該用戶拒絕接受你的短訊。", 14 | 'std_user_accepts_friends_pms' => "該用戶只接受其好友的短訊。", 15 | 'std_user_blocks_all_pms' => "該用戶拒絕接受一切短訊。", 16 | 'std_succeeded' => "成功", 17 | 'std_messages_out_of' => "條短訊(共", 18 | 'std_were' => "條)已", 19 | 'std_message_was' => "短訊已", 20 | 'std_successfully_sent' => "成功發送!", 21 | 'std_s_were' => "已", 22 | 'std_was' => "已", 23 | 'std_updated' => "更新", 24 | 'std_no_permission_forwarding' => "你沒有轉發該短訊的許可權。", 25 | 'std_must_enter_username' => "你必須填寫要轉發的用戶的用戶名。", 26 | ); 27 | -------------------------------------------------------------------------------- /lang/cht/lang_takereseed.php: -------------------------------------------------------------------------------- 1 | "續種請求!", 5 | 'std_it_worked' => "成功了!完成下載的用戶將收到請求續種的短訊。", 6 | 'std_error' => "錯誤", 7 | 'std_torrent_not_dead' => "該種子沒有斷種。", 8 | 'std_reseed_sent_recently' => "該種子在過去15分鐘內已收到一次續種請求。請耐心等待好心人續種。", 9 | ); 10 | -------------------------------------------------------------------------------- /lang/cht/lang_uploaders.php: -------------------------------------------------------------------------------- 1 | "沒有找到發布員!", 5 | 'head_uploaders' => "發布員", 6 | 'text_uploaders' => "發布員", 7 | 'col_username' => "用戶名", 8 | 'col_torrents_size' => "種子大小", 9 | 'col_torrents_num' => "種子數", 10 | 'col_last_upload_time' => "最近發布時間", 11 | 'col_last_upload' => "最近發布種子", 12 | 'text_not_available' => "無", 13 | 'submit_go' => "尋找", 14 | 'text_select_month' => "選取月份:", 15 | 'text_order_by' => "排序", 16 | 'text_username' => "用戶名", 17 | 'text_torrent_size' => "種子大小", 18 | 'text_torrent_num' => "種子數", 19 | ); 20 | -------------------------------------------------------------------------------- /lang/cht/lang_userhistory.php: -------------------------------------------------------------------------------- 1 | "錯誤", 5 | 'std_permission_denied' => "你沒有該權限", 6 | 'std_no_posts_found' => "沒有找到該帖子", 7 | 'head_posts_history' => "帖子歷史", 8 | 'text_posts_history_for' => "用戶帖子歷史-", 9 | 'text_forum' => "論壇: ", 10 | 'text_topic' => "主題: ", 11 | 'text_post' => "帖子: ", 12 | 'text_new' => "新!", 13 | 'text_last_edited' => "最後被", 14 | 'text_at' => "編輯于", 15 | 'std_no_comments_found' => "沒有找到評論", 16 | 'head_comments_history' => "評論歷史", 17 | 'text_comments_history_for' => "用戶評論歷史-", 18 | 'text_torrent' => "種子: ", 19 | 'text_comment' => "評論: ", 20 | 'std_history_error' => "錯誤", 21 | 'std_unkown_action' => "未知行為", 22 | 'std_invalid_or_no_query' => "無效或沒有該項。" 23 | ); 24 | -------------------------------------------------------------------------------- /lang/cht/lang_users.php: -------------------------------------------------------------------------------- 1 | "用戶", 5 | 'text_users' => "

用戶

\n", 6 | 'text_search' => "搜索:", 7 | 'select_any_class' => "(任何等級)", 8 | 'submit_okay' => "給我搜", 9 | 'text_prev' => "上一頁", 10 | 'text_next' => "下一頁", 11 | 'col_user_name' => "用戶名", 12 | 'col_registered' => "註冊", 13 | 'col_last_access' => "最後訪問", 14 | 'col_class' => "等級", 15 | 'col_country' => "國家/地區", 16 | 'select_any_country'=> "(任何國家/地區)", 17 | ); 18 | -------------------------------------------------------------------------------- /lang/cht/lang_viewfilelist.php: -------------------------------------------------------------------------------- 1 | "路徑", 5 | ); 6 | -------------------------------------------------------------------------------- /lang/cht/lang_viewnfo.php: -------------------------------------------------------------------------------- 1 | "奧哦", 5 | 'head_view_nfo' => "查看NFO文件", 6 | 'text_nfo_for' => "NFO文件:", 7 | 'title_dos_vy' => "查看DOS樣式", 8 | 'text_dos_vy' => "DOS樣式", 9 | 'title_windows_vy' => "查看Windows樣式", 10 | 'text_windows_vy' => "Windows樣式" 11 | ); 12 | -------------------------------------------------------------------------------- /lang/cht/lang_viewpeerlist.php: -------------------------------------------------------------------------------- 1 | "用戶", 5 | 'col_location' => "地點", 6 | 'col_connectable' => "可連接", 7 | 'col_uploaded' => "上傳", 8 | 'col_rate' => "即時速度", 9 | 'col_av_rate' => "平均速度", 10 | 'col_downloaded' => "下載", 11 | 'col_ratio' => "分享率", 12 | 'col_complete' => "完成", 13 | 'col_connected' => "連接時間", 14 | 'col_idle' => "最近匯報", 15 | 'col_client' => "用戶端", 16 | 'text_anonymous' => "匿名", 17 | 'text_unknown' => "(未知)", 18 | 'text_seeders' => "做種者", 19 | 'text_leechers' => "下載者", 20 | 'row_seeders' => "做種者", 21 | 'row_leechers' => "下載者", 22 | 'text_yes' => "是", 23 | 'text_no' => "否", 24 | 'text_inf' => "無限" 25 | ); 26 | -------------------------------------------------------------------------------- /lang/cht/lang_viewsnatches.php: -------------------------------------------------------------------------------- 1 | "完成詳情", 5 | 'text_snatch_detail_for' => "種子完成詳情 - ", 6 | 'text_users_top_finished_recently' => "頂部的用戶最後完成下載", 7 | 'col_username' => "用戶名", 8 | 'col_uploaded' => "上傳", 9 | 'col_downloaded' => "下載", 10 | 'col_ratio' => "分享率", 11 | 'col_when_completed' => "完成", 12 | 'col_last_action' => "最近動向", 13 | 'col_se_time' => "做種時間", 14 | 'col_le_time' => "下載時間", 15 | 'col_seeding' => "做種", 16 | 'col_pm_user' => "短訊", 17 | 'col_report_user' => "舉報", 18 | 'col_on_or_off' => "線上", 19 | 'text_global' => "全局", 20 | 'text_torrent' => "本種", 21 | 'text_yes' => "是", 22 | 'text_no'=> "否", 23 | 'title_report' => "舉報", 24 | 'col_ip' => "IP", 25 | 'text_per_second' => "/秒", 26 | 'text_anonymous' => "匿名", 27 | 'text_inf' => "無限", 28 | 'std_sorry' => "對不起", 29 | 'text_no_snatched_users' => "還沒有用戶完成該種子。", 30 | ); 31 | -------------------------------------------------------------------------------- /lang/en/lang_adredir.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'std_ad_system_disabled' => "Ad system disabled.", 6 | 'std_invalid_ad_id' => "Invalid ad id", 7 | 'std_no_redirect_url' => "No redirect URL." 8 | ); 9 | -------------------------------------------------------------------------------- /lang/en/lang_attachment.php: -------------------------------------------------------------------------------- 1 | "Failure! Nothing received!", 5 | 'text_file_number_limit_reached' => "Failure! You cannot upload more files for the moment. Please wait some time.", 6 | 'text_file_size_too_big' => "Failure! The file size is too big.", 7 | 'text_file_extension_not_allowed' => "Failure! The file extension is not allowed.", 8 | 'text_invalid_image_file' => "Failure! Invalid image file.", 9 | 'text_cannot_move_file' => "Failure! Cannot move uploaded file.", 10 | 'submit_upload' => "Upload", 11 | 'text_left' => "Today Left: ", 12 | 'text_of' => " of ", 13 | 'text_size_limit' => "Size: ", 14 | 'text_file_extensions' => "File Extensions: ", 15 | 'text_mouse_over_here' => "mouse here", 16 | 'text_small_thumbnail' => "small thumbnail", 17 | ); 18 | -------------------------------------------------------------------------------- /lang/en/lang_cheaterbox.php: -------------------------------------------------------------------------------- 1 | "Oho!", 5 | 'std_no_suspect_detected' => "No suspect detected yet.", 6 | 'head_cheaterbox' => "Cheaterbox", 7 | 'text_cheaterbox' => "Cheaterbox BETA", 8 | 'col_added' => "Added", 9 | 'col_suspect' => "Suspect", 10 | 'col_hit' => "Hit", 11 | 'col_torrent' => "Torrent", 12 | 'col_ul' => "UL", 13 | 'col_dl' => "DL", 14 | 'col_ann_time' => "Ann. Time", 15 | 'col_seeders' => "Seeders", 16 | 'col_leechers' => "Leechers", 17 | 'col_comment' => "Comment", 18 | 'col_dealt_with' => "Dealt With", 19 | 'col_action' => "Act.", 20 | 'text_torrent_does_not_exist' => "Torrent doesn't exist or is deleted", 21 | 'text_yes' => "Yes", 22 | 'text_no' => "No", 23 | 'submit_set_dealt' => "Set Dealt", 24 | 'submit_delete' => "Delete" 25 | ); 26 | -------------------------------------------------------------------------------- /lang/en/lang_checkuser.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'std_no_user_id' => "No user with this ID!", 6 | 'std_no_permission' => "You have no permission", 7 | 'head_detail_for' => "Details for ", 8 | 'text_account_disabled' => "

This account has been disabled!

", 9 | 'row_join_date' => "Join date", 10 | 'row_gender' => "Gender", 11 | 'row_email' => "E-Mail", 12 | 'row_ip' => "IP", 13 | 'submit_confirm_this_user' => "Confirm this user" 14 | ); 15 | -------------------------------------------------------------------------------- /lang/en/lang_contactstaff.php: -------------------------------------------------------------------------------- 1 | "Contact Staff", 5 | 'text_message_to_staff' => "Send message to Staff", 6 | 'row_subject' => "Subject", 7 | 'row_body' => "Body", 8 | 'submit_send_it' => "Send It!" 9 | ); 10 | -------------------------------------------------------------------------------- /lang/en/lang_delete.php: -------------------------------------------------------------------------------- 1 | "Delete failed!", 5 | 'std_missing_form_date' => "missing form data", 6 | 'std_not_owner' => "You're not the owner! How did that happen?", 7 | 'std_invalid_reason' => "Invalid reason ", 8 | 'std_describe_violated_rule' => "Please describe the violated rule.", 9 | 'std_enter_reason' => "Please enter the reason for deleting this torrent.", 10 | 'head_torrent_deleted' => "Torrent deleted!", 11 | 'text_go_back' => "Go back to whence you came", 12 | 'text_back_to_index' => "Back to index", 13 | 'text_torrent_deleted' => "Torrent deleted!" 14 | ); 15 | -------------------------------------------------------------------------------- /lang/en/lang_deletedisabled.php: -------------------------------------------------------------------------------- 1 | "Delete Disabled", 5 | 'text_delete_diasabled' => "Delete Disabled", 6 | 'submit_delete_all_disabled_users' => "Delete all disabled users", 7 | 'text_delete_disabled_note' => "If you click the following button, all disabled users at your site will be DELETED. NEVER click the button unless you are VERY SURE.", 8 | 'text_users_are_disabled' => " users are deleted." 9 | ); 10 | -------------------------------------------------------------------------------- /lang/en/lang_deletemessage.php: -------------------------------------------------------------------------------- 1 | "Bad message ID", 5 | 'std_not_suggested' => "I wouldn't do that if i were you...", 6 | 'std_not_in_inbox' => "The message is not in your Inbox.", 7 | 'std_not_in_sentbox' => "The message is not in your Sentbox.", 8 | 'std_unknown_pm_type' => "Unknown PM type." 9 | ); 10 | -------------------------------------------------------------------------------- /lang/en/lang_faq.php: -------------------------------------------------------------------------------- 1 | "FAQ", 5 | 'text_welcome_to' => "Welcome to ", 6 | 'text_welcome_content_one' => "The goal is to provide the absolutely high quality stuff. Therefore, only specially authorised users have permission to upload torrents. If you have access to 0-day stuff do not hesitate to contact us!

This is a private tracker, and you have to register before you can get full access to the site.", 7 | 'text_welcome_content_two' =>" Before you do anything here at ".$SITENAME.", we suggest you read the rules! There are only a few rules to abide by, but we do enforce them!

Before you go any further you should read the ".$SITENAME." user agreement.", 8 | 'text_contents' => "Contents", 9 | ); 10 | -------------------------------------------------------------------------------- /lang/en/lang_fastdelete.php: -------------------------------------------------------------------------------- 1 | "Delete failed!", 5 | 'std_missing_form_data' => "missing form data", 6 | 'text_no_permission' => "You're not authorised to delete this torrent, only moderators or above can do that. Please contact one if this is your torrent and you want to delete it.\n", 7 | 'std_delete_torrent' => "Delete torrent", 8 | 'std_delete_torrent_note' => "Sanity check: You are about to delete a torrent. Click", 9 | 'std_here_if_sure' => " here if you are sure." 10 | ); 11 | -------------------------------------------------------------------------------- /lang/en/lang_getusertorrentlistajax.php: -------------------------------------------------------------------------------- 1 | "Type", 5 | 'col_name' => "Name", 6 | 'title_size' => "Size", 7 | 'title_seeders' => "Seeders", 8 | 'title_leechers' => "Leechers", 9 | 'col_uploaded' => "Ul.", 10 | 'col_downloaded' => "Dl.", 11 | 'col_ratio' => "Ratio", 12 | 'col_anonymous' => "Anonym.", 13 | 'col_time_completed' => "Sna. at", 14 | 'col_se_time' => "Se. Time", 15 | 'col_le_time' => "Le. Time", 16 | 'text_record' => " record", 17 | 'text_no_record' => "No record.", 18 | ); 19 | -------------------------------------------------------------------------------- /lang/en/lang_iphistory.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'std_invalid_id' => "Invalid ID", 6 | 'text_user_not_found' => "User not found", 7 | 'head_ip_history_log_for' => "IP History Log for ", 8 | 'text_historical_ip_by' => "Historical IP addresses used by ", 9 | 'col_last_access' => "Last access", 10 | 'col_ip' => "IP", 11 | 'col_hostname' => "Hostname", 12 | 'text_not_available' => "N/A", 13 | 'text_duplicate' => "Dupe", 14 | ); 15 | -------------------------------------------------------------------------------- /lang/en/lang_ipsearch.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'std_invalid_ip' => "Invalid IP.", 6 | 'std_invalid_subnet_mask' => "Invalid subnet mask.", 7 | 'head_search_ip_history' => "Search in IP History", 8 | 'text_search_ip_history' => "Search in IP History", 9 | 'row_ip' => "IP", 10 | 'row_subnet_mask' => "Subnet Mask", 11 | 'submit_search' => "Search", 12 | 'text_no_users_found' => "No users found", 13 | 'text_users_used_the_ip' => " users have used the IP: ", 14 | 'col_username' => "Username", 15 | 'col_last_ip' => "Last IP", 16 | 'col_last_access' => "Last access", 17 | 'col_ip_num' => "IP Nums", 18 | 'col_last_access_on' => "Last access this IP", 19 | 'col_added' => "Added", 20 | 'col_invited_by' => "Invited by", 21 | 'text_not_available' => "N/A", 22 | ); 23 | -------------------------------------------------------------------------------- /lang/en/lang_mailtest.php: -------------------------------------------------------------------------------- 1 | "Mail Test", 5 | 'text_mail_test' => "Mail Test", 6 | 'row_enter_email' => "Enter email", 7 | 'text_enter_email_note' => "Enter an email address to send a test mail, e.g. yourname@gmail.com", 8 | 'submit_send_it' => "Send it!", 9 | 'text_smtp_testing_mail' => " SMTP Testing Mail", 10 | 'std_error' => "Error", 11 | 'std_invalid_email_address' => "Invalid email address!", 12 | 'mail_test_mail_content' => "Hi, If you see this message, your SMTP function works great. Have a nice day.", 13 | 'std_success' => "Success", 14 | 'std_success_note' => "No error found. However this does not mean the mail arrived 100%. Please check the mail." 15 | ); 16 | -------------------------------------------------------------------------------- /lang/en/lang_makepoll.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'std_no_poll_id' => "No poll found with this ID", 6 | 'std_missing_form_data' => "Missing form data!", 7 | 'head_edit_poll' => "Edit Poll", 8 | 'text_edit_poll' => "Edit Poll", 9 | 'head_new_poll' => "New Poll", 10 | 'text_day' => " day", 11 | 'text_hour' => " hour", 12 | 'text_current_poll' => "Note: The current poll ", 13 | 'text_is_only' => " is only ", 14 | 'text_old' => " old.", 15 | 'text_make_poll' => "Make poll", 16 | 'text_question' => "Question", 17 | 'text_option' => "Option ", 18 | 'submit_edit_poll' => "Edit Poll", 19 | 'submit_create_poll' => "Create Poll", 20 | 'text_required' => " required" 21 | ); 22 | -------------------------------------------------------------------------------- /lang/en/lang_moresmilies.php: -------------------------------------------------------------------------------- 1 | "More Clickable Smilies", 5 | 'text_close' => "Close", 6 | ); 7 | -------------------------------------------------------------------------------- /lang/en/lang_news.php: -------------------------------------------------------------------------------- 1 | "Delete news item", 5 | 'std_are_you_sure' => "Do you really want to delete a news item? Click ", 6 | 'std_here' => "here", 7 | 'std_if_sure' => " if you are sure.", 8 | 'std_error' => "Error", 9 | 'std_news_body_empty' => "The news body cannot be empty!", 10 | 'std_news_title_empty' => "The news title cannot be empty!", 11 | 'std_something_weird_happened' => "Something weird just happened.", 12 | 'std_invalid_news_id' => "No news item with ID ", 13 | 'head_edit_site_news' => "Edit Site News", 14 | 'text_edit_site_news' => "Edit Site News", 15 | 'text_notify_users_of_this' => "Notify users of this.", 16 | 'head_site_news' => "Site News", 17 | 'text_submit_news_item' => "Submit news item" 18 | ); 19 | -------------------------------------------------------------------------------- /lang/en/lang_polloverview.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'head_poll_overview' => "Polls Overview", 6 | 'text_polls_overview' => "Polls Overview", 7 | 'col_id' => "ID", 8 | 'col_added' => "Added", 9 | 'col_question' => "Question", 10 | 'text_no_users_voted' => "Sorry...There are no users that voted!", 11 | 'text_no_poll_id' => "Sorry...There are no polls with that ID!", 12 | 'text_poll_question' => "Poll Questions", 13 | 'col_option_no' => "Option No", 14 | 'col_options' => "Options", 15 | 'text_polls_user_overview' => "Polls User Overview", 16 | 'col_username' => "Username", 17 | 'col_selection' => "Selection", 18 | ); 19 | -------------------------------------------------------------------------------- /lang/en/lang_polls.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'std_permission_denied' => "Permission denied.", 6 | 'std_delete_poll' => "Delete poll", 7 | 'std_delete_poll_confirmation' => "Do you really want to delete a poll? Click\n", 8 | 'std_here_if_sure' => "here if you are sure.", 9 | 'std_sorry' => "Sorry...", 10 | 'std_no_polls' => "There are no polls!", 11 | 'head_previous_polls' => "Previous polls", 12 | 'text_previous_polls' => "Previous polls", 13 | 'text_ago' => " ago", 14 | 'text_edit' => "Edit", 15 | 'text_delete' => "Delete", 16 | 'text_votes' => "Votes: " 17 | ); 18 | -------------------------------------------------------------------------------- /lang/en/lang_preview.php: -------------------------------------------------------------------------------- 1 | "Preview" 5 | ); 6 | -------------------------------------------------------------------------------- /lang/en/lang_rules.php: -------------------------------------------------------------------------------- 1 | "Rules" 5 | ); 6 | -------------------------------------------------------------------------------- /lang/en/lang_sendmessage.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'std_permission_denied' => "Permission denied", 6 | 'head_send_message' => "Send message", 7 | 'text_mass_message' => "Mass Message to ", 8 | 'text_users' => "users", 9 | 'text_subject' => "Subject:", 10 | 'text_comment' => "Comment:", 11 | 'text_from' => "From:", 12 | 'text_take_snapshot' => "Take snapshot:", 13 | 'submit_send_it' => "Send it!", 14 | 'submit_preview' => "Preview", 15 | 'text_templates' => "Templates:", 16 | 'submit_use' => "Use", 17 | 'std_no_user_id' => "No user with that ID.", 18 | 'text_message_to' => "Message to ", 19 | 'checkbox_delete_message_replying_to' => "Delete message you are replying to", 20 | 'checkbox_save_message_to_sendbox' => "Save message to Sentbox" 21 | ); 22 | -------------------------------------------------------------------------------- /lang/en/lang_shoutbox.php: -------------------------------------------------------------------------------- 1 | "del", 5 | 'std_access_denied' => "Access Denied.", 6 | 'std_access_denied_note' => "Guests are not allowed to see this page.", 7 | 'text_to_guest' => " to Guest", 8 | 'text_guest' => "Guest", 9 | 'text_ago' => " ago", 10 | 'text_helpbox_disabled' => "Helpbox is currently disabled. How the hell do you get here?", 11 | 'text_no_permission_to_shoutbox' => "You have no permission to send messages to shoutbox. How the hell do you get here?", 12 | ); 13 | -------------------------------------------------------------------------------- /lang/en/lang_takeconfirm.php: -------------------------------------------------------------------------------- 1 | "Sorry...", 5 | 'std_no_buddy_to_confirm' => "No buddy to confirm. :(

Please click ", 6 | 'std_here_to_go_back' => "here to go back.", 7 | 'mail_title' => " Account Confirmed", 8 | 'mail_here' => "HERE", 9 | 'mail_content_1' => "Hello,

Your account has been confirmed. You can now visit ", 10 | 'mail_content_2' => "

and use your login information to login in. We hope you'll read the FAQ's and Rules before you start sharing files.

Good luck and have fun on ".$SITENAME."!

If you do not know the person who has invited you, please report this email to ".$REPORTMAIL."
------
Yours,The ".$SITENAME." Team." 11 | ); 12 | -------------------------------------------------------------------------------- /lang/en/lang_takecontact.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'std_method' => "Method", 6 | 'std_please_enter_something' => "Please enter something!", 7 | 'std_please_define_subject' => "You need to define subject!", 8 | 'std_message_flooding' => "Message Flooding Not Allowed. Please wait ", 9 | 'std_second' => " second", 10 | 'std_s' => "s", 11 | 'std_before_sending_pm' => " before sending PM to STAFF.", 12 | 'std_succeeded' => "Succeeded", 13 | 'std_message_succesfully_sent' => "Message was succesfully sent!" 14 | ); 15 | -------------------------------------------------------------------------------- /lang/en/lang_takeedit.php: -------------------------------------------------------------------------------- 1 | "Edit failed!", 5 | 'std_missing_form_data' => "missing form data", 6 | 'std_not_owner' => "You're not the owner! How did that happen?", 7 | 'std_nfo_too_big' => "NFO is too big! Max 65,535 bytes.", 8 | 'std_cannot_move_torrent' => "You have no permission to move torrents to another section. BTW, how do you get here?" 9 | ); 10 | -------------------------------------------------------------------------------- /lang/en/lang_takeflush.php: -------------------------------------------------------------------------------- 1 | "Failed", 5 | 'std_success' => "Success", 6 | 'std_ghost_torrents_cleaned' => "ghost torrents were sucessfully cleaned.", 7 | 'std_cannot_flush_others' => "You can only clean your own ghost torrents" 8 | ); 9 | -------------------------------------------------------------------------------- /lang/en/lang_takelogin.php: -------------------------------------------------------------------------------- 1 | "Error: Username or password incorrect!

Don't remember your password? Recover your password!", 5 | 'std_login_fail' => "Login failed!", 6 | 'std_account_disabled' => "This account has been disabled.", 7 | 'std_user_account_unconfirmed' => "The account has not been verified yet. If you didn't receive the confirmation email, try to reseed it.", 8 | ); 9 | -------------------------------------------------------------------------------- /lang/en/lang_takereseed.php: -------------------------------------------------------------------------------- 1 | "Reseed Request!", 5 | 'std_it_worked' => "It worked! A message is sent to users who have snatched this torrent.", 6 | 'std_error' => "Error", 7 | 'std_torrent_not_dead' => "The torrent is not dead.", 8 | 'std_reseed_sent_recently' => "Someone already asked for reseed of this torrent in last 15 minutes. Please wait patiently for users to reseed.", 9 | ); 10 | -------------------------------------------------------------------------------- /lang/en/lang_uploaders.php: -------------------------------------------------------------------------------- 1 | "No uploaders found!", 5 | 'head_uploaders' => "Uploaders", 6 | 'text_uploaders' => "Uploaders", 7 | 'col_username' => "Username", 8 | 'col_torrents_size' => "Torrents Size", 9 | 'col_torrents_num' => "Torrents Num", 10 | 'col_last_upload_time' => "Last Upped Time", 11 | 'col_last_upload' => "Last Upped Torrent", 12 | 'text_not_available' => "N/A", 13 | 'submit_go' => "Go", 14 | 'text_select_month' => "Select month: ", 15 | 'text_order_by' => "Order By", 16 | 'text_username' => "Username", 17 | 'text_torrent_size' => "Torrent Size", 18 | 'text_torrent_num' => "Torrent Num", 19 | ); 20 | -------------------------------------------------------------------------------- /lang/en/lang_userhistory.php: -------------------------------------------------------------------------------- 1 | "Error", 5 | 'std_permission_denied' => "Permission denied", 6 | 'std_no_posts_found' => "No posts found", 7 | 'head_posts_history' => "Posts history", 8 | 'text_posts_history_for' => "Post history for ", 9 | 'text_forum' => "Forum: ", 10 | 'text_topic' => "Topic: ", 11 | 'text_post' => "Post: ", 12 | 'text_new' => "NEW!", 13 | 'text_last_edited' => "Last edited by ", 14 | 'text_at' => " at ", 15 | 'std_no_comments_found' => "No comments found", 16 | 'head_comments_history' => "Comments history", 17 | 'text_comments_history_for' => "Comments history for ", 18 | 'text_torrent' => "Torrent: ", 19 | 'text_comment' => "Comment: ", 20 | 'std_history_error' => "History Error", 21 | 'std_unkown_action' => "Unknown action", 22 | 'std_invalid_or_no_query' => "Invalid or no query." 23 | ); 24 | -------------------------------------------------------------------------------- /lang/en/lang_users.php: -------------------------------------------------------------------------------- 1 | "Users", 5 | 'text_users' => "

Users

", 6 | 'text_search' => "Search:", 7 | 'select_any_class' => "(any class)", 8 | 'submit_okay' => "Okay", 9 | 'text_prev' => "Prev", 10 | 'text_next' => "Next", 11 | 'col_user_name' => "User name", 12 | 'col_registered' => "Registered", 13 | 'col_last_access' => "Last access", 14 | 'col_class' => "Class", 15 | 'col_country' => "Country", 16 | 'select_any_country'=> "(any country)", 17 | ); 18 | -------------------------------------------------------------------------------- /lang/en/lang_viewfilelist.php: -------------------------------------------------------------------------------- 1 | "Path", 5 | ); 6 | -------------------------------------------------------------------------------- /lang/en/lang_viewnfo.php: -------------------------------------------------------------------------------- 1 | "Puke", 5 | 'head_view_nfo' => "View NFO File", 6 | 'text_nfo_for' => "NFO for", 7 | 'title_dos_vy' => "", 8 | 'text_dos_vy' => "DOS-vy", 9 | 'title_windows_vy' => "Latin-1: Inget socker tack!", 10 | 'text_windows_vy' => "Windows-vy" 11 | ); 12 | -------------------------------------------------------------------------------- /lang/en/lang_viewpeerlist.php: -------------------------------------------------------------------------------- 1 | "User", 5 | 'col_location' => "Location", 6 | 'col_connectable' => "Connectable", 7 | 'col_uploaded' => "Uploaded", 8 | 'col_rate' => "Rate", 9 | 'col_av_rate' => "Av. Rate", 10 | 'col_downloaded' => "Downloaded", 11 | 'col_ratio' => "Ratio", 12 | 'col_complete' => "Complete", 13 | 'col_connected' => "Connected", 14 | 'col_idle' => "Idle", 15 | 'col_client' => "Client", 16 | 'text_anonymous' => "Anonymous", 17 | 'text_unknown' => "(unknown)", 18 | 'text_seeders' => "Seeders", 19 | 'text_leechers' => "Leechers", 20 | 'row_seeders' => "Seeders", 21 | 'row_leechers' => "Leechers", 22 | 'text_yes' => "Yes", 23 | 'text_no' => "No", 24 | 'text_inf' => "Inf." 25 | ); 26 | -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- 1 | \n"); 8 | print("".format_comment($body)."

"); 9 | -------------------------------------------------------------------------------- /searchsuggest.php: -------------------------------------------------------------------------------- 1 | 25) { 11 | continue; 12 | } 13 | $result[1][] = $suggest['suggest']; 14 | $result[2][] = $suggest['count']." times"; 15 | $i++; 16 | if ($i >= 5) { 17 | break; 18 | } 19 | } 20 | echo json_encode($result); 21 | } 22 | -------------------------------------------------------------------------------- /smilies.php: -------------------------------------------------------------------------------- 1 | = UC_MODERATOR || $CURUSER[id] == "$id") { 18 | $deadtime = deadtime(); 19 | \NexusPHP\Components\Database::query("DELETE FROM peers WHERE last_action < FROM_UNIXTIME($deadtime) AND userid=" . \NexusPHP\Components\Database::escape($id)); 20 | $effected = \NexusPHP\Components\Database::affected_rows(); 21 | 22 | stderr($lang_takeflush['std_success'], "$effected ".$lang_takeflush['std_ghost_torrents_cleaned']); 23 | } else { 24 | bark($lang_takeflush['std_cannot_flush_others']); 25 | } 26 | -------------------------------------------------------------------------------- /torrents/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | Order allow,deny 3 | Deny from all 4 | -------------------------------------------------------------------------------- /viewfilelist.php: -------------------------------------------------------------------------------- 1 |