Spelling

Everything related to the timeruns.net scoreboard
Post Reply
stealth
Posts: 140
Joined: Fri Dec 09, 2011 6:02 pm

Spelling

Post by stealth »

player records page:
"Click here for detailled stats" -> "Click here for detailed stats" (or maybe just "Detailed stats")
"Records of timothy" -> "timothy's Records"

Detailed stats page:
"Detailled stats for timothy" -> "timothy's detailed stats" or just "timothy's stats"
"Maps where you are last ranked" -> "Maps where you're ranked last"

Front page:
"Last news" -> "Latest news"
"Last forum posts" -> "Latest forum posts"

In stats of the day table:
"Last" -> "Latest"

Details of Record page:
"Details of record" -> "Record details"
"Author" - > "Player"
"Tries" - > "Attempts"
"Num" -> "No."

Getting Started:
"A timerun is a map where player times needed to go from a start line to a finish line will be measured.
Here is an example of what it looks like: <video>
The game used here is Wolfenstein: Enemy Territory 2.60b with ETrun mod.
This site gathers player records. If you want your records to be tracked here, you will have to setup your timeruns token."
->
"ETrun is a mod for the multiplayer game Wolfenstein: Enemy Territory. The aim is to get from the start of the map to the end as fast as possible. These timeruns are recorded to the website where you can compare them to other players as long a you have registered a timerun token.
Here's an example of a timerun: <video>"

"Simply follow these few steps" -> "Simply follow these steps"
"Login to your forum account or create one if you don't have one already" -> "Login to your forum account or create one if you haven't already" or "Login to your forum account or create one if you don't have one"
"/set cg_timerunsToken" -> "set cg_timerunsToken"
"Open your game, connect to a timeruns server and make sure to execute your config" -> "Open your game, connect to a timeruns server and execute your config"
"Note: you can use cg_autoLogin 1 to automatically login" -> "Note: you can use cg_autoLogin 1 to login automatically"

Menu:
"Top players" -> "Player rankings"
"Top maps" -> "Map rankings"

Forum:
"Everything related with the timeruns.net scoreboard" -> "Everything related to the timeruns.net scoreboard"

Side notes:
- You need a new video for the page on Getting started :D
- The menu doesn't update - when you go to "Getting started" the menu still highlights "Home".
nico
Site Admin
Posts: 168
Joined: Mon Nov 07, 2011 11:40 pm

Re: Spelling

Post by nico »

Many many thanks!

Indeed a new video will be needed... someone to do it? :)
--
>Nico*
Contact: pm me
stealth
Posts: 140
Joined: Fri Dec 09, 2011 6:02 pm

Re: Spelling

Post by stealth »

front page:
"Last #1 records" -> "Latest #1 records"
In the table Stats of the day the last column is called "Latest" - doesn't make sense (what are these times from? I tried checking the name for a corresponding time, but couldn't find any)

EDIT: ah I understand now, it's when the player was last online? Then change it to "Last seen" or change the time format (4:30pm), now it's like a timerun time which doesn't make sense.

player & map rankings page:
"Physic" -> "Physics"

The rest looks good now :D

EDIT2: I see you removed the Forum link on the main page, maybe it's a cool idea use the session and change "Register" to "Forum" if you are logged in, otherwise it will still display "Register".
nico
Site Admin
Posts: 168
Joined: Mon Nov 07, 2011 11:40 pm

Re: Spelling

Post by nico »

Once again, many thanks!

The forum link was gone but it was a bug, it's back.
I already tried to make cross-sessions between forum and site but with no success.
I changed the video to another (old) one (Thx Timo).
--
>Nico*
Contact: pm me
stealth
Posts: 140
Joined: Fri Dec 09, 2011 6:02 pm

Re: Spelling

Post by stealth »

nico wrote:Once again, many thanks!

The forum link was gone but it was a bug, it's back.
I already tried to make cross-sessions between forum and site but with no success.
I changed the video to another (old) one (Thx Timo).
Strange since you have the news section working on front page I guess you have some knowledge of it.
Here's what I think you need:
- Standard PHPBB header:

Code: Select all

<?php
/*
* home.php 
* Description: example file for displaying latest posts and topics
* by battye (for phpBB.com MOD Team)
* September 29, 2009
*/

define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/bbcode.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('viewforum');
I think you already have this for the news part?

Here's an example of an external login:

Code: Select all

<? if (!stristr($user->data['username'],"anonymous")) {
				echo '<p>Welcome back '.$user->data['username'].'</p><a href="./forums/search.php?search_id=unreadposts">View unread posts</a><p>';
				} else {
				echo '
			<form action="./forums/ucp.php?mode=login" method="post">
				<p>Username <input type="text" name="username" id="username" size="10" title="Username" /></p>
				<p>Password <input type="password" name="password" id="password" size="10" title="Password" /></p>
				<p>Automatic login <input type="checkbox" name="autologin" id="autologin" /></p>
				<p><input id="submit" type="submit" name="login" value="Login" />
				&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
				<a href="./forums/ucp.php?mode=register">Register</a></p>
			</form>';
			}?>
That's from my website so I am 100% it works.

You can change it to something like:

Code: Select all

<? 
$forumlink = "";
if (!stristr($user->data['username'],"anonymous")) {
	$forumlink = "\">Forum</a>";
} else {
	$forumlink = "ucp.php?mode=register\">Register</a>";
}
echo "<a href=\"http://forum.timeruns.net/$forumlink";
?>
or even

Code: Select all

<a href="http://forum.timeruns.net/<?echo (!stristr($user->data['username'],"anonymous"))? "\">Forum" : "ucp.php?mode=register\">Register";?> </a>
You also need to change the selected item in the menu to this: <li class="first current_page_item">
Now it always selects "Home"
Post Reply