System messages
PHP | HTMLThis is a list of system messages available in the MediaWiki namespace.
| Name | Default text |
|---|---|
| Current text | |
|
1movedto2 Talk | [[$1]] moved to [[$2]] |
|
1movedto2_redir Talk | [[$1]] moved to [[$2]] over redirect |
|
AdSidebar Talk | <AdSidebar> |
| <div id="namecom-ad" style="background: url(http://images.aboutus.org/images/a/ad/Name.com_bg.png) no-repeat top left; position:relative; margin:1em 5px; height:200px; width:200px;"><a style="position:absolute; top:110px; left:35px; font-weight:bold;" href="http://aboutus.org/Name.com" title="Name.com wiki page at AboutUs.org">name.com wiki page</a><br /><a style="position:absolute; top:136px; left:35px; font-weight:bold;" href="http://name.com/" title="Go directly to Name.com">visit the website</a></div> | |
|
AdSidebarNonAdult Talk | <AdSidebarNonAdult> |
| <div class="portlet" > <div class="pBody"> <span style="font-size:1.2em; color:#35727a; line-height:2em; margin-top:.5em; display:block;">Sponsored Links</span> <script type="text/javascript"><!-- google_ad_client = "pub-6047099707314605"; //200x90, created 1/2/08 google_ad_slot = "1920341975"; google_ad_width = 200; google_ad_height = 90; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <script type="text/javascript"><!-- google_ad_client = "pub-6047099707314605"; //160x600, created 1/2/08 google_ad_slot = "4763747567"; google_ad_width = 160; google_ad_height = 600; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> </div> | |
|
AdSidebarPossiblyAdult Talk | <AdSidebarPossiblyAdult> |
| <!-- Begin: AdBrite --> <style type="text/css"> .adHeadline {font: bold 10pt Arial; text-decoration: underline; color: #0000FF;} .adText {font: normal 10pt Arial; text-decoration: none; color: #000000;} </style> <script type="text/javascript" src="http://ads.adbrite.com/mb/text_group.php?sid=291910&br=1"> </script> <div><a class="adHeadline" target="_top" href="http://www.adbrite.com/mb/commerce/purchase_form.php?opid=291910&afsid=1">Your Ad Here</a></div> <!-- End: AdBrite --> | |
|
AuJavascript Talk | <AuJavascript> |
| /* Test if an element has a certain class ************************************** * * Description: Uses regular expressions and caching for better performance. * Maintainers: [[User:Mike Dillon]], [[User:R. Koot]], [[User:SG]] */ var hasClass = (function () { var reCache = {}; return function (element, className) { return (reCache[className] ? reCache[className] : (reCache[className] = new RegExp("(?:\\s|^)" + className + "(?:\\s|$)"))).test(element.className); }; })(); /** Internet Explorer bug fix ************************************************** * * Description: UNDOCUMENTED * Maintainers: [[User:Tom-]]? */ if (window.showModalDialog && document.compatMode && document.compatMode == "CSS1Compat") { var oldWidth; var docEl = document.documentElement; function fixIEScroll() { if (!oldWidth || docEl.clientWidth > oldWidth) doFixIEScroll(); else setTimeout(doFixIEScroll, 1); oldWidth = docEl.clientWidth; } function doFixIEScroll() { docEl.style.overflowX = (docEl.scrollWidth - docEl.clientWidth < 4) ? "hidden" : ""; } document.attachEvent("onreadystatechange", fixIEScroll); attachEvent("onresize", fixIEScroll); } /** Collapsible tables ********************************************************* * * Description: Allows tables to be collapsed, showing only the header. See * http://en.wikipedia.org/wiki/WP:NAVFRAME * Maintainers: [[User:R. Koot]] */ var autoCollapse = 2; var collapseCaption = "hide"; var expandCaption = "show"; function collapseTable( tableIndex ) { var Button = document.getElementById( "collapseButton" + tableIndex ); var Table = document.getElementById( "collapsibleTable" + tableIndex ); if ( !Table || !Button ) { return false; } var Rows = Table.getElementsByTagName( "tr" ); if ( Button.firstChild.data == collapseCaption ) { for ( var i = 1; i < Rows.length; i++ ) { Rows[i].style.display = "none"; } Button.firstChild.data = expandCaption; } else { for ( var i = 1; i < Rows.length; i++ ) { Rows[i].style.display = Rows[0].style.display; } Button.firstChild.data = collapseCaption; } } function createCollapseButtons() { var tableIndex = 0; var NavigationBoxes = new Object(); var Tables = document.getElementsByTagName( "table" ); for ( var i = 0; i < Tables.length; i++ ) { if ( hasClass( Tables[i], "collapsible" ) ) { NavigationBoxes[ tableIndex ] = Tables[i]; Tables[i].setAttribute( "id", "collapsibleTable" + tableIndex ); var Button = document.createElement( "span" ); var ButtonLink = document.createElement( "a" ); var ButtonText = document.createTextNode( collapseCaption ); Button.style.styleFloat = "right"; Button.style.cssFloat = "right"; Button.style.fontWeight = "normal"; Button.style.textAlign = "right"; Button.style.width = "6em"; ButtonLink.setAttribute( "id", "collapseButton" + tableIndex ); ButtonLink.setAttribute( "href", "javascript:collapseTable(" + tableIndex + ");" ); ButtonLink.appendChild( ButtonText ); Button.appendChild( document.createTextNode( "[" ) ); Button.appendChild( ButtonLink ); Button.appendChild( document.createTextNode( "]" ) ); var Header = Tables[i].getElementsByTagName( "tr" )[0].getElementsByTagName( "th" )[0]; /* only add button and increment count if there is a header row to work with */ if (Header) { Header.insertBefore( Button, Header.childNodes[0] ); tableIndex++; } } } for ( var i = 0; i < tableIndex; i++ ) { if ( hasClass( NavigationBoxes[i], "collapsed" ) || ( tableIndex >= autoCollapse && hasClass( NavigationBoxes[i], "autocollapse" ) ) ) { collapseTable( i ); } } } addOnloadHook( createCollapseButtons ); /** Dynamic Navigation Bars (experimental) ************************************* * * Description: See http://en.wikipedia.org/wiki/WP:NAVFRAME * Maintainers: UNMAINTAINED */ // set up the words in your language var NavigationBarHide = '[' + collapseCaption + ']'; var NavigationBarShow = '[' + expandCaption + ']'; // set up max count of Navigation Bars on page, // if there are more, all will be hidden // NavigationBarShowDefault = 0; // all bars will be hidden // NavigationBarShowDefault = 1; // on pages with more than 1 bar all bars will be hidden var NavigationBarShowDefault = autoCollapse; // shows and hides content and picture (if available) of navigation bars // Parameters: // indexNavigationBar: the index of navigation bar to be toggled function toggleNavigationBar(indexNavigationBar) { var NavToggle = document.getElementById("NavToggle" + indexNavigationBar); var NavFrame = document.getElementById("NavFrame" + indexNavigationBar); if (!NavFrame || !NavToggle) { return false; } // if shown now if (NavToggle.firstChild.data == NavigationBarHide) { for ( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) { if ( hasClass( NavChild, 'NavPic' ) ) { NavChild.style.display = 'none'; } if ( hasClass( NavChild, 'NavContent') ) { NavChild.style.display = 'none'; } } NavToggle.firstChild.data = NavigationBarShow; // if hidden now } else if (NavToggle.firstChild.data == NavigationBarShow) { for ( var NavChild = NavFrame.firstChild; NavChild != null; NavChild = NavChild.nextSibling ) { if (hasClass(NavChild, 'NavPic')) { NavChild.style.display = 'block'; } if (hasClass(NavChild, 'NavContent')) { NavChild.style.display = 'block'; } } NavToggle.firstChild.data = NavigationBarHide; } } // adds show/hide-button to navigation bars function createNavigationBarToggleButton() { var indexNavigationBar = 0; // iterate over all < div >-elements var divs = document.getElementsByTagName("div"); for( var i=0; NavFrame = divs[i]; i++ ) { // if found a navigation bar if (hasClass(NavFrame, "NavFrame")) { indexNavigationBar++; var NavToggle = document.createElement("a"); NavToggle.className = 'NavToggle'; NavToggle.setAttribute('id', 'NavToggle' + indexNavigationBar); NavToggle.setAttribute('href', 'javascript:toggleNavigationBar(' + indexNavigationBar + ');'); var NavToggleText = document.createTextNode(NavigationBarHide); NavToggle.appendChild(NavToggleText); // Find the NavHead and attach the toggle link (Must be this complicated because Moz's firstChild handling is borked) for( var j=0; j < NavFrame.childNodes.length; j++ ) { if (hasClass(NavFrame.childNodes[j], "NavHead")) { NavFrame.childNodes[j].appendChild(NavToggle); } } NavFrame.setAttribute('id', 'NavFrame' + indexNavigationBar); } } // if more Navigation Bars found than Default: hide all if (NavigationBarShowDefault < indexNavigationBar) { for( var i=1; i<=indexNavigationBar; i++ ) { toggleNavigationBar(i); } } } addOnloadHook( createNavigationBarToggleButton ); | |
|
AuLandingStrip-external Talk | <AuLandingStrip-external> |
| Welcome to AboutUs, an editable resource about websites and more. | |
|
AuLandingStrip-home Talk | <AuLandingStrip-home> |
| This is a collaborative website. Please make constructive edits anywhere you see fit. | |
|
AuLandingStrip-internal Talk | <AuLandingStrip-internal> |
| This is a collaborative website. Feel free to make constructive edits anywhere you see fit. | |
|
RedirectToDomain Talk | <RedirectToDomain> |
|
about Talk | About |
|
aboutpage Talk | Project:About |
|
aboutsite Talk | About {{SITENAME}} |
|
aboutussearch Talk | Search Results |
|
accesskey-ca-addsection Talk | + |
|
accesskey-ca-delete Talk | d |
|
accesskey-ca-edit Talk | e |
|
accesskey-ca-history Talk | h |
|
accesskey-ca-move Talk | m |
|
accesskey-ca-nstab-category Talk | c |
|
accesskey-ca-nstab-help Talk | c |
|
accesskey-ca-nstab-image Talk | c |
|
accesskey-ca-nstab-main Talk | c |
|
accesskey-ca-nstab-media Talk | c |
|
accesskey-ca-nstab-mediawiki Talk | c |
|
accesskey-ca-nstab-project Talk | a |
|
accesskey-ca-nstab-special Talk | |
|
accesskey-ca-nstab-template Talk | c |
|
accesskey-ca-nstab-user Talk | c |
|
accesskey-ca-protect Talk | = |
|
accesskey-ca-talk Talk | t |
|
accesskey-ca-undelete Talk | d |
|
accesskey-ca-unwatch Talk | w |
|
accesskey-ca-viewsource Talk | e |
|
accesskey-ca-watch Talk | w |
|
accesskey-compareselectedversions Talk | v |
|
accesskey-diff Talk | v |
|
accesskey-feed-atom Talk | |
|
accesskey-feed-rss Talk | |
|
accesskey-minoredit Talk | i |
|
accesskey-n-currentevents Talk | |
|
accesskey-n-help Talk | |
|
accesskey-n-mainpage Talk | z |
|
accesskey-n-portal Talk | |
|
accesskey-n-randompage Talk | x |
|
accesskey-n-recentchanges Talk | r |
|
accesskey-n-sitesupport Talk | |
|
accesskey-p-logo Talk | |
|
accesskey-preview Talk | p |
|
accesskey-pt-anonlogin Talk | o |
|
accesskey-pt-anontalk Talk | n |
|
accesskey-pt-anonuserpage Talk | . |
|
accesskey-pt-login Talk | o |
|
accesskey-pt-logout Talk | |
|
accesskey-pt-mycontris Talk | y |
|
accesskey-pt-mytalk Talk | n |
|
accesskey-pt-preferences Talk | |
|
accesskey-pt-userpage Talk | . |
|
accesskey-pt-watchlist Talk | l |
|
accesskey-save Talk | s |
|
accesskey-search Talk | f |
|
accesskey-t-contributions Talk | |
|
accesskey-t-emailuser Talk | |
|
accesskey-t-recentchangeslinked Talk | k |
|
accesskey-t-specialpages Talk | q |
|
accesskey-t-upload Talk | u |
|
accesskey-t-whatlinkshere Talk | j |
|
accesskey-watch Talk | w |
|
accmailtext Talk | The password for "$1" has been sent to $2. |
|
accmailtitle Talk | Password sent. |
|
accountcreated Talk | Account created |
|
accountcreatedtext Talk | The user account for $1 has been created. |
|
acct_creation_throttle_hit Talk | Sorry, you have already created $1 accounts. You can't make any more. |
|
actioncomplete Talk | Action complete |
|
addedwatch Talk | Added to watchlist |
|
addedwatchtext Talk | The page "[[:$1]]" has been added to your [[Special:Watchlist|watchlist]]. Future changes to this page and its associated Talk page will be listed there, and the page will appear '''bolded''' in the [[Special:Recentchanges|list of recent changes]] to make it easier to pick out. If you want to remove the page from your watchlist later, click "Unwatch" in the sidebar. |
| The page "[[:$1]]" has been added to your [[Special:Watchlist|watchlist]]. Future changes to this page and its associated Talk page will be listed there, and the page will appear '''bolded''' in the [[Special:Recentchanges|list of recent changes]] to make it easier to pick out. If you want to remove the page from your watchlist later, click the "Unwatch" icon at the top right corner of the article. | |
|
addsection Talk | + |
| Add comment | |
|
adsensesearch Talk | Google Search Results |
|
adultsplash Talk | Adult Content |
|
allarticles Talk | All articles |
|
allinnamespace Talk | All pages ($1 namespace) |
|
alllogstext Talk | Combined display of all available logs of {{SITENAME}}. You can narrow down the view by selecting a log type, the user name, or the affected page. |
|
allmessages Talk | System messages |
|
allmessagescurrent Talk | Current text |
|
allmessagesdefault Talk | Default text |
|
allmessagesfilter Talk | Message name filter: |
|
allmessagesmodified Talk | Show only modified |
|
allmessagesname Talk | Name |
|
allmessagesnotsupportedDB Talk | '''{{ns:special}}:Allmessages''' cannot be used because '''$wgUseDatabaseMessages''' is switched off. |
|
allmessagesnotsupportedUI Talk | Your current interface language <b>$1</b> is not supported by {{ns:special}}:Allmessages at this site. |
|
allmessagestext Talk | This is a list of system messages available in the MediaWiki namespace. |
|
allnotinnamespace Talk | All pages (not in $1 namespace) |
|
allowemail Talk | Enable e-mail from other users |
|
allpages Talk | All pages |
|
allpages-summary Talk | |
|
allpagesbadtitle Talk | The given page title was invalid or had an inter-language or inter-wiki prefix. It may contain one or more characters which cannot be used in titles. |
|
allpagesfrom Talk | Display pages starting at: |
|
allpagesnext Talk | Next |
|
allpagesprefix Talk | Display pages with prefix: |
|
allpagesprev Talk | Previous |
|
allpagessubmit Talk | Go |
|
alphaindexline Talk | $1 to $2 |
|
alreadyloggedin Talk | <strong>User $1, you are already logged in!</strong><br /> |
|
alreadyrolled Talk | Cannot rollback last edit of [[:$1]] by [[User:$2|$2]] ([[User talk:$2|Talk]]); someone else has edited or rolled back the page already. Last edit was by [[User:$3|$3]] ([[User talk:$3|Talk]]). |
|
ancientpages Talk | Oldest pages |
|
ancientpages-summary Talk | |
|
and Talk | and |
|
anoneditwarning Talk | '''Warning:''' You are not logged in. Your IP address will be recorded in this page's edit history. |
| '''Warning:''' As you are not logged in, your IP address will be recorded in this page's edit history. | |
|
anonnotice Talk | - |
|
anononlyblock Talk | anon. only |
|
anontalk Talk | Talk for this IP |
|
anontalkpagetext Talk | ----''This is the discussion page for an anonymous user who has not created an account yet or who does not use it. We therefore have to use the numerical IP address to identify him/her. Such an IP address can be shared by several users. If you are an anonymous user and feel that irrelevant comments have been directed at you, please [[Special:Userlogin|create an account or log in]] to avoid future confusion with other anonymous users.'' |
| ---- {| cellpadding="10px" cellspacing="0px" border="0px" |- |align="left" width="100%" style="background-color:#F3F3F3; border:1px solid #808080"|[[Image:TempTalkPage.png|left]]'''[[Portal:AboutUsWelcome|Welcome]]''' to '''[[AboutUs]]'''. <br /><br />'''{{PAGENAME}}''' is marked as a [[TempTalkPage|temporary talk page]] and should be removed after a short time. Please note that '''messages left for this IP address may not be received by the intended user.''' <br> Please consider '''[[Special:Userlogin|creating an account]]''', which alleviates this confusion and offers [[Why create an account?|these benefits]]. |} ''This is the discussion page for an anonymous user who has not created an account yet or who does not use it. We therefore have to use the numerical IP address to identify him/her. Such an IP address can be shared by several users. If you are an anonymous user and feel that irrelevant comments have been directed at you, please [[Special:Userlogin|create an account or log in]] to avoid future confusion with other anonymous users.'' | |
|
anonymous Talk | Anonymous user(s) of {{SITENAME}} |
|
apr Talk | Apr |
|
april Talk | April |
|
april-gen Talk | April |
|
article Talk | Content page |
|
articleexists Talk | A page of that name already exists, or the name you have chosen is not valid. Please choose another name. |
|
articlepage Talk | View content page |
|
articletitles Talk | Articles starting with ''$1'' |
|
ascending_abbrev Talk | asc |
|
aug Talk | Aug |
|
august Talk | August |
|
august-gen Talk | August |
|
autoblock_whitelist Talk | AOL http://webmaster.info.aol.com/proxyinfo.html *64.12.96.0/19 *149.174.160.0/20 *152.163.240.0/21 *152.163.248.0/22 *152.163.252.0/23 *152.163.96.0/22 *152.163.100.0/23 *195.93.32.0/22 *195.93.48.0/22 *195.93.64.0/19 *195.93.96.0/19 *195.93.16.0/20 *198.81.0.0/22 *198.81.16.0/20 *198.81.8.0/23 *202.67.64.128/25 *205.188.192.0/20 *205.188.208.0/23 *205.188.112.0/20 *205.188.146.144/30 *207.200.112.0/21 |
|
autoblocker Talk | Autoblocked because your IP address has been recently used by "[[User:$1|$1]]". The reason given for $1's block is: "$2" |
|
autoredircomment Talk | Redirecting to [[$1]] |
|
autosumm-blank Talk | Removing all content from page |
|
autosumm-new Talk | New page: $1 |
|
autosumm-replace Talk | Replacing page with '$1' |
|
badaccess Talk | Permission error |
|
badaccess-group0 Talk | You are not allowed to execute the action you have requested. |
|
badaccess-group1 Talk | The action you have requested is limited to users in the group $1. |
|
badaccess-group2 Talk | The action you have requested is limited to users in one of the groups $1. |
|
badaccess-groups Talk | The action you have requested is limited to users in one of the groups $1. |
|
badarticleerror Talk | This action cannot be performed on this page. |
|
badfilename Talk | File name has been changed to "$1". |
|
badipaddress Talk | Invalid IP address |
|
badquery Talk | Badly formed search query |
|
badquerytext Talk | We could not process your query. This is probably because you have attempted to search for a word fewer than three letters long, which is not yet supported. It could also be that you have mistyped the expression, for example "fish and and scales". Please try another query. |
|
badretype Talk | The passwords you entered do not match. |
|
badsig Talk | Invalid raw signature; check HTML tags. |
|
badtitle Talk | Bad title |
|
badtitletext Talk | The requested page title was invalid, empty, or an incorrectly linked inter-language or inter-wiki title. It may contain one or more characters which cannot be used in titles. |
|
blanknamespace Talk | (Main) |
|
block-log-flags-anononly Talk | anonymous users only |
|
block-log-flags-noautoblock Talk | autoblock disabled |
|
block-log-flags-nocreate Talk | account creation disabled |
|
blocked-mailpassword Talk | Your IP address is blocked from editing, and so is not allowed to use the password recovery function to prevent abuse. |
|
blockededitsource Talk | The text of '''your edits''' to '''$1''' is shown below: |
|
blockedoriginalsource Talk | The source of '''$1''' is shown below: |
|
blockedtext Talk | <big>'''Your user name or IP address has been blocked.'''</big> The block was made by $1. The reason given is ''$2''. You can contact $1 or another [[{{MediaWiki:grouppage-sysop}}|administrator]] to discuss the block. You cannot use the 'email this user' feature unless a valid email address is specified in your [[Special:Preferences|account preferences]]. Your current IP address is $3, and the block ID is #$5. Please include either or both of these in any queries. |
|
blockedtitle Talk | User is blocked |
|
blockip Talk | Block user |
|
blockipsuccesssub Talk | Block succeeded |
|
blockipsuccesstext Talk | [[Special:Contributions/$1|$1]] has been blocked. <br />See [[Special:Ipblocklist|IP block list]] to review blocks. |
|
blockiptext Talk | Use the form below to block write access from a specific IP address or username. This should be done only to prevent vandalism, and in accordance with [[{{MediaWiki:policy-url}}|policy]]. Fill in a specific reason below (for example, citing particular pages that were vandalized). |
|
blocklink Talk | block |
|
blocklistline Talk | $1, $2 blocked $3 ($4) |
|
blocklogentry Talk | blocked "[[$1]]" with an expiry time of $2 $3 |
|
blocklogpage Talk | Block log |
|
blocklogtext Talk | This is a log of user blocking and unblocking actions. Automatically blocked IP addresses are not listed. See the [[Special:Ipblocklist|IP block list]] for the list of currently operational bans and blocks. |
|
bold_sample Talk | Bold text |
|
bold_tip Talk | Bold text |
|
booksources Talk | Book sources |
|
booksources-go Talk | Go |
|
booksources-isbn Talk | ISBN: |
|
booksources-search-legend Talk | Search for book sources |
|
booksources-summary Talk | |
|
booksources-text Talk | Below is a list of links to other sites that sell new and used books, and may also have further information about books you are looking for: |
|
boteditletter Talk | b |
|
brokenredirects Talk | Broken redirects |
|
brokenredirects-delete Talk | (delete) |
|
brokenredirects-edit Talk | (edit) |
|
brokenredirects-summary Talk | |
|
brokenredirectstext Talk | The following redirects link to non-existent pages: |
|
bugreports Talk | Bug reports |
|
bugreportspage Talk | Project:Bug reports |
|
builddomain Talk | Build Domain Page |
|
bydate Talk | by date |
|
byname Talk | by name |
|
bysize Talk | by size |
|
cachederror Talk | The following is a cached copy of the requested page, and may not be up to date. |
|
cancel Talk | Cancel |
|
cannotdelete Talk | Could not delete the page or file specified. (It may have already been deleted by someone else.) |
|
cannotundelete Talk | Undelete failed; someone else may have undeleted the page first. |
|
cantcreateaccounttext Talk | Account creation from this IP address (<b>$1</b>) has been blocked. This is probably due to persistent vandalism from your school or Internet service provider. |
|
cantcreateaccounttitle Talk | Can't create account |
|
cantrollback Talk | Cannot revert edit; last contributor is only author of this page. |
| Sorry, but we cannot revert the edit(s) as the last contributor is the only author of this page. | |
|
captcha-addurl Talk | Your edit includes new external links. To help protect against automated spam, please solve the simple sum below and enter the answer in the box ([[Special:Captcha/help|more info]]): |
|
captcha-badpass Talk | To help protect against automated password cracking, please solve the simple sum below and enter the answer in the box ([[Special:Captcha/help|more info]]): |
|
captcha-create Talk | To create the page, please solve the simple sum below and enter the answer in the box ([[Special:Captcha/help|more info]]): |
|
captcha-createaccount Talk | To help protect against automated account creation, please solve the simple sum below and enter the answer in the box ([[Special:Captcha/help|more info]]): |
|
captcha-createaccount-fail Talk | Incorrect or missing confirmation code. |
|
captcha-edit Talk | To edit this article, please solve the simple sum below and enter the answer in the box ([[Special:Captcha/help|more info]]): |
|
captchahelp-cookies-needed Talk | You will need to have cookies enabled in your browser for this to work. |
|
captchahelp-text Talk | Web sites that accept postings from the public, like this wiki, are often abused by spammers who use automated tools to post their links to many sites. While these spam links can be removed, they are a significant nuisance. Sometimes, especially when adding new web links to a page, the wiki may show you an image of colored or distorted text and ask you to type the words shown. Since this is a task that's hard to automate, it will allow most real humans to make their posts while stopping most spammers and other robotic attackers. Unfortunately this may inconvenience users with limited vision or using text-based or speech-based browsers. At the moment we do not have an audio alternative available. Please contact the site administrators for assistance if this is unexpectedly preventing you from making legitimate posts. Hit the 'back' button in your browser to return to the page editor. |
|
captchahelp-title Talk | Captcha help |
|
cascadeprotected Talk | This page has been protected from editing, because it is included in the following {{PLURAL:$1|page|pages}}, which are protected with the "cascading" option turned on: |
|
cascadeprotectedwarning Talk | '''Warning:''' This page has been locked so that only users with sysop privileges can edit it, because it is included in the following cascade-protected {{PLURAL:$1|page|pages}}: |
| <div class="auCorner">This page has been locked to prevent editing. While we highly value [[AssumeGoodFaith]], sometimes it is important for [[AboutUs]] to lock high traffic pages that could possibly have lots of [[DeleteTest|test edits]].</div> | |
|
categories Talk | Categories |
|
categoriespagetext Talk | The following categories exist in the wiki. |
|
category-media-count Talk | There {{PLURAL:$1|is one file|are $1 files}} in this category. |
|
category-media-header Talk | Media in category "$1" |
|
category_header Talk | Articles in category "$1" |
|
categoryarticlecount Talk | There {{PLURAL:$1|is one article|are $1 articles}} in this category. |
|
categoryok Talk | WhiteList |
|
categorypage Talk | View category page |
|
catseparator Talk | | |
|
changed Talk | changed |
|
changepassword Talk | Change password |
|
clearwatchlist Talk | Clear watchlist |
|
clearyourcache Talk | '''Note:''' After saving, you may have to bypass your browser's cache to see the changes. '''Mozilla / Firefox / Safari:''' hold down ''Shift'' while clicking ''Reload'', or press ''Ctrl-Shift-R'' (''Cmd-Shift-R'' on Apple Mac); '''IE:''' hold ''Ctrl'' while clicking ''Refresh'', or press ''Ctrl-F5''; '''Konqueror:''': simply click the ''Reload'' button, or press ''F5''; '''Opera''' users may need to completely clear their cache in ''Tools→Preferences''. |
|
columns Talk | Columns: |
|
common.css Talk | /** CSS placed here will be applied to all skins */ |
| .MainPage_Content { width:100%; padding:0px; margin:0px; } .MainPage_Title { font-weight:bold; font-size:162%; border:none; margin: 0; padding:.1em; color:#000; position: relative; top: 0px; align: center; } .MainPage_SubTitle { top:+0.2em; font-size: 95%; } .MainPage_Announce { padding: .3em 1.2em .2em; background-color:#FFFFCC; border:0px solid #FF1A00; } .MainPage_Featured { padding: .4em .9em .9em; margin: 1px; width:48%; height:auto; border: 1px solid #C3D9FF; color: #000; background-color:#FCFCFC; valign:top; float:left; } .MainPage_Welcome { padding: .4em .9em .9em; margin: 1px; width:48%; height:auto; border: 1px solid #C3D9FF; color: #000; background-color:#FCFCFC; valign:"top"; float:left; } .MainPage_Box_Header { margin:0; background-color:#eef; font-size:180%; font-weight:bold; border:0px solid #3300ff; text-align:center; color:#000; padding:0.2em 0.4em; } .MainPage_Featured_Date { font-size:75%; font-weight:bold; } .MainPage_HowToFeature { font-size:75%; font-weight:bold; text-align:center; } .MainPage_Welcome_News { background-color:#0000; border:3px solid #008C00; padding:5px; float:left; } div.searchtag { } input.searchtagfield { font-size: 13px; margin-top : 0px; margin-right : 0px; margin-bottom : 4px; margin-left : 0px; width: 400px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-top-color: rgb(188, 205, 240); border-right-color: rgb(188, 205, 240); border-bottom-color: rgb(188, 205, 240); border-left-color: rgb(188, 205, 240); font-size: 156%; } input.searchtagsubmit { margin-bottom: 4px; font-size: 156%; background-color: #ffffff; } /* Messagebox templates */ .messagebox { border: 1px solid #aaa; background-color: #f9f9f9; width: 80%; margin: 0 auto 1em auto; padding: .2em; } .messagebox.merge { border: 1px solid #c0b8cc; background-color: #f0e5ff; text-align: center; } .messagebox.cleanup { border: 1px solid #9f9fff; background-color: #efefff; text-align: center; } .messagebox.standard-talk { border: 1px solid #c0c090; background-color: #f8eaba; } .messagebox.nested-talk { border: 1px solid #c0c090; background-color: #f8eaba; width: 100%; margin: 2px 4px 2px 4px; } .messagebox.small { width: 238px; font-size: 85%; float: right; clear: both; margin: 0 0 1em 1em; line-height: 1.25em; } .nounderlinelink a{ text-decoration: none ! important; } .nounderlinelink a:hover{ text-decoration: none ! important; } .buttonlink { border-style: outset; } | |
|
common.js Talk | /* Any JavaScript here will be loaded for all users on every page load. */ |
|
compareselectedversions Talk | Compare selected versions |
|
compostwrapper Talk | Compost Front |
|
confirm Talk | Confirm |