Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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':[' '],