diff options
author | Friendika <info@friendika.com> | 2011-02-24 13:29:19 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-24 13:29:19 -0800 |
commit | fef4e6a155249ccfcf7fb5d058fe34cf2f1846e1 (patch) | |
tree | 8574e6414e2e62640702df920466aaf6c6018143 /addon/tictac | |
parent | 8ed085c64e4fb097394d0cc93f8744606c15527b (diff) | |
download | volse-hubzilla-fef4e6a155249ccfcf7fb5d058fe34cf2f1846e1.tar.gz volse-hubzilla-fef4e6a155249ccfcf7fb5d058fe34cf2f1846e1.tar.bz2 volse-hubzilla-fef4e6a155249ccfcf7fb5d058fe34cf2f1846e1.zip |
string fixes
Diffstat (limited to 'addon/tictac')
-rw-r--r-- | addon/tictac/tictac.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addon/tictac/tictac.php b/addon/tictac/tictac.php index f73937cdd..a69cda132 100644 --- a/addon/tictac/tictac.php +++ b/addon/tictac/tictac.php @@ -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.'); |