Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-03-02 01:44:59 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-03-02 01:44:59 (GMT)
commit03287ec1783980f81deb9708ca4db3937ede1584 (patch)
tree6798952f5af64835f809183f3a835611714195ba /plugins
parent1276a0f8e42095b704be2a580e03c4dcd9ea9c16 (diff)
fixed some i18n strings
Diffstat (limited to 'plugins')
-rw-r--r--plugins/turtle_blocks_plugin.py14
1 files changed, 12 insertions, 2 deletions
diff --git a/plugins/turtle_blocks_plugin.py b/plugins/turtle_blocks_plugin.py
index 4570ab7..dcf7ef1 100644
--- a/plugins/turtle_blocks_plugin.py
+++ b/plugins/turtle_blocks_plugin.py
@@ -79,6 +79,9 @@ class Turtle_blocks_plugin(Plugin):
self.tw = parent
def setup(self):
+ self.heap = self.tw.lc.heap
+ self.keyboard = self.tw.lc.keyboard
+
# set up Turtle Block palettes
self._flow_palette()
@@ -177,7 +180,7 @@ class Turtle_blocks_plugin(Plugin):
b.set_label(_('text'))
b.set_default(_('text'))
b.set_special_name('')
- b.set_help('string value')
+ b.set_help(_('string value'))
b.add_prim()
b = Primitive('show')
@@ -512,7 +515,7 @@ class Turtle_blocks_plugin(Plugin):
b.set_style('collapsible-bottom')
b.set_label([' ', ' '])
b.set_prim_name('nop')
- b.set_help(_('bottom of a collapsed stack'))
+ b.set_help(_('bottom of a collapsible stack'))
b.add_prim()
b = Primitive('sandwichcollapsed')
@@ -1012,6 +1015,13 @@ class Turtle_blocks_plugin(Plugin):
"holds current text color (can be used in place of a number block)"),
'textsize': _(
"holds current text size (can be used in place of a number block)")}
+ 'settextcolor': [1, lambda self, x: self.tw.canvas.settextcolor(x)],
+ 'settextsize': [1, lambda self, x: self.tw.canvas.settextsize(x)],
+ 'textcolor': [0, lambda self: self.tw.canvas.textcolor],
+ 'textsize': [0, lambda self: self.tw.textsize]}
+ 'insertimage': [1, lambda self, x: self._insert_image(False,
+ filepath=x)],
+ 'container': [1, lambda self, x: x],
PORTFOLIO_STYLE_2x2 = ['template2x2']
PORTFOLIO_STYLE_1x1 = ['template1x1', 'template1x1a']
PORTFOLIO_STYLE_2x1 = ['template2x1']