From 66ddaaf798a7ac2ed368ac19d9f64db3d957f20d Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 14 Mar 2010 16:03:19 -0700 Subject: marked more strings for translation --- include/output.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'include/output.php') diff --git a/include/output.php b/include/output.php index 0f326f5..7f35dd2 100644 --- a/include/output.php +++ b/include/output.php @@ -433,12 +433,12 @@ function output_status() { global $defaulttimezone, $INDEX, $WIKI, $RSS; - if(isset($_SESSION["name"])) + if(isset($_SESSION['name'])) { - $name = $_SESSION["name"]; + $name = $_SESSION['name']; /* last logon time */ - $myid = DB_get_userid("name",$name); + $myid = DB_get_userid('name',$name); $zone = DB_get_user_timezone($myid); $time = DB_get_user_timestamp($myid); @@ -452,21 +452,21 @@ function output_status() /* logout info */ echo "\n
\n"; echo $name,"\n"; - echo " | mypage \n"; - echo " | settings\n"; - echo " | new game\n"; - echo " | statistics\n"; - echo " | wiki/bugs\n"; - echo " | rss\n"; - echo " |    logout\n"; + echo " | "._('mypage')."\n"; + echo " | "._('settings')."\n"; + echo " | "._('new game')."\n"; + echo " | "._('statistics')."\n"; + echo " | "._('wiki/bugs')."\n"; + echo " | "._('atom')."\n"; + echo " |    "._('logout')."\n"; echo "
\n"; - echo "
last login: ".date("r",$unixtime)."
\n"; + echo "
"._('last login').": ".date("r",$unixtime)."
\n"; } else { echo "\n
\n"; - echo "login\n"; + echo ""._('login')."\n"; echo "
\n"; } return; @@ -572,7 +572,7 @@ function output_password_recovery($email,$password) function output_user_notes($userid,$gameid,$userstatus) { - echo "
Personal notes:
\n"; + echo "
"._('Personal notes').":
\n"; $notes = DB_get_notes_by_userid_and_gameid($userid,$gameid); foreach($notes as $note) echo "$note
\n"; -- cgit v1.2.3-18-g5258