From fc3b1f24363c86e999cfbc30035082b59161af78 Mon Sep 17 00:00:00 2001 From: "Janus B. Kristensen" Date: Sat, 13 Dec 2008 18:21:04 +0000 Subject: [PATCH] Translation awareness (From ORE) svn path=/trunk/boinc/; revision=16676 --- html/user/team_create_form.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/html/user/team_create_form.php b/html/user/team_create_form.php index 3ab1c76718..0a1745bd10 100644 --- a/html/user/team_create_form.php +++ b/html/user/team_create_form.php @@ -22,15 +22,12 @@ require_once("../inc/team.inc"); $user = get_logged_in_user(); -page_head("Create a team"); +page_head(tra("Create a team")); if ($user->teamid) { $team = BoincTeam::lookup_id($user->teamid); - echo "You belong to - id>$team->name. - You must quit this team before creating a new one. - "; + echo tra("You belong to %1. You must %2quit this team%3 before creating a new one.", "id."\">".$team->name."", "", ""); } else { - team_edit_form(null, "Create team", "team_create_action.php"); + team_edit_form(null, tra("Create a team"), "team_create_action.php"); } page_tail(); ?>