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();
?>