diff options
author | Arun Persaud <arun@nubati.net> | 2010-04-18 21:19:09 -0700 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2010-04-18 21:19:09 -0700 |
commit | e395151af6c953c0e7fa9229dd921f8d721ab69c (patch) | |
tree | f5e96035fdbb6fe9f76a1ffb6b8d369372d3efca | |
parent | cad6af3b9e717d2bb5694ed8df353d3bbfaa5638 (diff) | |
download | e-DoKo-e395151af6c953c0e7fa9229dd921f8d721ab69c.tar.gz e-DoKo-e395151af6c953c0e7fa9229dd921f8d721ab69c.tar.bz2 e-DoKo-e395151af6c953c0e7fa9229dd921f8d721ab69c.zip |
fix bug introduces by marking strings for translations
using these strings directly to set database entries... need to change this before they can be marked for translation.
-rw-r--r-- | include/output.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/output.php b/include/output.php index bdc1caa..9c4316c 100644 --- a/include/output.php +++ b/include/output.php @@ -219,14 +219,14 @@ function output_check_for_sickness($me,$mycards) echo ''; echo ' '._('Do you want to play solo?').''; echo ' <select name="solo" size="1">'; - echo ' <option selected="selected">'._('No').'</option>'; - echo ' <option>'._('trumpless').'</option>'; - echo ' <option>'._('trump').'</option>'; - echo ' <option>'._('queen').'</option>'; - echo ' <option>'._('jack').'</option>'; - echo ' <option>'._('club').'</option>'; - echo ' <option>'._('spade').'</option>'; - echo ' <option>'._('heart').'</option>'; + echo ' <option selected="selected">'.'No'.'</option>'; + echo ' <option>'.'trumpless'.'</option>'; + echo ' <option>'.'trump'.'</option>'; + echo ' <option>'.'queen'.'</option>'; + echo ' <option>'.'jack'.'</option>'; + echo ' <option>'.'club'.'</option>'; + echo ' <option>'.'spade'.'</option>'; + echo ' <option>'.'heart'.'</option>'; echo ' </select>'; echo ' <br />'; |