Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/turtle_blocks_extras/turtle_blocks_extras.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/plugins/turtle_blocks_extras/turtle_blocks_extras.py b/plugins/turtle_blocks_extras/turtle_blocks_extras.py
index f6223f1..1447b11 100644
--- a/plugins/turtle_blocks_extras/turtle_blocks_extras.py
+++ b/plugins/turtle_blocks_extras/turtle_blocks_extras.py
@@ -1150,9 +1150,14 @@ bullets'))
elif type(n) == str or type(n) == unicode:
if n in COLORDICT:
if COLORDICT[n][0] is None:
- self.tw.showlabel('print', COLORDICT[n][1])
+ self.tw.showlabel('print', '%s %d, %s %d' % (
+ _('shade'), COLORDICT[n][1],
+ _('gray'), COLORDICT[n][2]))
else:
- self.tw.showlabel('print', COLORDICT[n][0])
+ self.tw.showlabel('print', '%s %d, %s %d, %s %d' % (
+ _('color'), COLORDICT[n][0],
+ _('shade'), COLORDICT[n][1],
+ _('gray'), COLORDICT[n][2]))
elif n[0:6] == 'media_' and \
n[6:].lower not in media_blocks_dictionary:
try: