Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tahoverhelp.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2009-09-25 19:25:43 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2009-09-25 19:25:43 (GMT)
commitd7eb57fe22a8ef293dc78f93b9db4d3de783d7eb (patch)
tree34a19ca5df7a59ebd4180ef52f5c82adde3ce8d7 /tahoverhelp.py
parent28c22a1f558f8048111efb590adb6bd53c05aab6 (diff)
fix i18n problem with block names in hover help
Diffstat (limited to 'tahoverhelp.py')
-rw-r--r--tahoverhelp.py76
1 files changed, 76 insertions, 0 deletions
diff --git a/tahoverhelp.py b/tahoverhelp.py
index 3f08597..25836cf 100644
--- a/tahoverhelp.py
+++ b/tahoverhelp.py
@@ -120,3 +120,79 @@ hover_dict = { \
"template4":_("presentation template: select Journal object (no description)"), \
"template3":_("presentation template: seven bullets"), \
"hideblocks":_("declutter canvas by hiding blocks")}
+
+blocks_dict = {
+ 'TurtleArt' : _('Turtle Art'),
+ 'turtle' : _('Turtle'),
+ 'setxy' : _('set xy'),
+ 'seth' : _('seth'),
+ 'setscale' : _('set scale'),
+ 'fillscreen' : _('fill screen'),
+ 'pen' : _('Pen'),
+ 'pendown' : _('pen down'),
+ 'penup' : _('pen up'),
+ 'setpensize' : _('set pen size'),
+ 'setcolor' : _('set color'),
+ 'setshade' : _('set shade'),
+ 'pensize' : _('pen size'),
+ 'textsize' : _('text size'),
+ 'textcolor' : _('text color'),
+ 'settextsize' : _('set text size'),
+ 'settextcolor' : _('set text color'),
+ 'color' : _('color'),
+ 'greater' : _('greater'),
+ 'numbers' : _('Numbers'),
+ 'division2' : _('division'),
+ 'equal' : _('equal'),
+ 'plus2' : _('plus2'),
+ 'product2' : _('product2'),
+ 'remainder2' : _('mod'),
+ 'identity' : _('identity'),
+ 'identity2' : _('identity2'),
+ 'less' : _('less'),
+ 'minus2' : _('minus2'),
+ 'sqrt' : _('sqrt'),
+ 'ifelse' : _('else'),
+ 'flow' : _('Flow'),
+ 'hspace' : _('hspace'),
+ 'vspace' : _('vspace'),
+ 'stopstack' : _('stopstack'),
+ 'string' : _('string'),
+ 'sensors' : _('Extras'),
+ 'clearheap' : _('clearheap'),
+ 'emptyheap' : _('empty heap'),
+ 'loadmyblock' : _('load my block'),
+ 'myfunc' : _('myfunc'),
+ 'toppos' : _('toppos'),
+ 'vres' : _('height'),
+ 'hres' : _('width'),
+ 'bottompos' : _('bottom'),
+ 'kbinput' : _('read key'),
+ 'leftpos' : _('leftpos'),
+ 'rightpos' : _('rightpos'),
+ 'printheap' : _('printheap'),
+ 'myblocks' : _('My Blocks'),
+ 'stack' : _('stack'),
+ 'stack2' : _('stack 2'),
+ 'stack1' : _('stack 1'),
+ 'storeinbox1' : _('store in box 1'),
+ 'box1' : _('box 1'),
+ 'storeinbox2' : _('store in box 2'),
+ 'box2' : _('box 2'),
+ 'storein' : _('store in'),
+ 'hat' : _('hat'),
+ 'hat1' : _('hat1'),
+ 'hat2' : _('hat2'),
+ 'nop' : _('nop'),
+ 'templates' : _('Templates'),
+ 'hideblocks' : _('hide blocks'),
+ 'journal' : _('journal'),
+ 'audiooff' : _('audiooff'),
+ 'descriptionoff' : _('descriptionoff'),
+ 'template1' : _('template1'),
+ 'template2' : _('template2'),
+ 'template3' : _('template3'),
+ 'template4' : _('template4'),
+ 'template6' : _('template6'),
+ 'template7' : _('template7')
+}