]> git.mxchange.org Git - friendica.git/blobdiff - addon/tictac/tictac.php
Merge branch 'omigeot-master'
[friendica.git] / addon / tictac / tictac.php
index 95678302c81d6d9122e59942f3275db8bd497bca..a69cda132b8bcc59436bfd8aa10167f100fcc8a3 100644 (file)
@@ -11,7 +11,7 @@ function tictac_uninstall() {
 }
 
 function tictac_app_menu($a,&$b) {
-       $b['app_menu'] .= '<a href="tictac">' . t('Three Dimensional Tic-Tac-Toe') . '</a><br />'; 
+       $b['app_menu'] .= '<div class="app-title"><a href="tictac">' . t('Three Dimensional Tic-Tac-Toe') . '</a></div>'; 
 }
 
 
@@ -44,14 +44,14 @@ function tictac_content(&$a) {
    $dimen = 3;
   }
 
-  $o .=  '<h3>3D Tic-Tac-Toe</h3><br />';
+  $o .=  '<h3>' . t('3D Tic-Tac-Toe') . '</h3><br />';
 
   $t = new tictac($dimen,$handicap,$mefirst,$yours,$mine);
   $o .= $t->play();
 
   $o .=  '<a href="tictac">' . t('New game') . '</a><br />';
   $o .=  '<a href="tictac/1">' . t('New game with handicap') . '</a><br />';
-  $o .=  '<p>' . t('Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously.');
+  $o .=  '<p>' . 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 .= '</p><p>'; 
   $o .= t('The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage.');