From d7eb57fe22a8ef293dc78f93b9db4d3de783d7eb Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Fri, 25 Sep 2009 19:25:43 +0000 Subject: fix i18n problem with block names in hover help --- (limited to 'tahoverhelp.py') 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') +} -- cgit v0.9.1