X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=addon%2Ftictac%2Ftictac.php;h=a69cda132b8bcc59436bfd8aa10167f100fcc8a3;hb=f6788dc5f670e852ea9e1be001892527e5ae76dd;hp=95678302c81d6d9122e59942f3275db8bd497bca;hpb=5c5ff0b87a22ca9c11b9a267321d67f53afe42ba;p=friendica.git diff --git a/addon/tictac/tictac.php b/addon/tictac/tictac.php index 95678302c8..a69cda132b 100644 --- a/addon/tictac/tictac.php +++ b/addon/tictac/tictac.php @@ -11,7 +11,7 @@ function tictac_uninstall() { } function tictac_app_menu($a,&$b) { - $b['app_menu'] .= '' . t('Three Dimensional Tic-Tac-Toe') . '
'; + $b['app_menu'] .= '
' . t('Three Dimensional Tic-Tac-Toe') . '
'; } @@ -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.');