From e97002f0f52f6f7e97150c2749c14c53394cd52a Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 13 Jul 2003 13:20:27 +0000 Subject: [PATCH] Episode "IV" : A new Home ... aka a new way to extract money from fans ... oops, sorry, irrelevant argument git-svn-id: file:///svn/phpbb/trunk@4228 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/styles/templates/subSilver/bbcode.html | 66 ++++ .../templates/subSilver/confirm_body.html | 18 + phpBB/styles/templates/subSilver/editor.js | 253 +++++++++++++ .../styles/templates/subSilver/faq_body.html | 59 ++++ .../styles/templates/subSilver/gcp_body.html | 128 +++++++ .../templates/subSilver/gcp_pending_info.html | 36 ++ .../templates/subSilver/gcp_user_body.html | 76 ++++ phpBB/styles/templates/subSilver/index.htm | 16 + .../templates/subSilver/index_body.html | 129 +++++++ phpBB/styles/templates/subSilver/jumpbox.html | 8 + .../templates/subSilver/login_body.html | 55 +++ .../templates/subSilver/login_forum.html | 35 ++ .../styles/templates/subSilver/mcp_forum.html | 41 +++ .../templates/subSilver/mcp_foruminfo.html | 49 +++ .../styles/templates/subSilver/mcp_front.html | 112 ++++++ .../templates/subSilver/mcp_header.html | 43 +++ .../templates/subSilver/mcp_jumpbox.html | 10 + .../styles/templates/subSilver/mcp_move.html | 35 ++ .../styles/templates/subSilver/mcp_post.html | 123 +++++++ .../styles/templates/subSilver/mcp_queue.html | 67 ++++ .../templates/subSilver/mcp_reports.html | 39 +++ .../styles/templates/subSilver/mcp_topic.html | 126 +++++++ .../templates/subSilver/mcp_viewlogs.html | 47 +++ .../templates/subSilver/memberlist_body.html | 160 +++++++++ .../templates/subSilver/memberlist_email.html | 93 +++++ .../templates/subSilver/memberlist_im.html | 79 +++++ .../templates/subSilver/memberlist_view.html | 150 ++++++++ .../templates/subSilver/message_body.html | 20 ++ .../templates/subSilver/overall_footer.html | 16 + .../templates/subSilver/overall_header.html | 53 +++ .../subSilver/posting_attach_body.html | 39 +++ .../templates/subSilver/posting_body.html | 331 ++++++++++++++++++ .../subSilver/posting_poll_body.html | 30 ++ .../templates/subSilver/posting_preview.html | 45 +++ .../templates/subSilver/posting_smilies.html | 35 ++ .../subSilver/posting_topic_review.html | 133 +++++++ .../templates/subSilver/report_body.html | 47 +++ .../templates/subSilver/search_body.html | 60 ++++ .../subSilver/search_results_posts.html | 54 +++ .../subSilver/search_results_topics.html | 54 +++ .../styles/templates/subSilver/searchbox.html | 6 + .../templates/subSilver/simple_footer.html | 19 + .../templates/subSilver/simple_header.html | 23 ++ .../templates/subSilver/ucp_agreement.html | 33 ++ .../templates/subSilver/ucp_footer.html | 25 ++ .../templates/subSilver/ucp_header.html | 80 +++++ .../styles/templates/subSilver/ucp_main.html | 105 ++++++ .../templates/subSilver/ucp_pm_body.html | 120 +++++++ .../templates/subSilver/ucp_pm_popup.html | 22 ++ .../templates/subSilver/ucp_pm_preview.html | 27 ++ .../templates/subSilver/ucp_pm_read.html | 86 +++++ .../styles/templates/subSilver/ucp_prefs.html | 139 ++++++++ .../templates/subSilver/ucp_profile.html | 246 +++++++++++++ .../templates/subSilver/ucp_register.html | 87 +++++ .../templates/subSilver/ucp_remind.html | 35 ++ .../templates/subSilver/viewforum_body.html | 187 ++++++++++ .../subSilver/viewforum_subforum.html | 42 +++ .../templates/subSilver/viewonline_body.html | 65 ++++ .../subSilver/viewtopic_attach_body.html | 70 ++++ .../templates/subSilver/viewtopic_body.html | 275 +++++++++++++++ .../templates/subSilver/viewtopic_print.html | 111 ++++++ phpBB/styles/themes/subSilver/subSilver.css | 88 +++++ 62 files changed, 4861 insertions(+) create mode 100644 phpBB/styles/templates/subSilver/bbcode.html create mode 100644 phpBB/styles/templates/subSilver/confirm_body.html create mode 100644 phpBB/styles/templates/subSilver/editor.js create mode 100644 phpBB/styles/templates/subSilver/faq_body.html create mode 100644 phpBB/styles/templates/subSilver/gcp_body.html create mode 100644 phpBB/styles/templates/subSilver/gcp_pending_info.html create mode 100644 phpBB/styles/templates/subSilver/gcp_user_body.html create mode 100644 phpBB/styles/templates/subSilver/index.htm create mode 100644 phpBB/styles/templates/subSilver/index_body.html create mode 100644 phpBB/styles/templates/subSilver/jumpbox.html create mode 100644 phpBB/styles/templates/subSilver/login_body.html create mode 100644 phpBB/styles/templates/subSilver/login_forum.html create mode 100644 phpBB/styles/templates/subSilver/mcp_forum.html create mode 100644 phpBB/styles/templates/subSilver/mcp_foruminfo.html create mode 100644 phpBB/styles/templates/subSilver/mcp_front.html create mode 100644 phpBB/styles/templates/subSilver/mcp_header.html create mode 100644 phpBB/styles/templates/subSilver/mcp_jumpbox.html create mode 100644 phpBB/styles/templates/subSilver/mcp_move.html create mode 100644 phpBB/styles/templates/subSilver/mcp_post.html create mode 100644 phpBB/styles/templates/subSilver/mcp_queue.html create mode 100644 phpBB/styles/templates/subSilver/mcp_reports.html create mode 100644 phpBB/styles/templates/subSilver/mcp_topic.html create mode 100644 phpBB/styles/templates/subSilver/mcp_viewlogs.html create mode 100644 phpBB/styles/templates/subSilver/memberlist_body.html create mode 100644 phpBB/styles/templates/subSilver/memberlist_email.html create mode 100644 phpBB/styles/templates/subSilver/memberlist_im.html create mode 100644 phpBB/styles/templates/subSilver/memberlist_view.html create mode 100644 phpBB/styles/templates/subSilver/message_body.html create mode 100644 phpBB/styles/templates/subSilver/overall_footer.html create mode 100644 phpBB/styles/templates/subSilver/overall_header.html create mode 100644 phpBB/styles/templates/subSilver/posting_attach_body.html create mode 100644 phpBB/styles/templates/subSilver/posting_body.html create mode 100644 phpBB/styles/templates/subSilver/posting_poll_body.html create mode 100644 phpBB/styles/templates/subSilver/posting_preview.html create mode 100644 phpBB/styles/templates/subSilver/posting_smilies.html create mode 100644 phpBB/styles/templates/subSilver/posting_topic_review.html create mode 100644 phpBB/styles/templates/subSilver/report_body.html create mode 100644 phpBB/styles/templates/subSilver/search_body.html create mode 100644 phpBB/styles/templates/subSilver/search_results_posts.html create mode 100644 phpBB/styles/templates/subSilver/search_results_topics.html create mode 100644 phpBB/styles/templates/subSilver/searchbox.html create mode 100644 phpBB/styles/templates/subSilver/simple_footer.html create mode 100644 phpBB/styles/templates/subSilver/simple_header.html create mode 100644 phpBB/styles/templates/subSilver/ucp_agreement.html create mode 100644 phpBB/styles/templates/subSilver/ucp_footer.html create mode 100644 phpBB/styles/templates/subSilver/ucp_header.html create mode 100644 phpBB/styles/templates/subSilver/ucp_main.html create mode 100644 phpBB/styles/templates/subSilver/ucp_pm_body.html create mode 100644 phpBB/styles/templates/subSilver/ucp_pm_popup.html create mode 100644 phpBB/styles/templates/subSilver/ucp_pm_preview.html create mode 100644 phpBB/styles/templates/subSilver/ucp_pm_read.html create mode 100644 phpBB/styles/templates/subSilver/ucp_prefs.html create mode 100644 phpBB/styles/templates/subSilver/ucp_profile.html create mode 100644 phpBB/styles/templates/subSilver/ucp_register.html create mode 100644 phpBB/styles/templates/subSilver/ucp_remind.html create mode 100644 phpBB/styles/templates/subSilver/viewforum_body.html create mode 100644 phpBB/styles/templates/subSilver/viewforum_subforum.html create mode 100644 phpBB/styles/templates/subSilver/viewonline_body.html create mode 100644 phpBB/styles/templates/subSilver/viewtopic_attach_body.html create mode 100644 phpBB/styles/templates/subSilver/viewtopic_body.html create mode 100644 phpBB/styles/templates/subSilver/viewtopic_print.html create mode 100644 phpBB/styles/themes/subSilver/subSilver.css diff --git a/phpBB/styles/templates/subSilver/bbcode.html b/phpBB/styles/templates/subSilver/bbcode.html new file mode 100644 index 0000000000..8c62f189dc --- /dev/null +++ b/phpBB/styles/templates/subSilver/bbcode.html @@ -0,0 +1,66 @@ + + +
    +
+ +
  • +
  • + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {attach_row.S_HIDDEN} + + + diff --git a/phpBB/styles/templates/subSilver/posting_body.html b/phpBB/styles/templates/subSilver/posting_body.html new file mode 100644 index 0000000000..365fad669b --- /dev/null +++ b/phpBB/styles/templates/subSilver/posting_body.html @@ -0,0 +1,331 @@ + + + + + + + +
    {USERNAME} {L_WROTE}:
    + + + + + + + + + + +
    {L_QUOTE}:
    + + + +
    + + + + + + + + + + +
    {L_CODE}:
    + + + +
    + + + + + + + + + + + + +{TEXT} + +{TEXT} + + + +{DESCRIPTION} + +{DESCRIPTION} + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/confirm_body.html b/phpBB/styles/templates/subSilver/confirm_body.html new file mode 100644 index 0000000000..0f6b1f6042 --- /dev/null +++ b/phpBB/styles/templates/subSilver/confirm_body.html @@ -0,0 +1,18 @@ + + +
    + + + +
    + + + + + + + + +
    {MESSAGE_TITLE}


    {MESSAGE_TEXT}

    {S_HIDDEN_FIELDS}  
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/editor.js b/phpBB/styles/templates/subSilver/editor.js new file mode 100644 index 0000000000..dfe9e4c9d5 --- /dev/null +++ b/phpBB/styles/templates/subSilver/editor.js @@ -0,0 +1,253 @@ +// bbCode control by subBlue design [ www.subBlue.com ] +// Includes unixsafe colour palette selector by SHS` + +// Startup variables +var imageTag = false; +var theSelection = false; + +// Check for Browser & Platform for PC & IE specific bits +// More details from: http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html +var clientPC = navigator.userAgent.toLowerCase(); // Get client info +var clientVer = parseInt(navigator.appVersion); // Get browser version + +var is_ie = ((clientPC.indexOf("msie") != -1) && (clientPC.indexOf("opera") == -1)); +var is_nav = ((clientPC.indexOf('mozilla')!=-1) && (clientPC.indexOf('spoofer')==-1) + && (clientPC.indexOf('compatible') == -1) && (clientPC.indexOf('opera')==-1) + && (clientPC.indexOf('webtv')==-1) && (clientPC.indexOf('hotjava')==-1)); + +var is_win = ((clientPC.indexOf("win")!=-1) || (clientPC.indexOf("16bit") != -1)); +var is_mac = (clientPC.indexOf("mac")!=-1); + +// Shows the help messages in the helpline window +function helpline(help) { + document.forms[form_name].helpbox.value = eval(help + "_help"); +} + +// Replacement for arrayname.length property +function getarraysize(thearray) { + for (i = 0; i < thearray.length; i++) { + if ((thearray[i] == "undefined") || (thearray[i] == "") || (thearray[i] == null)) + return i; + } + return thearray.length; +} + +// Replacement for arrayname.push(value) not implemented in IE until version 5.5 +// Appends element to the array +function arraypush(thearray,value) { + thearray[ getarraysize(thearray) ] = value; +} + +// Replacement for arrayname.pop() not implemented in IE until version 5.5 +// Removes and returns the last element of an array +function arraypop(thearray) { + thearraysize = getarraysize(thearray); + retval = thearray[thearraysize - 1]; + delete thearray[thearraysize - 1]; + return retval; +} + +function emoticon(text) { + text = ' ' + text + ' '; + if (document.forms[form_name].elements[text_name].createTextRange && document.forms[form_name].elements[text_name].caretPos) { + var caretPos = document.forms[form_name].elements[text_name].caretPos; + caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text; + document.forms[form_name].elements[text_name].focus(); + } else { + document.forms[form_name].elements[text_name].value += text; + document.forms[form_name].elements[text_name].focus(); + } +} + +function bbfontstyle(bbopen, bbclose) { + if ((clientVer >= 4) && is_ie && is_win) { + theSelection = document.selection.createRange().text; + if (!theSelection) { + insert_text(bbopen + bbclose); + document.forms[form_name].elements[text_name].focus(); + return; + } + document.selection.createRange().text = bbopen + theSelection + bbclose; + document.forms[form_name].elements[text_name].focus(); + return; + } else { + insert_text(bbopen + bbclose); + document.forms[form_name].elements[text_name].focus(); + return; + } + storeCaret(document.forms[form_name].elements[text_name]); +} + +function insert_text(text) { + if (document.forms[form_name].elements[text_name].createTextRange && document.forms[form_name].elements[text_name].caretPos) { + var caretPos = document.forms[form_name].elements[text_name].caretPos; + caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == '' ? text : text; + } else { + document.forms[form_name].elements[text_name].value += text; + } +} + +function bbstyle(bbnumber) { + + donotinsert = false; + theSelection = false; + bblast = 0; + document.forms[form_name].elements[text_name].focus(); + + if (bbnumber == -1) { // Close all open tags & default button names + while (bbcode[0]) { + butnumber = arraypop(bbcode) - 1; + document.forms[form_name].elements[text_name].value += bbtags[butnumber + 1]; + buttext = eval('document.forms[form_name].addbbcode' + butnumber + '.value'); + if (buttext != "[*]") + { + eval('document.forms[form_name].addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"'); + } + } + document.forms[form_name].addbbcode10.value = "List"; + bbtags[10] = "[list]"; + document.forms[form_name].addbbcode12.value = "List="; + bbtags[12] = "[list=]"; + imageTag = false; // All tags are closed including image tags :D + document.forms[form_name].elements[text_name].focus(); + return; + } + + if ((clientVer >= 4) && is_ie && is_win) + theSelection = document.selection.createRange().text; // Get text selection + + if (theSelection) { + // Add tags around selection + document.selection.createRange().text = bbtags[bbnumber] + theSelection + bbtags[bbnumber+1]; + document.forms[form_name].elements[text_name].focus(); + theSelection = ''; + return; + } + + // Find last occurance of an open tag the same as the one just clicked + for (i = 0; i < bbcode.length; i++) { + if (bbcode[i] == bbnumber+1) { + bblast = i; + donotinsert = true; + } + } + + if ((bbnumber == 10) && (bbtags[10] != "[*]")) + { + if (donotinsert) + { + document.forms[form_name].addbbcode12.value = "List="; + tmp_help = o_help; + o_help = e_help; + e_help = tmp_help; + bbtags[12] = "[list=]"; + } + else + { + document.forms[form_name].addbbcode12.value = "[*]"; + tmp_help = o_help; + o_help = e_help; + e_help = tmp_help; + bbtags[12] = "[*]"; + } + } + + if ((bbnumber == 12) && (bbtags[12] != "[*]")) + { + if (donotinsert) + { + document.forms[form_name].addbbcode10.value = "List"; + tmp_help = l_help; + l_help = e_help; + e_help = tmp_help; + bbtags[10] = "[list]"; + } + else + { + document.forms[form_name].addbbcode10.value = "[*]"; + tmp_help = l_help; + l_help = e_help; + e_help = tmp_help; + bbtags[10] = "[*]"; + } + } + + if (donotinsert) { // Close all open tags up to the one just clicked & default button names + while (bbcode[bblast]) { + butnumber = arraypop(bbcode) - 1; + if (bbtags[butnumber] != "[*]") + { + insert_text(bbtags[butnumber + 1]); + } + else + { + insert_text(bbtags[butnumber]); + } + buttext = eval('document.forms[form_name].addbbcode' + butnumber + '.value'); + if (bbtags[butnumber] != "[*]") + { + eval('document.forms[form_name].addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"'); + } + imageTag = false; + } + document.forms[form_name].elements[text_name].focus(); + return; + } else { // Open tags + + if (imageTag && (bbnumber != 14)) { // Close image tag before adding another + insert_text(bbtags[15]); + + lastValue = arraypop(bbcode) - 1; // Remove the close image tag from the list + document.forms[form_name].addbbcode14.value = "Img"; // Return button back to normal state + imageTag = false; + } + + // Open tag + insert_text(bbtags[bbnumber]); + + if ((bbnumber == 14) && (imageTag == false)) imageTag = 1; // Check to stop additional tags after an unclosed image tag + if (bbtags[bbnumber] != "[*]") + { + arraypush(bbcode,bbnumber+1); + eval('document.forms[form_name].addbbcode'+bbnumber+'.value += "*"'); + } + document.forms[form_name].elements[text_name].focus(); + return; + } + + storeCaret(document.forms[form_name].elements[text_name]); +} + +// Insert at Claret position. Code from +// http://www.faqts.com/knowledge_base/view.phtml/aid/1052/fid/130 +function storeCaret(textEl) { + if (textEl.createTextRange) textEl.caretPos = document.selection.createRange().duplicate(); +} + +function colorPalette() +{ + var r = 0, g = 0, b = 0; + var numberList = new Array(6); + numberList[0] = "00"; + numberList[1] = "40"; + numberList[2] = "80"; + numberList[3] = "BF"; + numberList[4] = "FF"; + document.writeln(''); + for(r = 0; r < 5; r++) + { + for(g = 0; g < 5; g++) + { + document.writeln(''); + for(b = 0; b < 5; b++) + { + color = String(numberList[r]) + String(numberList[g]) + String(numberList[b]); + document.write(''); + } + document.writeln(''); + } + } + document.writeln('
    '); + document.write('#' + color + ''); + document.writeln('
    '); +} \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/faq_body.html b/phpBB/styles/templates/subSilver/faq_body.html new file mode 100644 index 0000000000..7c997e90ca --- /dev/null +++ b/phpBB/styles/templates/subSilver/faq_body.html @@ -0,0 +1,59 @@ + + + + + + +
    + + + + + + + + + + + +
    {L_FAQ_TITLE}
    + + {faq_block_link.BLOCK_TITLE}
    + + {faq_block_link.faq_row_link.FAQ_LINK}
    + +
    + +
     
    + +
    + + + + + + + + + + + + + + + + + + +
    {faq_block.BLOCK_TITLE}
    {faq_block.faq_row.FAQ_QUESTION}
    {faq_block.faq_row.FAQ_ANSWER}
    {L_BACK_TO_TOP}
    + +
    + + + + + + +
    {S_TIMEZONE}

    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/gcp_body.html b/phpBB/styles/templates/subSilver/gcp_body.html new file mode 100644 index 0000000000..4acf9aaf51 --- /dev/null +++ b/phpBB/styles/templates/subSilver/gcp_body.html @@ -0,0 +1,128 @@ + +
    + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + +
    {L_GROUP_INFORMATION}
    {L_GROUP_NAME}:{GROUP_NAME}
    {L_GROUP_DESC}:{GROUP_DESC}
    {L_GROUP_MEMBERSHIP}:{GROUP_DETAILS}    + + + + + + +
    {L_GROUP_TYPE}: {L_GROUP_OPEN}    {L_GROUP_CLOSED}    {L_GROUP_HIDDEN}   
    + +{S_HIDDEN_FIELDS} + +
    + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_PM}{L_USERNAME}{L_POSTS}{L_FROM}{L_EMAIL}{L_WEBSITE}{L_SELECT}
    {L_GROUP_MODERATOR}
    {MOD_PM_IMG} {MOD_USERNAME}{MOD_POSTS}{MOD_FROM}{MOD_EMAIL_IMG}{MOD_WWW_IMG}  
    {L_GROUP_MEMBERS}
    {member_row.PM_IMG} {member_row.USERNAME}{member_row.POSTS} {member_row.FROM} + {member_row.EMAIL_IMG} {member_row.WWW_IMG} + + + +
    {L_NO_MEMBERS}
    {L_HIDDEN_MEMBERS}
    + +
    + + + + + + +
    + +

    + + {PAGE_NUMBER}
    {S_TIMEZONE}
    {PAGINATION}
    + +{PENDING_USER_BOX} + +{S_HIDDEN_FIELDS}
    + + + + + +
    {JUMPBOX}
    diff --git a/phpBB/styles/templates/subSilver/gcp_pending_info.html b/phpBB/styles/templates/subSilver/gcp_pending_info.html new file mode 100644 index 0000000000..00486901d7 --- /dev/null +++ b/phpBB/styles/templates/subSilver/gcp_pending_info.html @@ -0,0 +1,36 @@ + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_PM}{L_USERNAME}{L_POSTS}{L_FROM}{L_EMAIL}{L_WEBSITE}{L_SELECT}
    {L_PENDING_MEMBERS}
    {pending_members_row.PM_IMG} + {pending_members_row.USERNAME}{pending_members_row.POSTS}{pending_members_row.FROM}{pending_members_row.EMAIL_IMG}{pending_members_row.WWW_IMG}
    + +   + +
    diff --git a/phpBB/styles/templates/subSilver/gcp_user_body.html b/phpBB/styles/templates/subSilver/gcp_user_body.html new file mode 100644 index 0000000000..8ab2dce7b2 --- /dev/null +++ b/phpBB/styles/templates/subSilver/gcp_user_body.html @@ -0,0 +1,76 @@ + + + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_GROUP_MEMBERSHIP_DETAILS}
    {L_YOU_BELONG_GROUPS} + + + + + +
    {GROUP_MEMBER_SELECT} + {S_HIDDEN_FIELDS} +
    +
    {L_PENDING_GROUPS} + + + + + +
    {GROUP_PENDING_SELECT} + {S_HIDDEN_FIELDS} +
    +
    {L_JOIN_A_GROUP}
    {L_SELECT_A_GROUP} + + + + + +
    {GROUP_LIST_SELECT} + {S_HIDDEN_FIELDS} +
    +
    + + + + + +
    {S_TIMEZONE}
    + +
    + + + + + +
    {JUMPBOX}
    diff --git a/phpBB/styles/templates/subSilver/index.htm b/phpBB/styles/templates/subSilver/index.htm new file mode 100644 index 0000000000..79908c5993 --- /dev/null +++ b/phpBB/styles/templates/subSilver/index.htm @@ -0,0 +1,16 @@ + + +subSilver created by subBlue Design + + + + + + + + + +
    Created by subBlue Design
    + + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/index_body.html b/phpBB/styles/templates/subSilver/index_body.html new file mode 100644 index 0000000000..90d73fc5bc --- /dev/null +++ b/phpBB/styles/templates/subSilver/index_body.html @@ -0,0 +1,129 @@ + + + + + + +
    + + + + +
    {TOTAL_POSTS}
    {TOTAL_USERS}
    {NEWEST_USER}


    {L_INDEX}
    {L_SEARCH_NEW}
    {L_SEARCH_SELF}
    {L_SEARCH_UNANSWERED}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     {L_FORUM}  {L_TOPICS}  {L_POSTS}  {L_LAST_POST} 
    {forumrow.FORUM_NAME} 
    {forumrow.FORUM_FOLDER_IMG}{forumrow.FORUM_NAME}
    + + + + +
    {forumrow.FORUM_DESC}
    {L_REDIRECTS}: {forumrow.CLICKS}
    {forumrow.FORUM_FOLDER_IMG}{forumrow.FORUM_NAME}
    + + + + +
    {forumrow.FORUM_DESC}
    {forumrow.L_MODERATOR_STR}: {forumrow.MODERATORS}

    {forumrow.L_SUBFORUM_STR} {forumrow.SUBFORUMS}
    {forumrow.TOPICS}{forumrow.POSTS}{forumrow.LAST_POST_TIME}
    {forumrow.LAST_POSTER}{forumrow.LAST_POSTER} {forumrow.LAST_POST_IMG}{L_NO_POSTS}
    {L_NO_FORUMS}
    + + + + + + +
    {L_MARK_FORUMS_READ}{S_TIMEZONE}
    + + +
    + + + + + + + + + + + + + + + + + + +
    {L_WHO_IS_ONLINE}
    {L_WHO_IS_ONLINE}{L_WHO_IS_ONLINE}{TOTAL_USERS_ONLINE}
    {RECORD_USERS}

    {LOGGED_IN_USER_LIST}

    {L_ONLINE_EXPLAIN}
    {L_LEGEND} :: {LEGEND}
    + + + +
    + + + + + + + + + +
    {L_BIRTHDAYS}
    {L_WHO_IS_ONLINE}{L_CONGRATULATIONS}: {BIRTHDAY_LIST}{L_NO_BIRTHDAYS}
    + + + +
    + + + + + + +
    {L_LOGIN_LOGOUT}
    {L_USERNAME}:   {L_PASSWORD}:   {L_LOG_ME_IN}  
    + + +
    + + + + + + + + + + + + +
    {FORUM_NEW_IMG}{L_NEW_POSTS}  {FORUM_IMG}{L_NO_NEW_POSTS}  {FORUM_LOCKED_IMG}{L_FORUM_LOCKED}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/jumpbox.html b/phpBB/styles/templates/subSilver/jumpbox.html new file mode 100644 index 0000000000..9858c7e69d --- /dev/null +++ b/phpBB/styles/templates/subSilver/jumpbox.html @@ -0,0 +1,8 @@ + + +
    + + + +
    {L_JUMP_TO}:  
    + diff --git a/phpBB/styles/templates/subSilver/login_body.html b/phpBB/styles/templates/subSilver/login_body.html new file mode 100644 index 0000000000..9a6301d49a --- /dev/null +++ b/phpBB/styles/templates/subSilver/login_body.html @@ -0,0 +1,55 @@ + + + +
    + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + +
    {L_LOGIN}
    {LOGIN_EXPLAIN}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {LOGIN_ERROR}
    {L_USERNAME}:
    {L_REGISTER}
    {L_PASSWORD}:
    {L_FORGOT_PASS}
      {L_LOG_ME_IN}
      {L_HIDE_ME}
    {L_TERMS_USE}
    {L_PRIVACY}
    {S_HIDDEN_FIELDS}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/login_forum.html b/phpBB/styles/templates/subSilver/login_forum.html new file mode 100644 index 0000000000..6d706336ef --- /dev/null +++ b/phpBB/styles/templates/subSilver/login_forum.html @@ -0,0 +1,35 @@ + + + +
    + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + +
    {L_LOGIN}
    {L_LOGIN_FORUM}
    + + + + + + + + + +
    {LOGIN_ERROR}
    {L_PASSWORD}:
    {S_HIDDEN_FIELDS}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_forum.html b/phpBB/styles/templates/subSilver/mcp_forum.html new file mode 100644 index 0000000000..b105bba671 --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_forum.html @@ -0,0 +1,41 @@ + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_DISPLAY_LOG}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
      {L_TOPICS}  {L_REPLIES}  {L_LAST_POST}  {L_SELECT} 
    {topicrow.TOPIC_FOLDER_IMG}[ {L_SELECT} ] {topicrow.TOPIC_TYPE}{topicrow.TOPIC_TITLE}{topicrow.REPLIES}{topicrow.LAST_POST_TIME}
    {L_NO_TOPICS}
    {L_QUICK_MOD}:
    + + + + + + +
    {L_MARK_ALL} :: {L_UNMARK_ALL}
    {PAGINATION}
    +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_foruminfo.html b/phpBB/styles/templates/subSilver/mcp_foruminfo.html new file mode 100644 index 0000000000..e5aadd24b7 --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_foruminfo.html @@ -0,0 +1,49 @@ + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_FORUM_INFO}
    {L_FORUM_NAME}
    {L_FORUM_DESC}
    {L_FORUM_STYLE}
    {L_FORUM_STATUS}
       
    + +
    + + + + + + + + + + + +
    {L_FORUM_INFO}



    + + +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_front.html b/phpBB/styles/templates/subSilver/mcp_front.html new file mode 100644 index 0000000000..80fabc8fe3 --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_front.html @@ -0,0 +1,112 @@ + + + + + +

    {L_LATEST_UNAPPROVED}

    + +

    {L_LATEST_UNAPPROVED_EXPLAIN}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     {L_FORUM}  {L_TOPIC}  {L_SUBJECT}  {L_AUTHOR}  {L_POST_TIME} 
    {unapproved.FORUM}{unapproved.TOPIC}{unapproved.SUBJECT}{unapproved.AUTHOR}{unapproved.POST_TIME}
    {L_UNAPPROVED_POSTS_ZERO_TOTAL}
    {L_UNAPPROVED_TOTAL}
    + +
    + + + + +

    {L_LATEST_REPORTED}

    + +

    {L_LATEST_REPORTED_EXPLAIN}

    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     {L_FORUM}  {L_TOPIC}  {L_SUBJECT}  {L_REPORTER}  {L_REPORT_TIME} 
    {report.FORUM}{report.TOPIC}{report.SUBJECT}{report.REPORTER}{report.REPORT_TIME}
    {L_REPORTS_ZERO_TOTAL}
    {L_REPORTS_TOTAL}
    + +
    + + + + +

    {L_LATEST_LOGS}

    + +

    {L_LATEST_LOGS_EXPLAIN}

    + + + + + + + + + + + + + + + + + + + + + + +
    {L_USERNAME}{L_IP}{L_ACTION}{L_TIME}
    {log.USERNAME}{log.IP}{log.ACTION}{L_VIEW_TOPIC} | {L_VIEW_TOPIC_LOGS}{log.TIME}
    {L_NO_ENTRIES}
    + +
    + + +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_header.html b/phpBB/styles/templates/subSilver/mcp_header.html new file mode 100644 index 0000000000..d43fdde95a --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_header.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + +
    {TOPIC_TITLE}
    {FORUM_NAME}
    {MODERATORS}{PAGINATION}
    + + + + + +
    + + + + +
     {tab.NAME} {tab.NAME} 
    diff --git a/phpBB/styles/templates/subSilver/mcp_jumpbox.html b/phpBB/styles/templates/subSilver/mcp_jumpbox.html new file mode 100644 index 0000000000..b731c864b1 --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_jumpbox.html @@ -0,0 +1,10 @@ +{L_JUMP_TO}:   \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_move.html b/phpBB/styles/templates/subSilver/mcp_move.html new file mode 100644 index 0000000000..64a2d49d69 --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_move.html @@ -0,0 +1,35 @@ + + + +
    {S_HIDDEN_FIELDS} + + + +
    + + + + + + + + +
    {L_MODE_TITLE}
    + + + + + + + + + +
     
    {L_MODE_EXPLAIN}

    {L_SELECT_DESTINATION_FORUM}  


    + {L_LEAVE_SHADOW}

    + +    + +
     
    +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_post.html b/phpBB/styles/templates/subSilver/mcp_post.html new file mode 100644 index 0000000000..4ea406229b --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_post.html @@ -0,0 +1,123 @@ + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_POST_DETAILS}
    {L_POSTER}{POSTER_NAME}
    {L_THIS_POST_IP}{POST_IP}
    {L_POSTED}{POST_DATE}
    {L_POST_SUBJECT}{POST_SUBJECT}
    {MESSAGE}
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_REPORTS}
    {L_REPORTER}{REPORTER}
    {L_REPORT_TIME}{REPORT_TIME}
    {L_REASON}{REASON_TITLE}
    {L_DESCRIPTION}{REASON_DESCRIPTION}
     
    + + + +
    + + + + + + + + + + + + + + + + + + +
    {L_MOD_OPTIONS}
    {L_CHANGE_POSTER}{L_NO_USERS_FOUND}

    {L_POST_OPTIONS}{L_LOCK_POST} [{L_LOCK_POST_EXPLAIN}]
    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_IP_INFO}
    {L_OTHER_USERS}
    {userrow.USERNAME} [ {userrow.POSTS} ]{SEARCH_IMG}
    {L_OTHER_IPS}[ {L_LOOKUP_ALL} ]
    {iprow.IP} [ {iprow.POSTS} ][ {L_LOOKUP_IP} ]
    + + +
    + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_queue.html b/phpBB/styles/templates/subSilver/mcp_queue.html new file mode 100644 index 0000000000..c9e9dfd2c9 --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_queue.html @@ -0,0 +1,67 @@ + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_DISPLAY_OPTIONS}
    {L_DISPLAY_LOG}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
     {L_FORUM}  {L_TOPIC}  {L_SUBJECT}  {L_AUTHOR}  {L_POST_TIME}  {L_SELECT} 
    {L_TOPICS}
    {unapproved_topics.FORUM}{unapproved_topics.TOPIC}{unapproved_topics.SUBJECT}{unapproved_topics.AUTHOR}{unapproved_topics.POST_TIME}{unapproved_topics.S_CHECKBOX}
    {L_POSTS}
    {unapproved_posts.FORUM}{unapproved_posts.TOPIC}{unapproved_posts.SUBJECT}{unapproved_posts.AUTHOR}{unapproved_posts.POST_TIME}{unapproved_posts.S_CHECKBOX}
      
    {L_NO_POSTS}
    + + + + + + +
    {L_MARK_ALL} :: {L_UNMARK_ALL}
    {PAGINATION}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_reports.html b/phpBB/styles/templates/subSilver/mcp_reports.html new file mode 100644 index 0000000000..1669393dd6 --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_reports.html @@ -0,0 +1,39 @@ + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_DISPLAY_LOG}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
     {L_TOPIC}  {L_SUBJECT}  {L_REASON}  {L_REPORTER}  {L_REPORT_TIME}  {L_SELECT} 
    {L_REPORTS_CURRENT_TOPIC} {TOPIC_NAME}
    {reportrow.TOPIC}{reportrow.SUBJECT}{reportrow.REASON}{reportrow.REPORTER}{reportrow.REPORT_TIME}{L_POST_REPORTED}
    + + + + + + +
    {PAGINATION}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_topic.html b/phpBB/styles/templates/subSilver/mcp_topic.html new file mode 100644 index 0000000000..91d39949e4 --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_topic.html @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_SPLIT_TOPIC}
    {L_SPLIT_TOPIC_EXPLAIN}
    {L_SPLIT_SUBJECT}
    {L_SPLIT_FORUM}{S_FORUM_SELECT}
    {L_TOPIC_ICON} + + + +
    {L_NONE}
    {L_MERGE_TOPIC}
    {L_MERGE_TOPIC_EXPLAIN}
    {L_MERGE_TOPIC_ID}
    {TO_TOPIC_INFO}
    {L_DISPLAY_OPTIONS}
    {L_POSTS_PER_PAGE}
    {L_POSTS_PER_PAGE_EXPLAIN} +
    {L_DISPLAY_POSTS}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
    {L_AUTHOR}{L_MESSAGE}{L_SELECT}
    +    +    +    +      +
    {postrow.POSTER_NAME}


    {L_POST_DETAILS}
    + + + + + + + + + + + + + + + + + + + + + +
    {L_POST}{L_POSTED}: + {postrow.POST_DATE}    {L_POST_SUBJECT}: {postrow.POST_SUBJECT}

    + + + + +
    {UNAPPROVED_IMG} {L_POST_NOT_APPROVED}

    + + + + +
    {REPORTED_IMG} {L_POST_BEEN_REPORTED} [ {L_READ_REPORTS} ]

    {postrow.MESSAGE}
    {postrow.S_CHECKBOX}
    {L_DISPLAY_POSTS}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
    + + + + + + +
    {L_MARK_ALL} :: {L_UNMARK_ALL}
    {PAGINATION}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/mcp_viewlogs.html b/phpBB/styles/templates/subSilver/mcp_viewlogs.html new file mode 100644 index 0000000000..dec5d3652d --- /dev/null +++ b/phpBB/styles/templates/subSilver/mcp_viewlogs.html @@ -0,0 +1,47 @@ + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_DISPLAY_OPTIONS}
    {L_DISPLAY_LOG}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
    {L_USERNAME}{L_IP}{L_TIME}{L_ACTION}
    {L_LOGS_CURRENT_TOPIC} {TOPIC_NAME}
    {log.USERNAME}{log.IP}{log.TIME}{log.ACTION}{L_VIEW_TOPIC} | {L_VIEW_TOPIC_LOGS}
    {L_NO_ENTRIES}
    + + + + + + +
    {PAGINATION}
    +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/memberlist_body.html b/phpBB/styles/templates/subSilver/memberlist_body.html new file mode 100644 index 0000000000..e32422252a --- /dev/null +++ b/phpBB/styles/templates/subSilver/memberlist_body.html @@ -0,0 +1,160 @@ + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_FIND_USERNAME}
    {L_FIND_USERNAME_EXPLAIN}
    {L_USERNAME}:
    {L_EMAIL}:
    {L_ICQ}:
    {L_AIM}:
    {L_YIM}:
    {L_MSNM}:
    {L_JOINED}:
    {L_LAST_ACTIVE}:
    {L_POSTS}:
    {L_POST_IP}:
    {L_SORT_BY}:  
      
    + + +
    + + + + +
    {L_FIND_USERNAME}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    #{L_USERNAME}{L_JOINED}{L_POSTS}{L_RANK}{L_SEND_MESSAGE}{L_EMAIL}{L_WEBSITE}{L_MARK}
     {memberrow.ROW_NUMBER} {memberrow.USERNAME} {memberrow.JOINED} {memberrow.POSTS}{memberrow.RANK_IMG} {PM_IMG}  {EMAIL_IMG}  {WWW_IMG} 
    {L_NO_MEMBERS}
    + + + +
    {L_SELECT_SORT_METHOD}:   {L_ORDER}  
    + + + + + + +
    {PAGE_NUMBER} [ {TOTAL_USERS} ]{L_MARK_ALL} :: {L_UNMARK_ALL}

    {S_TIMEZONE}

    {PAGINATION}
    + + + + + +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/memberlist_email.html b/phpBB/styles/templates/subSilver/memberlist_email.html new file mode 100644 index 0000000000..158b0b384a --- /dev/null +++ b/phpBB/styles/templates/subSilver/memberlist_email.html @@ -0,0 +1,93 @@ + + + + +
    + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_SEND_EMAIL}
    {ERROR_MESSAGE}
    {L_RECIPIENT}{USERNAME}
    {L_SUBJECT}
    {L_EMAIL_ADDRESS}
    {L_REAL_NAME}
    {L_DEST_LANG}
    {L_DEST_LANG_EXPLAIN}
    {L_MESSAGE_BODY}
    {L_EMAIL_BODY_EXPLAIN}
    {L_OPTIONS} + + + + +
    {L_CC_EMAIL}
    + + + + + +
    {S_TIMEZONE}
    + + + + + +
    {JUMPBOX}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/memberlist_im.html b/phpBB/styles/templates/subSilver/memberlist_im.html new file mode 100644 index 0000000000..3ca24f59fa --- /dev/null +++ b/phpBB/styles/templates/subSilver/memberlist_im.html @@ -0,0 +1,79 @@ + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_SEND_IM}
    {L_SEND_IM_EXPLAIN}
    {L_IM_RECIPIENT}: {USERNAME} [ {IM_CONTACT} ] {PRESENCE_IMG}
    {L_IM_NAME}:
    {L_IM_MESSAGE}:

    {L_IM_ADD_CONTACT}
    {L_IM_SEND_MESSAGE}

    {L_IM_DOWNLOAD_APP} | {L_IM_AIM_EXPRESS}
     

    {L_IM_ADD_CONTACT}
    {L_IM_SEND_MESSAGE}
     
    {L_IM_MESSAGE}:
    {L_IM_NO_JABBER}
    {L_IM_SENT_JABBER}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/memberlist_view.html b/phpBB/styles/templates/subSilver/memberlist_view.html new file mode 100644 index 0000000000..8023ef6d63 --- /dev/null +++ b/phpBB/styles/templates/subSilver/memberlist_view.html @@ -0,0 +1,150 @@ + + +
    + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_VIEWING_PROFILE}
    {L_USER_PRESENCE}{L_USER_FORUM}
    + + + + + + + + + + + + + + + + + + + + + + + + +
    {USERNAME}
    {KARMA_IMG}
    {RANK}
    {RANK_IMG}
    {AVATAR_IMG}
    {ONLINE_IMG}
    + + + + + + + + + + + + + + + + + + + + +
    {L_JOINED}: {JOINED}
    {L_VISITED}: {VISITED}
    {L_TOTAL_POSTS}: {POSTS}
    [{POSTS_PCT} / {POSTS_DAY}]
    {L_SEARCH_USER_POSTS}
    {POSTS}
    {L_ACTIVE_IN_FORUM}: {ACTIVE_FORUM}
    [ {ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT} ]-
    {L_ACTIVE_IN_TOPIC}: {ACTIVE_TOPIC}
    [ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ]-
    {L_CONTACT_USER}{L_ABOUT_USER}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_EMAIL_ADDRESS}: {EMAIL_IMG}
    {L_PM}: {PM_IMG}
    {L_MSNM}: {MSN_IMG}
    {L_YIM}: {YIM_IMG}
    {L_AIM}: {AIM_IMG}
    {L_ICQ}:
    {L_JABBER}: {JABBER_IMG}
    + + + + + + + + + + + + + + + + + + + + +
    {L_USERGROUPS}:
    {L_LOCATION}: {LOCATION}
    {L_OCCUPATION}: {OCCUPATION}
    {L_INTERESTS}: {INTERESTS}
    {L_WEBSITE}: {WWW_IMG}
    {L_SIGNATURE}
    + + + +
    {SIGNATURE}
    + + + + + +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/message_body.html b/phpBB/styles/templates/subSilver/message_body.html new file mode 100644 index 0000000000..8a402d903d --- /dev/null +++ b/phpBB/styles/templates/subSilver/message_body.html @@ -0,0 +1,20 @@ + + + + + + +
    + + + + + + + + +
    {MESSAGE_TITLE}

    {MESSAGE_TEXT}

    + +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/overall_footer.html b/phpBB/styles/templates/subSilver/overall_footer.html new file mode 100644 index 0000000000..c15e7267fa --- /dev/null +++ b/phpBB/styles/templates/subSilver/overall_footer.html @@ -0,0 +1,16 @@ + +

    {ADMIN_LINK} + +Powered by phpBB {PHPBB_VERSION} © 2002, 2003 phpBB Group
    {TRANSLATION_INFO}{DEBUG_OUTPUT}
    + + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/overall_header.html b/phpBB/styles/templates/subSilver/overall_header.html new file mode 100644 index 0000000000..37b43343ca --- /dev/null +++ b/phpBB/styles/templates/subSilver/overall_header.html @@ -0,0 +1,53 @@ + + + + + +{META} +{SITENAME} :: {PAGE_TITLE} + + + + + + + + + + + + +

    {SITENAME}

    {SITE_DESCRIPTION}
    + + + + + + + + + + + + + + +
     {LAST_VISIT_DATE}{CURRENT_TIME}
    + +
    diff --git a/phpBB/styles/templates/subSilver/posting_attach_body.html b/phpBB/styles/templates/subSilver/posting_attach_body.html new file mode 100644 index 0000000000..243428209a --- /dev/null +++ b/phpBB/styles/templates/subSilver/posting_attach_body.html @@ -0,0 +1,39 @@ + + +
    {L_ADD_ATTACHMENT}
    {L_ADD_ATTACHMENT_EXPLAIN}
    {L_FILENAME}
    {L_FILE_COMMENT}  +
    {L_POSTED_ATTACHMENTS}
    {L_FILENAME}{attach_row.FILENAME}
    {L_FILE_COMMENT}   +   +
    + + + + + + +
    {FORUM_NAME} :: {TOPIC_TITLE}
    {L_MODERATORS}: {MODERATORS}
    + + + + + + + + + + + + + + + + + + + + + +
    {L_POST_REVIEW}
     
    {L_POST_REVIEW_EXPLAIN}
     
    + + + + + + + + + + + + + + + + + + + +
    {L_AUTHOR}{L_MESSAGE}
    {post_postrow.POSTER_NAME} + + + + + + + + + +
    {post_postrow.MINI_POST_IMG}{L_POSTED}: {post_postrow.POST_DATE}    {L_POST_SUBJECT}: {post_postrow.POST_SUBJECT}

    {post_postrow.MESSAGE}
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_POST_A}
    {ERROR}
    {L_DELETE_POST}: [ {L_DELETE_POST_WARN} ]
    {L_USERNAME}:
    {L_ICON}: + + + +
    {L_NONE}
    {L_SUBJECT}:
    {L_MESSAGE_BODY}:
    {L_MESSAGE_BODY_EXPLAIN}

    + + + + + + + + + + + +
    {L_EMOTICONS}
    {emoticon.SMILEY_DESC}
    {L_MORE_EMOTICONS}
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
     {L_FONT_SIZE}: {L_CLOSE_TAGS}
    {L_FONT_COLOR}
    + + + +
    {L_OPTIONS}:
    + + + + + + + + + + + + + + + +
    {HTML_STATUS}
    {BBCODE_STATUS}
    {IMG_STATUS}
    {FLASH_STATUS}
    {SMILIES_STATUS}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_DISABLE_HTML}
    {L_DISABLE_BBCODE}
    {L_DISABLE_SMILIES}
    {L_DISABLE_MAGIC_URL}
    {L_ATTACH_SIG}
    {L_NOTIFY_REPLY}
    {S_TYPE_TOGGLE}
    {L_MOD_OPTIONS}: + + + + + + + + + + + + +
    {L_LOCK_TOPIC}
    {L_LOCK_POST} [{L_LOCK_POST_EXPLAIN}]
    {L_POLL_DELETE}:
    {S_HIDDEN_FIELDS}     
    + + + + + + +
    {S_TIMEZONE}
    + + + + + +
    + + + + +
    + + + + + + + + +
    {L_WHO_IS_ONLINE}
    {LOGGED_IN_USER_LIST}
    + + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/posting_poll_body.html b/phpBB/styles/templates/subSilver/posting_poll_body.html new file mode 100644 index 0000000000..d3073557d5 --- /dev/null +++ b/phpBB/styles/templates/subSilver/posting_poll_body.html @@ -0,0 +1,30 @@ + + + + {L_ADD_POLL} + + + {L_ADD_POLL_EXPLAIN} + + + {L_POLL_QUESTION} + + + + {L_POLL_OPTIONS}
    {L_POLL_OPTIONS_EXPLAIN} + + + + {L_POLL_MAX_OPTIONS}
    {L_POLL_MAX_OPTIONS_EXPLAIN} + + + + {L_POLL_FOR} +  {L_DAYS} {L_POLL_FOR_EXPLAIN} + + + + {L_POLL_DELETE} + + + diff --git a/phpBB/styles/templates/subSilver/posting_preview.html b/phpBB/styles/templates/subSilver/posting_preview.html new file mode 100644 index 0000000000..ef2206449c --- /dev/null +++ b/phpBB/styles/templates/subSilver/posting_preview.html @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + +
    {L_PREVIEW}
    {MINI_POST_IMG}{L_POSTED}: {POST_DATE}     {L_POST_SUBJECT}: {PREVIEW_SUBJECT}

    + + + + + + + +
    {POLL_QUESTION}
    + + + + + + +
     {poll_option.POLL_OPTION_CAPTION}
    + + + +
    {PREVIEW_MESSAGE} + + +
    _________________
    {PREVIEW_SIGNATURE}
    + +
    diff --git a/phpBB/styles/templates/subSilver/posting_smilies.html b/phpBB/styles/templates/subSilver/posting_smilies.html new file mode 100644 index 0000000000..2abb607031 --- /dev/null +++ b/phpBB/styles/templates/subSilver/posting_smilies.html @@ -0,0 +1,35 @@ + + + + + + + + + + +
    + + + + + + +
    {L_EMOTICONS}
    {emoticon.SMILEY_DESC}
    {L_CLOSE_WINDOW}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/posting_topic_review.html b/phpBB/styles/templates/subSilver/posting_topic_review.html new file mode 100644 index 0000000000..25aab8967d --- /dev/null +++ b/phpBB/styles/templates/subSilver/posting_topic_review.html @@ -0,0 +1,133 @@ + + + + + + + + + + +
    {L_TOPIC_REVIEW}
    + + + + + diff --git a/phpBB/styles/templates/subSilver/report_body.html b/phpBB/styles/templates/subSilver/report_body.html new file mode 100644 index 0000000000..dd6d72bf89 --- /dev/null +++ b/phpBB/styles/templates/subSilver/report_body.html @@ -0,0 +1,47 @@ + + +
    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_REPORT_POST}
    {L_REPORT_POST_EXPLAIN}
    {L_REASON}:
    {L_REPORT_NOTIFY}:
    {L_REPORT_NOTIFY_EXPLAIN}
    {L_YES}  {L_NO}
    {L_MORE_INFO}:
    {L_CAN_LEAVE_BLANK}
     
    + + + + + +
    {S_TIMEZONE}
    + + + + + +
    {JUMPBOX}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/search_body.html b/phpBB/styles/templates/subSilver/search_body.html new file mode 100644 index 0000000000..a1fffd1b07 --- /dev/null +++ b/phpBB/styles/templates/subSilver/search_body.html @@ -0,0 +1,60 @@ + + +
    + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_SEARCH_QUERY}
    {L_SEARCH_KEYWORDS}:
    {L_SEARCH_KEYWORDS_EXPLAIN}

    {L_SEARCH_ANY_TERMS}
    {L_SEARCH_ALL_TERMS}
    {L_SEARCH_AUTHOR}:
    {L_SEARCH_AUTHOR_EXPLAIN}
    {L_SEARCH_OPTIONS}
    {L_FORUM}: {L_SEARCH_PREVIOUS}: 
    {L_SEARCH_MESSAGE_TITLE}
    {L_SEARCH_MESSAGE_ONLY}
    {L_CATEGORY}: {L_SORT_BY}: 
    {L_SORT_ASCENDING}
    {L_SORT_DESCENDING}
     
    {L_DISPLAY_RESULTS}: {L_POSTS}{L_TOPICS}{L_RETURN_FIRST} {L_CHARACTERS}
    {S_HIDDEN_FIELDS}
    + + + + + +
    {S_TIMEZONE}
    + + + + + +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/search_results_posts.html b/phpBB/styles/templates/subSilver/search_results_posts.html new file mode 100644 index 0000000000..dade2f2d56 --- /dev/null +++ b/phpBB/styles/templates/subSilver/search_results_posts.html @@ -0,0 +1,54 @@ + + + + + + +
    {L_SEARCH_MATCHES}
    + + + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + +
    {L_AUTHOR}{L_MESSAGE}
    {L_TOPIC}: {searchresults.TOPIC_TITLE}
    {searchresults.POSTER_NAME}
    +
    + {L_REPLIES}: {searchresults.TOPIC_REPLIES}
    + {L_VIEWS}: {searchresults.TOPIC_VIEWS}

    +
    {searchresults.MINI_POST_IMG}{L_FORUM}: {searchresults.FORUM_NAME}   {L_POSTED}: {searchresults.POST_DATE}   {L_SUBJECT}: {searchresults.POST_SUBJECT}
    {searchresults.MESSAGE}
     
    + + + + + + +
    {PAGE_NUMBER}{PAGINATION}
    {S_TIMEZONE}
    + + + + + +
    {JUMPBOX}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/search_results_topics.html b/phpBB/styles/templates/subSilver/search_results_topics.html new file mode 100644 index 0000000000..61a1d5a186 --- /dev/null +++ b/phpBB/styles/templates/subSilver/search_results_topics.html @@ -0,0 +1,54 @@ + + + + + + +
    {L_SEARCH_MATCHES}
    + + + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + +
      {L_FORUM}  {L_TOPICS}  {L_AUTHOR}  {L_REPLIES}  {L_VIEWS}  {L_LASTPOST} 
    {searchresults.L_TOPIC_FOLDER_ALT}{searchresults.FORUM_NAME}{searchresults.NEWEST_POST_IMG}{searchresults.TOPIC_TYPE}{searchresults.TOPIC_TITLE}
    {searchresults.GOTO_PAGE}
    {searchresults.TOPIC_AUTHOR}{searchresults.REPLIES}{searchresults.VIEWS}{searchresults.LAST_POST_TIME}
    {searchresults.LAST_POST_AUTHOR} {searchresults.LAST_POST_IMG}
     
    + + + + + + +
    {PAGE_NUMBER}{PAGINATION}
    {S_TIMEZONE}
    + + + + + +
    {JUMPBOX}
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/searchbox.html b/phpBB/styles/templates/subSilver/searchbox.html new file mode 100644 index 0000000000..4402836502 --- /dev/null +++ b/phpBB/styles/templates/subSilver/searchbox.html @@ -0,0 +1,6 @@ + +
    + + + +
    {L_SEARCH_FOR}:
    diff --git a/phpBB/styles/templates/subSilver/simple_footer.html b/phpBB/styles/templates/subSilver/simple_footer.html new file mode 100644 index 0000000000..4b7348134b --- /dev/null +++ b/phpBB/styles/templates/subSilver/simple_footer.html @@ -0,0 +1,19 @@ + +
    + + + + + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/simple_header.html b/phpBB/styles/templates/subSilver/simple_header.html new file mode 100644 index 0000000000..368b7232c3 --- /dev/null +++ b/phpBB/styles/templates/subSilver/simple_header.html @@ -0,0 +1,23 @@ + + + + + + + +{META} + + +{SITENAME} :: {PAGE_TITLE} + + + + + diff --git a/phpBB/styles/templates/subSilver/ucp_agreement.html b/phpBB/styles/templates/subSilver/ucp_agreement.html new file mode 100644 index 0000000000..bddda95fe0 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_agreement.html @@ -0,0 +1,33 @@ + + + + +
    + + + +
    + + + + + + + + +
    {SITENAME} - {REGISTRATION}
    + + + + + + + +

    {L_COPPA_BIRTHDAY}

    {L_COPPA_NO} :: {L_COPPA_YES}


    {L_AGREEMENT}

    +
    +

    + +
    +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/ucp_footer.html b/phpBB/styles/templates/subSilver/ucp_footer.html new file mode 100644 index 0000000000..a475c217d3 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_footer.html @@ -0,0 +1,25 @@ + +
    + + + + + + +
    {L_MARK_ALL} :: {L_UNMARK_ALL}
    + + + + + + + + +
    {S_TIMEZONE}

    + + + + + + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/ucp_header.html b/phpBB/styles/templates/subSilver/ucp_header.html new file mode 100644 index 0000000000..86396e64c1 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_header.html @@ -0,0 +1,80 @@ + + + + + + +
    + + + +
    + + + +
    + + + + + + + + + + + +
    {L_OPTIONS}
    {ucp_section.L_TITLE} + + + + + + + +
    + +
    {ucp_section.L_TITLE} + +
    + + + + + +
    diff --git a/phpBB/styles/templates/subSilver/ucp_main.html b/phpBB/styles/templates/subSilver/ucp_main.html new file mode 100644 index 0000000000..5e6d9cb636 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_main.html @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + {L_UCP}
    {L_UCP_WELCOME}
    {L_IMPORTANT_NEWS}
    {topicrow.TOPIC_FOLDER_IMG}{topicrow.NEWEST_POST_IMG}{topicrow.ATTACH_ICON_IMG}{topicrow.TOPIC_TYPE}{topicrow.TOPIC_TITLE}
    {topicrow.GOTO_PAGE}
    {topicrow.LAST_POST_TIME}
    {topicrow.LAST_POST_AUTHOR} {topicrow.LAST_POST_IMG}
    {L_YOUR_DETAILS}
    + + + + + + + + +
    {L_JOINED}: {JOINED}
    {L_TOTAL_POSTS}: {POSTS}
    [{POSTS_PCT} / {POSTS_DAY}]
    {L_SEARCH_USER_POSTS}
    {POSTS}
     
    {L_WATCHED_FORUMS}
    {forumrow.FORUM_FOLDER_IMG}{forumrow.FORUM_NAME}{forumrow.LAST_POST_TIME}
    {forumrow.LAST_POST_AUTHOR}{forumrow.LAST_POST_AUTHOR} {forumrow.LAST_POST_IMG}{L_NO_POSTS}
    {L_NO_WATCHED_FORUMS}
    {L_WATCHED_TOPICS}
    {topicrow.TOPIC_FOLDER_IMG}{topicrow.NEWEST_POST_IMG}{topicrow.ATTACH_ICON_IMG}{topicrow.TOPIC_TYPE}{topicrow.TOPIC_TITLE}
    {topicrow.GOTO_PAGE}
    {topicrow.LAST_POST_TIME}
    {topicrow.LAST_POST_AUTHOR} {topicrow.LAST_POST_IMG}
    {L_NO_WATCHED_TOPICS}
     
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/ucp_pm_body.html b/phpBB/styles/templates/subSilver/ucp_pm_body.html new file mode 100644 index 0000000000..4644bdb768 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_pm_body.html @@ -0,0 +1,120 @@ + + + + + + + + +
    + + + + + + + + + + + +
    {INBOX_IMG}{INBOX}  {SENTBOX_IMG}{SENTBOX}  {OUTBOX_IMG}{OUTBOX}  {SAVEBOX_IMG}{SAVEBOX}  
    +
    + + + + + + + + + + + + + +
    {BOX_SIZE_STATUS}
    + + + + +
    {INBOX_LIMIT_PERCENT}
    +
    0%50%100%
    + +
    + +
    + + + + + + + + +
    {POST_PM_IMG} {L_INDEX}{L_DISPLAY_MESSAGES}: + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
     {L_FLAG}  {L_SUBJECT}  {L_FROM_OR_TO}  {L_DATE}  {L_MARK} 
    {listrow.L_PRIVMSG_FOLDER_ALT} {listrow.SUBJECT} {listrow.FROM}{listrow.DATE} + +
    {L_NO_MESSAGES}
    {S_HIDDEN_FIELDS} + +   + +   + +
    + + + + + + + +
    {POST_PM_IMG}{PAGE_NUMBER}{L_MARK_ALL} :: {L_UNMARK_ALL}
    {PAGINATION}
    {S_TIMEZONE}
    + + + + + + +
    {JUMPBOX}
    diff --git a/phpBB/styles/templates/subSilver/ucp_pm_popup.html b/phpBB/styles/templates/subSilver/ucp_pm_popup.html new file mode 100644 index 0000000000..e48205b338 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_pm_popup.html @@ -0,0 +1,22 @@ + + + + + + + +
    + + + + +

    {L_MESSAGE}

    {L_CLOSE_WINDOW}

    +
    diff --git a/phpBB/styles/templates/subSilver/ucp_pm_preview.html b/phpBB/styles/templates/subSilver/ucp_pm_preview.html new file mode 100644 index 0000000000..ba2ed932fd --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_pm_preview.html @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_PREVIEW}
    {L_FROM}:{MESSAGE_FROM}
    {L_TO}:{MESSAGE_TO}
    {L_POSTED}:{POST_DATE}
    {L_SUBJECT}:{POST_SUBJECT}
    {MESSAGE}
    + +
    diff --git a/phpBB/styles/templates/subSilver/ucp_pm_read.html b/phpBB/styles/templates/subSilver/ucp_pm_read.html new file mode 100644 index 0000000000..e38019f738 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_pm_read.html @@ -0,0 +1,86 @@ + + + + + + + + + + + + +
    {INBOX_IMG}{INBOX}  {SENTBOX_IMG}{SENTBOX}  {OUTBOX_IMG}{OUTBOX}  {SAVEBOX_IMG}{SAVEBOX}
    + +
    + +
    + + + + + +
    {REPLY_PM_IMG} {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {BOX_NAME} :: {L_MESSAGE}
    {L_FROM}:{MESSAGE_FROM}
    {L_TO}:{MESSAGE_TO}
    {L_POSTED}:{POST_DATE}
    {L_SUBJECT}:{POST_SUBJECT} {QUOTE_PM_IMG} {EDIT_PM_IMG}
    {MESSAGE}
    + + + + +
    {PROFILE_IMG} {PM_IMG} {EMAIL_IMG} + {WWW_IMG} {AIM_IMG} {YIM_IMG} {MSN_IMG} 
    +
    {S_HIDDEN_FIELDS} + +   + +
    + + + + + +
    {REPLY_PM_IMG}{S_TIMEZONE}
    +
    + + + + + +
    {JUMPBOX}
    diff --git a/phpBB/styles/templates/subSilver/ucp_prefs.html b/phpBB/styles/templates/subSilver/ucp_prefs.html new file mode 100644 index 0000000000..6b75fd3395 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_prefs.html @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_TITLE}
    {ERROR}
    {L_SHOW_EMAIL}:{L_YES}   {L_NO}
    {L_ADMIN_EMAIL}:{L_YES}   {L_NO}
    {L_HIDE_ONLINE}:{L_YES}   {L_NO}
    {L_NOTIFY_ON_PM}:{L_YES}   {L_NO}
    {L_POPUP_ON_PM}:{L_YES}   {L_NO}
    {L_BOARD_LANGUAGE}:
    {L_BOARD_STYLE}:
    {L_BOARD_TIMEZONE}:
    {L_BOARD_DST}: {L_YES}   {L_NO}
    {L_BOARD_DATE_FORMAT}:
    {L_BOARD_DATE_FORMAT_EXPLAIN}
    {L_VIEW_IMAGES}:{L_YES}   {L_NO}
    {L_VIEW_FLASH}:{L_YES}   {L_NO}
    {L_VIEW_SMILIES}:{L_YES}   {L_NO}
    {L_VIEW_SIGS}:{L_YES}   {L_NO}
    {L_VIEW_AVATARS}:{L_YES}   {L_NO}
    {L_DISABLE_CENSORS}:{L_YES}   {L_NO}
    {L_MINIMUM_KARMA}:
    {L_MINIMUM_KARMA_EXPLAIN}
    {L_VIEW_TOPICS_DAYS}:{S_SELECT_SORT_DAYS}
    {L_VIEW_TOPICS_KEY}:{S_SELECT_SORT_KEY}
    {L_VIEW_TOPICS_DIR}:{S_SELECT_SORT_DIR}
    {L_DEFAULT_BBCODE}:{L_YES}   {L_NO}
    {L_DEFAULT_HTML}:{L_YES}   {L_NO}
    {L_DEFAULT_SMILE}:{L_YES}   {L_NO}
    {L_DEFAULT_ADD_SIG}:{L_YES}   {L_NO}
    {L_DEFAULT_NOTIFY}:{L_YES}   {L_NO}
    {S_HIDDEN_FIELDS}  
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/ucp_profile.html b/phpBB/styles/templates/subSilver/ucp_profile.html new file mode 100644 index 0000000000..a447f7f710 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_profile.html @@ -0,0 +1,246 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_TITLE}
    {ERROR}
    {L_USERNAME}:
    {L_USERNAME_EXPLAIN}
    {USERNAME}
    {L_EMAIL_ADDRESS}: {EMAIL}
    {L_CONFIRM_EMAIL}:
    {L_CONFIRM_EMAIL_EXPLAIN}
    {L_CHANGE_PASSWORD}:
    {L_CHANGE_PASSWORD_EXPLAIN}
    {L_CONFIRM_PASSWORD}:
    {L_CONFIRM_PASSWORD_EXPLAIN}
    {L_CURRENT_PASSWORD}:
    {L_CURRENT_PASSWORD_EXPLAIN}
    {L_PROFILE_INFO_NOTICE}
    {L_UCP_ICQ}:
    {L_UCP_AIM}:
    {L_UCP_MSNM}:
    {L_UCP_YIM}:
    {L_UCP_JABBER}:
    {L_WEBSITE}:
    {L_LOCATION}:
    {L_OCCUPATION}:
    {L_INTERESTS}:
    {L_BIRTHDAY}:
    {L_BIRTHDAY_EXPLAIN}
    Day: Month: Year:
    {L_SIGNATURE}:
    {L_SIGNATURE_EXPLAIN}
    + + + + + + + + + + + + + + + + + + + + +
    + + + + +
     {L_FONT_SIZE}: {L_CLOSE_TAGS}
    {L_OPTIONS}
    + + + + + + + + + + + + + + + +
    {HTML_STATUS}
    {BBCODE_STATUS}
    {IMG_STATUS}
    {FLASH_STATUS}
    {SMILIES_STATUS}
    + + + + + + + + + + + + + + + + + + + + + + +
    {L_DISABLE_HTML}
    {L_DISABLE_BBCODE}
    {L_DISABLE_SMILIES}
    {L_DISABLE_MAGIC_URL}
    {L_SIGNATURE_PREVIEW}
    + + + +
    {SIGNATURE_PREVIEW}
    {L_CURRENT_IMAGE}:
    {L_AVATAR_EXPLAIN}

    {AVATAR}

     {L_DELETE_AVATAR}
    {L_UPLOAD_AVATAR_FILE}:
    {L_UPLOAD_AVATAR_URL}:
    {L_UPLOAD_AVATAR_URL_EXPLAIN}
    {L_LINK_REMOTE_AVATAR}:
    {L_LINK_REMOTE_AVATAR_EXPLAIN}
    {L_LINK_REMOTE_SIZE}:
    {L_LINK_REMOTE_SIZE_EXPLAIN}
    px X px
    {L_AVATAR_GALLERY}
    {L_AVATAR_CATEGORY}:   {L_AVATAR_PAGE}:  
    + + + + + + + + + + + + + + +
    {avatar_row.avatar_column.AVATAR_NAME}
    {S_HIDDEN_FIELDS}   
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/ucp_register.html b/phpBB/styles/templates/subSilver/ucp_register.html new file mode 100644 index 0000000000..fa9fddd314 --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_register.html @@ -0,0 +1,87 @@ + + + + +
    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_REGISTRATION}
    {ERROR}
    {L_ITEMS_REQUIRED}
    {L_USERNAME}:
    {L_USERNAME_EXPLAIN}
    {L_EMAIL_ADDRESS}:
    {L_CONFIRM_EMAIL}:
    {L_NEW_PASSWORD}:
    {L_NEW_PASSWORD_EXPLAIN}
    {L_CONFIRM_PASSWORD}:
    {L_LANGUAGE}:
    {L_TIMEZONE}:
    {L_CONFIRMATION}
    {L_CONFIRM_EXPLAIN}
    {CONFIRM_IMG}
    {L_CONFIRM_CODE}:
    {L_CONFIRM_CODE_EXPLAIN}
    {L_COPPA_COMPLIANCE}
    {L_COPPA_EXPLAIN}
    {S_HIDDEN_FIELDS}  
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/ucp_remind.html b/phpBB/styles/templates/subSilver/ucp_remind.html new file mode 100644 index 0000000000..d6ae7491ed --- /dev/null +++ b/phpBB/styles/templates/subSilver/ucp_remind.html @@ -0,0 +1,35 @@ + +
    + + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + +
    {L_SEND_PASSWORD}
    {L_ITEMS_REQUIRED}
    {L_USERNAME}: * + +
    {L_EMAIL_ADDRESS}: * + +
    {S_HIDDEN_FIELDS} + +    + +
    +
    diff --git a/phpBB/styles/templates/subSilver/viewforum_body.html b/phpBB/styles/templates/subSilver/viewforum_body.html new file mode 100644 index 0000000000..8b7e5fef69 --- /dev/null +++ b/phpBB/styles/templates/subSilver/viewforum_body.html @@ -0,0 +1,187 @@ + + + + + + + + + + +
    {FORUM_NAME}
    {L_MODERATORS}: {MODERATORS}
    {MOD_CP}
    + + + + + +
     [ {TOTAL_TOPICS} ] {PAGINATION}
    + + + + + + + +
    {POST_IMG}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
     {L_TOPICS}  {L_TOPICS}  {L_AUTHOR}  {L_REPLIES}  {L_VIEWS}  {L_LAST_POST} 
    {L_ANNOUNCEMENTS}
    {L_TOPICS}
    {topicrow.TOPIC_FOLDER_IMG}{topicrow.TOPIC_ICON_IMG} + + + + + + +
    + {UNAPPROVED_IMG}  + {REPORTED_IMG}  + {topicrow.NEWEST_POST_IMG}{topicrow.ATTACH_ICON_IMG}{topicrow.TOPIC_TITLE}
    {topicrow.GOTO_PAGE}
    {topicrow.TOPIC_AUTHOR}{topicrow.REPLIES}{topicrow.VIEWS}{topicrow.LAST_POST_TIME}
    {topicrow.LAST_POST_AUTHOR} {topicrow.LAST_POST_IMG}
    {L_NO_TOPICS}{L_NO_TOPICS}
    {L_DISPLAY_TOPICS}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
    + + + + + + + + + + +
    {POST_IMG}{S_TIMEZONE}
    + + + + + +
     [ {TOTAL_TOPICS} ]
    + + +
    + + + + + + + + +
    {L_WHO_IS_ONLINE}
    {LOGGED_IN_USER_LIST}
    + + +
    + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {FOLDER_NEW_IMG}{L_NEW_POSTS}  {FOLDER_IMG}{L_NO_NEW_POSTS}  {FOLDER_ANNOUNCE_IMG}{L_POST_ANNOUNCEMENT}
    {FOLDER_HOT_NEW_IMG}{L_NEW_POSTS_HOT}  {FOLDER_HOT_IMG}{L_NO_NEW_POSTS_HOT}  {FOLDER_STICKY_IMG}{L_POST_STICKY}
    {FOLDER_LOCKED_NEW_IMG}{L_NEW_POSTS_LOCKED}  {FOLDER_LOCKED_IMG}{L_NO_NEW_POSTS_LOCKED}
    {rules.RULE}
    + +
    + + + + + + + + +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/viewforum_subforum.html b/phpBB/styles/templates/subSilver/viewforum_subforum.html new file mode 100644 index 0000000000..4e1d99ceb7 --- /dev/null +++ b/phpBB/styles/templates/subSilver/viewforum_subforum.html @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
     {L_FORUM}  {L_TOPICS}  {L_POSTS}  {L_LAST_POST} 
    {forumrow.FORUM_NAME} 
    {forumrow.FORUM_FOLDER_IMG}{forumrow.FORUM_NAME}
    + + + + +
    {forumrow.FORUM_DESC}
    {L_REDIRECTS}: {forumrow.CLICKS}
    {forumrow.FORUM_FOLDER_IMG}{forumrow.FORUM_NAME}
    + + + + +
    {forumrow.FORUM_DESC}
    {forumrow.L_MODERATOR_STR}: {forumrow.MODERATORS}

    {forumrow.L_SUBFORUM_STR} {forumrow.SUBFORUMS}
    {forumrow.TOPICS}{forumrow.POSTS}{forumrow.LAST_POST_TIME}
    {forumrow.LAST_POSTER}{forumrow.LAST_POSTER} {forumrow.LAST_POST_IMG}{L_NO_POSTS}
    + +
    diff --git a/phpBB/styles/templates/subSilver/viewonline_body.html b/phpBB/styles/templates/subSilver/viewonline_body.html new file mode 100644 index 0000000000..e8870e27a2 --- /dev/null +++ b/phpBB/styles/templates/subSilver/viewonline_body.html @@ -0,0 +1,65 @@ + + + + + + +
    {L_INDEX}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    {L_USERNAME}{L_LAST_UPDATED}{L_FORUM_LOCATION}
    {TOTAL_REGISTERED_USERS_ONLINE}
     {reg_user_row.USERNAME}  {reg_user_row.LASTUPDATE}  {reg_user_row.FORUM_LOCATION} 
    {L_LEGEND} :: {LEGEND}
    {TOTAL_GUEST_USERS_ONLINE}
     {guest_user_row.USERNAME}  {guest_user_row.LASTUPDATE}  {guest_user_row.FORUM_LOCATION} 
    + + + + + + +
    {L_ONLINE_EXPLAIN}{S_TIMEZONE}
    + +
    + + + + + +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/viewtopic_attach_body.html b/phpBB/styles/templates/subSilver/viewtopic_attach_body.html new file mode 100644 index 0000000000..505c0f393f --- /dev/null +++ b/phpBB/styles/templates/subSilver/viewtopic_attach_body.html @@ -0,0 +1,70 @@ +

    + +
    + + [{postrow.attachment.L_DENIED}]

    + + + {postrow.attachment.COMMENT}
    + + + + + + + + + + + + +
    {postrow.attachment.DOWNLOAD_NAME} - {postrow.attachment.L_DOWNLOADED_VIEWED} {postrow.attachment.L_DOWNLOAD_COUNT}

    + + {postrow.attachment.COMMENT}
    + + + + + + + + + +
    + + + + + + + +
    {postrow.attachment.DOWNLOAD_NAME} - {postrow.attachment.L_DOWNLOADED_VIEWED} {postrow.attachment.L_DOWNLOAD_COUNT}

    + + {postrow.attachment.COMMENT}
    + {postrow.attachment.DOWNLOAD_NAME}
    +
    {postrow.attachment.DOWNLOAD_NAME} - {postrow.attachment.L_DOWNLOADED_VIEWED} {postrow.attachment.L_DOWNLOAD_COUNT}

    + + {postrow.attachment.COMMENT}
    + {postrow.attachment.DOWNLOAD_NAME}
    +
    {postrow.attachment.DOWNLOAD_NAME} - {postrow.attachment.L_DOWNLOADED_VIEWED} {postrow.attachment.L_DOWNLOAD_COUNT}

    + + {postrow.attachment.COMMENT}
    + {postrow.attachment.UPLOAD_IMG} + {postrow.attachment.DOWNLOAD_NAME} - {postrow.attachment.FILESIZE} {postrow.attachment.SIZE_VAR}
    + {postrow.attachment.L_DOWNLOADED_VIEWED} {postrow.attachment.L_DOWNLOAD_COUNT}

    + + diff --git a/phpBB/styles/templates/subSilver/viewtopic_body.html b/phpBB/styles/templates/subSilver/viewtopic_body.html new file mode 100644 index 0000000000..21f78a0985 --- /dev/null +++ b/phpBB/styles/templates/subSilver/viewtopic_body.html @@ -0,0 +1,275 @@ + + + + + + + + + + +
    {TOPIC_TITLE}
    {L_MODERATORS}: {MODERATORS}
    {MCP}
    + + + + + +
     [ {TOTAL_POSTS} ]
    + + + + + + +
    {POST_IMG} {REPLY_IMG}
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +

    + + + + + + + + + + + + + + + + + + + + +
    {POLL_QUESTION}
    {L_POLL_LENGTH}
    + + + + + + + + + + + + + + + + +
    checked="checked"/>checked="checked"/> {poll_option.POLL_OPTION_CAPTION} + + + + + +
    {POLL_LEFT_CAP_IMG}{poll_option.POLL_OPTION_IMG}{POLL_RIGHT_CAP_IMG}
     {poll_option.POLL_OPTION_PERCENT} [ {poll_option.POLL_OPTION_RESULT} ]x
    {L_MAX_VOTES}

    {L_TOTAL_VOTES} : {TOTAL_VOTES}
    {L_VIEW_RESULTS}
    {S_HIDDEN_FIELDS}
    {L_AUTHOR}{L_MESSAGE}
    {postrow.L_IGNORE_POST} + + + + + + + + + + + + + + + + + + + + + + + +
    {postrow.KARMA_IMG}
    {postrow.POSTER_RANK}
    {postrow.RANK_IMAGE}
    {postrow.POSTER_AVATAR}
    + + +
    {L_JOINED}: {postrow.POSTER_JOINED} +
    {L_POSTS}: {postrow.POSTER_POSTS} +
    {L_LOCATION}: {postrow.POSTER_FROM} +
    + +
    + +
    + + + + + + +
    {postrow.POST_ICON_IMG} {L_POST_SUBJECT}: {postrow.POST_SUBJECT} {QUOTE_IMG} {EDIT_IMG} {DELETE_IMG} {IP_IMG}
    + + + + + + +
    + + + +
    {postrow.MESSAGE} + +

    {L_DOWNLOAD_NOTICE}
    +
    _________________
    {postrow.SIGNATURE}
    + {postrow.EDITED_MESSAGE}
    + + + + + + + + + + + + + + + + + + + + + +
    {UNAPPROVED_IMG} {L_POST_NOT_APPROVED} {REPORTED_IMG} {L_POST_REPORTED} {L_RATE}: {L_RATE_GOOD} / {L_RATE_BAD} {postrow.MINI_POST_IMG}{L_POSTED}: {postrow.POST_DATE} {REPORT_IMG}
    + + + +
    {PROFILE_IMG} {PM_IMG} {EMAIL_IMG} {WWW_IMG} {AIM_IMG} {YIM_IMG} {MSN_IMG} {JABBER_IMG}
    {L_DISPLAY_POSTS}: {S_SELECT_SORT_DAYS} {L_SORT_BY} {S_SELECT_SORT_KEY} {S_SELECT_SORT_DIR} 
    + + + + + + + + + + +
    {POST_IMG} {REPLY_IMG}{S_TIMEZONE}
    + + + + + +
     [ {TOTAL_POSTS} ]
    + + +
    + + + + + + + + +
    {L_WHO_IS_ONLINE}
    {LOGGED_IN_USER_LIST}
    + + +
    + + + + + + +
    {L_QUICK_MOD}: {S_TOPIC_MOD}
    {rules.RULE}
    + +
    + + + + + + +
    + + \ No newline at end of file diff --git a/phpBB/styles/templates/subSilver/viewtopic_print.html b/phpBB/styles/templates/subSilver/viewtopic_print.html new file mode 100644 index 0000000000..ffbfb997ec --- /dev/null +++ b/phpBB/styles/templates/subSilver/viewtopic_print.html @@ -0,0 +1,111 @@ + + + + + +{SITENAME} :: {PAGE_TITLE} + + + + + + + + + + + + + + + +
    {SITENAME}
    {U_FORUM}

    {TOPIC_TITLE}
    {U_TOPIC}
    {PAGE_NUMBER}
    + + + +
    + + + + + + + + + + + + + +
    {L_AUTHOR}: {postrow.POSTER_NAME} [ {postrow.POST_DATE} ]
    {L_POST_SUBJECT}: {postrow.POST_SUBJECT}

    {postrow.MESSAGE}
    + + +
    + + + + + + + + + +
    {PAGE_NUMBER}{S_TIMEZONE}
    Powered by phpBB {PHPBB_VERSION} © 2002 phpBB Group
    http://www.phpbb.com/
    + + + \ No newline at end of file diff --git a/phpBB/styles/themes/subSilver/subSilver.css b/phpBB/styles/themes/subSilver/subSilver.css new file mode 100644 index 0000000000..e3834363e1 --- /dev/null +++ b/phpBB/styles/themes/subSilver/subSilver.css @@ -0,0 +1,88 @@ +/* + + The original subSilver Theme for phpBB version 2+ + Created by subBlue design [ http://www.subBlue.com ] + Copyright 2000, 2003 phpBB Group + + $Id$ + +*/ + + +/* + TEXT +*/ +body { scrollbar-face-color: #DEE3E7; scrollbar-highlight-color: #FFFFFF; scrollbar-shadow-color: #DEE3E7; scrollbar-3dlight-color: #D1D7DC; scrollbar-arrow-color: #006699; scrollbar-track-color: #EFEFEF; scrollbar-darkshadow-color: #98AAB1; background-color: white; background-image: url('./../subSilver/images/background.gif'); background-repeat: repeat-x; font-family: Verdana, Helvetica, sans-serif; margin: 0px; } +h1 { color: black; font-family: 'Trebuchet MS', Verdana, sans-serif; font-weight: bold; font-size: 140%; text-decoration: none; margin: 0px; } +h2 { font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 120%; text-decoration:none; line-height: 120%; } +h3 { font-size: 120%; font-weight: bold; font-family: Verdana, serif; line-height: 120%; } +.nav { color: black; font-size: 60%; font-weight: bold; } +.helpline { background-color: #DEE3E7; border-style: none; } +.forumlink { color: #006699; font-size: 80%; font-weight: bold; } +.cattitle { font-size: 80%; font-weight: bold; } +.topictitle { font-size: 65%; font-weight: bold; } +.topicauthor { font-size: 70%; } +.topicdetails { font-size: 65%; } +.postauthor { color: #000000; font-size: 70%; } +.postdetails { color: #000000; font-size: 60%; } +.postbody { font-size: 75%; line-height: 140%; } +.posthilit { background-color: yellow; } +.gen { font-size: 80%; } +.genmed { font-size: 70%; } +.gensmall { font-size: 60%; } +.copyright { color: #444; font-weight: normal; font-size: 60%; font-family: Verdana, Arial, Helvetica, sans-serif;} +.mainmenu { color: black; font-size: 70%; } +.titles { color: black; font-family: Arial, Helvetica, sans-serif; font-weight: bold; font-size: 130%; text-decoration: none; } + + +/* + TABLE +*/ +th { color: #FFA34F; font-size: 70%; font-weight: bold; background-color: #006699; background-image: url('./../subSilver/images/cellpic3.gif'); } +.tablebg { background-color: #A9B8C2; } +.catdiv { background-color: white; background-image: url('./../subSilver/images/cellpic2.jpg'); background-repeat: repeat-y; } +.cat { background-color: #C7D0D7; background-image: url('./../subSilver/images/cellpic1.gif'); } +.row1 { background-color: #ECECEC; } +.row2 { background-color: #DCE1E5; } +.row3 { background-color: #C7CFD7; } +.spacer { background-color: #D1D7DC; } +hr { background-color: #D1D7DC; color: #D1D7DC; height: 1px; border-width: 0px; } + + +/* + ANCHOR +*/ +a:link { color: #005784; text-decoration: none; } +a:active { color: #005784; text-decoration: none; } +a:visited { color: #005784; text-decoration: none; } +a:hover { color: #D46400; text-decoration: underline; } +a.topictitle:visited { color: #5493B4; text-decoration: none; } +a.th:link, { color: #FFA34F; text-decoration: none; } +a.th:active { color: #FFA34F; text-decoration: none; } +a.th:visited { color: #FFA34F; text-decoration: none; } +a.th:hover { color: #FFA34F; text-decoration: underline; } + + +/* + FORM +*/ +input { color: black; font-family: Verdana, serif; font-size: 70%; font-weight: normal;} +textarea { color: black; font-family: Verdana, serif; font-size: 70%; font-weight: normal; border-color: black; border-style: solid; border-width: 1px; } +select { color: black; background-color: white; font-family: Verdana, serif; font-size: 70%; font-weight: normal; border-color: black; border-style: solid; border-width: 1px; } +.post { background-color: white; border-style: solid; border-width: 1px; } +.btnbbcode { color: black; font-weight: normal; font-size: 70%; font-family: Verdana, Helvetica, sans-serif; background-color: #EFEFEF; border-style: solid; border-width: 1px; } +.btnmain { font-weight: bold; background-color: #FAFAFA; border-style: solid; border-width: 1px; } +.btnlite { font-weight: normal; background-color: #FAFAFA; border-style: solid; border-width: 1px; } + + +/* + BBCODE +*/ +.quote { color: #444; font-weight: normal; font-size: 70%; font-family: Verdana, sans-serif; border-color: #D1D7DC; border-width: 1px; border-style: solid; background-color: #FAFAFA; } +.code { color: #006600; font-weight: normal; font-size: 75%; font-family: 'Courier New', monospace; border-color: #D1D7DC; border-width: 1px; border-style: solid; background-color: #FAFAFA; } +.syntaxbg { color: #FFFFFF; } +.syntaxcomment { color: #FF8000; } +.syntaxdefault { color: #0000BB; } +.syntaxhtml { color: #000000; } +.syntaxkeyword { color: #007700; } +.syntaxstring { color: #DD0000; }