From fef4e6a155249ccfcf7fb5d058fe34cf2f1846e1 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 24 Feb 2011 13:29:19 -0800 Subject: [PATCH] string fixes --- addon/tictac/tictac.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addon/tictac/tictac.php b/addon/tictac/tictac.php index f73937cdd2..a69cda132b 100644 --- a/addon/tictac/tictac.php +++ b/addon/tictac/tictac.php @@ -44,14 +44,14 @@ function tictac_content(&$a) { $dimen = 3; } - $o .= '

3D Tic-Tac-Toe


'; + $o .= '

' . t('3D Tic-Tac-Toe') . '


'; $t = new tictac($dimen,$handicap,$mefirst,$yours,$mine); $o .= $t->play(); $o .= '' . t('New game') . '
'; $o .= '' . t('New game with handicap') . '
'; - $o .= '

' . t('Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously.'); + $o .= '

' . t('Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. '); $o .= t('In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels.'); $o .= '

'; $o .= t('The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.');