Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2010-05-14 14:47:33 (GMT)
committer Walter Bender <walter@sugarlabs.org>2010-05-14 14:47:33 (GMT)
commit4bec3c54c66fe61f2e7f5c93c40ca93dbdbeec82 (patch)
tree70762ff7edcd010798de01bc873ac7d17541b9b6
parent9b3d65d65a831a7548545a7e8d0677505430600d (diff)
fixed problem with missing block names
-rw-r--r--NEWS1
-rw-r--r--taconstants.py8
2 files changed, 5 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index e63483f..68a1ce5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
2
* Updated samples to use only blocks found in Turtle Art (mini)
+* fixed a few problems with block names
1
diff --git a/taconstants.py b/taconstants.py
index 3561655..2e26935 100644
--- a/taconstants.py
+++ b/taconstants.py
@@ -286,8 +286,8 @@ BLOCK_NAMES = {
'journal':[' '],
'kbinput':[' '],
'keyboard':[' '],
- 'left':[' '],
- 'leftpos':[' '],
+ 'left':[_('left')],
+ 'leftpos':[_('left')],
'leftx':[' '],
'less2':['<'],
'list':['list'],
@@ -326,8 +326,8 @@ BLOCK_NAMES = {
'resistance':[' '],
'restore':[' '],
'restoreall':[' '],
- 'right':[' '],
- 'rightpos':[' '],
+ 'right':[_('right')],
+ 'rightpos':[_('right')],
'rightx':[' '],
'savepix':[' '],
'savesvg':[' '],