Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gencards.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2010-01-07 16:50:00 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2010-01-07 16:50:00 (GMT)
commit5e587dc87a4a9316f9ed549885097f76e5d4c443 (patch)
treee99af4cc2ce9124bb6c70bf044493b258b6f3c33 /gencards.py
parentb6c375e9eabd8c4ce03c3bfccb8905d822de92ca (diff)
animate matches at end of game play
Diffstat (limited to 'gencards.py')
-rwxr-xr-xgencards.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gencards.py b/gencards.py
index 0f78e2f..c40d075 100755
--- a/gencards.py
+++ b/gencards.py
@@ -538,12 +538,12 @@ def generate_word_cards(datapath):
f = open_file(datapath, filename)
header(f,"#000000",c[1],"0.5")
if n == 0:
- word_card(f,t,s,[_("dog"),_("cat"),_("mouse")],c[0])
+ word_card(f,t,s,[_("mouse"),_("cat"),_("dog")],c[0])
elif n == 1:
- word_card(f,t,s,[_("apple"),_("bread"),_("cheese")],
+ word_card(f,t,s,[_("cheese"),_("bread"),_("apple")],
c[0])
else:
- word_card(f,t,s,[_("sun"),_("moon"),_("earth")],c[0])
+ word_card(f,t,s,[_("moon"),_("sun"),_("earth")],c[0])
footer(f)
close_file(f)
i += 1