Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TurtleArt/tawindow.py69
-rw-r--r--TurtleArtActivity.py29
-rw-r--r--images/palettehshift.svg86
-rw-r--r--images/palettevshift.svg86
-rw-r--r--po/TurtleArt.pot726
-rw-r--r--po/af.po601
-rw-r--r--po/am.po597
-rw-r--r--po/ar.po598
-rw-r--r--po/ay.po1987
-rw-r--r--po/aym.po462
-rw-r--r--po/bg.po455
-rw-r--r--po/bi.po455
-rw-r--r--po/bn.po455
-rw-r--r--po/bn_IN.po455
-rw-r--r--po/br.po597
-rw-r--r--po/ca.po597
-rw-r--r--po/cpp.po597
-rw-r--r--po/cs.po626
-rw-r--r--po/dz.po597
-rw-r--r--po/el.po602
-rw-r--r--po/en.po310
-rw-r--r--po/es.po490
-rw-r--r--po/fa.po597
-rw-r--r--po/fa_AF.po598
-rw-r--r--po/ff.po597
-rw-r--r--po/fi.po598
-rw-r--r--po/fil.po597
-rw-r--r--po/fr.po612
-rw-r--r--po/gu.po597
-rw-r--r--po/ha.po597
-rw-r--r--po/he.po614
-rw-r--r--po/hi.po607
-rw-r--r--po/ht.po597
-rw-r--r--po/hu.po597
-rw-r--r--po/hus.po959
-rw-r--r--po/hy.po771
-rw-r--r--po/id.po597
-rw-r--r--po/ig.po597
-rw-r--r--po/is.po597
-rw-r--r--po/it.po602
-rw-r--r--po/ja.po600
-rw-r--r--po/km.po604
-rw-r--r--po/ko.po598
-rw-r--r--po/kos.po597
-rw-r--r--po/mg.po604
-rw-r--r--po/mi.po597
-rw-r--r--po/mk.po597
-rw-r--r--po/ml.po597
-rw-r--r--po/mn.po598
-rw-r--r--po/mr.po601
-rw-r--r--po/ms.po597
-rw-r--r--po/mvo.po597
-rw-r--r--po/nb.po598
-rw-r--r--po/ne.po631
-rw-r--r--po/nl.po612
-rw-r--r--po/pa.po597
-rw-r--r--po/pap.po601
-rw-r--r--po/pis.po2570
-rw-r--r--po/pl.po629
-rw-r--r--po/ps.po598
-rw-r--r--po/pt.po6
-rw-r--r--po/pt_BR.po601
-rw-r--r--po/qu.po1599
-rw-r--r--po/quz.po597
-rw-r--r--po/ro.po597
-rw-r--r--po/ru.po601
-rw-r--r--po/sd.po597
-rw-r--r--po/si.po606
-rw-r--r--po/sk.po597
-rw-r--r--po/sl.po597
-rw-r--r--po/sq.po598
-rw-r--r--po/sv.po601
-rw-r--r--po/sw.po597
-rw-r--r--po/ta.po607
-rw-r--r--po/te.po597
-rw-r--r--po/th.po599
-rw-r--r--po/tpi.po2570
-rw-r--r--po/tr.po598
-rw-r--r--po/tvl.po597
-rw-r--r--po/tzo.po597
-rw-r--r--po/ug.po624
-rw-r--r--po/ur.po597
-rw-r--r--po/vi.po602
-rw-r--r--po/wa.po597
-rw-r--r--po/yo.po597
-rw-r--r--po/zh_CN.po124
-rw-r--r--po/zh_TW.po622
87 files changed, 27990 insertions, 26963 deletions
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index e28984b..499eefb 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -630,7 +630,6 @@ class TurtleArtWindow():
self.show_toolbar_palette(n)
self.palette_button[self.orientation].set_layer(TAB_LAYER)
self.palette_button[2].set_layer(TAB_LAYER)
- self._display_palette_shift_button(n)
if self.activity is None or not self.activity.has_toolbarbox:
self.toolbar_spr.set_layer(CATEGORY_LAYER)
self.palette = True
@@ -640,8 +639,6 @@ class TurtleArtWindow():
self._hide_toolbar_palette()
self.palette_button[self.orientation].hide()
self.palette_button[2].hide()
- self.palette_button[3].hide()
- self.palette_button[4].hide()
if self.activity is None or not self.activity.has_toolbarbox:
self.toolbar_spr.hide()
self.palette = False
@@ -719,25 +716,6 @@ class TurtleArtWindow():
if blk.name in BLOCKS_WITH_SKIN:
self._resize_skin(blk)
- def _shift_toolbar_palette(self, n):
- ''' Shift blocks on specified palette '''
- x, y = self.palette_sprs[n][self.orientation].get_xy()
- w, h = self.palette_sprs[n][self.orientation].get_dimensions()
- bx, by = self.palettes[n][0].spr.get_xy()
- if self.orientation == 0:
- dx = w - self.width
- dy = 0
- if bx - x > 0:
- dx *= -1
- else:
- dx = 0
- dy = h - self.height + ICON_SIZE
- if by - y > 0:
- dy *= -1
- for blk in self.palettes[n]:
- if blk.get_visibility():
- blk.spr.move_relative((dx, dy))
-
def show_toolbar_palette(self, n, init_only=False, regenerate=False,
show=True):
""" Show the toolbar palettes, creating them on init_only """
@@ -778,7 +756,6 @@ class TurtleArtWindow():
# Show the palette with the current orientation.
if self.palette_sprs[n][self.orientation] is not None:
self.palette_sprs[n][self.orientation].set_layer(CATEGORY_LAYER)
- self._display_palette_shift_button(n)
# Create 'proto' blocks for each palette entry
self._create_proto_blocks(n)
@@ -808,20 +785,6 @@ class TurtleArtWindow():
self.selected_palette = save_selected
self.previous_palette = save_previous
- def _display_palette_shift_button(self, n):
- ''' Palettes too wide (or tall) for the screen get a shift button '''
- if self.palette_sprs[n][self.orientation].type == \
- 'category-shift-horizontal':
- self.palette_button[3].set_layer(CATEGORY_LAYER)
- self.palette_button[4].hide()
- elif self.palette_sprs[n][self.orientation].type == \
- 'category-shift-vertical':
- self.palette_button[3].hide()
- self.palette_button[4].set_layer(CATEGORY_LAYER)
- else:
- self.palette_button[3].hide()
- self.palette_button[4].hide()
-
def _create_the_selectors(self):
''' Create the palette selector buttons: only when running
old-style Sugar toolbars or from GNOME '''
@@ -898,21 +861,6 @@ class TurtleArtWindow():
self.palette_button[2].type = 'palette'
self.palette_button[2].set_layer(TAB_LAYER)
- # Create the palette shift buttons
- dims = self.palette_button[0].get_dimensions()
- self.palette_button.append(Sprite(self.sprite_list, 0,
- self.toolbar_offset + dims[1], svg_str_to_pixbuf(svg_from_file(
- "%s/images/palettehshift.svg" % (self.path)))))
- self.palette_button.append(Sprite(self.sprite_list, dims[0],
- self.toolbar_offset, svg_str_to_pixbuf(svg_from_file(
- "%s/images/palettevshift.svg" % (self.path)))))
- self.palette_button[3].name = _('shift')
- self.palette_button[4].name = _('shift')
- self.palette_button[3].type = 'palette'
- self.palette_button[4].type = 'palette'
- self.palette_button[3].hide()
- self.palette_button[4].hide()
-
def _create_proto_blocks(self, n):
''' Create the protoblocks that will populate a palette. '''
# Reload the palette, but reuse the existing blocks
@@ -1100,7 +1048,6 @@ class TurtleArtWindow():
self.palette_button[2].move_relative(
(self.activity.hadj_value, self.activity.vadj_value))
self.palette_sprs[n][self.orientation].set_layer(CATEGORY_LAYER)
- self._display_palette_shift_button(n)
def _make_palette_spr(self, n, x, y, w, h, regenerate=False):
''' Make the background for the palette. '''
@@ -1116,16 +1063,7 @@ class TurtleArtWindow():
if self.running_sugar and not self.hw in [XO1]:
self.palette_sprs[n][self.orientation].move_relative(
(self.activity.hadj_value, self.activity.vadj_value))
- if self.orientation == 0 and w > self.width:
- debug_output('setting to shiftable horizontal', True)
- self.palette_sprs[n][self.orientation].type = \
- 'category-shift-horizontal'
- elif self.orientation == 1 and h > self.height - ICON_SIZE:
- debug_output('setting to shiftable vertical', True)
- self.palette_sprs[n][self.orientation].type = \
- 'category-shift-vertical'
- else:
- self.palette_sprs[n][self.orientation].type = 'category'
+ self.palette_sprs[n][self.orientation].type = 'category'
if n == palette_names.index('trash'):
svg = SVG()
self.palette_sprs[n][self.orientation].set_shape(
@@ -1248,8 +1186,7 @@ class TurtleArtWindow():
if hasattr(spr, 'type'):
if spr.type == 'selector':
self._select_category(spr)
- elif spr.type in ['category', 'category-shift-horizontal',
- 'category-shift-vertical']:
+ elif spr.type == 'category':
if hide_button_hit(spr, x, y):
self.hideshow_palette(False)
elif spr.type == 'palette':
@@ -1273,8 +1210,6 @@ class TurtleArtWindow():
self.activity.palette_buttons[i].set_icon(
palette_names[i] + 'on')
self.show_palette(i)
- elif spr.name == _('shift'):
- self._shift_toolbar_palette(self.selected_palette)
else:
self.orientation = 1 - self.orientation
self.palette_button[self.orientation].set_layer(TAB_LAYER)
diff --git a/TurtleArtActivity.py b/TurtleArtActivity.py
index bb9aecb..a6a3ae5 100644
--- a/TurtleArtActivity.py
+++ b/TurtleArtActivity.py
@@ -982,13 +982,12 @@ Plugin section of plugin.info file.')
os.path.join(plugin_path, plugin_name) + '/'])
_logger.debug('Plugin installed successfully.')
if self.has_toolbarbox:
- palette_name_list = []
+ create_palette = []
if file_info.has_option('Plugin', 'palette'):
palette_name_list = file_info.get(
'Plugin', 'palette').split(',')
- create_palette = []
for palette_name in palette_name_list:
- if not palette_name.strip() in palette_names:
+ if not palette_name.rstrip() in palette_names:
create_palette.append(True)
else:
create_palette.append(False)
@@ -999,27 +998,27 @@ Plugin section of plugin.info file.')
for i, palette_name in enumerate(palette_name_list):
if create_palette[i]:
_logger.debug('Creating plugin palette %s...' % (
- palette_name.strip()))
- j = len(self.palette_buttons)
+ palette_name))
+ j = palette_names.index('trash')
self.palette_buttons.insert(j - 1,
self._radio_button_factory(
- palette_name.strip() + 'off',
+ palette_name + 'off',
self._palette_toolbar,
self.do_palette_buttons_cb,
j - 1,
- help_strings[palette_name.strip()],
+ help_strings[palette_name.rstrip()],
self.palette_buttons[0],
position=j - 1))
self.tw.palettes.insert(j - 1, [])
self.tw.palette_sprs.insert(j - 1, [None, None])
+ # We need to change the index associated with the
+ # Trash Palette Button.
+ j = palette_names.index('trash')
+ self.palette_buttons[j].connect(
+ 'clicked', self.do_palette_buttons_cb, j)
else:
_logger.debug('Palette already exists... \
skipping insert')
- # We need to change the index associated with the
- # Trash Palette Button.
- j = len(palette_names)
- self.palette_buttons[j - 1].connect(
- 'clicked', self.do_palette_buttons_cb, j - 1)
else:
self.tw.showlabel('status',
label=_('Please restart Turtle Art \
@@ -1078,7 +1077,7 @@ in order to use the plugin.'))
tmp_dir = tempfile.mkdtemp()
- if True: # try:
+ try:
tar_fd.extractall(tmp_dir)
if not plugin:
# Looking for a .ta file
@@ -1089,10 +1088,10 @@ in order to use the plugin.'))
self.tw.load_files(turtle_code, run_it)
else:
self._load_a_plugin(tmp_dir)
- else: # except:
+ except:
_logger.debug('Could not extract files from %s.' % (
file_path))
- if True: # finally:
+ finally:
if not plugin:
shutil.rmtree(tmp_dir)
tar_fd.close()
diff --git a/images/palettehshift.svg b/images/palettehshift.svg
deleted file mode 100644
index 38158aa..0000000
--- a/images/palettehshift.svg
+++ /dev/null
@@ -1,86 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- version="1.0"
- width="16"
- height="16"
- id="svg2">
- <metadata
- id="metadata8">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <defs
- id="defs9">
- <linearGradient
- x1="0"
- y1="17.200001"
- x2="37"
- y2="17.200001"
- id="linearGradient5678"
- xlink:href="#linearGradient1234"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1234">
- <stop
- id="stop3087"
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3089"
- style="stop-color:#a0ff00;stop-opacity:1"
- offset="1" />
- </linearGradient>
- </defs>
- <path
- d="m 18.983051,7.5932202 a 10.915255,10.169492 0 1 1 -21.8305089,0 10.915255,10.169492 0 1 1 21.8305089,0 z"
- transform="matrix(0.68421284,0,0,0.73438846,2.4799099,2.4236267)"
- id="path2819"
- style="fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <g
- transform="matrix(0,-1.3333333,1.3333333,0,-2.6666664,18.666666)"
- id="g3924">
- <path
- d="m 8,4 0,8"
- id="path3106"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- <g
- transform="translate(0.0303029,-0.060606)"
- id="g3896">
- <path
- d="M 7.939394,4.060606 6,6"
- id="path3108"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- d="M 8,4.060606 9.9393942,6"
- id="path3108-6"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- <g
- transform="matrix(1,0,0,-1,0.0303029,16.060606)"
- id="g3896-4">
- <path
- d="M 7.939394,4.060606 6,6"
- id="path3108-0"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- d="M 8,4.060606 9.9393942,6"
- id="path3108-6-8"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
-</svg>
diff --git a/images/palettevshift.svg b/images/palettevshift.svg
deleted file mode 100644
index 504272f..0000000
--- a/images/palettevshift.svg
+++ /dev/null
@@ -1,86 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:xlink="http://www.w3.org/1999/xlink"
- version="1.0"
- width="16"
- height="16"
- id="svg2">
- <metadata
- id="metadata8">
- <rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <defs
- id="defs9">
- <linearGradient
- x1="0"
- y1="17.200001"
- x2="37"
- y2="17.200001"
- id="linearGradient5678"
- xlink:href="#linearGradient1234"
- gradientUnits="userSpaceOnUse" />
- <linearGradient
- id="linearGradient1234">
- <stop
- id="stop3087"
- style="stop-color:#ffffff;stop-opacity:1"
- offset="0" />
- <stop
- id="stop3089"
- style="stop-color:#a0ff00;stop-opacity:1"
- offset="1" />
- </linearGradient>
- </defs>
- <path
- d="m 18.983051,7.5932202 a 10.915255,10.169492 0 1 1 -21.8305089,0 10.915255,10.169492 0 1 1 21.8305089,0 z"
- transform="matrix(0.68421284,0,0,0.73438846,2.4799099,2.4236267)"
- id="path2819"
- style="fill:#ffd000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
- <g
- transform="matrix(1.3333333,0,0,1.3333333,-2.6666664,-2.6666664)"
- id="g3924">
- <path
- d="m 8,4 0,8"
- id="path3106"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- <g
- transform="translate(0.0303029,-0.060606)"
- id="g3896">
- <path
- d="M 7.939394,4.060606 6,6"
- id="path3108"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- d="M 8,4.060606 9.9393942,6"
- id="path3108-6"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- <g
- transform="matrix(1,0,0,-1,0.0303029,16.060606)"
- id="g3896-4">
- <path
- d="M 7.939394,4.060606 6,6"
- id="path3108-0"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- <path
- d="M 8,4.060606 9.9393942,6"
- id="path3108-6-8"
- style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </g>
-</svg>
diff --git a/po/TurtleArt.pot b/po/TurtleArt.pot
index 86a2b1e..ee5691b 100644
--- a/po/TurtleArt.pot
+++ b/po/TurtleArt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-17 00:32-0500\n"
+"POT-Creation-Date: 2012-03-28 00:31-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,8 +17,8 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1742
-#: TurtleArt/tawindow.py:3043 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3069
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -51,7 +51,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -60,7 +60,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -109,8 +109,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3039
-#: TurtleArt/tawindow.py:3043 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3065
+#: TurtleArt/tawindow.py:3069 TurtleArtActivity.py:569
msgid "xcor"
msgstr ""
@@ -120,8 +120,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3039
-#: TurtleArt/tawindow.py:3043 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3065
+#: TurtleArt/tawindow.py:3069 TurtleArtActivity.py:570
msgid "ycor"
msgstr ""
@@ -131,8 +131,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3039
-#: TurtleArt/tawindow.py:3043 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3065
+#: TurtleArt/tawindow.py:3069 TurtleArtActivity.py:570
msgid "heading"
msgstr ""
@@ -174,7 +174,7 @@ msgstr ""
msgid "fill screen"
msgstr ""
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:399 taextras.py:260
+#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:399 taextras.py:264
msgid "color"
msgstr ""
@@ -562,17 +562,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -608,7 +608,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:337
msgid "value"
msgstr ""
@@ -684,12 +684,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -709,11 +709,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -726,187 +726,209 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:849 TurtleArt/tawindow.py:850
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:860 TurtleArt/tawindow.py:1193
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3134
+#: TurtleArt/tawindow.py:3165
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:155
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:241
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:290 TurtleArtActivity.py:581 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:296 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:304 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:310 TurtleArtActivity.py:709 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:317 TurtleArtActivity.py:330
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:320 TurtleArtActivity.py:338 TurtleArtActivity.py:712
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:447
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:451 TurtleArtActivity.py:573
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:510 TurtleArtActivity.py:545 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:514 TurtleArtActivity.py:543 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:541
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:547 TurtleArtActivity.py:642
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:555 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:557 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:559
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:561 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:563 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:566
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:576 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:578 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:604 TurtleArtActivity.py:694
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:647 TurtleArtActivity.py:672 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:650 TurtleArtActivity.py:675 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:653 TurtleArtActivity.py:677 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:656 TurtleArtActivity.py:680
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:658 TurtleArtActivity.py:683
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:663 TurtleArtActivity.py:688
+msgid "Load plugin"
+msgstr ""
+
+#: TurtleArtActivity.py:666 TurtleArtActivity.py:691
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:710
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:713
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:718 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:718
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:720 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:720
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:722 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:722
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:725 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:726
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:728
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:729
msgid "<Ctrl>s"
msgstr ""
+#: TurtleArtActivity.py:853 TurtleArtActivity.py:858 TurtleArtActivity.py:924
+msgid "Plugin could not be installed."
+msgstr ""
+
+#: TurtleArtActivity.py:920
+msgid "Please restart Turtle Art in order to use the plugin."
+msgstr ""
+
+#: TurtleArtActivity.py:938
+#, python-format
+msgid "Plugin %s already installed."
+msgstr ""
+
+#: TurtleArtActivity.py:939
+#, python-format
+msgid "Do you want to reinstall %s?"
+msgstr ""
+
#: gnome_plugins/collaboration_plugin.py:67
msgid "My Turtle Art session"
msgstr ""
@@ -1013,7 +1035,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1029,6 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:82
#: plugins/audio_sensors/audio_sensors.py:97 pysamples/grecord.py:205
+#: taextras.py:260
msgid "sound"
msgstr ""
@@ -1049,7 +1072,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1145,487 +1168,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:283
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1688,7 +1714,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1734,7 +1760,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2189,7 +2215,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:333
msgid "pin"
msgstr ""
@@ -2292,205 +2318,345 @@ msgstr ""
#. TRANS: Lego NXT is a robotics product of the LEGO company
#: taextras.py:257
-msgid "Palette of LEGO NXT blocks"
+msgid "Palette of LEGO NXT blocks of motors"
msgstr ""
#: taextras.py:258
+msgid "Palette of LEGO NXT blocks of sensors"
+msgstr ""
+
+#: taextras.py:261
+msgid "sound sensor"
+msgstr ""
+
+#: taextras.py:262
msgid "touch"
msgstr ""
-#: taextras.py:259
+#: taextras.py:263
msgid "ultrasonic"
msgstr ""
-#: taextras.py:261
+#: taextras.py:265
msgid "light"
msgstr ""
-#: taextras.py:262
+#: taextras.py:266
msgid "PORT A"
msgstr ""
-#: taextras.py:263
+#: taextras.py:267
msgid "PORT B"
msgstr ""
-#: taextras.py:264
+#: taextras.py:268
msgid "PORT C"
msgstr ""
-#: taextras.py:265
+#: taextras.py:269
msgid "PORT 1"
msgstr ""
-#: taextras.py:266
+#: taextras.py:270
msgid "PORT 2"
msgstr ""
-#: taextras.py:267
+#: taextras.py:271
msgid "PORT 3"
msgstr ""
-#: taextras.py:268
+#: taextras.py:272
msgid "PORT 4"
msgstr ""
-#: taextras.py:269
+#: taextras.py:273
msgid "Please check the connection with the brick."
msgstr ""
-#: taextras.py:270
+#: taextras.py:274
msgid "Please check the port."
msgstr ""
-#: taextras.py:271
+#: taextras.py:275
msgid "The value of power must be between -127 to 127."
msgstr ""
-#: taextras.py:272
-msgid "An error has ocurred: check all and try reconnect."
+#: taextras.py:276
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
-#: taextras.py:273
+#: taextras.py:277
msgid "NXT found"
msgstr ""
-#: taextras.py:274
+#: taextras.py:278
msgid "NXT not found"
msgstr ""
-#: taextras.py:275
+#: taextras.py:279
msgid "refresh NXT"
msgstr ""
-#: taextras.py:276
+#: taextras.py:280
msgid "Search for a connected NXT brick."
msgstr ""
-#: taextras.py:277
+#: taextras.py:281
msgid "play tone"
msgstr ""
-#: taextras.py:278
+#: taextras.py:282
msgid "freq"
msgstr ""
-#: taextras.py:280
+#: taextras.py:284
msgid "Play a tone at freq for time."
msgstr ""
-#: taextras.py:281
+#: taextras.py:285
msgid ""
"turn motor\n"
"rotations"
msgstr ""
-#: taextras.py:282
+#: taextras.py:286
msgid "port"
msgstr ""
-#: taextras.py:283
+#: taextras.py:287
msgid "power"
msgstr ""
-#: taextras.py:284
+#: taextras.py:288
msgid "turn a motor"
msgstr ""
-#: taextras.py:285
+#: taextras.py:289
msgid ""
"sync motors\n"
"steering"
msgstr ""
-#: taextras.py:286
+#: taextras.py:290
msgid "rotations"
msgstr ""
-#: taextras.py:287
+#: taextras.py:291
msgid "synchronize two motors"
msgstr ""
-#: taextras.py:288
+#: taextras.py:292
msgid "PORT A of the brick"
msgstr ""
-#: taextras.py:289
+#: taextras.py:293
msgid "PORT B of the brick"
msgstr ""
-#: taextras.py:290
+#: taextras.py:294
msgid "PORT C of the brick"
msgstr ""
-#: taextras.py:291
+#: taextras.py:295
msgid "start motor"
msgstr ""
-#: taextras.py:292
+#: taextras.py:296
msgid "Run a motor forever."
msgstr ""
-#: taextras.py:293
+#: taextras.py:297
msgid "brake motor"
msgstr ""
-#: taextras.py:294
+#: taextras.py:298
msgid "Stop a specified motor."
msgstr ""
-#: taextras.py:295
+#: taextras.py:299
msgid "PORT 1 of the brick"
msgstr ""
-#: taextras.py:296
+#: taextras.py:300
msgid "color sensor"
msgstr ""
-#: taextras.py:297
+#: taextras.py:301
msgid "light sensor"
msgstr ""
-#: taextras.py:298
+#: taextras.py:302
msgid "PORT 2 of the brick"
msgstr ""
-#: taextras.py:299
+#: taextras.py:303
msgid "touch sensor"
msgstr ""
-#: taextras.py:300
+#: taextras.py:304
msgid "distance sensor"
msgstr ""
-#: taextras.py:301
+#: taextras.py:305
msgid "PORT 3 of the brick"
msgstr ""
-#: taextras.py:302
+#: taextras.py:306
msgid "read"
msgstr ""
-#: taextras.py:303
+#: taextras.py:307
msgid "sensor"
msgstr ""
-#: taextras.py:304
+#: taextras.py:308
msgid "Read sensor output."
msgstr ""
-#: taextras.py:305
+#: taextras.py:309
msgid "PORT 4 of the brick"
msgstr ""
-#: taextras.py:306
+#: taextras.py:310
msgid "set light"
msgstr ""
-#: taextras.py:307
+#: taextras.py:311
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:312
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:313
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:314
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:315
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:320
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:321
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:322
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:323
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:324
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:326
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:327
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:328
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:329
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:330
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:331
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:332
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:334
+msgid "mode"
+msgstr ""
+
+#: taextras.py:335
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:336
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:338
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:339
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:340
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:342
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:343
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:344
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:345
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:348
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:349
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:350
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:351
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2540,26 +2706,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/af.po b/po/af.po
index a19f93f..4f157c8 100644
--- a/po/af.po
+++ b/po/af.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: TURTLEART\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-09-22 05:33+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: AF <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Turtle Art"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr "maak die skerm skoon en herstel die skilpad"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "links"
@@ -66,7 +66,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "draai die skilpad anti-kloksgewys (gee die hoek in grade)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "regs"
@@ -120,8 +120,8 @@ msgstr "stel rigting"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "stel die rigting van die skilpad (0 is na die bokant van die skerm.)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "x-koord"
@@ -133,8 +133,8 @@ msgstr ""
"hou die huidige x-koordinaat van die skilpad (kan gebruik word i.p.v. 'n "
"nommerblok)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "y-koord"
@@ -146,8 +146,8 @@ msgstr ""
"hou die huidige y-koordinaat van die skilpad (kan gebruik word i.p.v. 'n "
"nommerblok)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "rigting"
@@ -608,17 +608,17 @@ msgstr "stoor die numeriese waarde in veranderlike 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "teks"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "stringwaarde"
@@ -656,7 +656,7 @@ msgstr "benoemde veranderlike"
msgid "store in"
msgstr "stoor in"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -740,12 +740,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "titel"
@@ -766,11 +766,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -783,187 +783,187 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
#, fuzzy
msgid "orientation"
msgstr "voorlegging"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
#, fuzzy
msgid "next"
msgstr "teks"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "voorlegging"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Wys palet"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Versteek palet"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Wys blokke"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Versteek blokke"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Redigeer"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Hulp"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Projek"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Kopieer"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Plak"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Volskerm"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "Wys blokke"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Hou die wyser oor die oranje palet vir hulp."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Stoor as prent"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Stoor as HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Stoor as Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Stoor flitsbeeld"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Maak skoon"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Voer uit"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Stap"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Ontfout"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Stop die skilpad"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1075,7 +1075,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1111,7 +1111,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1209,505 +1209,508 @@ msgstr "AS-DAN-ANDERS-bewerker wat boolse bewerkers van die Syferpalet gebruik"
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Sugar Joernaal media-objek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Sugar Joernaal oudio-objek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "Sugar Joernaal video-objek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "beskrywing"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Sugar Journal beskrywingsveld"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "wys"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
#, fuzzy
msgid "draws text or show media from the Journal"
msgstr "teken teks of wys media van die Joernaal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "stel skaal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
#, fuzzy
msgid "sets the scale of media"
msgstr "stel die skaal van die media"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "skaal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "vra vir inset van die sleutelbord (word in sleutelbord-blok gestoor)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "sleutelbord"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "hou die resultaat van die sleutelbord-navraagblok"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
#, fuzzy
msgid "Palette of extra options"
msgstr "palet van ekstra opsies"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "druk"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
#, fuzzy
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "druk die waarde op die EILU (eerste-in-laaste-uit) stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "wys die hoop"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
#, fuzzy
msgid "shows values in FILO (first-in last-out heap)"
msgstr "druk die waarde op die EILU (eerste-in-laaste-uit) stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "maak hoop skoon"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "haal af"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
#, fuzzy
msgid "pops value off FILO (first-in last-out heap)"
msgstr "druk die waarde op die EILU (eerste-in-laaste-uit) stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "maak hoop skoon"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "druk"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "vertoon die waarde in die statusblokkie aan die onderkant van die skerm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
"voer die kode uit wat in die tamyblock.py module onder die Joernaal gevind "
"word"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "Skilpad"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "bokant"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "onderkant"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
#, fuzzy
msgid "Palette of presentation templates"
msgstr "palet van voorleggingstemplate"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "versteek blokke"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
#, fuzzy
msgid "declutters canvas by hiding blocks"
msgstr "maak werksoppervlak skoon deur blokke te versteek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "Wys blokke"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
#, fuzzy
msgid "presentation template: list of bullets"
msgstr "voorleggingstemplaat: Kollys met sewe kolle"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "voorleggingstemplaat: Kies 'n Joernaalobjek (sonder beskrywing)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "voorleggingstemplaat: Kies 'n Joernaalobjek (met beskrywing)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "voorleggingstemplaat: Kies vier Joernaalobjekte"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "voorleggingstemplaat: Kies twee Joernaalobjekte"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "x-koordinaat van die linkerkant van die skerm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "y-koordinaat van die onderkant van die skerm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "wydte"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "wydte van die werksoppervlak"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "x-koordinaat van die regterkant van die skerm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "y-koordinaat van die bokant van die skerm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "hoogte"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "hoogte van die werksoppervlak"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "onderkant"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
#, fuzzy
msgid "presentation 1x1"
msgstr "voorlegging"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
#, fuzzy
msgid "presentation 2x1"
msgstr "voorlegging"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
#, fuzzy
msgid "presentation 1x2"
msgstr "voorlegging"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
#, fuzzy
msgid "presentation 2x2"
msgstr "voorlegging"
@@ -1772,7 +1775,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1818,7 +1821,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2273,7 +2276,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2433,7 +2436,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2576,6 +2579,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "modulo"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2625,31 +2761,38 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
#, fuzzy
msgid "Stop"
msgstr "bokant"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Skilpad"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Hulp"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Hou die wyser oor die oranje palet vir hulp."
+
#~ msgid "Import/Export"
#~ msgstr "Invoer/Uitvoer"
diff --git a/po/am.po b/po/am.po
index 960ed21..50e3cc3 100644
--- a/po/am.po
+++ b/po/am.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-04-13 03:41+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "ግራ"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "ቀኝ"
@@ -110,8 +110,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -565,17 +565,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "ጽሑፍ"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -611,7 +611,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -687,12 +687,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr " አርእስት"
@@ -712,11 +712,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -729,184 +729,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "ቀጥል"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "ሙሉ እስክሪን"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "እርምጃ"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1018,7 +1018,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1054,7 +1054,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "አጣጣል"
@@ -1150,487 +1150,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "መጽሔት"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "ድምፅ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "ሚዛን"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "አትም"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "ላይኛ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1694,7 +1697,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1740,7 +1743,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2195,7 +2198,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2355,7 +2358,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2498,6 +2501,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2547,30 +2682,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "መሣሪያዎች"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "ቁም ቁሚ አቁም አቁሚ"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid "full screen"
#~ msgstr "ሙሉ እስክሪን"
diff --git a/po/ar.po b/po/ar.po
index c26e8b2..300b36f 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-01-24 00:35+0200\n"
"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
"X-Generator: Pootle 2.0.3\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "السلحفاة"
@@ -54,7 +54,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "يسار"
@@ -63,7 +63,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "يمين"
@@ -112,8 +112,8 @@ msgstr "حدد العنوان"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -123,8 +123,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -134,8 +134,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "عنوان"
@@ -567,17 +567,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -613,7 +613,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -689,12 +689,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,186 +731,186 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "مشروع"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
#, fuzzy
msgid "Fullscreen"
msgstr "ملء الشاشه"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
#, fuzzy
msgid "Clean"
msgstr "نظف"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1021,7 +1021,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1057,7 +1057,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1153,489 +1153,492 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "حدد التظليل"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "اطبع"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "سلحفاة"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1698,7 +1701,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1744,7 +1747,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2199,7 +2202,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2359,7 +2362,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2502,6 +2505,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "باقي"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2551,30 +2687,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "سلحفاة"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "ملء الشاشه"
diff --git a/po/ay.po b/po/ay.po
deleted file mode 100644
index ac24340..0000000
--- a/po/ay.po
+++ /dev/null
@@ -1,1987 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-08-29 09:03-0400\n"
-"PO-Revision-Date: 2009-02-20 14:16-0500\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Pootle 1.1.0rc2\n"
-
-#: activity/activity.info:2 turtleart.py:272 pysamples/grecord.py:205
-#: TurtleArt/tawindow.py:1568 TurtleArt/tawindow.py:2793
-#: TurtleArt/taexporthtml.py:127 TurtleArt/taexporthtml.py:129
-msgid "Turtle Art"
-msgstr ""
-
-#: turtleart.py:68
-msgid "usage is"
-msgstr ""
-
-#: turtleart.py:212
-msgid "No option action:"
-msgstr ""
-
-#: turtleart.py:224
-msgid "File not found"
-msgstr ""
-
-#: turtleart.py:248
-#, python-format
-msgid "Configuration directory not writable: %s"
-msgstr ""
-
-#: turtleart.py:304
-msgid "New"
-msgstr ""
-
-#: turtleart.py:305
-msgid "Open"
-msgstr ""
-
-#: turtleart.py:306
-msgid "Save"
-msgstr ""
-
-#: turtleart.py:307
-msgid "Save as"
-msgstr ""
-
-#: turtleart.py:308 TurtleArtActivity.py:604
-msgid "Save as image"
-msgstr ""
-
-#: turtleart.py:310 TurtleArtActivity.py:607
-msgid "Save as HTML"
-msgstr ""
-
-#: turtleart.py:312 TurtleArtActivity.py:609
-msgid "Save as Logo"
-msgstr ""
-
-#: turtleart.py:314
-msgid "Quit"
-msgstr ""
-
-#: turtleart.py:315
-msgid "File"
-msgstr ""
-
-#: turtleart.py:318 TurtleArtActivity.py:539
-msgid "Cartesian coordinates"
-msgstr ""
-
-#: turtleart.py:320 TurtleArtActivity.py:541
-msgid "Polar coordinates"
-msgstr ""
-
-#: turtleart.py:322
-msgid "Rescale coordinates"
-msgstr ""
-
-#: turtleart.py:324 TurtleArtActivity.py:554
-msgid "Grow blocks"
-msgstr ""
-
-#: turtleart.py:326 TurtleArtActivity.py:556
-msgid "Shrink blocks"
-msgstr ""
-
-#: turtleart.py:328
-msgid "Reset block size"
-msgstr ""
-
-#: turtleart.py:330 TurtleArtActivity.py:469 TurtleArtActivity.py:518
-msgid "View"
-msgstr ""
-
-#: turtleart.py:333 TurtleArtActivity.py:533
-msgid "Copy"
-msgstr ""
-
-#: turtleart.py:334 TurtleArtActivity.py:535
-msgid "Paste"
-msgstr ""
-
-#: turtleart.py:335 TurtleArtActivity.py:465 TurtleArtActivity.py:520
-msgid "Edit"
-msgstr ""
-
-#: turtleart.py:338 TurtleArtActivity.py:244
-msgid "Show palette"
-msgstr ""
-
-#: turtleart.py:340 TurtleArtActivity.py:250 TurtleArtActivity.py:629
-msgid "Hide palette"
-msgstr ""
-
-#: turtleart.py:342
-msgid "Show/hide blocks"
-msgstr ""
-
-#: turtleart.py:344
-msgid "Tools"
-msgstr ""
-
-#: turtleart.py:347 TurtleArtActivity.py:638
-msgid "Clean"
-msgstr ""
-
-#: turtleart.py:348 TurtleArtActivity.py:640
-msgid "Run"
-msgstr ""
-
-#: turtleart.py:349 TurtleArtActivity.py:642
-msgid "Step"
-msgstr ""
-
-#: turtleart.py:350 TurtleArtActivity.py:644
-msgid "Debug"
-msgstr ""
-
-#: turtleart.py:351
-msgid "Stop"
-msgstr ""
-
-#: turtleart.py:352
-msgid "Turtle"
-msgstr ""
-
-#: turtleart.py:382
-msgid "You have unsaved work. Would you like to save before quitting?"
-msgstr ""
-
-#: turtleart.py:383
-msgid "Save project?"
-msgstr ""
-
-#: TurtleArtActivity.py:125
-msgid "presentation"
-msgstr ""
-
-#: TurtleArtActivity.py:196
-msgid "snapshot"
-msgstr ""
-
-#: TurtleArtActivity.py:257 TurtleArtActivity.py:270
-msgid "Show blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:260 TurtleArtActivity.py:278 TurtleArtActivity.py:632
-msgid "Hide blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:398
-msgid "Rescale coordinates down"
-msgstr ""
-
-#: TurtleArtActivity.py:402 TurtleArtActivity.py:551
-msgid "Rescale coordinates up"
-msgstr ""
-
-#: TurtleArtActivity.py:476 TurtleArtActivity.py:524
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:497 TurtleArtActivity.py:623
-msgid "Load example"
-msgstr ""
-
-#: TurtleArtActivity.py:516
-msgid "Project"
-msgstr ""
-
-#: TurtleArtActivity.py:522
-msgid "Import/Export"
-msgstr ""
-
-#: TurtleArtActivity.py:537
-msgid "Fullscreen"
-msgstr ""
-
-#: TurtleArtActivity.py:544
-msgid "Metric coordinates"
-msgstr ""
-
-#: TurtleArtActivity.py:547 TurtleArt/tawindow.py:2789
-#: TurtleArt/tawindow.py:2793 TurtleArt/tabasics.py:216
-msgid "xcor"
-msgstr ""
-
-#: TurtleArtActivity.py:548 TurtleArt/tawindow.py:2789
-#: TurtleArt/tawindow.py:2793 TurtleArt/tabasics.py:227
-msgid "ycor"
-msgstr ""
-
-#: TurtleArtActivity.py:548 TurtleArt/tawindow.py:2789
-#: TurtleArt/tawindow.py:2793 TurtleArt/tabasics.py:238
-msgid "heading"
-msgstr ""
-
-#: TurtleArtActivity.py:574 TurtleArtActivity.py:578
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:612
-msgid "Save snapshot"
-msgstr ""
-
-#: TurtleArtActivity.py:616
-msgid "Import project from the Journal"
-msgstr ""
-
-#: TurtleArtActivity.py:619
-msgid "Load Python block"
-msgstr ""
-
-#: TurtleArtActivity.py:630
-msgid "<Ctrl>p"
-msgstr ""
-
-#: TurtleArtActivity.py:633
-msgid "<Ctrl>b"
-msgstr ""
-
-#: TurtleArtActivity.py:638
-msgid "<Ctrl>e"
-msgstr ""
-
-#: TurtleArtActivity.py:640
-msgid "<Ctrl>r"
-msgstr ""
-
-#: TurtleArtActivity.py:642
-msgid "<Ctrl>w"
-msgstr ""
-
-#: TurtleArtActivity.py:644
-msgid "<Ctrl>d"
-msgstr ""
-
-#: TurtleArtActivity.py:646
-msgid "Stop turtle"
-msgstr ""
-
-#: TurtleArtActivity.py:647
-msgid "<Ctrl>s"
-msgstr ""
-
-#: taextras.py:36
-msgid "Turtle Art Mini"
-msgstr ""
-
-#: taextras.py:40
-msgid "Turtle Confusion"
-msgstr ""
-
-#: taextras.py:41
-msgid "Select a challenge"
-msgstr ""
-
-#: taextras.py:47
-msgid "Palette of Mexican pesos"
-msgstr ""
-
-#: taextras.py:48
-msgid "Palette of Colombian pesos"
-msgstr ""
-
-#: taextras.py:49
-msgid "Palette of Rwandan francs"
-msgstr ""
-
-#: taextras.py:50
-msgid "Palette of US currencies"
-msgstr ""
-
-#: taextras.py:51
-msgid "Palette of Australian currencies"
-msgstr ""
-
-#: taextras.py:52
-msgid "Palette of Guaranies"
-msgstr ""
-
-#. TRANS: Butia is the Arduino Robot Project from Uruguay
-#. (http://www.fing.edu.uy/inco/proyectos/butia/)
-#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr ""
-
-#: taextras.py:59
-msgid "Adjust LED intensity between 0 and 255."
-msgstr ""
-
-#: taextras.py:60
-msgid ""
-"Returns the object gray level encountered him as a number between 0 and 1023."
-msgstr ""
-
-#: taextras.py:62
-msgid "Returns 1 when the button is press and 0 otherwise."
-msgstr ""
-
-#: taextras.py:63
-msgid "Returns the ambient light level as a number between 0 and 1023."
-msgstr ""
-
-#: taextras.py:64
-msgid "Returns the ambient temperature as a number between 0 and 255."
-msgstr ""
-
-#: taextras.py:65
-msgid ""
-"Returns the distance from the object in front of the sensor as a number "
-"between 0 and 255."
-msgstr ""
-
-#: taextras.py:67
-msgid "Returns 0 or 1 depending on the sensor inclination."
-msgstr ""
-
-#: taextras.py:68
-msgid "Returns 1 when the sensors detects a magnetic field, 0 otherwise."
-msgstr ""
-
-#: taextras.py:69
-msgid "Switches from 0 to 1, the frequency depends on the vibration."
-msgstr ""
-
-#: taextras.py:70
-msgid "LED"
-msgstr ""
-
-#: taextras.py:71
-msgid "pushbutton"
-msgstr ""
-
-#: taextras.py:72
-msgid "grayscale"
-msgstr ""
-
-#: taextras.py:73
-msgid "ambient light"
-msgstr ""
-
-#: taextras.py:74
-msgid "temperature"
-msgstr ""
-
-#: taextras.py:75
-msgid "distance"
-msgstr ""
-
-#: taextras.py:76
-msgid "tilt"
-msgstr ""
-
-#: taextras.py:77
-msgid "magnetic induction"
-msgstr ""
-
-#: taextras.py:78
-msgid "vibration"
-msgstr ""
-
-#: taextras.py:79
-msgid "Butia Robot"
-msgstr ""
-
-#: taextras.py:80
-msgid "delay Butia"
-msgstr ""
-
-#: taextras.py:81
-msgid "wait for argument seconds"
-msgstr ""
-
-#: taextras.py:82
-msgid "Butia battery charge"
-msgstr ""
-
-#: taextras.py:83
-msgid "Returns the battery charge as a number between 0 and 255."
-msgstr ""
-
-#: taextras.py:84
-msgid "Butia speed"
-msgstr ""
-
-#: taextras.py:85
-msgid ""
-"Set the speed of the Butia motors as a value between 0 and 1023, passed by "
-"an argument."
-msgstr ""
-
-#: taextras.py:87
-msgid "forward Butia"
-msgstr ""
-
-#: taextras.py:88
-msgid "Move the Butia robot forward."
-msgstr ""
-
-#: taextras.py:89
-msgid "forward distance"
-msgstr ""
-
-#: taextras.py:90
-msgid "Move the Butia robot forward a predefined distance."
-msgstr ""
-
-#: taextras.py:91
-msgid "backward Butia"
-msgstr ""
-
-#: taextras.py:92 taextras.py:96 taextras.py:98 taextras.py:102
-msgid "Move the Butia robot backward."
-msgstr ""
-
-#: taextras.py:93
-msgid "backward distance"
-msgstr ""
-
-#: taextras.py:94
-msgid "Move the Butia robot backward a predefined distance."
-msgstr ""
-
-#: taextras.py:95
-msgid "left Butia"
-msgstr ""
-
-#: taextras.py:97
-msgid "right Butia"
-msgstr ""
-
-#: taextras.py:99
-msgid "Turn x degrees"
-msgstr ""
-
-#: taextras.py:100
-msgid "Turn the Butia robot x degrees."
-msgstr ""
-
-#: taextras.py:101
-msgid "stop Butia"
-msgstr ""
-
-#: taextras.py:103
-msgid "print Butia"
-msgstr ""
-
-#: taextras.py:104
-msgid "Print text in Butia robot 32-character ASCII display."
-msgstr ""
-
-#: taextras.py:105
-msgid "Butia"
-msgstr ""
-
-#: taextras.py:109
-msgid "The camera was not found."
-msgstr ""
-
-#: taextras.py:110
-msgid "Error on the initialization of the camera."
-msgstr ""
-
-#: taextras.py:111
-msgid "FollowMe"
-msgstr ""
-
-#: taextras.py:112
-msgid "follow a RGB color"
-msgstr ""
-
-#: taextras.py:113
-msgid "follow a turtle color"
-msgstr ""
-
-#: taextras.py:114
-msgid "calibrate a color to follow"
-msgstr ""
-
-#: taextras.py:115
-msgid "x position"
-msgstr ""
-
-#: taextras.py:116
-msgid "return x position"
-msgstr ""
-
-#: taextras.py:117
-msgid "y position"
-msgstr ""
-
-#: taextras.py:118
-msgid "return y position"
-msgstr ""
-
-#: taextras.py:122
-msgid "Sumo Butia"
-msgstr ""
-
-#: taextras.py:123
-msgid "submit speed​​"
-msgstr ""
-
-#: taextras.py:124
-msgid "Send speeds the robot."
-msgstr ""
-
-#: taextras.py:125
-msgid "set speed"
-msgstr ""
-
-#: taextras.py:126
-msgid "Set the default speed for the movement commands."
-msgstr ""
-
-#: taextras.py:127
-msgid "move"
-msgstr ""
-
-#: taextras.py:128 TurtleArt/tabasics.py:131
-msgid "back"
-msgstr ""
-
-#: taextras.py:129 pysamples/grecord.py:215
-msgid "stop"
-msgstr ""
-
-#: taextras.py:130
-msgid "turn left"
-msgstr ""
-
-#: taextras.py:131
-msgid "turn right"
-msgstr ""
-
-#: taextras.py:132
-msgid "angle to center"
-msgstr ""
-
-#. TRANS: dojo is the playing field
-#: taextras.py:134
-msgid "Get the angle to the center of the dojo."
-msgstr ""
-
-#: taextras.py:135
-msgid "angle to the opponent"
-msgstr ""
-
-#: taextras.py:136
-msgid "Get the angle to the center of the opponent."
-msgstr ""
-
-#: taextras.py:137
-msgid "x coor."
-msgstr ""
-
-#: taextras.py:138
-msgid "Get the x coordinate of the robot."
-msgstr ""
-
-#: taextras.py:139
-msgid "y coor."
-msgstr ""
-
-#: taextras.py:140
-msgid "Get the y coordinate of the robot."
-msgstr ""
-
-#: taextras.py:141
-msgid "opponent x coor."
-msgstr ""
-
-#: taextras.py:142
-msgid "Get the x coordinate of the opponent."
-msgstr ""
-
-#: taextras.py:143
-msgid "opponent y coor."
-msgstr ""
-
-#: taextras.py:144
-msgid "Get the y coordinate of the opponent."
-msgstr ""
-
-#: taextras.py:145
-msgid "rotation"
-msgstr ""
-
-#: taextras.py:146
-msgid "Get SumBot rotation."
-msgstr ""
-
-#: taextras.py:147
-msgid "opponent rotation"
-msgstr ""
-
-#: taextras.py:148
-msgid "Get the rotation of the opponent."
-msgstr ""
-
-#: taextras.py:149
-msgid "distance to center"
-msgstr ""
-
-#. TRANS: dojo is the playing field
-#: taextras.py:151
-msgid "Get the distance to the center of the dojo."
-msgstr ""
-
-#: taextras.py:152
-msgid "distance to opponent"
-msgstr ""
-
-#: taextras.py:153
-msgid "Get the distance to the opponent."
-msgstr ""
-
-#: taextras.py:154
-msgid "update information"
-msgstr ""
-
-#: taextras.py:155
-msgid "Update information from the server."
-msgstr ""
-
-#: pysamples/grecord.py:205 plugins/audio_sensors/audio_sensors.py:82
-#: plugins/audio_sensors/audio_sensors.py:97
-msgid "sound"
-msgstr ""
-
-#: pysamples/grecord.py:213 TurtleArt/tabasics.py:801
-msgid "start"
-msgstr ""
-
-#: pysamples/grecord.py:217
-msgid "play"
-msgstr ""
-
-#: pysamples/grecord.py:219
-msgid "save"
-msgstr ""
-
-#: pysamples/uturn.py:24
-msgid "uturn"
-msgstr ""
-
-#: pysamples/uturn.py:26
-msgid "make a uturn"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:67
-msgid "My Turtle Art session"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:115
-msgid "Enable collaboration"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:120
-msgid "Activities"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:125
-msgid "Buddies"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:128
-msgid "Share"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:129
-msgid "Configuration"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:132
-msgid "Neighborhood"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:288
-msgid "Nickname"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:290
-msgid "Account ID"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:292
-msgid "Server"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:294
-msgid "Port"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:296
-msgid "Password"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:298
-msgid "Register"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:300
-msgid "Colors"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:64
-msgid "Upload to Web"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:66
-msgid "Upload"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:83
-msgid ""
-"You must have an account at http://turtleartsite.sugarlabs.org to upload "
-"your project."
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:92
-msgid "Username:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:102
-msgid "Password:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:113
-msgid "Title:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:123
-msgid "Description:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:133
-msgid "Submit to Web"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:137
-msgid "Cancel"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:159
-msgid "Login failed"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:196
-msgid "Failed to upload!"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:58 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:269
-#: plugins/light_sensor/light_sensor.py:49
-#: plugins/audio_sensors/audio_sensors.py:75
-#: plugins/accelerometer/accelerometer.py:49
-msgid "Palette of sensor blocks"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:69
-#: plugins/camera_sensor/camera_sensor.py:81
-#: plugins/camera_sensor/camera_sensor.py:99
-#: plugins/camera_sensor/camera_sensor.py:112
-#: plugins/light_sensor/light_sensor.py:55
-#: plugins/light_sensor/light_sensor.py:62
-msgid "brightness"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:70
-#: plugins/camera_sensor/camera_sensor.py:101
-msgid "light level detected by camera"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:82
-#: plugins/camera_sensor/camera_sensor.py:113
-msgid "Average RGB color from camera is pushed to the stack"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:93
-#: plugins/camera_sensor/camera_sensor.py:125
-msgid "camera output"
-msgstr ""
-
-#: plugins/rfid/rfid.py:91 plugins/rfid/rfid.py:99
-msgid "RFID"
-msgstr ""
-
-#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100
-msgid "read value from RFID device"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98
-#: TurtleArt/tabasics.py:707
-msgid "Palette of flow operators"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103
-msgid "while"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:104
-msgid "do-while-True operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:110
-msgid "until"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:111
-msgid "do-until-True operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:118
-msgid "Palette of media objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124
-msgid "journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:125
-msgid "Sugar Journal media object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:135
-msgid "audio"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
-msgid "Sugar Journal audio object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:147
-msgid "video"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
-msgid "Sugar Journal video object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:159
-msgid "description"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
-msgid "Sugar Journal description field"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:170
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:171
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:179
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:192
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207
-#: TurtleArt/tabasics.py:834 TurtleArt/tabasics.py:835
-#: TurtleArt/tabasics.py:836
-msgid "text"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
-#: TurtleArt/tabasics.py:837
-msgid "string value"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:178
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:206
-msgid "show"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
-msgid "draws text or show media from the Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:191
-msgid "show aligned"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:218
-msgid "set scale"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222
-msgid "sets the scale of media"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:229
-msgid "save picture"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
-msgid "picture name"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
-msgid "saves a picture to the Sugar Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:240
-msgid "save SVG"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
-msgid "saves turtle graphics as an SVG file in the Sugar Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:250
-msgid "scale"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:254
-msgid "holds current scale value"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259
-msgid "media wait"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
-msgid "wait for current video or audio to complete"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
-msgid "query keyboard"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:276
-msgid "query for keyboard input (results stored in keyboard block)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283
-msgid "keyboard"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287
-msgid "holds results of query-keyboard block"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
-msgid "read pixel"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297
-msgid "RGB color under the turtle is pushed to the stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305
-msgid "turtle sees"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307
-msgid "returns the color that the turtle \"sees\""
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:315
-msgid "time"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:318
-msgid "elapsed time (in seconds) since program started"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:327
-msgid "Palette of extra options"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
-msgid "push"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:335
-msgid "pushes value onto FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
-msgid "show heap"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348
-msgid "shows values in FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358
-msgid "empty heap"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
-msgid "emptys FILO (first-in-last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371
-msgid "pop"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:375
-msgid "pops value off FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:387
-msgid "comment"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
-msgid "places a comment in your code"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
-msgid "print"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:397
-msgid "prints value in status block at bottom of the screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:405
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
-msgid "Python"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:408
-msgid ""
-"a programmable block: used to add advanced single-variable math equations, e."
-"g., sin(x)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
-msgid ""
-"a programmable block: used to add advanced multi-variable math equations, e."
-"g., sqrt(x*x+y*y)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:433
-msgid ""
-"a programmable block: used to add advanced multi-variable math equations, e."
-"g., sin(x+y+z)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:459
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
-msgid "Python block"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:446
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:461
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:476
-msgid "runs code found in the tamyblock.py module found in the Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
-msgid "Cartesian"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:491
-msgid "displays Cartesian coordinates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:497
-msgid "polar"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
-msgid "displays polar coordinates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:505
-msgid "turtle"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508
-msgid "chooses which turtle to command"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:517
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:526
-msgid "turtle shell"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-msgid "put a custom 'shell' on the turtle"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:697
-msgid "top"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:534
-msgid "top of a collapsed stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:673
-msgid "bottom"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541
-msgid "bottom of a collapsible stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549
-msgid "bottom block in a collapsed stack: click to open"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:569
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
-msgid "top of stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:567
-msgid "label"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
-msgid "top of a collapsible stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:575
-#: TurtleArt/tautils.py:590
-msgid "click to open"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-msgid "Palette of presentation templates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:587
-msgid "hide blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:589
-msgid "declutters canvas by hiding blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:594
-msgid "show blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
-msgid "restores hidden blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
-msgid "full screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
-msgid "hides the Sugar toolbars"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:612
-msgid "list"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
-msgid "presentation bulleted list"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
-msgid "presentation template: list of bullets"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:630
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
-msgid "presentation template: select Journal object (no description)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776
-msgid "presentation template: select Journal object (with description)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:832
-msgid "presentation template: select four Journal objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:651
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:818
-msgid "presentation template: select two Journal objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
-#: TurtleArt/tabasics.py:154
-msgid "left"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:668
-msgid "xcor of left of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:676
-msgid "ycor of bottom of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-msgid "width"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:684
-msgid "the canvas width"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: TurtleArt/tabasics.py:165
-msgid "right"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:692
-msgid "xcor of right of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700
-msgid "ycor of top of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:705
-msgid "height"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
-msgid "the canvas height"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
-msgid "title x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-msgid "title y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:733
-msgid "left x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
-msgid "top y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:751
-msgid "right x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
-msgid "bottom y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:788
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:802
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:816
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:830
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:844
-#: TurtleArt/taconstants.py:251 TurtleArt/taconstants.py:273
-#: TurtleArt/taconstants.py:294 TurtleArt/taconstants.py:336
-#: TurtleArt/taconstants.py:378 TurtleArt/taconstants.py:420
-msgid "Title"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:775
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789
-msgid "presentation 1x1"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:803
-msgid "presentation 2x1"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
-msgid "presentation 1x2"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
-msgid "presentation 2x2"
-msgstr ""
-
-#: plugins/light_sensor/light_sensor.py:57
-#: plugins/light_sensor/light_sensor.py:64
-msgid "light level detected by light sensor"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:83
-#: plugins/audio_sensors/audio_sensors.py:98
-msgid "raw microphone input signal"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:89
-#: plugins/audio_sensors/audio_sensors.py:104
-msgid "loudness"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:90
-#: plugins/audio_sensors/audio_sensors.py:105
-msgid "microphone input volume"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:118
-#: plugins/audio_sensors/audio_sensors.py:126
-msgid "pitch"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:119
-#: plugins/audio_sensors/audio_sensors.py:127
-msgid "microphone input pitch"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:145
-#: plugins/audio_sensors/audio_sensors.py:159
-msgid "resistance"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:146
-#: plugins/audio_sensors/audio_sensors.py:160
-msgid "microphone input resistance"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:151
-#: plugins/audio_sensors/audio_sensors.py:166
-msgid "voltage"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:152
-#: plugins/audio_sensors/audio_sensors.py:167
-msgid "microphone input voltage"
-msgstr ""
-
-#: plugins/accelerometer/accelerometer.py:55
-#: plugins/accelerometer/accelerometer.py:62
-msgid "acceleration"
-msgstr ""
-
-#: plugins/accelerometer/accelerometer.py:57
-#: plugins/accelerometer/accelerometer.py:64
-msgid "push acceleration in x, y, z to heap"
-msgstr ""
-
-#: TurtleArt/tapalette.py:83
-msgid "displays next palette"
-msgstr ""
-
-#: TurtleArt/tapalette.py:84
-msgid "changes the orientation of the palette of blocks"
-msgstr ""
-
-#: TurtleArt/tawindow.py:748 TurtleArt/tawindow.py:749
-msgid "orientation"
-msgstr ""
-
-#: TurtleArt/tawindow.py:759 TurtleArt/tawindow.py:1022
-msgid "next"
-msgstr ""
-
-#: TurtleArt/tawindow.py:2885
-msgid "image"
-msgstr ""
-
-#: TurtleArt/tautils.py:173
-msgid "Load..."
-msgstr ""
-
-#: TurtleArt/tautils.py:182
-msgid "Save..."
-msgstr ""
-
-#: TurtleArt/talogo.py:417
-msgid "did not output to"
-msgstr ""
-
-#: TurtleArt/talogo.py:466
-msgid "I don't know how to"
-msgstr ""
-
-#: TurtleArt/talogo.py:512
-msgid "doesn't like"
-msgstr ""
-
-#: TurtleArt/talogo.py:512
-msgid "as input"
-msgstr ""
-
-#: TurtleArt/tabasics.py:115
-msgid "Palette of turtle commands"
-msgstr ""
-
-#: TurtleArt/tabasics.py:120
-msgid "forward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:124
-msgid "moves turtle forward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:135
-msgid "moves turtle backward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:143
-msgid "clean"
-msgstr ""
-
-#: TurtleArt/tabasics.py:146
-msgid "clears the screen and reset the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:158
-msgid "turns turtle counterclockwise (angle in degrees)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:169
-msgid "turns turtle clockwise (angle in degrees)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "arc"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "angle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "radius"
-msgstr ""
-
-#: TurtleArt/tabasics.py:181
-msgid "moves turtle along an arc"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256
-msgid "set xy"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256
-msgid "x"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256
-msgid "y"
-msgstr ""
-
-#: TurtleArt/tabasics.py:194 TurtleArt/tabasics.py:260
-msgid ""
-"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen."
-msgstr ""
-
-#
-#: TurtleArt/tabasics.py:204
-msgid "set heading"
-msgstr "seth"
-
-#: TurtleArt/tabasics.py:208
-msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:217
-msgid ""
-"holds current x-coordinate value of the turtle (can be used in place of a "
-"number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:228
-msgid ""
-"holds current y-coordinate value of the turtle (can be used in place of a "
-"number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:239
-msgid ""
-"holds current heading value of the turtle (can be used in place of a number "
-"block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:273
-msgid "Palette of pen commands"
-msgstr ""
-
-#: TurtleArt/tabasics.py:277
-msgid "pen up"
-msgstr ""
-
-#: TurtleArt/tabasics.py:280
-msgid "Turtle will not draw when moved."
-msgstr ""
-
-#: TurtleArt/tabasics.py:286
-msgid "pen down"
-msgstr ""
-
-#: TurtleArt/tabasics.py:289
-msgid "Turtle will draw when moved."
-msgstr ""
-
-#: TurtleArt/tabasics.py:295
-msgid "set pen size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:299
-msgid "sets size of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309
-msgid "fill screen"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:394
-msgid "color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:404
-msgid "shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:313
-msgid "fills the background with (color, shade)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:322
-msgid "pen size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:323
-msgid "holds current pen size (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:334
-msgid "start fill"
-msgstr ""
-
-#: TurtleArt/tabasics.py:336
-msgid "starts filled polygon (used with end fill block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:343
-msgid "end fill"
-msgstr ""
-
-#: TurtleArt/tabasics.py:345
-msgid "completes filled polygon (used with start fill block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:355
-msgid "Palette of pen colors"
-msgstr ""
-
-#: TurtleArt/tabasics.py:359
-msgid "set color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:363
-msgid "sets color of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:371
-msgid "set shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:375
-msgid "sets shade of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:383
-msgid "set gray"
-msgstr ""
-
-#: TurtleArt/tabasics.py:386
-msgid "sets gray level of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:395
-msgid "holds current pen color (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:405
-msgid "holds current pen shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:413
-msgid "gray"
-msgstr ""
-
-#: TurtleArt/tabasics.py:414
-msgid "holds current gray level (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:434
-msgid "set text color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:437
-msgid "sets color of text drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:445
-msgid "set text size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:448
-msgid "sets size of text drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:531
-msgid "Palette of numeric operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:537
-msgid "plus"
-msgstr ""
-
-#: TurtleArt/tabasics.py:540
-msgid "adds two alphanumeric inputs"
-msgstr ""
-
-#: TurtleArt/tabasics.py:548
-msgid "minus"
-msgstr ""
-
-#: TurtleArt/tabasics.py:551
-msgid "subtracts bottom numeric input from top numeric input"
-msgstr ""
-
-#: TurtleArt/tabasics.py:562
-msgid "multiply"
-msgstr ""
-
-#: TurtleArt/tabasics.py:565
-msgid "multiplies two numeric inputs"
-msgstr ""
-
-#: TurtleArt/tabasics.py:574
-msgid "divide"
-msgstr ""
-
-#: TurtleArt/tabasics.py:577
-msgid ""
-"divides top numeric input (numerator) by bottom numeric input (denominator)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:587
-msgid "identity"
-msgstr ""
-
-#: TurtleArt/tabasics.py:589
-msgid "identity operator used for extending blocks"
-msgstr ""
-
-#: TurtleArt/tabasics.py:597 TurtleArt/tabasics.py:598
-msgid "mod"
-msgstr ""
-
-#: TurtleArt/tabasics.py:601
-msgid "modular (remainder) operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:608
-msgid "√"
-msgstr ""
-
-#: TurtleArt/tabasics.py:609
-msgid "square root"
-msgstr ""
-
-#: TurtleArt/tabasics.py:612
-msgid "calculates square root"
-msgstr ""
-
-#: TurtleArt/tabasics.py:619
-msgid "random"
-msgstr ""
-
-#: TurtleArt/tabasics.py:619
-msgid "min"
-msgstr ""
-
-#: TurtleArt/tabasics.py:619
-msgid "max"
-msgstr ""
-
-#: TurtleArt/tabasics.py:623
-msgid "returns random number between minimum (top) and maximum (bottom) values"
-msgstr ""
-
-#: TurtleArt/tabasics.py:635
-msgid "number"
-msgstr ""
-
-#: TurtleArt/tabasics.py:636
-msgid "used as numeric input in mathematic operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:643
-msgid "greater than"
-msgstr ""
-
-#: TurtleArt/tabasics.py:646
-msgid "logical greater-than operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:654
-msgid "less than"
-msgstr ""
-
-#: TurtleArt/tabasics.py:657
-msgid "logical less-than operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:665
-msgid "equal"
-msgstr ""
-
-#: TurtleArt/tabasics.py:668
-msgid "logical equal-to operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:674
-msgid "not"
-msgstr ""
-
-#: TurtleArt/tabasics.py:677
-msgid "logical NOT operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:683 TurtleArt/tabasics.py:686
-msgid "and"
-msgstr ""
-
-#: TurtleArt/tabasics.py:687
-msgid "logical AND operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:694 TurtleArt/tabasics.py:697
-msgid "or"
-msgstr ""
-
-#: TurtleArt/tabasics.py:698
-msgid "logical OR operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:712
-msgid "wait"
-msgstr ""
-
-#: TurtleArt/tabasics.py:716
-msgid "pauses program execution a specified number of seconds"
-msgstr ""
-
-#: TurtleArt/tabasics.py:723
-msgid "forever"
-msgstr ""
-
-#: TurtleArt/tabasics.py:727
-msgid "loops forever"
-msgstr ""
-
-#: TurtleArt/tabasics.py:733 TurtleArt/tabasics.py:737
-msgid "repeat"
-msgstr ""
-
-#: TurtleArt/tabasics.py:738
-msgid "loops specified number of times"
-msgstr ""
-
-#: TurtleArt/tabasics.py:744 TurtleArt/tabasics.py:756
-msgid "if"
-msgstr ""
-
-#: TurtleArt/tabasics.py:744
-msgid "then"
-msgstr ""
-
-#: TurtleArt/tabasics.py:747
-msgid "if then"
-msgstr ""
-
-#: TurtleArt/tabasics.py:749
-msgid "if-then operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: TurtleArt/tabasics.py:756
-msgid "then else"
-msgstr ""
-
-#: TurtleArt/tabasics.py:760
-msgid "if then else"
-msgstr ""
-
-#: TurtleArt/tabasics.py:761
-msgid "if-then-else operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: TurtleArt/tabasics.py:769
-msgid "horizontal space"
-msgstr ""
-
-#: TurtleArt/tabasics.py:770
-msgid "jogs stack right"
-msgstr ""
-
-#: TurtleArt/tabasics.py:777
-msgid "vertical space"
-msgstr ""
-
-#: TurtleArt/tabasics.py:778
-msgid "jogs stack down"
-msgstr ""
-
-#: TurtleArt/tabasics.py:784
-msgid "stop action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:787
-msgid "stops current action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:796
-msgid "Palette of variable blocks"
-msgstr ""
-
-#: TurtleArt/tabasics.py:804
-msgid "connects action to toolbar run buttons"
-msgstr ""
-
-#: TurtleArt/tabasics.py:812
-msgid "store in box 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:816
-msgid "stores numeric value in Variable 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:823
-msgid "store in box 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:827
-msgid "stores numeric value in Variable 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:841
-msgid "box 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:844
-msgid "Variable 1 (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:850
-msgid "box 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:853
-msgid "Variable 2 (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:870
-msgid "box"
-msgstr ""
-
-#: TurtleArt/tabasics.py:862 TurtleArt/tabasics.py:873
-msgid "my box"
-msgstr ""
-
-#: TurtleArt/tabasics.py:864
-msgid "named variable (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:870
-msgid "store in"
-msgstr ""
-
-#: TurtleArt/tabasics.py:870
-msgid "value"
-msgstr ""
-
-#: TurtleArt/tabasics.py:874
-msgid "stores numeric value in named variable"
-msgstr ""
-
-#: TurtleArt/tabasics.py:882 TurtleArt/tabasics.py:884
-#: TurtleArt/tabasics.py:908 TurtleArt/tabasics.py:911
-msgid "action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:886
-msgid "top of nameable action stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:891 TurtleArt/tabasics.py:918
-msgid "action 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:894
-msgid "top of Action 1 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:899 TurtleArt/tabasics.py:927
-msgid "action 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:902
-msgid "top of Action 2 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:912
-msgid "invokes named action stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:921
-msgid "invokes Action 1 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:930
-msgid "invokes Action 2 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:938
-msgid "trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:942
-msgid "empty trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:943
-msgid "permanently deletes items in trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:947
-msgid "restore all"
-msgstr ""
-
-#: TurtleArt/tabasics.py:948
-msgid "restore all blocks from trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:952
-msgid "clear all"
-msgstr ""
-
-#: TurtleArt/tabasics.py:953
-msgid "move all blocks to trash"
-msgstr ""
diff --git a/po/aym.po b/po/aym.po
index b6e7425..b004e5c 100644
--- a/po/aym.po
+++ b/po/aym.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-14 00:31-0400\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-11-26 06:46+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
# "TortugArte"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1743
-#: TurtleArt/tawindow.py:3044 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "CharapArte"
@@ -57,7 +57,7 @@ msgstr ""
# "izquierda"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "ch'iqa"
@@ -67,7 +67,7 @@ msgstr ""
# "derecha"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "kupi"
@@ -119,8 +119,8 @@ msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
# "coorx"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -131,8 +131,8 @@ msgid ""
msgstr ""
# "coory"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -143,8 +143,8 @@ msgid ""
msgstr ""
# "rumbo"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "qawkirusa sarasna"
@@ -590,17 +590,17 @@ msgstr ""
# "texto"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "qillqawi"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -713,12 +713,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "Suti:"
@@ -739,11 +739,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -758,227 +758,225 @@ msgid "Save..."
msgstr "Imaña..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
# "presentación"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
#, fuzzy
msgid "orientation"
msgstr "uñt'ayawi"
# "siguiente"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1165
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "jutiri"
# "imagen"
-#: TurtleArt/tawindow.py:3135
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "uñjasiwi"
# "presentación"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "uñt'ayawi"
# "instantánea"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "k'ataki untayasi"
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
# "Mostrar paleta"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Uñachayaña"
# "Ocultar paleta"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Imtaña"
# "Mostrar bloques"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Perkanaka uñachayaña"
# "Ocultar bloques"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Pirqanaka imxataña"
# "Escalar coordenadas hacia abajo"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Coordenadas pamparu jisk'achaña"
# "Escalar coordenadas hacia arriba"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Coordenadas alaxaru jach'aptaña"
# "Editar"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Chiqachaña"
# "Ver"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Unjaña"
-# "Ayuda"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Yanapt'awi"
-
# "Proyecto"
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Lurawinaka"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
# "Copiar"
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Talliqaña"
# "Pegar"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Lip'katayaña"
# "Pantalla completa"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Maypacha uñtawi"
# "Coordenadas cartesianas"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Coordenadas cartesianas"
# "Coordenadas polares"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Coordenadas polares"
# "Coordenadas centímetros"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Coordinadas metricos"
# "Agrandar bloques"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Pirqanaka jach'aptaña"
# "Empequeñecer bloques"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Pirqanaka jisk'aptaña"
# "Cargar ejemplos"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Uñancha qaltaña"
-# "Mover el cursor sobre la paleta naranja para ayuda."
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Achakuru killu-wilaru uchaña yanapt'a katusa cuptaña."
-
# "Guardar como imagen"
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Sutini imaña untasiwi"
# "Guardar como HTML"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "HTML imaña"
# "Guardar como Logo"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Logo imaña"
# "Guardar instantánea"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "K'ataki untayasi imaña"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
# "Cargar bloque Python"
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "Python pirqaru apxataña"
# "<Ctrl>p"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
# "<Ctrl>b"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
# "Limpiar"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Q'umachaña"
# "<Ctrl>e"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
# "Ejecutar"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "T'ijtaña"
# "<Ctrl>r"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
# "Dar un paso"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Chillqi"
# "<Ctrl>w"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
# "Depurar"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Askichaña"
# "<Ctrl>d"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
# "Parar tortuga"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Charapa sayt'ayaña"
# "<Ctrl>s"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1103,7 +1101,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1141,7 +1139,7 @@ msgstr ""
# "tono"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
#, fuzzy
msgid "pitch"
msgstr "Irama"
@@ -1239,513 +1237,516 @@ msgid "Palette of media objects"
msgstr ""
# "diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "sapüru luräwi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
# "audio"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "ist'awi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
# "video"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "uñtaña"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
# "Descripción:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "yatiyaña"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
# "mostrar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "uñachayaña"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
# "escala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "jach'a"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
# "teclado"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "qillqa q'upt'aña"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
# "tiempo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "pacha"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
# "tortuga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "charapa"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
# "encima"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "p'atja"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
# "Ocultar bloques"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
#, fuzzy
msgid "hide blocks"
msgstr "Pirqanaka imxataña"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
# "Mostrar bloques"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "Perkanaka uñachayaña"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
# "lista"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "siqi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
# "anchura"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "lankhu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
# "altura"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "alaya pacha"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
# "izquierda x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "ch'iqa x"
# "arriba y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "p'atja y"
# "derecha x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "kupi x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
# "presentación"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
#, fuzzy
msgid "presentation 1x1"
msgstr "uñt'ayawi"
# "presentación"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
#, fuzzy
msgid "presentation 2x1"
msgstr "uñt'ayawi"
# "presentación"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
#, fuzzy
msgid "presentation 1x2"
msgstr "uñt'ayawi"
# "presentación"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
#, fuzzy
msgid "presentation 2x2"
msgstr "uñt'ayawi"
@@ -2886,35 +2887,44 @@ msgid "Reset block size"
msgstr "Pirqanaka wasitata jukch'aki"
# "Mostar/ocultar bloques"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Pirqanaka uñachayaña/imtaña"
# "Herramientas"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Lurañataki"
# "Parar"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Sayt'ayaña"
# "Tortuga"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Charapa"
# "Hay trabajo sin guardar. ¿Le gustaría guardar antes de salir?"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "Wakichawinaka janiwa imtawkiti. ¿Imtacha jukata mistjañani?"
# "¿Guardar el proyecto?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "¿Wakichawinaka imtañani?"
+# "Ayuda"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Yanapt'awi"
+
+# "Mover el cursor sobre la paleta naranja para ayuda."
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Achakuru killu-wilaru uchaña yanapt'a katusa cuptaña."
+
# "TortugArte Butiá"
#~ msgid "Turtle Art Butia"
#~ msgstr "CharapArte Butia"
diff --git a/po/bg.po b/po/bg.po
index e9e78d6..a4f432a 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-14 00:31-0400\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-02-20 14:16-0500\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -17,8 +17,8 @@ msgstr ""
"X-Generator: Pootle 1.1.0rc2\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1743
-#: TurtleArt/tawindow.py:3044 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -51,7 +51,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -60,7 +60,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -110,8 +110,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -563,17 +563,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -685,12 +685,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -710,11 +710,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -727,184 +727,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1165
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3135
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1014,7 +1014,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1050,7 +1050,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1146,487 +1146,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -2673,26 +2676,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/bi.po b/po/bi.po
index 2fabdbc..73313e8 100644
--- a/po/bi.po
+++ b/po/bi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-14 00:31-0400\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:16+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1743
-#: TurtleArt/tawindow.py:3044 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Totel Art"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1165
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3135
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -2674,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/bn.po b/po/bn.po
index 1f3ac79..fb9e6ba 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-14 00:31-0400\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-08-28 20:50+0000\n"
"Last-Translator: Nasir Khan Saikat <nasir8891@gmail.com>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 1.2.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1743
-#: TurtleArt/tawindow.py:3044 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "টার্টেল আর্ট"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "বামে যাও"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "ডানে যাও"
@@ -111,8 +111,8 @@ msgstr "শিরনাম নির্ধারণ"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "শিরোনাম"
@@ -566,17 +566,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "টেক্সট"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -688,12 +688,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "শিরোনাম"
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,197 +731,197 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1165
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
#, fuzzy
msgid "next"
msgstr "টেক্সট"
-#: TurtleArt/tawindow.py:3135
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
#, fuzzy
msgid "Show palette"
msgstr "প্যালেট দেখাও"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
#, fuzzy
msgid "Hide palette"
msgstr "প্যালেট লুকাও"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
#, fuzzy
msgid "Show blocks"
msgstr "ব্লক দেখাও"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
#, fuzzy
msgid "Hide blocks"
msgstr "ব্লক লুকিয়ে রাখো"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "প্রকল্প"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
#, fuzzy
msgid "Fullscreen"
msgstr "সম্পুর্ন স্ক্রিনজুড়ে"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "ব্লক দেখাও"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
#, fuzzy
msgid "Save as image"
msgstr "ছবি হিসাবে সংরক্ষণ করো"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
#, fuzzy
msgid "Save as HTML"
msgstr "HTML হিসেবে সংরক্ষণ করো"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
#, fuzzy
msgid "Save as Logo"
msgstr "logo সংরক্ষণ করো"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
#, fuzzy
msgid "Clean"
msgstr "পরিষ্কার করো"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
#, fuzzy
msgid "Step"
msgstr "ধাপ"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
#, fuzzy
msgid "Stop turtle"
msgstr "টার্টেল বন্ধ করো"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1033,7 +1033,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1069,7 +1069,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1165,492 +1165,495 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "ছায়া নির্ধারণ করো"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "কী-বোর্ড"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "প্রবেশ করাও"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "heap দেখাও"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "খালি heap"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "বের করো"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "খালি heap"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "মুদ্রণ করো"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "টার্টেল"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "ধাপ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "ব্লক লুকিয়ে রাখো"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "ব্লক দেখাও"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "প্রস্থ্য"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "উচ্চতা"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -2701,31 +2704,35 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
#, fuzzy
msgid "Stop"
msgstr "ধাপ"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "টার্টেল"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "পর্দা ভরাট করো"
diff --git a/po/bn_IN.po b/po/bn_IN.po
index 44867bc..0c00dbe 100644
--- a/po/bn_IN.po
+++ b/po/bn_IN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: turtleart-activity\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-14 00:31-0400\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-02-23 19:13+0530\n"
"Last-Translator: Sankarshan <sankarshan.mukhopadhyay@gmail.com>\n"
"Language-Team: discuss@lists.ankur.org.in\n"
@@ -19,8 +19,8 @@ msgstr ""
"X-Generator: Pootle 1.1.0rc2\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1743
-#: TurtleArt/tawindow.py:3044 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "টার্টেল আর্ট"
@@ -53,7 +53,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -62,7 +62,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -112,8 +112,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -123,8 +123,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -134,8 +134,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -566,17 +566,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "টেক্সট"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -688,12 +688,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "শিরোনাম"
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,194 +731,194 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1165
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
#, fuzzy
msgid "next"
msgstr "টেক্সট"
-#: TurtleArt/tawindow.py:3135
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
#, fuzzy
msgid "Show palette"
msgstr "প্যালেট দেখাও"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
#, fuzzy
msgid "Hide palette"
msgstr "প্যালেট লুকিয়ে রাখুন"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
#, fuzzy
msgid "Show blocks"
msgstr "ব্লক দেখাও"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
#, fuzzy
msgid "Hide blocks"
msgstr "ব্লক লুকিয়ে রাখুন"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "প্রোজেক্ট"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "ব্লক দেখাও"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
#, fuzzy
msgid "Save as HTML"
msgstr "HTML-এ সংরক্ষণ করুন"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
#, fuzzy
msgid "Save as Logo"
msgstr "লোগো সংরক্ষণ করুন"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
#, fuzzy
msgid "Step"
msgstr "ধাপ"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
#, fuzzy
msgid "Stop turtle"
msgstr "টার্টেল-কে বন্ধ করুন"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1030,7 +1030,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1066,7 +1066,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1162,489 +1162,492 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "print"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "ধাপ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "ব্লক লুকিয়ে রাখুন"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "ব্লক দেখাও"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -2694,31 +2697,35 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
#, fuzzy
msgid "Stop"
msgstr "ধাপ"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid "stack"
#~ msgstr "stack"
diff --git a/po/br.po b/po/br.po
index 1d39ec2..321d868 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Translate Toolkit 1.7.0\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -110,8 +110,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -563,17 +563,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -609,7 +609,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -685,12 +685,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -710,11 +710,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -727,184 +727,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1014,7 +1014,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1050,7 +1050,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1146,487 +1146,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1689,7 +1692,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1735,7 +1738,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2190,7 +2193,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2349,7 +2352,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2492,6 +2495,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2541,26 +2676,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/ca.po b/po/ca.po
index b98cbb3..4f858dc 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-08-24 12:11-0400\n"
"Last-Translator: Camille Robert <camille.robert@gmail.com>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 1.2.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "esquerra"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "dreta"
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "coorx"
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "coory"
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -566,17 +566,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "text"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -612,7 +612,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -688,12 +688,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "títol"
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,188 +731,188 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
#, fuzzy
msgid "next"
msgstr "text"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
#, fuzzy
msgid "Hide palette"
msgstr "amagar paleta"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Projecte"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
#, fuzzy
msgid "Fullscreen"
msgstr "pantalla completa"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
#, fuzzy
msgid "Clean"
msgstr "netejar"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1024,7 +1024,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1060,7 +1060,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1156,489 +1156,492 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "teclat"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "mostrar la pila"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "buidar la pila"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "treure"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "buidar la pila"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "imprimir"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "Tortuga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "amplada"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "alçada"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1701,7 +1704,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1747,7 +1750,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2202,7 +2205,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2362,7 +2365,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2505,6 +2508,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2554,30 +2689,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Tortuga"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "pintar el fons"
diff --git a/po/cpp.po b/po/cpp.po
index a15a89c..e548319 100644
--- a/po/cpp.po
+++ b/po/cpp.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:20+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/cs.po b/po/cs.po
index 25cef9f..aefb176 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,20 +6,20 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
-"PO-Revision-Date: 2011-04-14 04:03+0200\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
+"PO-Revision-Date: 2012-02-20 05:40+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
-"Language: \n"
+"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Turtle Art"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "vlevo"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "vpravo"
@@ -110,8 +110,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "nadpis"
@@ -565,17 +565,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "text"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -611,7 +611,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "hodnota"
@@ -687,12 +687,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "nadpis"
@@ -713,11 +713,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -730,193 +730,193 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
-msgstr "Orientace"
+msgstr "orientace"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
-msgstr "Další"
+msgstr "další"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
#, fuzzy
msgid "presentation"
-msgstr "Orientace"
+msgstr "orientace"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
#, fuzzy
msgid "Show palette"
msgstr "Ukázat paletu"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
#, fuzzy
msgid "Hide palette"
msgstr "Schovat paletu"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Úpravy"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Projekt"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Kopírovat"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Vložit"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Celá obrazovka"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
#, fuzzy
msgid "Save as image"
msgstr "Uložit jako obrázek"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
#, fuzzy
msgid "Save as HTML"
msgstr "Uložit jako HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
#, fuzzy
msgid "Save as Logo"
msgstr "uložit Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
#, fuzzy
msgid "Clean"
msgstr "Smazat"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
#, fuzzy
msgid "Step"
msgstr "Krok"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
#, fuzzy
msgid "Stop turtle"
msgstr "Zastavit želvu"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -974,9 +974,8 @@ msgid "Register"
msgstr ""
#: gnome_plugins/collaboration_plugin.py:304
-#, fuzzy
msgid "Colors"
-msgstr "barva"
+msgstr "Barva"
#: gnome_plugins/uploader_plugin.py:64
msgid "Upload to Web"
@@ -1029,7 +1028,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1065,7 +1064,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1161,497 +1160,499 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "deník"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "poslech"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
-#, fuzzy
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
-msgstr "Popis:"
+msgstr "popis"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "ukázat"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "klávesnice"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "tisknout"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "Želva"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "Krok"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "dolu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "výška"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "dolu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
#, fuzzy
msgid "presentation 1x1"
-msgstr "Orientace"
+msgstr "orientace"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
#, fuzzy
msgid "presentation 2x1"
-msgstr "Orientace"
+msgstr "orientace"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
#, fuzzy
msgid "presentation 1x2"
-msgstr "Orientace"
+msgstr "orientace"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
#, fuzzy
msgid "presentation 2x2"
-msgstr "Orientace"
+msgstr "orientace"
#: pysamples/grecord.py:215
#, fuzzy
@@ -1663,9 +1664,8 @@ msgid "play"
msgstr ""
#: pysamples/grecord.py:219
-#, fuzzy
msgid "save"
-msgstr "Uložit"
+msgstr "uložit"
#: pysamples/uturn.py:24
msgid "uturn"
@@ -1714,7 +1714,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1760,7 +1760,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2215,7 +2215,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2375,7 +2375,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2518,6 +2518,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2568,31 +2700,35 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
#, fuzzy
msgid "Stop"
msgstr "Krok"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Želva"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "plná obrazovka"
diff --git a/po/dz.po b/po/dz.po
index 405f3f7..e0cd078 100644
--- a/po/dz.po
+++ b/po/dz.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-03-25 14:46+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "ཞུན་དག"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "མཐོང་སྣང་།"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/el.po b/po/el.po
index 12c75fc..e4777d0 100644
--- a/po/el.po
+++ b/po/el.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-12-21 16:00+0200\n"
"Last-Translator: Yannis <kiolalis@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Η Χελωνοτέχνη"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr "καθαρίζει την οθόνη και επανατοποθετεί τη χελώνα"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "αριστερά"
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "περιστρέφει τη χελώνα αριστερόστροφα (γωνία σε μοίρες)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "δεξιά"
@@ -117,8 +117,8 @@ msgstr "ορισμός επικεφαλίδας"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "ορισμός επικεφαλίδας της χελώνας (0 προς την κορυφή της οθόνης)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xσυντ"
@@ -130,8 +130,8 @@ msgstr ""
"διατήρηση τρέχουσας τιμής της x-συντεταγμένης της χελώνας (μπορεί να "
"χρησιμοποιηθεί στη θέση ενός αριθμού τμήματος)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "yσυντ"
@@ -143,8 +143,8 @@ msgstr ""
"διατήρηση τρέχουσας τιμής της y-συντεταγμένης της χελώνας (μπορεί να "
"χρησιμοποιηθεί στη θέση ενός αριθμού τμήματος)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "επικεφαλίδα"
@@ -595,17 +595,17 @@ msgstr "αποθηκεύει την αριθμητική τιμή στη μετ
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "κείμενο"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "αλφαριθμητική τιμή"
@@ -641,7 +641,7 @@ msgstr "μεταβλητή με όνομα (αριθμητική τιμή)"
msgid "store in"
msgstr "αποθήκευση στο"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "τιμή"
@@ -717,12 +717,12 @@ msgstr "μετακίνηση όλων των εντολών στον κάδο α
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Τίτλος"
@@ -742,11 +742,11 @@ msgstr "δεν αρέσει"
msgid "as input"
msgstr "ως εισαγωγή"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "εμφανίζει την επόμενη παλέτα"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "αλλάζει τον προσανατολισμό των παλετών που περιέχουν τις εντολές"
@@ -759,184 +759,184 @@ msgid "Save..."
msgstr "Αποθήκευση..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "κάντε κλικ για άνοιγμα"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "προσανατολισμός"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "επόμενο"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "εικόνα"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "παρουσίαση"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "στιγμιότυπο οθόνης"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Εμφάνιση παλέτας"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Απόκρυψη παλέτας"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Εμφάνιση εντολών"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Απόκρυψη εντολών"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Μείωση κλιμάκωσης συντεταγμένων"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Αύξηση κλιμάκωσης συντεταγμένων"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Επεξεργασία"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Προβολή"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Βοήθεια"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Έργο"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Αντιγραφή"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Επικόλληση"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Πλήρης οθόνη"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Καρτεσιανές συντεταγμένες"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Πολικές συντεταγμένες"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Μετρικές συντεταγμένες"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Ανάπτυξη εντολών"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Συρρίκνωση εντολών"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Φόρτωση παραδείγματος"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Μετακινείστε το δείκτη προς τις πορτοκαλί παλέτες για λήψη βοήθειας."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Αποθήκευση ως εικόνα"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Αποθήκευση ως HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Αποθήκευση ως λογότυπο"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Αποθήκευση στιγμιότυπου"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "Φόρτωση εντολών της Python"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Καθαρισμός"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Εκτέλεση"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Βήμα"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Αποσφαλμάτωση"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Σταμάτημα χελώνας"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1048,7 +1048,7 @@ msgstr "Αποτυχία αποστολής!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "Παλέτα με μπλοκ αισθητήρων"
@@ -1084,7 +1084,7 @@ msgstr "ένταση εισόδου μικροφώνου"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "τόνος"
@@ -1184,260 +1184,260 @@ msgstr ""
msgid "Palette of media objects"
msgstr "Παλέτα πολυμεσικών αντικειμένων"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "Ημερολόγιο"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Ημερολόγιο του Sugar: αντικείμενο πολυμέσων"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "ήχος"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Ημερολόγιο του Sugar: αντικείμενο ήχου"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "βίντεο"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "Αντικείμενο ήχου του Ημερολογίου του Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "περιγραφή"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Ημερολόγιο του Sugar: πεδίο περιγραφής"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "εμφάνιση"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "γράφει κείμενο ή εμφανίζει πολυμέσα από το Ημερολόγιο"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "εμφάνιση στοιχισμένων"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "ορισμός κλίμακας"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "ορισμός της κλίμακας των πολυμέσων"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "αποθήκευση εικόνας"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "όνομα εικόνας"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "αποθηκεύει την εικόνα στο Ημερολόγιο του Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "αποθήκευση SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
"αποθηκεύει τα γραφικά της Χελώνας ως αρχεία SVG στο Ημερολόγιο του Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "κλίμακα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "συγκρατεί την τρέχουσα τιμή της κλίμακας"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "αναμονή για πολυμέσα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "αναμονή για ολοκλήρωση του τρέχοντος βίντεο ή ήχου"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "ερώτημα πληκτρολογίου"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"ερώτημα για τα δεδομένα εισόδου του πληκτρολογίου (τα αποτελέσματα θα "
"αποθηκευτούν στην εντολή πληκτρολογίου)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "πληκτρολόγιο"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "διατηρεί τα αποτελέσματα του ερωτήματος - εντολή πληκτρολογίου"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "ανάγνωση εικονοστοιχείου"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "Το χρώμα ΚΠΜ κάτω από τη χελώνα προωθήθηκε στη Στοίβα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "η χελώνα βλέπει"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "επιστρέφει το χρώμα που \"βλέπει\" αυτή η χελώνα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "χρόνος"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
"χρόνος που πέρασε (σε δευτερόλεπτα) από τη στιγμή που ξεκίνησε το πρόγραμμα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Παλέτα πρόσθετων επιλογών"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "ώθηση"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "προωθεί την τιμή στη ΠΜΤΕ (πρώτη-μέσα τελευταία-έξω στοίβα)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "εμφάνιση στοίβας"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "εμφανίζει την τιμή στη ΠΜΤΕ (πρώτη-μέσα τελευταία-έξω στοίβα)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "κενός σωρός"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "αδειάζει το ΠΜΤΕ (Πρώτο-Μέσα Τελευταίο-Έξω)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "απώθηση"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "ανάδυση της τιμής στον σωρό ΠΜΤΕ (πρώτη-μέσα τελευταία-έξω στοίβα)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "κενός σωρός"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "σχόλιο"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "τοποθετεί ένα σχόλιο στον κώδικά σας"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "εκτύπωση"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "εκτυπώνει την αξία στο πεδίο κατάστασης στο κάτω μέρος της οθόνης"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1445,7 +1445,7 @@ msgstr ""
"ένα προγραμματιστικό τμήμα εντολών: χρησιμοποιείται για την προσθήκη "
"προχωρημένων μαθηματικών εξισώσεων μιας μεταβλητής, π.χ. sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1453,7 +1453,7 @@ msgstr ""
"μια προγραμματιστική εντολή: χρησιμοποιείται για την προσθήκη προχωρημένων "
"μαθηματικών εξισώσεων πολλών μεταβλητών, π.χ. τ_ρ(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1461,227 +1461,230 @@ msgstr ""
"ένα προγραμματιστικό τμήμα εντολών: χρησιμοποιείται για την προσθήκη "
"προχωρημένων μαθηματικών εξισώσεων πολλών μεταβλητών, π.χ. ημ(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "Εντολές Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
"εκτελεί τον κώδικα που βρέθηκε στο άρθρωμα tamyblock.py το οποίο εντοπίστηκε "
"στο Ημερολόγιο"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Καρτεσιανό"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "εμφανίζει Καρτεσιανές συντεταγμένες"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "πολική"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "εμφανίζει τις πολικές συντεταγμένες"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "χελώνα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "επιλέξτε σε ποια χελώνα θέλετε να δώσετε εντολή"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "κέλυφος χελώνας"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "τοποθετεί ένα τροποποιημένο \"κέλυφος\" πάνω στη χελώνα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "κορυφή"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "κορυφή μιας στοίβας που κατέρρευσε"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "κάτω μέρος"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "το κάτω μέρος μιας στοίβας που μπορεί να καταρρεύσει"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
"κάτω εντολή σε μια στοίβα που μπορεί να καταρρεύσει: κάντε κλικ για άνοιγμα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "κορυφή της στοίβας"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "ετικέτα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "κορυφή μιας στοίβας που μπορεί να καταρρεύσει"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "Παλέτα προτύπων παρουσιάσεων"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "απόκρυψη εντολών"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "γέμισμα του καμβά με κρυμμένα εντολές"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "εμφάνιση εντολών"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "επαναφέρει κρυμμένες εντολές"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "αποκρύπτει τις εργαλειοθήκες του Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "λίστα"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "παρουσίαση λίστας με κουκκίδες"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "πρότυπο παρουσίασης: λίστα κουκκίδων"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
"πρότυπο παρουσίασης: επιλέξτε αντικείμενο από το Ημερολόγιο (χωρίς "
"περιγραφή)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
"πρότυπο παρουσίασης: επιλέξτε αντικείμενο από το Ημερολόγιο (με περιγραφή)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "πρότυπο παρουσίασης: επιλέξτε τέσσερα αντικείμενα από το Ημερολόγιο"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "πρότυπο παρουσίασης: επιλέξτε δύο αντικείμενο από το Ημερολόγιο"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "xσυντ από αριστερά της οθόνης"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "yσυντ από το κάτω μέρος της οθόνης"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "πλάτος"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "το πλάτος του καμβά"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "xσυντ από δεξιά της οθόνης"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "yσυντ από την κορυφή της οθόνης"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "ύψος"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "το ύψος του καμβά"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "τίτλος χ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "τίτλος y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "αριστερό x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "επάνω y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "δεξιό x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "κάτω y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "παρουσίαση 1X1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "παρουσίαση 2X1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "παρουσίαση 1X2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "παρουσίαση 2X2"
@@ -1744,7 +1747,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1790,7 +1793,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2249,7 +2252,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2411,7 +2414,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2557,6 +2560,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "Παλέτα με μπλοκ αισθητήρων"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "υπόλοιπο"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "το σύνηθες είναι"
@@ -2606,31 +2743,38 @@ msgstr "Επανακλιμάκωση συντεταγμένων"
msgid "Reset block size"
msgstr "Ρύθμιση μεγέθους πλαισίου εντολών"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Εμφάνιση/Απόκρυση εντολών"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Εργαλεία"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Διακοπή"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Χελώνα"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
"Υπάρχει εργασία μη αποθηκευμένη. Θέλετε να την αποθηκεύσετε πριν την έξοδο;"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "Αποθήκευση έργου;"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Βοήθεια"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Μετακινείστε το δείκτη προς τις πορτοκαλί παλέτες για λήψη βοήθειας."
+
#~ msgid "Import/Export"
#~ msgstr "Εισαγωγή/Εξαγωγή"
diff --git a/po/en.po b/po/en.po
index de58d05..4e2514c 100644
--- a/po/en.po
+++ b/po/en.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-24 00:31-0400\n"
-"PO-Revision-Date: 2012-03-24 07:03+0200\n"
+"POT-Creation-Date: 2012-03-28 00:31-0400\n"
+"PO-Revision-Date: 2012-03-28 20:57+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
"Language: en\n"
@@ -18,7 +18,7 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3069
#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Turtle Art"
@@ -112,8 +112,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "sets the heading of the turtle (0 is towards the top of the screen.)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
-#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3065
+#: TurtleArt/tawindow.py:3069 TurtleArtActivity.py:569
msgid "xcor"
msgstr "xcor"
@@ -125,8 +125,8 @@ msgstr ""
"holds current x-coordinate value of the turtle (can be used in place of a "
"number block)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
-#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3065
+#: TurtleArt/tawindow.py:3069 TurtleArtActivity.py:570
msgid "ycor"
msgstr "ycor"
@@ -138,8 +138,8 @@ msgstr ""
"holds current y-coordinate value of the turtle (can be used in place of a "
"number block)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
-#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3065
+#: TurtleArt/tawindow.py:3069 TurtleArtActivity.py:570
msgid "heading"
msgstr "heading"
@@ -183,7 +183,7 @@ msgstr "sets size of the line drawn by the turtle"
msgid "fill screen"
msgstr "fill screen"
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:399 taextras.py:260
+#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:399 taextras.py:264
msgid "color"
msgstr "color"
@@ -618,7 +618,7 @@ msgstr "named variable (numeric value)"
msgid "store in"
msgstr "store in"
-#: TurtleArt/tabasics.py:885 taextras.py:333
+#: TurtleArt/tabasics.py:885 taextras.py:337
msgid "value"
msgstr "value"
@@ -740,183 +740,205 @@ msgstr "Save..."
msgid "click to open"
msgstr "click to open"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
+#: TurtleArt/tawindow.py:849 TurtleArt/tawindow.py:850
msgid "orientation"
msgstr "orientation"
-#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
+#: TurtleArt/tawindow.py:860 TurtleArt/tawindow.py:1193
msgid "next"
msgstr "next"
-#: TurtleArt/tawindow.py:3153
+#: TurtleArt/tawindow.py:3165
msgid "image"
msgstr "image"
-#: TurtleArtActivity.py:150
+#: TurtleArtActivity.py:155
msgid "presentation"
msgstr "presentation"
-#: TurtleArtActivity.py:226
+#: TurtleArtActivity.py:241
msgid "snapshot"
msgstr "snapshot"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+#: TurtleArtActivity.py:290 TurtleArtActivity.py:581 turtleart.py:346
msgid "Turn off hover help"
msgstr "Turn off hover help"
-#: TurtleArtActivity.py:284 turtleart.py:348
+#: TurtleArtActivity.py:296 turtleart.py:348
msgid "Turn on hover help"
msgstr "Turn on hover help"
-#: TurtleArtActivity.py:292 turtleart.py:358
+#: TurtleArtActivity.py:304 turtleart.py:358
msgid "Show palette"
msgstr "Show palette"
-#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
+#: TurtleArtActivity.py:310 TurtleArtActivity.py:709 turtleart.py:360
msgid "Hide palette"
msgstr "Hide palette"
-#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
+#: TurtleArtActivity.py:317 TurtleArtActivity.py:330
msgid "Show blocks"
msgstr "Show blocks"
-#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
+#: TurtleArtActivity.py:320 TurtleArtActivity.py:338 TurtleArtActivity.py:712
msgid "Hide blocks"
msgstr "Hide blocks"
-#: TurtleArtActivity.py:436
+#: TurtleArtActivity.py:447
msgid "Rescale coordinates down"
msgstr "Rescale coordinates down"
-#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
+#: TurtleArtActivity.py:451 TurtleArtActivity.py:573
msgid "Rescale coordinates up"
msgstr "Rescale coordinates up"
-#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
+#: TurtleArtActivity.py:510 TurtleArtActivity.py:545 turtleart.py:355
msgid "Edit"
msgstr "Edit"
-#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
+#: TurtleArtActivity.py:514 TurtleArtActivity.py:543 turtleart.py:350
msgid "View"
msgstr "View"
-#: TurtleArtActivity.py:532
+#: TurtleArtActivity.py:541
msgid "Project"
msgstr "Project"
-#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
+#: TurtleArtActivity.py:547 TurtleArtActivity.py:642
msgid "Save/Load"
msgstr "Save/Load"
-#: TurtleArtActivity.py:546 turtleart.py:353
+#: TurtleArtActivity.py:555 turtleart.py:353
msgid "Copy"
msgstr "Copy"
-#: TurtleArtActivity.py:548 turtleart.py:354
+#: TurtleArtActivity.py:557 turtleart.py:354
msgid "Paste"
msgstr "Paste"
-#: TurtleArtActivity.py:550
+#: TurtleArtActivity.py:559
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Fullscreen"
-#: TurtleArtActivity.py:552 turtleart.py:334
+#: TurtleArtActivity.py:561 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Cartesian coordinates"
-#: TurtleArtActivity.py:554 turtleart.py:336
+#: TurtleArtActivity.py:563 turtleart.py:336
msgid "Polar coordinates"
msgstr "Polar coordinates"
-#: TurtleArtActivity.py:557
+#: TurtleArtActivity.py:566
msgid "Metric coordinates"
msgstr "Metric coordinates"
-#: TurtleArtActivity.py:567 turtleart.py:340
+#: TurtleArtActivity.py:576 turtleart.py:340
msgid "Grow blocks"
msgstr "Grow blocks"
-#: TurtleArtActivity.py:569 turtleart.py:342
+#: TurtleArtActivity.py:578 turtleart.py:342
msgid "Shrink blocks"
msgstr "Shrink blocks"
-#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
+#: TurtleArtActivity.py:604 TurtleArtActivity.py:694
msgid "Load example"
msgstr "Load example"
-#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
+#: TurtleArtActivity.py:647 TurtleArtActivity.py:672 turtleart.py:324
msgid "Save as image"
msgstr "Save as image"
-#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
+#: TurtleArtActivity.py:650 TurtleArtActivity.py:675 turtleart.py:326
msgid "Save as HTML"
msgstr "Save as HTML"
-#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
+#: TurtleArtActivity.py:653 TurtleArtActivity.py:677 turtleart.py:328
msgid "Save as Logo"
msgstr "Save as Logo"
-#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
+#: TurtleArtActivity.py:656 TurtleArtActivity.py:680
msgid "Save snapshot"
msgstr "Save snapshot"
-#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
+#: TurtleArtActivity.py:658 TurtleArtActivity.py:683
msgid "Load project"
msgstr "Load project"
-#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
+#: TurtleArtActivity.py:663 TurtleArtActivity.py:688
+msgid "Load plugin"
+msgstr "Load plugin"
+
+#: TurtleArtActivity.py:666 TurtleArtActivity.py:691
msgid "Load Python block"
msgstr "Load Python block"
-#: TurtleArtActivity.py:690
+#: TurtleArtActivity.py:710
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:713
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:698 turtleart.py:367
+#: TurtleArtActivity.py:718 turtleart.py:367
msgid "Clean"
msgstr "Clean"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:718
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:700 turtleart.py:368
+#: TurtleArtActivity.py:720 turtleart.py:368
msgid "Run"
msgstr "Run"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:720
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:702 turtleart.py:369
+#: TurtleArtActivity.py:722 turtleart.py:369
msgid "Step"
msgstr "Step"
-#: TurtleArtActivity.py:702
+#: TurtleArtActivity.py:722
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:705 turtleart.py:370
+#: TurtleArtActivity.py:725 turtleart.py:370
msgid "Debug"
msgstr "Debug"
-#: TurtleArtActivity.py:705
+#: TurtleArtActivity.py:726
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:707
+#: TurtleArtActivity.py:728
msgid "Stop turtle"
msgstr "Stop turtle"
-#: TurtleArtActivity.py:708
+#: TurtleArtActivity.py:729
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
+#: TurtleArtActivity.py:853 TurtleArtActivity.py:858 TurtleArtActivity.py:924
+msgid "Plugin could not be installed."
+msgstr "Plugin could not be installed."
+
+#: TurtleArtActivity.py:920
+msgid "Please restart Turtle Art in order to use the plugin."
+msgstr "Please restart Turtle Art in order to use the plugin."
+
+#: TurtleArtActivity.py:938
+#, python-format
+msgid "Plugin %s already installed."
+msgstr "Plugin %s already installed."
+
+#: TurtleArtActivity.py:939
+#, python-format
+msgid "Do you want to reinstall %s?"
+msgstr "Do you want to reinstall %s?"
+
#: gnome_plugins/collaboration_plugin.py:67
msgid "My Turtle Art session"
msgstr "My Turtle Art session"
@@ -1041,6 +1063,7 @@ msgstr "push acceleration in x, y, z to heap"
#: plugins/audio_sensors/audio_sensors.py:82
#: plugins/audio_sensors/audio_sensors.py:97 pysamples/grecord.py:205
+#: taextras.py:260
msgid "sound"
msgstr "sound"
@@ -1330,7 +1353,7 @@ msgstr "turtle sees"
msgid "returns the color that the turtle \"sees\""
msgstr "returns the color that the turtle \"sees\""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:283
msgid "time"
msgstr "time"
@@ -2218,7 +2241,7 @@ msgstr ""
"Motor torque and speed range from 0 (off) to positive numbers; motor is "
"placed on the most recent object created."
-#: taextras.py:215 taextras.py:329
+#: taextras.py:215 taextras.py:333
msgid "pin"
msgstr "pin"
@@ -2332,94 +2355,102 @@ msgstr "set the value for Motor B"
#. TRANS: Lego NXT is a robotics product of the LEGO company
#: taextras.py:257
-msgid "Palette of LEGO NXT blocks"
-msgstr "Palette of LEGO NXT blocks"
+msgid "Palette of LEGO NXT blocks of motors"
+msgstr "Palette of LEGO NXT blocks of motors"
#: taextras.py:258
+msgid "Palette of LEGO NXT blocks of sensors"
+msgstr "Palette of LEGO NXT blocks of sensors"
+
+#: taextras.py:261
+msgid "sound sensor"
+msgstr "sound sensor"
+
+#: taextras.py:262
msgid "touch"
msgstr "touch"
-#: taextras.py:259
+#: taextras.py:263
msgid "ultrasonic"
msgstr "ultrasonic"
-#: taextras.py:261
+#: taextras.py:265
msgid "light"
msgstr "light"
-#: taextras.py:262
+#: taextras.py:266
msgid "PORT A"
msgstr "PORT A"
-#: taextras.py:263
+#: taextras.py:267
msgid "PORT B"
msgstr "PORT B"
-#: taextras.py:264
+#: taextras.py:268
msgid "PORT C"
msgstr "PORT C"
-#: taextras.py:265
+#: taextras.py:269
msgid "PORT 1"
msgstr "PORT 1"
-#: taextras.py:266
+#: taextras.py:270
msgid "PORT 2"
msgstr "PORT 2"
-#: taextras.py:267
+#: taextras.py:271
msgid "PORT 3"
msgstr "PORT 3"
-#: taextras.py:268
+#: taextras.py:272
msgid "PORT 4"
msgstr "PORT 4"
-#: taextras.py:269
+#: taextras.py:273
msgid "Please check the connection with the brick."
msgstr "Please check the connection with the brick."
-#: taextras.py:270
+#: taextras.py:274
msgid "Please check the port."
msgstr "Please check the port."
-#: taextras.py:271
+#: taextras.py:275
msgid "The value of power must be between -127 to 127."
msgstr "The value of power must be between -127 to 127."
-#: taextras.py:272
+#: taextras.py:276
msgid "An error has occurred: check all connections and try to reconnect."
msgstr "An error has occurred: check all connections and try to reconnect."
-#: taextras.py:273
+#: taextras.py:277
msgid "NXT found"
msgstr "NXT found"
-#: taextras.py:274
+#: taextras.py:278
msgid "NXT not found"
msgstr "NXT not found"
-#: taextras.py:275
+#: taextras.py:279
msgid "refresh NXT"
msgstr "refresh NXT"
-#: taextras.py:276
+#: taextras.py:280
msgid "Search for a connected NXT brick."
msgstr "Search for a connected NXT brick."
-#: taextras.py:277
+#: taextras.py:281
msgid "play tone"
msgstr "play tone"
-#: taextras.py:278
+#: taextras.py:282
msgid "freq"
msgstr "freq"
-#: taextras.py:280
+#: taextras.py:284
msgid "Play a tone at freq for time."
msgstr "Play a tone at freq for time."
-#: taextras.py:281
+#: taextras.py:285
msgid ""
"turn motor\n"
"rotations"
@@ -2427,19 +2458,19 @@ msgstr ""
"turn motor\n"
"rotations"
-#: taextras.py:282
+#: taextras.py:286
msgid "port"
msgstr "port"
-#: taextras.py:283
+#: taextras.py:287
msgid "power"
msgstr "power"
-#: taextras.py:284
+#: taextras.py:288
msgid "turn a motor"
msgstr "turn a motor"
-#: taextras.py:285
+#: taextras.py:289
msgid ""
"sync motors\n"
"steering"
@@ -2447,181 +2478,181 @@ msgstr ""
"sync motors\n"
"steering"
-#: taextras.py:286
+#: taextras.py:290
msgid "rotations"
msgstr "rotations"
-#: taextras.py:287
+#: taextras.py:291
msgid "synchronize two motors"
msgstr "synchronize two motors"
-#: taextras.py:288
+#: taextras.py:292
msgid "PORT A of the brick"
msgstr "PORT A of the brick"
-#: taextras.py:289
+#: taextras.py:293
msgid "PORT B of the brick"
msgstr "PORT B of the brick"
-#: taextras.py:290
+#: taextras.py:294
msgid "PORT C of the brick"
msgstr "PORT C of the brick"
-#: taextras.py:291
+#: taextras.py:295
msgid "start motor"
msgstr "start motor"
-#: taextras.py:292
+#: taextras.py:296
msgid "Run a motor forever."
msgstr "Run a motor forever."
-#: taextras.py:293
+#: taextras.py:297
msgid "brake motor"
msgstr "brake motor"
-#: taextras.py:294
+#: taextras.py:298
msgid "Stop a specified motor."
msgstr "Stop a specified motor."
-#: taextras.py:295
+#: taextras.py:299
msgid "PORT 1 of the brick"
msgstr "PORT 1 of the brick"
-#: taextras.py:296
+#: taextras.py:300
msgid "color sensor"
msgstr "color sensor"
-#: taextras.py:297
+#: taextras.py:301
msgid "light sensor"
msgstr "light sensor"
-#: taextras.py:298
+#: taextras.py:302
msgid "PORT 2 of the brick"
msgstr "PORT 2 of the brick"
-#: taextras.py:299
+#: taextras.py:303
msgid "touch sensor"
msgstr "touch sensor"
-#: taextras.py:300
+#: taextras.py:304
msgid "distance sensor"
msgstr "distance sensor"
-#: taextras.py:301
+#: taextras.py:305
msgid "PORT 3 of the brick"
msgstr "PORT 3 of the brick"
-#: taextras.py:302
+#: taextras.py:306
msgid "read"
msgstr "read"
-#: taextras.py:303
+#: taextras.py:307
msgid "sensor"
msgstr "sensor"
-#: taextras.py:304
+#: taextras.py:308
msgid "Read sensor output."
msgstr "Read sensor output."
-#: taextras.py:305
+#: taextras.py:309
msgid "PORT 4 of the brick"
msgstr "PORT 4 of the brick"
-#: taextras.py:306
+#: taextras.py:310
msgid "set light"
msgstr "set light"
-#: taextras.py:307
+#: taextras.py:311
msgid "Set color sensor light."
msgstr "Set color sensor light."
-#: taextras.py:308
+#: taextras.py:312
msgid "reset motor"
msgstr "reset motor"
-#: taextras.py:309
+#: taextras.py:313
msgid "Reset the motor counter."
msgstr "Reset the motor counter."
-#: taextras.py:310
+#: taextras.py:314
msgid "motor position"
msgstr "motor position"
-#: taextras.py:311
+#: taextras.py:315
msgid "Get the motor position."
msgstr "Get the motor position."
#. TRANS: Arduino plugin to control an Arduino board
-#: taextras.py:316
+#: taextras.py:320
msgid "Palette of Arduino blocks"
msgstr "Palette of Arduino blocks"
-#: taextras.py:317
+#: taextras.py:321
msgid "HIGH"
msgstr "HIGH"
-#: taextras.py:318
+#: taextras.py:322
msgid "LOW"
msgstr "LOW"
-#: taextras.py:319
+#: taextras.py:323
msgid "INPUT"
msgstr "INPUT"
-#: taextras.py:320
+#: taextras.py:324
msgid "OUTPUT"
msgstr "OUTPUT"
#. TRANS: PWM is pulse-width modulation
-#: taextras.py:322
+#: taextras.py:326
msgid "PWM"
msgstr "PWM"
-#: taextras.py:323
+#: taextras.py:327
msgid "SERVO"
msgstr "SERVO"
-#: taextras.py:324
+#: taextras.py:328
msgid "ERROR: Check the Arduino and the number of port."
msgstr "ERROR: Check the Arduino and the number of port."
-#: taextras.py:325
+#: taextras.py:329
msgid "ERROR: Value must be a number from 0 to 255."
msgstr "ERROR: Value must be a number from 0 to 255."
-#: taextras.py:326
+#: taextras.py:330
msgid "ERROR: Value must be either HIGH or LOW."
msgstr "ERROR: Value must be either HIGH or LOW."
-#: taextras.py:327
+#: taextras.py:331
msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
msgstr "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
-#: taextras.py:328
+#: taextras.py:332
msgid "pin mode"
msgstr "pin mode"
-#: taextras.py:330
+#: taextras.py:334
msgid "mode"
msgstr "mode"
-#: taextras.py:331
+#: taextras.py:335
msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
msgstr "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
-#: taextras.py:332
+#: taextras.py:336
msgid "analog write"
msgstr "analog write"
-#: taextras.py:334
+#: taextras.py:338
msgid "Write analog value in specified port."
msgstr "Write analog value in specified port."
-#: taextras.py:335
+#: taextras.py:339
msgid "analog read"
msgstr "analog read"
-#: taextras.py:336
+#: taextras.py:340
msgid ""
"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
"determine voltage. For USB, volt=((read)*5)/1024) approximately."
@@ -2629,43 +2660,43 @@ msgstr ""
"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
"determine voltage. For USB, volt=((read)*5)/1024) approximately."
-#: taextras.py:338
+#: taextras.py:342
msgid "digital write"
msgstr "digital write"
-#: taextras.py:339
+#: taextras.py:343
msgid "Write digital value to specified port."
msgstr "Write digital value to specified port."
-#: taextras.py:340
+#: taextras.py:344
msgid "digital read"
msgstr "digital read"
-#: taextras.py:341
+#: taextras.py:345
msgid "Read value from digital port."
msgstr "Read value from digital port."
-#: taextras.py:342
+#: taextras.py:346
msgid "Set HIGH value for digital port."
msgstr "Set HIGH value for digital port."
-#: taextras.py:343
+#: taextras.py:347
msgid "Configure Arduino port for digital input."
msgstr "Configure Arduino port for digital input."
-#: taextras.py:344
+#: taextras.py:348
msgid "Configure Arduino port to drive a servo."
msgstr "Configure Arduino port to drive a servo."
-#: taextras.py:345
+#: taextras.py:349
msgid "Set LOW value for digital port."
msgstr "Set LOW value for digital port."
-#: taextras.py:346
+#: taextras.py:350
msgid "Configure Arduino port for digital output."
msgstr "Configure Arduino port for digital output."
-#: taextras.py:347
+#: taextras.py:351
msgid "Configure Arduino port for PWM (pulse-width modulation)."
msgstr "Configure Arduino port for PWM (pulse-width modulation)."
@@ -2746,6 +2777,9 @@ msgstr "Save project?"
msgid "Help"
msgstr "Help"
+#~ msgid "Palette of LEGO NXT blocks"
+#~ msgstr "Palette of LEGO NXT blocks"
+
#~ msgid "Move the cursor over the orange palette for help."
#~ msgstr "Move the cursor over the orange palette for help."
diff --git a/po/es.po b/po/es.po
index f2d06c2..662b1a1 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-03 00:31-0500\n"
-"PO-Revision-Date: 2012-03-03 08:31+0200\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
+"PO-Revision-Date: 2012-03-24 18:06+0200\n"
"Last-Translator: AlanJAS <alanjas@hotmail.com>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
"Language: es\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1743
-#: TurtleArt/tawindow.py:3044 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "TortugArte"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr "limpia la pantalla y restaura la tortuga"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "izquierda"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "gira la tortuga en sentido anti-horario (ángulo en grados)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "derecha"
@@ -115,8 +115,8 @@ msgstr ""
"fija la orientación de la tortuga (0 es hacia la parte superior de la "
"pantalla.)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "coorx"
@@ -128,8 +128,8 @@ msgstr ""
"contiene la coordenada x actual de la tortuga (se puede usar en vez de un "
"bloque de número)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "coory"
@@ -141,8 +141,8 @@ msgstr ""
"contiene la coordenada y actual de la tortuga (se puede usar en vez de un "
"bloque de número)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3040
-#: TurtleArt/tawindow.py:3044 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "rumbo"
@@ -589,17 +589,17 @@ msgstr "guarda valor numérico en la variable 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "texto"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "valor de cadena"
@@ -711,12 +711,12 @@ msgstr "mover todos los bloques a la basura"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Título"
@@ -736,11 +736,11 @@ msgstr "no le gusta"
msgid "as input"
msgstr "como entrada"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "muestra la siguiente paleta"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "cambia la orientación de la paleta de bloques"
@@ -753,184 +753,184 @@ msgid "Save..."
msgstr "Guardar..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "clic para abrir"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "orientación"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1165
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "siguiente"
-#: TurtleArt/tawindow.py:3135
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "imagen"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "presentación"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "instantánea"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr "Deshabilitar ayuda flotante"
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr "Habilitar ayuda flotante"
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Mostrar paleta"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Ocultar paleta"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Mostrar bloques"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Ocultar bloques"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Escalar coordenadas hacia abajo"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Escalar coordenadas hacia arriba"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Editar"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Ver"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Ayuda"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Proyecto"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr "Guardar/Cargar"
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Copiar"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Pegar"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Pantalla completa"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Coordenadas cartesianas"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Coordenadas polares"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Coordenadas centímetros"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Agrandar bloques"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Empequeñecer bloques"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Cargar ejemplos"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Mover el cursor sobre la paleta naranja para ayuda."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Guardar como imagen"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Guardar como HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Guardar como Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Guardar instantánea"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr "Cargar proyecto"
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "Cargar bloque Python"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Limpiar"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Ejecutar"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Dar un paso"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Depurar"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Parar tortuga"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1042,7 +1042,7 @@ msgstr "¡Error al descargar!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "Paleta de bloques sensor"
@@ -1078,7 +1078,7 @@ msgstr "volumen de entrada de micrófono"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "frecuencia"
@@ -1184,267 +1184,267 @@ msgstr ""
msgid "Palette of media objects"
msgstr "Paleta de bloques medios"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "objeto de medios del Diario de Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "audio"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "objeto de audio del Diario de Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "video"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "objeto de video del Diario de Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "descripción"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "campo de descripción del Diario de Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "mostrar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "dibujar texto o mostrar medios desde el Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "mostrar alineados"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "fijar escala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "fijar la escala de medios"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "guardar imagen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "nombre de la imagen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "guarda una imagen en el Diario de Azúcar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "guardar SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
"guarda los gráficos de la tortuga como un archivo SVG en el Diario de Azúcar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "escala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "mantiene el valor actual de la escala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "esperar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "esperar hasta completar el audio o vídeo"
# decir
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "hablar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr "hola"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr "dice texto"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr "sinusoide"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr "duración"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
"reproduce una sinusoide desde frecuencia, amplitud y duración (en segundos)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr "botón presionado"
# devuelve en lugar de retorna - mouse en lugar de ratón
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr "retorna 1 si el botón del ratón está presionado"
# mouse x o cursor
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr "cursor x"
# devuelve en lugar de retorna - mouse en lugar de ratón
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr "devuelve la coordenada x del cursor"
# mouse y - ratón y
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr "cursor y"
# devuelve en lugar de retorna - mouse en lugar de ratón
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr "retorna la coordenada y del cursor"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "consulta de teclado"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"consulta para la entrada de teclado (los resultados están almacenados en el "
"bloque del teclado)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "teclado"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "contiene los resultados del bloque de consulta de teclado"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "leer pixel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "Se envia a la pila el color RGB bajo la tortuga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "la tortuga ve"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "muestra el color que \"ve\" la tortuga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "tiempo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "el tiempo transcurrido (en segundos) desde el inicio del programa"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Paleta de opciones adicionales"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "empujar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "apila el valor sobre la pila FILO (primero en entrar, último en salir)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "mostrar pila"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
"muestra los valores en la pila FILO (primero en entrar, último en salir)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "vaciar pila"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "vacía la pila FILO (primera-en-entrar último-en-salir)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "sacar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "saca el valor de la pila FILO (primero en entrar, último en salir)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr "pila vacía?"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr "devuelve Verdadero si la pila está vacía"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "comentar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "coloca un comentario en tu código"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "imprimir"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
"imprime el valor en el bloque de estado en la parte inferior de la pantalla"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1452,7 +1452,7 @@ msgstr ""
"un bloque programable: utilizado para añadir ecuaciones matemáticas "
"avanzadas de una variable, p.e., seno(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1460,7 +1460,7 @@ msgstr ""
"un bloque programable: utilizado para agregar ecuaciones matemáticas "
"avanzadas de múltiples variables, i.e., sqrt(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1468,223 +1468,226 @@ msgstr ""
"un bloque programable: utilizado para añadir ecuaciones matemáticas "
"avanzadas multivariables, p.e. seno(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "bloque Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "ejecuta el código del módulo tamyblock.py que se encuentra en el Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Cartesiana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "muestra coordenadas cartesianas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "polar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "muestra las coordenadas polares"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "tortuga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "elige la tortuga a ordenar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "caparazón de la tortuga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "vestir a la tortuga con un caparazón a medida"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
-msgstr "encima"
+msgstr "cima"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
-msgstr "encima de una pila plegable"
+msgstr "cima de una pila plegable"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "debajo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "parte inferior de una pila plegable"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr "pila plegable: clic para abrir"
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
-msgstr "bloque inferior de una pila plegable: haz click para abrir"
+msgstr "bloque inferior de una pila plegable: clic para abrir"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
-msgstr "primero de la pila"
+msgstr "cima de la pila"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "etiqueta"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
-msgstr "encima de una pila plegable"
+msgstr "cima de una pila plegable"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "Paleta de plantillas de presentaciones"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "ocultar los bloques"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "limpia el lienzo ocultando bloques"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "mostrar bloques"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "restaura bloques ocultos"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "oculta las barras de herramientas de Azúcar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "lista"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "presentación con lista de viñetas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "plantilla de presentación: lista de viñetas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
"plantilla de presentación: seleccionar objeto del Diario (sin descripción)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
"plantilla de presentación: seleccionar objeto del Diario (con descripción)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "plantilla de presentación: seleccionar cuatro objetos del Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "plantilla de presentación: seleccionar dos objetos del Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "coorx de la izquierda de la pantalla"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "coory del limite inferior de la pantalla"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "anchura"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "el ancho del lienzo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "xcor del lado derecho de la pantalla"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "ycor del limite superior de la pantalla"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "altura"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "la altura del lienzo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "título x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "título y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "izquierda x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "arriba y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "derecha x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "debajo y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "presentación 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "presentación 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "presentación 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "presentación 2x2"
@@ -1744,13 +1747,11 @@ msgstr "Paleta de monedas de Australia"
msgid "Palette of Guaranies"
msgstr "Paleta de Guaraníes"
-# Butiá es el proyecto de robótica basado en arduino de Uruguay
-# (http://www.fing.edu.uy/inco/proyectos/butia/)
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "TortugArte Butiá"
+msgid "TurtleBots"
+msgstr "TurtleBots"
#: taextras.py:59
msgid "adjust LED intensity between 0 and 255"
@@ -1782,7 +1783,7 @@ msgstr ""
#: taextras.py:66
msgid "returns 0 or 1 depending on the sensor inclination"
-msgstr "devuelve 0 o 1 dependiendo the la inclinación del sensor"
+msgstr "devuelve 0 o 1 dependiendo de la inclinación del sensor"
#: taextras.py:67
msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise"
@@ -1797,8 +1798,8 @@ msgid "LED"
msgstr "LED"
#: taextras.py:70
-msgid "pushbutton"
-msgstr "Botón"
+msgid "button"
+msgstr "botón"
#: taextras.py:71
msgid "grayscale"
@@ -2772,30 +2773,45 @@ msgstr "Escalar coordenadas"
msgid "Reset block size"
msgstr "Restaurar el tamaño del bloque"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Mostar/ocultar bloques"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Herramientas"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Parar"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Tortuga"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "Hay trabajo sin guardar. ¿Le gustaría guardar antes de salir?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "¿Guardar el proyecto?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Ayuda"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Mover el cursor sobre la paleta naranja para ayuda."
+
+# Butiá es el proyecto de robótica basado en arduino de Uruguay
+# (http://www.fing.edu.uy/inco/proyectos/butia/)
+#~ msgid "Turtle Art Butia"
+#~ msgstr "TortugArte Butiá"
+
+#~ msgid "pushbutton"
+#~ msgstr "Botón"
+
#~ msgid ""
#~ "returns the object gray level encountered him as a number between 0 and 1023"
#~ msgstr ""
diff --git a/po/fa.po b/po/fa.po
index d76eec3..92726d0 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-03-30 06:30+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -110,8 +110,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "سرفصل"
@@ -563,17 +563,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -609,7 +609,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -685,12 +685,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -710,11 +710,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -727,184 +727,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1014,7 +1014,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1050,7 +1050,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1146,487 +1146,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1689,7 +1692,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1735,7 +1738,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2190,7 +2193,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2349,7 +2352,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2492,6 +2495,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2541,29 +2676,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/fa_AF.po b/po/fa_AF.po
index d3b73c4..22c1914 100644
--- a/po/fa_AF.po
+++ b/po/fa_AF.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Fructose\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-07-30 03:27-0400\n"
"Last-Translator: Sohaib Obaidi <ebtihaj_obaidi@yahoo.com>\n"
"Language-Team: Dari <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 1.2.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "هنر سنگ پشت"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "چپ"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "راست"
@@ -111,8 +111,8 @@ msgstr "عنوان را تعیین کن"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "عنوان"
@@ -566,17 +566,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "متن"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -612,7 +612,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -688,12 +688,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "عنوان"
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,197 +731,197 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
#, fuzzy
msgid "next"
msgstr "متن"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
#, fuzzy
msgid "Show palette"
msgstr "لوحه را نشان بده"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
#, fuzzy
msgid "Hide palette"
msgstr "لوحه را پنهان کن"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
#, fuzzy
msgid "Show blocks"
msgstr "بلاک ها را نشان بده"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
#, fuzzy
msgid "Hide blocks"
msgstr "بلاک ها را پنهان کن"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "پروژه"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
#, fuzzy
msgid "Fullscreen"
msgstr "صفحه کامل"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "بلاک ها را نشان بده"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
#, fuzzy
msgid "Save as image"
msgstr "به حیث تصویر حفظ کن"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
#, fuzzy
msgid "Save as HTML"
msgstr "بحیث HTML ذخیره کن"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
#, fuzzy
msgid "Save as Logo"
msgstr "آرم را ذخیره کن"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
#, fuzzy
msgid "Clean"
msgstr "پاک کردن"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
#, fuzzy
msgid "Step"
msgstr "قدم"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
#, fuzzy
msgid "Stop turtle"
msgstr "سنگ پشت را متوقف کن"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1033,7 +1033,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1069,7 +1069,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "زیروبمی صدا"
@@ -1165,493 +1165,496 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "سایه را تغییر بده"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
#, fuzzy
msgid "keyboard"
msgstr "صفحه کلید"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "تیله کردن"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "گروه را نشان بده"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "گروه خالی"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "ترکیدن"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "گروه خالی"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "چاپ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "سنگ پشت"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "قدم"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "بلاک ها را پنهان کن"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "بلاک ها را نشان بده"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "عرض"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "بلندی"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1715,7 +1718,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1761,7 +1764,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2216,7 +2219,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2376,7 +2379,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2520,6 +2523,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "به پیمانه"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2570,31 +2706,35 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
#, fuzzy
msgid "Stop"
msgstr "قدم"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "سنگ پشت"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "صفحه را پر کن"
diff --git a/po/ff.po b/po/ff.po
index 1413260..b790533 100644
--- a/po/ff.po
+++ b/po/ff.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:20+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/fi.po b/po/fi.po
index 9074964..0749fc2 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:47+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Kilpikonnataide"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "vasen"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "oikea"
@@ -112,8 +112,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "x koord"
@@ -123,8 +123,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "y koord"
@@ -134,8 +134,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "otsikko"
@@ -567,17 +567,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -613,7 +613,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -689,12 +689,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,186 +731,186 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
#, fuzzy
msgid "Fullscreen"
msgstr "täytä näyttö"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "tallenna HTML-muodossa"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
#, fuzzy
msgid "Save as Logo"
msgstr "tallenna logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Puhdas"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1021,7 +1021,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1057,7 +1057,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1153,489 +1153,492 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "aseta sävy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "näppäimistö"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "Kilpikonna"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1698,7 +1701,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1744,7 +1747,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2199,7 +2202,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2359,7 +2362,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2502,6 +2505,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2551,30 +2687,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Kilpikonna"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "täytä näyttö"
diff --git a/po/fil.po b/po/fil.po
index 4ebe5db..838c2bb 100644
--- a/po/fil.po
+++ b/po/fil.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:46+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -114,8 +114,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -125,8 +125,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -136,8 +136,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -567,17 +567,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -613,7 +613,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -689,12 +689,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,184 +731,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1018,7 +1018,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1054,7 +1054,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1150,487 +1150,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1693,7 +1696,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1739,7 +1742,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2194,7 +2197,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2353,7 +2356,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2496,6 +2499,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2545,29 +2680,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/fr.po b/po/fr.po
index 8100458..b6b87d1 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2012-02-03 22:19+0200\n"
"Last-Translator: samy boutayeb <s.boutayeb@free.fr>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "ArtTortue"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr "effacer l'écran et réinitialiser la tortue"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "gauche"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "pivoter la tortue dans le sens anti-horaire (angle en degrés)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "droite"
@@ -113,8 +113,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "fixe le cap de la tortue (0 est orienté sur le haut de l'écran)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "coord x"
@@ -126,8 +126,8 @@ msgstr ""
"maintient la valeur de la coordonnée x courante de la tortue (utilisable à "
"la place d'un bloc numérique)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "coord y"
@@ -139,8 +139,8 @@ msgstr ""
"maintient la valeur de la coordonnée y courante de la tortue (utilisable à "
"la place d'un bloc numérique)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "cap"
@@ -590,17 +590,17 @@ msgstr "stocke une valeur numérique dans la Variable 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "texte"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "valeur chaîne"
@@ -636,7 +636,7 @@ msgstr "variable nommée (valeur numérique)"
msgid "store in"
msgstr "enregistre"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "valeur"
@@ -712,12 +712,12 @@ msgstr "déplacer tous les blocs vers la corbeille"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Titre"
@@ -737,11 +737,11 @@ msgstr "n'aime pas"
msgid "as input"
msgstr "comme entrée"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "affiche la palette suivante"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "change l'orientation de la palette des blocs"
@@ -754,184 +754,184 @@ msgid "Save..."
msgstr "Enregistrer..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "cliquer pour ouvrir"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "orientation"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "suivant"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "image"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "présentation"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "instantanée"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Afficher la palette"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Masquer la palette"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Afficher les blocs"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Masquer les blocs"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Diminuer l'échelle des coordonnées"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Augmenter l'échelle des coordonnées"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Édition"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Vue"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Aide"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Projet"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr "Enregistrer/Charger"
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Copier"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Coller"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Plein écran"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Coordonnées Cartésiennes"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Coordonnées Polaires"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Coordonnées métriques"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Augmenter les blocs"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Diminuer les blocs"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Charger l'exemple"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Passer le curseur sur la palette orange pour afficher l'aide."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Enregistrer dans une image"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Enregistrer en HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Enregistrer en Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Enregistrer l'instantané"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr "Charger le projet"
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "Charger le bloc Python"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Effacer"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Exécuter"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Pas à pas"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Débogage"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Arrêter la tortue"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1043,7 +1043,7 @@ msgstr "Echec du transfert !"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "Palette de blocs de capteurs"
@@ -1079,7 +1079,7 @@ msgstr "volume d'entrée du micro"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "hauteur"
@@ -1179,260 +1179,260 @@ msgstr ""
msgid "Palette of media objects"
msgstr "Palette d'objets multimédia"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Objet média du Journal Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "audio"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Objet audio du Journal Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "vidéo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "Objet vidéo du Journal Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "description"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Champ description du Journal Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "montre"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "dessine un texte ou montre un média du Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "montrer alignement"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "définit l'échelle"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "fixe l'échelle du média"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "enregistrer image"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "nom image"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "enregistre l'image dans le Journal de Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "enregistrer SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
"enregistre les dessins de la tortue en tant que fichier SVG dans le Journal "
"de Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "échelle"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "conserver la valeur actuelle de l'échelle"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "attente du média"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "attendre la fin de la vidéo ou de l'audio en cours"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "parler"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr "salut"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr "dit le texte"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr "onde sinusoïdale"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr "durée"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
"joue une onde sinusoïdale à une fréquence, une amplitude et une durée (en "
"secondes)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr "bouton enfoncé"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr "retourne 1 si le bouton de la souris est actionné"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr "souris x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr "retourne la coordonnée x de la souris"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr "souris y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr "retourne la coordonnée y de la souris"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "interroger clavier"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"interroge la valeur entrée au clavier (résultat stocké dans le bloc clavier)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "clavier"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "conserve le résultat dans le bloc clavier d'interrogation"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "lire le pixel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "La couleur RVB sous la tortue est poussée vers la pile"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "tortue voit"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "retourne la couleur \"vue\" par la tortue"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "temps"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "temps écoulé (en secondes) depuis le démarrage du programme"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Palette d'options supplémentaires"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "pousse"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "pousse la valeur dans le tas FILO (premier entré dernier sorti)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "affiche le tas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "affiche les valeurs dans le tas FILO (premier entré dernier sorti)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "vide le tas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "vider FILO (Premier Entrée Dernier Sortie)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "dépile"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "sort la valeur du tas FILO (premier entré dernier sorti)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr "tas vide ?"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr "renvoie Vrai si le tas est vide"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "commenter"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "placer un commentaire dans votre code"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "montre"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "affiche la valeur dans le bloc d'état en bas de l'écran"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1440,7 +1440,7 @@ msgstr ""
"un bloc programmable: utilisé pour ajouter des équations mathématiques "
"avancées à une seule variable, ex: sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1448,7 +1448,7 @@ msgstr ""
"un bloc programmable: utilisé pour ajouter des équations mathématiques "
"avancées à plusieurs variables, ex: sqrt(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1456,224 +1456,227 @@ msgstr ""
"un bloc programmable: utilisé pour ajouter des équations mathématiques "
"avancées à plusieurs variables, ex: sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "Bloc Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "exécute le code trouvé dans le module tamyblock.py module du Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Cartésienne"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "afficher coordonnées Cartesienne"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "polaire"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "afficher les coordonnées polaires"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "tortue"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "choisir la tortue à commander"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "carapace de la tortue"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "place une 'carapace' personnalisée sur la tortue"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "haut"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "haut d'une pile agrégée"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "bas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "bas d'une pile à agréger"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "bloc du dessous dans une pile agrégée: cliquer pour développer"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "haut de la pile"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "libellé"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "haut d'une pile à agréger"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "Palette de modèles de présentation"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "masquer les blocs"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "désencombre le canevas en masquant les blocs"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "montrer blocs"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "restaurer les blocs cachés"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "cacher la barre d'outils Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "liste"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "présentation liste à puce"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "modèle de présentation : liste de puces"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
"modèle de présentation : sélectionner un objet du Journal (sans description)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
"modèle de présentation : sélectionner un objet du Journal (avec sa "
"description)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "modèle de présentation : sélectionner quatre objets du Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "modèle de présentation : sélectionner deux objets du Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "coord. x de la gauche de l'écran"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "coord. y du bas de l'écran"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "largeur"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "largeur du canevas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "coord. x de la droite de l'écran"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "coord. y du haut de l'écran"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "hauteur"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "hauteur du canevas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "titre x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "titre y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "gauche x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "haut x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "droite x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "bas x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "présentation 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "présentation 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "présentation 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "présentation 2x2"
@@ -1736,8 +1739,8 @@ msgstr "Palette de guaranis"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "Butia Art Tortue"
+msgid "TurtleBots"
+msgstr ""
#: taextras.py:59
msgid "adjust LED intensity between 0 and 255"
@@ -1791,8 +1794,8 @@ msgid "LED"
msgstr "DEL"
#: taextras.py:70
-msgid "pushbutton"
-msgstr "bouton poussoir"
+msgid "button"
+msgstr ""
#: taextras.py:71
msgid "grayscale"
@@ -2263,7 +2266,7 @@ msgstr ""
"Couple moteur et plage de vitesse de 0 (arrêt) à des valeurs positives ; le "
"moteur est placé sur l'objet créé en dernier."
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr "épingle"
@@ -2434,7 +2437,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2581,6 +2584,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "Palette de blocs de capteurs"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "l'usage est"
@@ -2630,32 +2767,45 @@ msgstr "Modifier l'échelle"
msgid "Reset block size"
msgstr "Réinitialiser taille blocs"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Montrer/Cacher les blocs"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Outils"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Arrêter"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Tortue"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
"Vous n'avez pas sauvegardé votre travail. Voulez-vous le sauvegarder avant "
"de quitter ?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "Sauvegarder le projet ?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Aide"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Passer le curseur sur la palette orange pour afficher l'aide."
+
+#~ msgid "Turtle Art Butia"
+#~ msgstr "Butia Art Tortue"
+
+#~ msgid "pushbutton"
+#~ msgstr "bouton poussoir"
+
#~ msgid ""
#~ "returns the object gray level encountered him as a number between 0 and 1023"
#~ msgstr ""
diff --git a/po/gu.po b/po/gu.po
index 12befc6..b201ced 100644
--- a/po/gu.po
+++ b/po/gu.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:22+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/ha.po b/po/ha.po
index f6c8f95..915be2e 100644
--- a/po/ha.po
+++ b/po/ha.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:23+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/he.po b/po/he.po
index 871e0c0..9fb4954 100644
--- a/po/he.po
+++ b/po/he.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-12-29 00:38+0200\n"
"Last-Translator: 623633 <623633@gmx.com>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "ציורי צב"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr "מנקה את המסך ומחזיר את הצב למצב התחלתי"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "שמאלה"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "מסובב את הצב נגד כיוון השעון (זווית במעלות)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "ימינה"
@@ -110,8 +110,8 @@ msgstr "קבע אזימוט (כיוון)"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "קובע ערך לכיוון (אזימוט) של הצב (0 הוא הכיוון של חלקו העליון של המסך)."
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr "מכיל את קוארדינטת x הנוכחית של הצב (יכול לשמש במקום בלוק מסוג מספר)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr "מכיל את קוארדינטת y הנוכחית של הצב (יכול לשמש במקום בלוק מסוג מספר)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "כיוון (אזימוט)"
@@ -568,17 +568,17 @@ msgstr "שומר את הערך המספרי במשתנה 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "טקסט (מלל)"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "ערך מחרוזת"
@@ -614,7 +614,7 @@ msgstr "משתנה עם שם (ערך מספרי)"
msgid "store in"
msgstr "שמור ב"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "ערך"
@@ -690,12 +690,12 @@ msgstr "העבר את כל הבלוקים לפח האשפה"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "כותרת"
@@ -715,11 +715,11 @@ msgstr "לא מחבב"
msgid "as input"
msgstr "כקלט (כניסה)"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "מציג את הלוח הבא"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "משנה את האוריינטציה של לוח הבלוקים"
@@ -732,184 +732,184 @@ msgid "Save..."
msgstr "שמור..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "הקלק כדי לפתוח"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "אוריינטציה"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "הבא"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "תמונה"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "מצגת"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "לכידת-מסך"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "הראה לוח"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "הסתר לוח"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "הראה בלוקים"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "הסתר בלוקים"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "הקטן קנה-מידה של קוארדינטות"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "הגדל קנה-מידה של קוארדינטות"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "עריכה"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "תצוגה"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "עזרה"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "פרוייקט"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "העתק"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "הדבק"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "מסך מלא"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "קוארדינטות קרטזיות"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "קוארדינטות פולריות"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "קוארדינטות מטריות"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "הגדל בלוקים"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "הקטן בלוקים"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "פתח דוגמא"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "הזז את הסמן אל מעל ללוח הכתום כדי לראות תיאור של הפקודות."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "שמור כתמונה"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "שמור כHTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "שמור כ-LOGO"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "שמור לכידת-מסך"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "טען בלוק פייתון (Python)"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "נקה"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "רוץ!"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "צעד"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "נפה שגיאות"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "עצור צב"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1021,7 +1021,7 @@ msgstr "נסיון ההעלאה נכשל!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "לוח של בלוקי חיישנים"
@@ -1057,7 +1057,7 @@ msgstr "עוצמת קול של כניסת מיקרופון"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "גובה צליל"
@@ -1153,262 +1153,262 @@ msgstr "אופרטור עד-ש-אמת שמשתמש באופרטורים בולי
msgid "Palette of media objects"
msgstr "לוח של בלוקי מדיה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "יומן"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "אובייקט מדיה של יומן Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "צליל"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "אובייקט צליל של יומן Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "וידאו"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "אובייקט וידאו של יומן Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "תיאור"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "שדה תיאור של יומן Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "הצג"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "מצייר טקסט (מלל) או מראה מדיה מהיומן"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "הצג עם יישור"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "קבע קנה מידה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "קובע את קנה המידה של המדיה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "שמור תמונה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "שם התמונה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "שמור את התמונה ליומן Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "שמור SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "שומר ציור-צב בפורמט SVG ביומן Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "קנה-מידה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "מכיל את הערך הנוכחי של קנה המידה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "מתן למדיה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "ממתין עד סיום הוידאו או הצליל הנוכחי"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "דבר"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr "שלום"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr "אומר את הטקסט (מלל) הנתון"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr "גל סינוס"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr "משך זמן"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr "משמיע צליל סינוס בתדירות, עוצמה ומשך זמן (בשניות) נתונים"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr "כפתור לחוץ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr "מחזיר 1 אם המשתמש לוחץ כעת על כפתור העכבר"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr "עכבר-x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr "מחזיר את הערך הנוכחי של קוארדינטת x של העכבר"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr "עכבר-y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr "מחזיר את הערך הנוכחי של קוארדינטת y של העכבר"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "קלט מקלדת"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "מבקש קלט מהמקלדת (התוצאה נשמרת בבלוק מקלדת)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "מקלדת"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "מחזיק את תוצאת הבלוק קלט מקלדת"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "קרא פיקסל"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "ערך RGB של הפיקסל שנמצא תחת הצב נשמר במחסנית"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "צב רואה צבע"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "מחזיר את הצבע שהצב \"רואה\""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "זמן"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "זמן שחלף (בשניות) מאז הפעלת התוכנה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "לוח של אפשרויות נוספות"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "דחוף\\שמור ערך"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "שומר ערך במחסנית FILO (ראשון-בפנים אחרון-בחוץ)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "הצג מחסנית FILO"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "מציג את הערכים השמורים במחסנית FILO (ראשון-בפנים אחרון-בחוץ)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "רוקן מחסנית FILO"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "מרוקן את מחסנית הFILO"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "שלוף\\טען ערך"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "שולף ערך ממחסנית LIFO (ראשון-בפנים אחרון-בחוץ)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "רוקן מחסנית FILO"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "הערה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "מציב הערה בקוד שלך"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "הודעה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "מציג ערך בבלוק סטטוס בתחתית המסך"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "פייתון (Python)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr "בלוק ניתן לתכנות: משמש להוספת משוואות מתמטיות במשתנה אחד, לדוגמה sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1416,7 +1416,7 @@ msgstr ""
"בלוק ניתן לתכנות: משמש להוספת משוואות מתמטיות במספר משתנים, לדוגמה "
"sqrt(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1424,221 +1424,224 @@ msgstr ""
"בלוק ניתן לתכנות: משמש להוספת משוואות מתמטיות במספר משתנים, לדוגמה "
"sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "בלוק פייתון (Python)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "מריץ קוד שנמצא במודול tamyblock.py ביומן"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "קרטזיאני"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "הצג קוארדינטות קרטזיאניות"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "פולרי"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "הצג קוארדינטות פולריות"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "צב"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "בחר באיזה צב להשתמש"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "שריון צב"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "התאם אישית את השריון שעל הצב"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "ראש"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "ראש המחסנית המצומצמת"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "תחתית"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "תחתית מחסנית ניתנת לצמצום"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "הבלוק התחתון שמחסנית מצומצת, הקלק בכדי לפתוח"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "ראש המחסנית"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "תווית"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "ראש של מחסנית ניתנת לצמצום"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "לוח של דוגמאות-בסיס למצגת"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "הסתר בלוקים"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "מסיר בלוקים מיותרים מהיריעה ע\"מ להקל על אי-סדר"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "הראה בלוקים"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "הצג בלוקים מוסתרים"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "הסתר סרגלי כלים של Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "רשימה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "רשימת פריטים עם סימון למצגת"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "דוגמת-בסיס למצגת - רשימת פריטים עם סימן"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "דוגמת-בסיס למצגת - בחר אובייקט מהיומן (בלי תיאור)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "דוגמת-בסיס למצגת - בחר אובייקט מהיומן (עם תיאור)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "דוגמת-בסיס למצגת - בחר ארבעה אובייקטים מהיומן"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "דוגמת-בסיס למצגת - בחר שני אובייקטים מהיומן"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "קוארדינטת X של צידו השמאלי של המסך"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "קוארדינטת Y של צידו התחתון של המסך"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "רוחב"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "רוחב היריעה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "קוארדינטת X של צידו הימני של המסך"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "קוארדינטת Y של צידו העליון של המסך"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "גובה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "גובה היריעה"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "כותרת X"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "כותרת Y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "שמאל X"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "מעלה Y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "ימין X"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "תחתית Y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "מצגת 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "מצגת 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "מצגת 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "מצגת 2x2"
@@ -1701,9 +1704,8 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-#, fuzzy
-msgid "Turtle Art Butia"
-msgstr "מיני ציור-צב"
+msgid "TurtleBots"
+msgstr ""
#: taextras.py:59
#, fuzzy
@@ -1758,8 +1760,8 @@ msgid "LED"
msgstr "נורית LED"
#: taextras.py:70
-msgid "pushbutton"
-msgstr "כפתור-לחיצה"
+msgid "button"
+msgstr ""
#: taextras.py:71
msgid "grayscale"
@@ -2216,7 +2218,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2381,7 +2383,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2526,6 +2528,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "לוח של בלוקי חיישנים"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "מודולו"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2575,30 +2711,44 @@ msgstr "שנה קנה מידה של קוארדינטות"
msgid "Reset block size"
msgstr "שנה גודל בלוקים לברירת מחדל"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "הצג\\הסתר בלוקים"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "כלים"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "עצור"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "צב"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "יש לך עבודה שטרם נשמרה. האם תרצה לשמור אותה לפני יציאה מהתוכנית?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "לשמור פרוייקט?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "עזרה"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "הזז את הסמן אל מעל ללוח הכתום כדי לראות תיאור של הפקודות."
+
+#, fuzzy
+#~ msgid "Turtle Art Butia"
+#~ msgstr "מיני ציור-צב"
+
+#~ msgid "pushbutton"
+#~ msgstr "כפתור-לחיצה"
+
#, fuzzy
#~ msgid ""
#~ "returns the object gray level encountered him as a number between 0 and 1023"
diff --git a/po/hi.po b/po/hi.po
index 04af4e5..d55cc38 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-12-04 06:20+0200\n"
"Last-Translator: satyaakam goswami <satyaakam@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "टर्टल आर्ट"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr "स्क्रीन को साफ करता है व टर्टल को रीसेट करता है"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "बायाँ"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "टर्टल घड़ी के विपरीत दिशा में घुमाता है (कोण डिग्री में)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "दायाँ"
@@ -112,8 +112,8 @@ msgstr "शीर्षक सेट करें"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "टर्टल का शीर्षक सेट करता है (0 स्क्रीन के शीर्ष की तरफ है.)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "एक्स निर्देशांक"
@@ -125,8 +125,8 @@ msgstr ""
"टर्टल का एक्स-निर्देशांक रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता "
"है)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "वाय निर्देशांक"
@@ -138,8 +138,8 @@ msgstr ""
"टर्टल का एक्स-निर्देशांक रखता है (संख्या खण्ड की जगह प्रयोग में लिया जा सकता "
"है)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "शीर्षक"
@@ -576,17 +576,17 @@ msgstr "अंकीय मान को चर 2 में भंडारि
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "पाठ"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "स्ट्रिंग मान"
@@ -622,7 +622,7 @@ msgstr "नामित चर (अंकीय मान)"
msgid "store in"
msgstr "में भंडारित करें"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "मान"
@@ -698,12 +698,12 @@ msgstr "सभी ब्लॉकों के लिए कचरा चाल"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "शीर्षक"
@@ -723,11 +723,11 @@ msgstr "जैसा नहीं"
msgid "as input"
msgstr "इनपुट के रूप में"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "अगला पैलेट दिखाता है"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "पिण्डों के पैलेट की दिशा बदलता है"
@@ -740,184 +740,184 @@ msgid "Save..."
msgstr "सहेजें..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "खोलने के लिए क्लिक करें"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "दिशा"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "अगला"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "फोटो"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "प्रस्तुतिकरण"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "स्नेपशॉट"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "रंगपट्टिका दिखाएँ"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "रंगपट्टिका छुपाएँ"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "खण्ड दिखाएँ"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "खण्ड छुपाएँ"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "निर्देशांकों को नीचे रीस्केल करें"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "निर्देशांकों को ऊपर रीस्केल करें"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "संपादन"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "दृश्य"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "मदद"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "परियोजना"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "नक़ल"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "चिपकाएँ"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "पूर्ण स्क्रीन"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "कार्टेसियन निर्देशांक"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "घ्रुवीय निर्देशांक"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "मेट्रिक निर्देशांक"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "पिण्ड बड़ा करें"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "पिण्ड छोटा करें"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "लोड उदाहरण"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "मदद के लिए संकेतक को नारंगी पैलेट पर ले जाएँ."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "फ़ोटो के रूप में सहेजें"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "एचटीएमएल रूप में सहेजें"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "लोगो के रूप में सहेजें"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "स्नेपशॉट सहेजें"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "लोड Python ब्लॉक"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "साफ"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "चलाएँ"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "चरण"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "दोषसुधार"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "टर्टल बन्द करें"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1029,7 +1029,7 @@ msgstr "अपलोड करने में विफल!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "सेंसर ब्लॉकों के पैलेट"
@@ -1065,7 +1065,7 @@ msgstr "माइक्रोफ़ोन इनपुट आवाज़ नि
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "पिच"
@@ -1161,256 +1161,256 @@ msgstr "करें-तबतक-सही ऑपरेटर जो संख
msgid "Palette of media objects"
msgstr "मीडिया वस्तुओं की पैलेट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "दैनिकी"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "सुगर दैनिकी मीडिया वस्तु"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "ऑडियो"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "सुगर दैनिकी ऑडियो वस्तु"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "वीडियो"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "सुगर दैनिकी ऑडियो वस्तु"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "विवरण"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "सुगर दैनिकी वर्णन क्षेत्र"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "दिखाएँ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "दैनिकी से पाठ ड्रा करता है या मीडिया दिखाता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "पंक्तिबद्ध दिखाएँ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "स्केल सेट करें"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "मीडिया का स्केल सेट करता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "चित्र सहेजें"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "चित्र नाम"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "सुगर दैनिकी में एक चित्र सहेजता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "SVG सहेजें"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "टर्टल ग्राफ़िक्स को सुगर दैनिकी में SVG फ़ाइल के रूप में सहेजता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "स्केल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "वर्तमान स्केल मूल्य रखता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "मीडिया प्रतीक्षा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "वर्तमान वीडियो या ऑडियो को पूरा करने के लिए इंतजार"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "बोलो"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr "नमस्ते"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr "पाठ को बोलता है"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr "sinewave"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr "अवधि"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr "plays a sinewave at frequency, amplitude, and duration (in seconds)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr "बटन नीचे"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr "1 देता है अगर माउस बटन दबाया है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr "माउस एक्स"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr "रिटर्न माउस एक्स समन्वय"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr "माउस y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr "रिटर्न माउस y समन्वय"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "कुंजीपट क्वैरी करें"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "कुंजीपट इनपुट के लिए क्वैरी (कुंजीपट खण्ड में परिणाम भंडारित होते हैं)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "कुंजीपट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "क्वैरी-कुंजीपट खण्ड के परिणाम रखता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "पिक्सेल को पढें"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "कछुआ तहत RGB रंग ढेर करने के लिए धक्का दिया है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "कछुआ देखता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "रिटर्न रंग कि कछुआ \"देखता\""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "समय"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "बीता समय (सेकंड में) के बाद कार्यक्रम शुरू"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "अतिरिक्त विकल्प के पैलेट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "दबाएँ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) में मूल्य पुश करता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "ढेर दिखाएँ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) में मूल्य दिखाता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "रिक्त ढेर"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) को खाली करता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "पॉप"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "एफ़आईएलओ (फर्स्ट-इन लास्ट-आउट ढेर) का मूल्य दिखाता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "रिक्त ढेर"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "टिप्पणी"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "आपके कोड में एक टिप्पणी जोड़ता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "छापें"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "स्क्रीन के तल में स्थिति खण्ड में मूल्य छापता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "पायथन"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1418,7 +1418,7 @@ msgstr ""
"एक प्रोग्राम किया जा सकने वाला पिण्ड: उन्नत एकल-चर गणित समीकरण जोड़ने में "
"प्रयोग में लिया जाता है, उदा. sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1426,7 +1426,7 @@ msgstr ""
"एक प्रोग्राम किया जा सकने वाला पिण्ड: उन्नत बहु-चर गणित समीकरण जोड़ने में "
"प्रयोग में लिया जाता है, उदा. sqrt(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1434,221 +1434,224 @@ msgstr ""
"एक प्रोग्राम किया जा सकने वाला पिण्ड: उन्नत बहु-चर गणित समीकरण जोड़ने में "
"प्रयोग में लिया जाता है, उदा. sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "Python खंड"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "जर्नल में tamyblock.py मॉड्यूल में निहित कोड को चलाता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "कार्टेसियन"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "कार्टेसियन निर्देशांक प्रदर्शित करता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "घ्रुवीय"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "ध्रुवीय निर्देशांक प्रदर्शित करता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "टर्टल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "चुनता है कि किस टर्टल को कमांड दिया जाए"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "turtle शैल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "कछुआ पर एक कस्टम ' शैल' चढ़ाये"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "शीर्ष"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "समेटे जा सकने वाले ढेर का शीर्ष"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "तल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "समेटे जा सकने वाले ढेर का शीर्ष"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "समेटे जा सकने वाले ढेर में तल पिण्ड: खोलने के लिए क्लिक करें"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "ढेर के शीर्ष पर"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "लेबल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "समेटे जा सकने वाले ढेर का शीर्ष"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "प्रेजेन्टेशन टैम्प्लेटों के पैलेट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "खण्ड छुपाएँ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "पिण्डों को छुपाकर कैनवास को व्यवस्थित करता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "पिण्ड दिखाएँ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "छुपे पिण्ड बहाल करता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "सुगर औजारपट्टी को छुपाता है"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "सूची"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "प्रस्तुतिकरण बुलेटेड सूची"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "प्रेजेंटेशन टैम्प्लेट: बुलेट की सूची"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "प्रेजेंटेशन टैम्प्लेट: दैनिकी वस्तु चुनें (वर्णन रहित)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "प्रेजेंटेशन टैम्प्लेट: दैनिकी वस्तु चुनें (वर्णन सहित)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "प्रेजेंटेशन टैम्प्लेट: चार दैनिकी वस्तु चुनें"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "प्रेजेंटेशन टैम्प्लेट: दो दैनिकी वस्तु चुनें"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "स्क्रीन के बाएँ का एक्स निर्देशांक"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "स्क्रीन के तल का वाय निर्देशांक"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "चौड़ाई"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "केनवस की चौड़ाई"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "स्क्रीन के दाएँ का एक्स निर्देशांक"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "स्क्रीन के शीर्ष का वाय निर्देशांक"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "ऊँचाई"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "केनवस की ऊँचाई"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "शीर्षक x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "शीर्षक y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "बाएँ x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "शीर्ष y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "सही एक्स"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "तल y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "प्रस्तुतिकरण 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "प्रस्तुतिकरण 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "प्रस्तुतिकरण 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "प्रस्तुतिकरण 2x2"
@@ -1711,8 +1714,8 @@ msgstr "Guaranies के पैलेट"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "कछुए कला Butia"
+msgid "TurtleBots"
+msgstr ""
#: taextras.py:59
#, fuzzy
@@ -1766,7 +1769,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2225,7 +2228,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2387,7 +2390,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2533,6 +2536,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "सेंसर ब्लॉकों के पैलेट"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "मॉड"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "उपयोग हैं"
@@ -2582,30 +2719,40 @@ msgstr "निर्देशांक रीस्केल करें"
msgid "Reset block size"
msgstr "पिण्ड आकार रीसेट करें"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "पिण्ड दिखाएँ/छुपाएँ"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "औज़ार"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "रूकें"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "टर्टल"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "बाहर जाने से पहेले , क्या आप ईसे सहेजना चाहोगे"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "प्रोजेक्ट सहेजे"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "मदद"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "मदद के लिए संकेतक को नारंगी पैलेट पर ले जाएँ."
+
+#~ msgid "Turtle Art Butia"
+#~ msgstr "कछुए कला Butia"
+
#, fuzzy
#~ msgid ""
#~ "returns the object gray level encountered him as a number between 0 and 1023"
diff --git a/po/ht.po b/po/ht.po
index 5c3d238..a4f432a 100644
--- a/po/ht.po
+++ b/po/ht.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-02-20 14:16-0500\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -17,8 +17,8 @@ msgstr ""
"X-Generator: Pootle 1.1.0rc2\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -51,7 +51,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -60,7 +60,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -110,8 +110,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -563,17 +563,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -609,7 +609,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -685,12 +685,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -710,11 +710,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -727,184 +727,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1014,7 +1014,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1050,7 +1050,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1146,487 +1146,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1689,7 +1692,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1735,7 +1738,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2190,7 +2193,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2349,7 +2352,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2492,6 +2495,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2541,26 +2676,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/hu.po b/po/hu.po
index 5c3d238..a4f432a 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-02-20 14:16-0500\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -17,8 +17,8 @@ msgstr ""
"X-Generator: Pootle 1.1.0rc2\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -51,7 +51,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -60,7 +60,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -110,8 +110,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -563,17 +563,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -609,7 +609,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -685,12 +685,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -710,11 +710,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -727,184 +727,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1014,7 +1014,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1050,7 +1050,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1146,487 +1146,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1689,7 +1692,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1735,7 +1738,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2190,7 +2193,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2349,7 +2352,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2492,6 +2495,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2541,26 +2676,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/hus.po b/po/hus.po
index 0cae94f..e0d4ab4 100644
--- a/po/hus.po
+++ b/po/hus.po
@@ -6,11 +6,11 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
-"PO-Revision-Date: 2011-09-27 04:57+0200\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
+"PO-Revision-Date: 2012-03-14 04:51+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: \n"
+"Language: hus\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -19,8 +19,8 @@ msgstr ""
# TortugArte = WitsixPet
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Witsix Pet"
@@ -53,7 +53,7 @@ msgid "clears the screen and reset the turtle"
msgstr "in t'okál an walek ani in wichk'owal an pet"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "kwa'atbe'"
@@ -64,7 +64,7 @@ msgstr ""
"in kexem)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "wínab"
@@ -116,8 +116,8 @@ msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
"ka ts'atb'a an pet ju'taj tin tomnal ka k'alej (0 jaits abal ebal ti walek.)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -130,8 +130,8 @@ msgstr ""
"in kwa'al xuwek'ij an pet an coordenada x (i ejtowal ki eyendha' tin jalk'ul "
"jun i kwene' t'ojlab ajumtalab)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -144,8 +144,8 @@ msgstr ""
"in kwa'al xuwek'ij an pet an coordenada y (i ejtowal ki eyendha' tin jalk'ul "
"jun i kwene' t'ojlab ajumtalab)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "in bélil"
@@ -282,41 +282,39 @@ msgstr ""
#: TurtleArt/tabasics.py:425
msgid "red"
-msgstr ""
+msgstr "tsakni'"
#: TurtleArt/tabasics.py:426
msgid "orange"
-msgstr ""
+msgstr "t'a'at manu'"
#: TurtleArt/tabasics.py:428
msgid "yellow"
-msgstr ""
+msgstr "manu'"
#: TurtleArt/tabasics.py:430
msgid "green"
-msgstr ""
+msgstr "yaxu'"
#: TurtleArt/tabasics.py:431
msgid "cyan"
-msgstr ""
+msgstr "cian"
#: TurtleArt/tabasics.py:432
msgid "blue"
-msgstr ""
+msgstr "tok'i"
#: TurtleArt/tabasics.py:433
msgid "purple"
-msgstr ""
+msgstr "tamkulom mukuxtaláb"
#: TurtleArt/tabasics.py:435
-#, fuzzy
msgid "white"
-msgstr "tamchál"
+msgstr "dhakni'"
#: TurtleArt/tabasics.py:436
-#, fuzzy
msgid "black"
-msgstr "wichiy"
+msgstr "t'unu'"
#: TurtleArt/tabasics.py:442
msgid "set text color"
@@ -439,7 +437,7 @@ msgstr "an bolk'idh t'ojnal axi lej pulik etil a"
#: TurtleArt/tabasics.py:660
msgid "True"
-msgstr ""
+msgstr "lej chubax"
#: TurtleArt/tabasics.py:666
msgid "less than"
@@ -451,7 +449,7 @@ msgstr "an bolk'dh t'ojnal axi lej pulik etil a"
#: TurtleArt/tabasics.py:674
msgid "False"
-msgstr ""
+msgstr "yabchubax"
#: TurtleArt/tabasics.py:680
msgid "equal"
@@ -603,18 +601,18 @@ msgstr "dhaya' in jabil an ajixtaláb ti Bijlab 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "dhuchlab"
# valor = jalbíl ; cadena = dhuchlab
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "in jalbíl an dhuchlab"
@@ -650,7 +648,7 @@ msgstr "bijilab xi bijidh (jalbil ajixtaláb)"
msgid "store in"
msgstr "ki dhaya' ti"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "jalbíl"
@@ -726,12 +724,12 @@ msgstr "ki nedha' patal an kwene' abal ti amul"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Bijláb"
@@ -752,11 +750,11 @@ msgstr "inbáj in kulbetnal"
msgid "as input"
msgstr "ejtil i otseltaláb"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "ki tejwa'medha' xi júnakej i kwene'"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "ka jalk'unchij in áy an kewne' ti kwene' t´'ojláb"
@@ -769,198 +767,196 @@ msgid "Save..."
msgstr "Dhaya'..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "ni'inchij abal ka japiy"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "bolidhtaláb"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "júnakej"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "t'iplab"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "tejwa'mejdhomtaláb"
# Instantánea=adhik
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "adhik"
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
# paleta = kwene'mukuxtaláb
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Tejwa'méjdha' an kwene'mukuxtaláb"
# Ocultar = dhibk'oy, tsina'; esconder = tsina'
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Ka dhibk'oy an kwene'mukuxtaláb"
# bloque = kwene't'ojláb (conjunto de actividades)
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Ka tejwa'méjdha' an kwene't'ojlábl"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Ka dhibk'oy an kwene't'ojlábchik"
# escalar=k'adhíl(subir)
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "K'adhíl ti coordenadas abal alál"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "K'adhíl ti coordenadas abal ebál"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Jalk'uy"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Tsu'uw"
-# Ayuda = tolmix(conjugado, naná' in tolmix); Ayuda(La) = Tolmixtaláb(como sustantivo: an tolmixtaláb)
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Tolmixtaláb"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Tsalapnadh t'ojláb"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
-msgstr ""
+msgstr "dhaya'/k'adhba'"
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "K'ot'biy"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Ts'at'k'a'"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Putat walek"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Coordenadas cartesianas"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Coordenadas polares"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Coordenadas centímetros"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Ka púwedha' an kwene' t'ojlábchik"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Tsipti'méjdha' an kwene' t'ojlábchik"
# Ejemplo = t'ipoxtaláb
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Ka k'adhba' an t'ipoxtalábchik"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-"Ka éjedha' an chuchbix eblim ti itsak'ní kwene'mukuxtaláb abal ti tolmix'."
-
# imagen o logo = t'iplab
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Ka dhaya' jant'ini' i t'iplab"
# guarda = Ka dhaya'; como = jant'ini'
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Ka dhaya' jant'ini' i HTML"
# Logo = T'iplab
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Ka dhaya' jant'ini' i T'iplab"
# Instantánea (o) = Jun adhik
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Dhayaxtaláb k'al an jun adhik"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
-msgstr ""
+msgstr "k'adhba' an tojláb"
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "K'adhba' an Python kwene' t'ojláb"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "T'oka'"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Ka t'aja'"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Ka t'aja' jun xakab"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
# Depurar = Takwláts
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Takwláts"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
# Tortuga = Pet
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Ka kuba' an pet"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1011,7 +1007,7 @@ msgstr "Wi'leb"
#: gnome_plugins/collaboration_plugin.py:300
msgid "Password"
-msgstr "Tsinatbijláb"
+msgstr "Tsinatbijiláb"
#: gnome_plugins/collaboration_plugin.py:302
msgid "Register"
@@ -1043,7 +1039,7 @@ msgstr "Ayendhóm:"
#: gnome_plugins/uploader_plugin.py:102
msgid "Password:"
-msgstr "Tsinatbijláb:"
+msgstr "Tsinatbijiláb:"
#: gnome_plugins/uploader_plugin.py:113
msgid "Title:"
@@ -1074,7 +1070,7 @@ msgstr "¡Kibts'obtaláb k'al an k'adhbaxtaláb!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb"
@@ -1110,7 +1106,7 @@ msgstr "tsapik an kawídh k'al an otseltaláb kawidhomtaláb"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "janidhtaláb"
@@ -1217,286 +1213,285 @@ msgstr ""
msgid "Palette of media objects"
msgstr "Kwene' i eyextaláb multimedia"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "chudhél dhuchlab"
# medios de comunicación = ólchix ayendhanél
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Sugar Journal pél i eyextaláb ólchix ayendhanél"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "ots'oltaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Sugar Journal pél i eyextaláb ti ots'oltaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "t'iplab tejwa'méjdhomtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "Sugar Diario pél i eyextaláb ti t'iplab tejwa'méjdhomtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "tejwa'méjdhomtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Sugar Diario pél jún i jolát abal an tejwa'méjdhomtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "tejwa'méjdha'"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
"ka t'ipoy an dhuchlab ólchix ayendhanél o ka tejwa'méjdha' ti Chudhél "
"dhuchlab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "k'elbadh ka tejwa'méjdha'"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "bajudh junkudhtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "junkudhtaláb al an bajudh ti ólchix ayendhanél"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "dhaya' i t'iplab"
# nombre = su nombre(in bijíl)
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "in bijíl an t'iplab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "in dhayál jún i t'iplab ti Sugar Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "dhaya' SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
"in dhayál an t'iplabchik a xi in k'al an pet jant'ini' jún i dhuchlab SVG ti "
"al an Sugar Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "puwém"
# escala = puwém; escala = bajudh(música)
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "in kó'onchal in jalbíl a xi xowé' in puwém"
# esperar = áychij
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "ki in áychij an ólchix ayendhanél"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "ka ay'chij an ots'oltaláb o an t'iplab tejwa'mejdhomtaláb ma ka taley"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
-msgstr ""
+msgstr "kaw"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
-msgstr ""
+msgstr "ne'nek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
-msgstr ""
+msgstr "ulal an dhuchláb"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
-msgstr ""
+msgstr "sinusoide"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
-msgstr ""
+msgstr "owát"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
-msgstr ""
+msgstr "in watbál junkubat al an sinusoide, in owát anij in owem (adhik k'ij)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
-msgstr ""
+msgstr "ni'adh dhuche'"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
-msgstr ""
+msgstr "wichel jun max an dhuche' kwajat ni'adh"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
-msgstr ""
+msgstr "chuchbixtaláb x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
-msgstr ""
+msgstr "in wichbal an elax kits'lab x al an chuchbixtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
-msgstr ""
+msgstr "chuchbixtaláb y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
-msgstr ""
+msgstr "in wichbal an elax kits'lab ani an chuchbixtaláb"
# consultar de teclado = alimdhuchumtaláb
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
-msgstr "alimdhuchumtaláb"
+msgstr "alim dhuchumtaláb"
# resultados = bajúdhchik
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"ka aliy abal an otseltaláb k'al an dhuchumtaláb (in bajúdh k'wajat dhayach "
"ti al an kwene' t'ojláb xi in k'ál an dhuchumtaláb)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
-msgstr "dhuchumtaláb"
+msgstr "ni'imtal dhuche'"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "in kwa'al in bajúdh k'al an kwene' t'ojláb ti alimdhuchumtaláb"
# leer = ajiy
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "ka ajiy i pixel"
# pila = t'i'ab
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "An RGB mukuxtaláb ti in alam an pet k'wajbámej t'i'i'idh"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "an pet tsu'ux"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "ka ólna' an mukuxtaláb a xi in \"tsu'tal\" an pet"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "k'ij"
# segundo = adhik k'ij
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
"an k'ij wat'enek (ti adhik k'ij) ma ti in tujtal ti in al an tsalpadht'ojláb"
# adiciónal = punk'uxtaláb ; adiciónales = in punkuxtal
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Kwene' ti in púnk'uxtal i jolat takudhtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "nixa'"
# pila, batería = mulkuxtsápláb
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
"ka t'i'aj in jalbíl eblim an mulkuxtsápláb FILO (k'a'ál ti otsel, kalel ti "
"taltaláb)"
# batería, pila = mulkuxtsápláb
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "ka tejwa'méjdha' an t'i'nél"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
"ka tejwa'méjdha' in jalbílchik al an t'i'nél FILO (k'a'ál ti otsel, kalel ti "
"taltaláb)"
# vaciar = jolk'ow
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "ka jolk'ow an t'i'nél"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "ka jolk'ow an t'i'nél FILO (k'a'ál-ti-otsel kalel-ti-taltaláb)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "kaldha'"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
"ka kanchij in jalbíl ti t'i'nél FILO (otsel ti k'a'ál, kalel ti taltaláb)"
# vaciar = jolk'ow
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
-#, fuzzy
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr "ka jolk'ow an t'i'nél"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
-msgstr ""
+msgstr "in wichbál xi chubax al an t'i'nel xi jolat"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "káw"
# código = káw
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "ka punuw jún i káw ti al a dhuche'il"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "ka wat'ba' ti úw"
# imprime = dhunchunchij
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
"ka dhuchunchij in jalbíl ti al in alwá' an kwene' t'ojláb ti in alálim an "
"walek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1505,13 +1500,13 @@ msgstr ""
"matemáticas xi lej k'adhat ti ál an ecuaciones matemáticas ti jún i dhuche', "
"p.e., seno(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr "punchidh exobintalab eyadh`k'al an ajintalab ,i,e.,sqrt(x*x+y*)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1519,232 +1514,235 @@ msgstr ""
"punchidh exobintaláb eyadh k'al an ecuaciones matemáticas axi k'ibichik yan, "
"p.e. seno(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "Python kwene' t'ojláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
"ka t'aja' jun t'ie' i dhuche' ti kwene't'ojláb tamyblock.py axi kw'ajat ti "
"Chudhél dhuchlab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Cartesiana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "t'ipodh elax kits'lab Cartesianas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "pulàb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "tìpodh pulàb elàx kits'lab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "pet"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "ka takuy an pet ti abatnom"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "in yetse' ot'ol an pet"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "ka kotonliy t'ipts'odh an pet"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "eblim"
# eblim ka t'ia' jununúl
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "eblim ka t'i'a' jununul"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "alam"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "tin alam an ts'at'at' t'i'e'"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "ti alal an k'wene' t'ojláb ts'at'at': t'aja' klik abal ka japiy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "eblim ti ál an t'i'e'"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "uw bijilab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "eblim ti ba an paklax binom tsaplab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "An kwene' tejwame'dhomtalab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "tsina' an kwene' t'ojláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "in t'okál in walte'lil tam ka tsinka' an kwene' t'ojláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "ka tejwa'mejdha' an kwene' t'ojlab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "ka wichk'ow an kwene' t'ojlab axi tsinkadh"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "in tsinkál an ayixtalab axi in k'al a Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "k'elab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "tejwa'medhomtaláb k'al an k'elab ti witsil dhuche'"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "t'ipoxtaláb ti tejwa'medhomtaláb: k'elab an wistil dhuche'"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al an eyextaláb ti Chudhél "
"dhuchlab (yab tejwa'medhach)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al an eyextaláb ti Chudhél "
"dhuchlab (tejwa'medhach)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al tse' i eyextaláb ti "
"Chudhél dhuchlab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
"t'ipoxtaláb ti tejwa'medhomtaláb: takuxtaláb k'al tsab i eyextaláb ti "
"Chudhél dhuchlab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "xcor ti kwa'atbe' waldhuchumtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "ycor tin walte'il alal an waldhuchumtalab"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "ts'ikwél"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "tin ts'ikwém an telmaxtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "xcor tin walte' winbéj ti waldhuchumtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "ycor tin walte' ti eblim an waldhuchumtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "t'ek'em"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "t'ek'em an telmaxtaláb"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "bijláb x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "bijláb y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "kwa't'ab x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "eblim y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "wínab x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "ti in alam y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "tejwa'medhomtaláb 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "tejwa'medhomtaláb 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "tejwa'medhomtaláb 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "tejwa'medhomtaláb 2x2"
@@ -1807,43 +1805,37 @@ msgstr "Paleta de Guaranies"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "Tortug tsalpadh t'ajbilab Butía"
+msgid "TurtleBots"
+msgstr ""
#: taextras.py:59
-#, fuzzy
msgid "adjust LED intensity between 0 and 255"
msgstr "In lejbayal in tsapík xi LED k'al 0 ani 255."
#: taextras.py:60
-#, fuzzy
msgid "returns the object gray level as a number between 0 and 1023"
msgstr ""
"In wichbal in wichat an tajaxtalab al an k'ailal ejtil jun i ajixtalab al an "
"0 ani 1023."
#: taextras.py:61
-#, fuzzy
msgid "returns 1 when the button is press and 0 otherwise"
msgstr ""
"In wichbal jun tam al dhuche' k´wajat ni'adh ti 0 ani k'al pil i ajumtalab."
#: taextras.py:62
-#, fuzzy
msgid "returns the ambient light level as a number between 0 and 1023"
msgstr ""
"In wichbal in wichat an tajaxtalab al an k'ailal ejtil jun i ajixtalab al an "
"0 ani 1023."
#: taextras.py:63
-#, fuzzy
msgid "returns the ambient temperature as a number between 0 and 255"
msgstr ""
"In wichbal an alwa'talab al an k'ailal ejtil jun i ajixtalab al an 0 ani "
"255."
#: taextras.py:64
-#, fuzzy
msgid ""
"returns the distance from the object in front of the sensor as a number "
"between 0 and 255"
@@ -1852,19 +1844,16 @@ msgstr ""
"ajixtalab ba' an 0 ani an 255."
#: taextras.py:66
-#, fuzzy
msgid "returns 0 or 1 depending on the sensor inclination"
msgstr "In wichbal an 0 o1 k'al in kwentalidh k'al an ots'bixtalab."
#: taextras.py:67
-#, fuzzy
msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise"
msgstr ""
"In wuichbal jun tam an ots'bixtalab in 'elal jun xi yab bijidh, ba' an 0 "
"k'al pil i ajixtalab."
#: taextras.py:68
-#, fuzzy
msgid "switches from 0 to 1, the frequency depends on the vibration"
msgstr "Ejel ba' an 0 ani al an 1 tam dhiyoyolats."
@@ -1873,8 +1862,8 @@ msgid "LED"
msgstr "LED"
#: taextras.py:70
-msgid "pushbutton"
-msgstr "Dhuche'"
+msgid "button"
+msgstr ""
#: taextras.py:71
msgid "grayscale"
@@ -1919,10 +1908,9 @@ msgstr "Aychij an tsábchil xi wat'enek ba' an ódhaxtalab"
#. TRANS: This string is shorthand for "battery charge of Butia"
#: taextras.py:82
msgid "battery charge Butia"
-msgstr ""
+msgstr "in dhayal an ti'el butiá"
#: taextras.py:83
-#, fuzzy
msgid "returns the battery charge as a number between 0 and 255"
msgstr ""
"Wichba' an dhaykom k'al an mulkux tsapláb an robot ejtil jun i ajixtalab ba' "
@@ -1931,10 +1919,9 @@ msgstr ""
#. TRANS: This string is shorthand for "speed of Butia"
#: taextras.py:85
msgid "speed Butia"
-msgstr ""
+msgstr "adhiktaláb butiá"
#: taextras.py:86
-#, fuzzy
msgid ""
"set the speed of the Butia motors as a value between 0 and 1023, passed by "
"an argument"
@@ -1948,12 +1935,10 @@ msgid "forward Butia"
msgstr "Ne'etsnanchij Butiá"
#: taextras.py:90
-#, fuzzy
msgid "move the Butia robot forward"
msgstr "Ka edha' an robot ani ka ne'etsnanchij."
#: taextras.py:91
-#, fuzzy
msgid "move the Butia robot forward a predefined distance"
msgstr "Ka edha' an robot Butiá ani ka aynanchij in owát jant'ini ka kulbetna'."
@@ -1963,12 +1948,10 @@ msgid "backward Butia"
msgstr "Wichba' Butiá"
#: taextras.py:94
-#, fuzzy
msgid "move the Butia robot backward"
msgstr "Edha' an robot Butiá ani´ka wichba'."
#: taextras.py:95
-#, fuzzy
msgid "move the Butia robot backward a predefined distance"
msgstr "Edha' an robot Butiá kuxlab ka alchij in ówat."
@@ -1979,7 +1962,7 @@ msgstr "K'watab Butiá"
#: taextras.py:98
msgid "turn the Butia robot at left"
-msgstr ""
+msgstr "in wilkiyal an pat'al butiá abal tin k'wátab"
#. TRANS: This string is shorthand for "turn Butia right"
#: taextras.py:100
@@ -1988,16 +1971,15 @@ msgstr "Wínab Butiá"
#: taextras.py:101
msgid "turn the Butia robot at right"
-msgstr ""
+msgstr "in wilk'iyal an pat'al atikláb abal tin winab"
#: taextras.py:102
msgid "turn Butia"
-msgstr ""
+msgstr "wilk'iy Butiá"
#: taextras.py:103
-#, fuzzy
msgid "turn the Butia robot x degrees"
-msgstr "Ka tsawix an robot Butiá ba' an ajumtal k'al in kextal."
+msgstr "Ka tsawiy an robot Butiá ba' an ajumtal k'al in kextal."
#: taextras.py:104
msgid "stop Butia"
@@ -2005,10 +1987,9 @@ msgstr "Kuba' Butiá"
#: taextras.py:105
msgid "stop the Butia robot"
-msgstr ""
+msgstr "in k'ubal an pat'al atikláb Butiá"
#: taextras.py:106
-#, fuzzy
msgid "display Butia"
msgstr "Jilk'ontalab Butía"
@@ -2016,10 +1997,9 @@ msgstr "Jilk'ontalab Butía"
#. The len must be 32 characters/spaces.
#: taextras.py:109
msgid "Hello World Butia "
-msgstr ""
+msgstr "ne'nek puwel tsabál Butiá "
#: taextras.py:110
-#, fuzzy
msgid "print text in Butia robot 32-character ASCII display"
msgstr "Ka wila' jun i dhuchlab al an walek LCD."
@@ -2045,7 +2025,7 @@ msgstr "ki ayna' an mukuxtalab RGB"
#: taextras.py:119
msgid "set a threshold for a RGB color"
-msgstr ""
+msgstr "in tejwamedhal an umbral abal jun i mukuxtaláb RGB"
#: taextras.py:120
msgid "follow a turtle color"
@@ -2054,10 +2034,12 @@ msgstr "ki ayna' an mukuxtalab ba' an pét"
#: taextras.py:121
msgid "set the minimal number of pixels to follow"
msgstr ""
+"in tejwamedhal xi tsipkats an ajumtaláb axi ajidh alwa' xi ne'ets ki "
+"beldhanchij"
#: taextras.py:122
msgid "calibrate"
-msgstr ""
+msgstr "t'ojojoy"
#: taextras.py:123
msgid "calibrate a color to follow"
@@ -2081,72 +2063,71 @@ msgstr "ka wichba' jun ejet y"
#: taextras.py:128
msgid "pixels"
-msgstr ""
+msgstr "ajidh alwa'"
#: taextras.py:129
msgid "return the number of pixels of the biggest blob"
-msgstr ""
+msgstr "ka wichba' an ajumtalàb xi kwajat minkodh lej pulik"
#: taextras.py:133
msgid "SumBot"
-msgstr ""
+msgstr "SumBot"
#: taextras.py:134
msgid "speed SumBot"
-msgstr ""
+msgstr "adhiktalàb SumBot"
#: taextras.py:135
msgid "submit the speed to the SumBot"
-msgstr ""
+msgstr "t'ipoy an adhiktalàb SumBot"
#: taextras.py:136
-#, fuzzy
msgid "set the default speed for the movement commands"
msgstr "ka t'ipoy an adhiktalab abal an abatnom tam ka ejelats."
#. TRANS: This string is shorthand for "move SumBot forward"
#: taextras.py:138
msgid "forward SumBot"
-msgstr ""
+msgstr "ne'etsnanchij SumBot"
#: taextras.py:139
msgid "move SumBot forward"
-msgstr ""
+msgstr "yatsiy an SumBot abal tin t'amal"
#. TRANS: This string is shorthand for "move SumBot backward"
#: taextras.py:141
msgid "backward SumBot"
-msgstr ""
+msgstr "tin kùx an SumBot"
#: taextras.py:142
msgid "move SumBot backward"
-msgstr ""
+msgstr "ka yatsiy an tipoxtalàb abal tin kux"
#: taextras.py:143
msgid "stop SumBot"
-msgstr ""
+msgstr "ka kuba' an tipoxtalàb"
#: taextras.py:144
msgid "stop the SumBot"
-msgstr ""
+msgstr "in koydhal an tipoxtalàb"
#. TRANS: This string is shorthand for "turn SumBot left"
#: taextras.py:146
msgid "left SumBot"
-msgstr ""
+msgstr "k'wàtab an tipoxtalàb"
#: taextras.py:147
msgid "turn left the SumBot"
-msgstr ""
+msgstr "ka wilk'iy an tipoxtalàb abal tin k'wàtab"
#. TRANS: This string is shorthand for "move SumBot right"
#: taextras.py:149
msgid "right SumBot"
-msgstr ""
+msgstr "winab tipoxtalàb"
#: taextras.py:150
msgid "turn right the SumBot"
-msgstr ""
+msgstr "wilk'iy an tipoxtalàb abal tin winab"
#: taextras.py:151
msgid "angle to center"
@@ -2154,76 +2135,68 @@ msgstr "kexem ba' in ts'ejeltal"
#. TRANS: dohyo is the playing field
#: taextras.py:153
-#, fuzzy
msgid "get the angle to the center of the dohyo"
-msgstr "ka kanchij in keyem ba' in ts'ejeltal an dojo."
+msgstr "ka kanchij in keyem ba' in ts'ejeltal an dohyo."
#: taextras.py:154
msgid "angle to Enemy"
-msgstr ""
+msgstr "kexem an k'eat tsalapil"
#: taextras.py:155
-#, fuzzy
msgid "get the angle to the Enemy"
msgstr "ka kanchij in owát an k'eat tsalapil."
#. TRANS: This string is shorthand for "x coordinate of SumBot"
#: taextras.py:157
msgid "x coor. SumBot"
-msgstr ""
+msgstr "coor. x SumBot"
#: taextras.py:158
-#, fuzzy
msgid "get the x coordinate of the SumBot"
msgstr "ka kanchij an elax kits'lab x an robot."
#. TRANS: This string is shorthand for "y coordinate of SumBot"
#: taextras.py:160
msgid "y coor. SumBot"
-msgstr ""
+msgstr "coor. y SumBot"
#: taextras.py:161
-#, fuzzy
msgid "get the y coordinate of the SumBot"
msgstr "in kanchij an elax kits'lab an robot."
#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy"
#: taextras.py:163
msgid "x coor. Enemy"
-msgstr ""
+msgstr "coor. x k'eat tsalapil"
#: taextras.py:164
-#, fuzzy
msgid "get the x coordinate of the Enemy"
msgstr "ka kanchij an elax kits'lab x an robot."
#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy"
#: taextras.py:166
msgid "y coor. Enemy"
-msgstr ""
+msgstr "coor. y k'eat tsalapil"
#: taextras.py:167
-#, fuzzy
msgid "get the y coordinate of the Enemy"
msgstr "in kanchij an elax kits'lab an robot."
#. TRANS: This string is shorthand for "rotation of SumBot"
#: taextras.py:169
msgid "rotation SumBot"
-msgstr ""
+msgstr "wilil SumBot"
#: taextras.py:170
-#, fuzzy
msgid "get the rotation of the Sumbot"
msgstr "ka kanchij an wililtalab jun puk'e'."
#. TRANS: This string is shorthand for "rotation of SumBot's enemy"
#: taextras.py:172
msgid "rotation Enemy"
-msgstr ""
+msgstr "wilil k'eat tsalapil"
#: taextras.py:173
-#, fuzzy
msgid "get the rotation of the Enemy"
msgstr "ka kanchij an wililtalab jun puk'e'."
@@ -2233,16 +2206,14 @@ msgstr "in owát an ts'ejeltal"
#. TRANS: dohyo is the playing field
#: taextras.py:176
-#, fuzzy
msgid "get the distance to the center of the dohyo"
-msgstr "ka kanchij in owát an ts'ejeltal xi dojo."
+msgstr "ka kanchij in owát an ts'ejeltal xi dohyo."
#: taextras.py:177
msgid "distance to Enemy"
-msgstr ""
+msgstr "in owàt xin k'eat tsalapil"
#: taextras.py:178
-#, fuzzy
msgid "get the distance to the Enemy"
msgstr "ka kanchij in owát an k'eat tsalapil."
@@ -2251,176 +2222,190 @@ msgid "update information"
msgstr "ka itmedha' an olchixtalab"
#: taextras.py:180
-#, fuzzy
msgid "update information from the server"
msgstr "ka itmedha' an olchixtalab ba' an ábatnom."
# sensor = ats'ax
#. TRANS: Please use similar terms to those used in the Physics Activity
#: taextras.py:185
-#, fuzzy
msgid "Palette of physics blocks"
-msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb"
+msgstr "In kwene' mukuxtaláb ti ats'ax kwene' t'ojláb"
#: taextras.py:186
msgid "start polygon"
-msgstr ""
+msgstr "tujchiy yan walt'etil"
#: taextras.py:187
msgid "Begin defining a new polygon based on the current Turtle xy position."
msgstr ""
+"ka tujchij ka bijiy an it yan walt'elil jantodha ti kw'ajat xokij xy in k'al "
+"an pet"
#: taextras.py:189
msgid "add point"
-msgstr ""
+msgstr "ka punk'uy an tuk"
#: taextras.py:190
msgid ""
"Add a new point to the current polygon based on the current Turtle xy "
"position."
msgstr ""
+"ka punk'uy jun i it tuk al an yan walt'elil xi kwajat xokij xy al an pet"
#: taextras.py:192
msgid "end polygon"
-msgstr ""
+msgstr "puntundha yan walt'elil"
#: taextras.py:193
msgid "Define a new polygon."
-msgstr ""
+msgstr "ka bijiy jun i it yan walt'elil"
#: taextras.py:194
msgid "end filled polygon"
-msgstr ""
+msgstr "ka putundha an yan walt'elil xi t'uchidh"
#: taextras.py:195
msgid "Not a simple polygon"
-msgstr ""
+msgstr "yab i yan walt'elil alk'idh"
#: taextras.py:196
msgid "Define a new filled polygon."
-msgstr ""
+msgstr "in bijiyal jun i it yan walt'elil xi t'uchidh"
#: taextras.py:197
msgid "triangle"
-msgstr ""
+msgstr "òx ts'upi'"
#. TRANS: base of a triangle
#: taextras.py:199
msgid "base"
-msgstr ""
+msgstr "in akan"
#: taextras.py:201
msgid "Add a triangle object to the project."
-msgstr ""
+msgstr "In punk'uyal jun i eyixtalàb al an òx ts'upi' al an tojlàb"
#: taextras.py:202
msgid "circle"
-msgstr ""
+msgstr "kw'echo'"
#: taextras.py:203
msgid "Add a circle object to the project."
-msgstr ""
+msgstr "in punk'uyal jun i eyixtalàb al an kw'echo' abal an tojlàb"
#: taextras.py:204
msgid "rectangle"
-msgstr ""
+msgstr "pek'madh tse' walte'"
#: taextras.py:207
msgid "Add a rectangle object to the project."
-msgstr ""
+msgstr "in punk'uyal jun i eyixtalàb pek'madh tse' walte' al an tojlàb"
#: taextras.py:208
msgid "reset"
-msgstr ""
+msgstr "tsab tujchi'"
#: taextras.py:209
msgid "Reset the project; clear the object list."
-msgstr ""
+msgstr "ka tsàb tujchi' an tojlàb, in t'okedhal an eyixtalàb xi kwajat k'elbadh"
#: taextras.py:210
msgid "motor"
-msgstr ""
+msgstr "ichich pat'al"
#: taextras.py:211
msgid "torque"
-msgstr ""
+msgstr "jayetsek'ij"
#: taextras.py:212
msgid "speed"
-msgstr ""
+msgstr "adhiktalàb"
#: taextras.py:213
msgid ""
"Motor torque and speed range from 0 (off) to positive numbers; motor is "
"placed on the most recent object created."
msgstr ""
+"xi jayetsek'ij an adhiktalàb al an ichich pat'al xi kwajat al an rango 0 "
+"(tepts'idh) al an ajixtalàb positivos; an ichich pat'al kwajat punudh al an "
+"eyixtalàb xi inkidh itej"
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
-msgstr ""
+msgstr "eyindhanel xi ts'upidh anij pulik in ok' xi eynal abal ti ts'at'axtalàb"
#: taextras.py:216
msgid "Pin an object down so that it cannot fall."
-msgstr ""
+msgstr "in teynal an eyixtalàb abal yab ka ijkan"
#: taextras.py:217
msgid "joint"
-msgstr ""
+msgstr "junkudh"
#: taextras.py:220
msgid ""
"Join two objects together (the most recent object created and the object at "
"point x, y)."
msgstr ""
+"in tamkuyal tsab i eyixtalàb (an eyixtalàb xi inkidh anij an eyixtalàb xi "
+"kwajat al an tuk x,y)."
#: taextras.py:222
msgid "Save the project to the Journal as a Physics activity."
-msgstr ""
+msgstr "in dhayal an t'ojlàb al an chudhèl dhuchlab fisica."
#: taextras.py:223
-#, fuzzy
msgid "density"
-msgstr "ibíl"
+msgstr "alemtalàb"
#: taextras.py:224
msgid ""
"Set the density property for objects (density can be any positive number)."
msgstr ""
+"in bijiyal an àlemtalàb kal an eyixtalàb(an àlemtalàb neèts bijidh jawakits "
+"ajumtalàb xi chubax)"
#: taextras.py:226
msgid "friction"
-msgstr ""
+msgstr "tam i tadhanal jit'a, o tam u yats'nal"
#: taextras.py:227
msgid ""
"Set the friction property for objects (value from 0 to 1, where 0 turns "
"friction off and 1 is strong friction)."
msgstr ""
+"in bijiyal in uchbil tam i tadhanal jant'o o jun i eyixtalàb (in alèm "
+"nijant'o anij jun, ju'ta' nijant'o jats' tam i tadhanal anij jun jats xi "
+"ts'apik)."
#. TRANS: bounciness is restitution
#: taextras.py:230
msgid "bounciness"
-msgstr ""
+msgstr "in wichbàl jun i eyindhanel xin kwa'alak tin k'ubak owatits"
#: taextras.py:231
msgid ""
"Set the bounciness property for objects (a value from 0 to 1, where 0 means "
"no bounce and 1 is very bouncy)."
msgstr ""
+"In bijiyal in uchbil kal an eyixtalàb xin kwa'alak tin k'ubak (in alèm "
+"nijjanto' ani jun, ju'ta nijanto' in le' kin uluw in wichbal ani jun in le' "
+"kin uluw yan)"
#: taextras.py:233
msgid "dynamic"
-msgstr ""
+msgstr "kulbel"
#: taextras.py:234
msgid ""
"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position."
msgstr ""
+"kulbel=jun, an eyixtalàb in ejtowal ka yats'in; kulbel=nijanto, jilkonal "
+"k'ubat yab yats'nal"
# sensor = ats'ax
#. TRANS: WeDo is a robotics product of the LEGO company
#: taextras.py:240
-#, fuzzy
msgid "Palette of WeDo blocks"
msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb"
@@ -2433,31 +2418,31 @@ msgstr ""
#. TRANS: This string is shorthand for "output of the distance sensor"
#: taextras.py:246
msgid "distance sensor output"
-msgstr ""
+msgstr "bel xin elàl in owèm"
#: taextras.py:247
msgid "Motor A"
-msgstr ""
+msgstr "ichich pat'al A"
#: taextras.py:248
msgid "returns the current value of Motor A"
-msgstr ""
+msgstr "in wichbal in alèm xin kwaàl an ichich pat'al A"
#: taextras.py:249
msgid "Motor B"
-msgstr ""
+msgstr "ichich pat'al B"
#: taextras.py:250
msgid "returns the current value of Motor B"
-msgstr ""
+msgstr "in wichbal in alèm xin kwa'al al an ichich pat'al B"
#: taextras.py:251
msgid "set the value for Motor A"
-msgstr ""
+msgstr "in elàl in alèm an ichich pat'al A"
#: taextras.py:252
msgid "set the value for Motor B"
-msgstr ""
+msgstr "in elal in alèm an ichich pat'al B"
#. TRANS: Lego NXT is a robotics product of the LEGO company
#: taextras.py:257
@@ -2466,154 +2451,157 @@ msgstr ""
#: taextras.py:258
msgid "touch"
-msgstr ""
+msgstr "dhuche'"
#: taextras.py:259
msgid "ultrasonic"
-msgstr ""
+msgstr "owèm"
#: taextras.py:261
-#, fuzzy
msgid "light"
-msgstr "wínab"
+msgstr "tajàx"
#: taextras.py:262
msgid "PORT A"
-msgstr ""
+msgstr "wi'leb A"
#: taextras.py:263
msgid "PORT B"
-msgstr ""
+msgstr "wi'leb B"
#: taextras.py:264
msgid "PORT C"
-msgstr ""
+msgstr "wi'leb C"
#: taextras.py:265
msgid "PORT 1"
-msgstr ""
+msgstr "wi'leb jun"
#: taextras.py:266
msgid "PORT 2"
-msgstr ""
+msgstr "wi'leb tsab"
#: taextras.py:267
msgid "PORT 3"
-msgstr ""
+msgstr "wi'leb òx"
#: taextras.py:268
msgid "PORT 4"
-msgstr ""
+msgstr "wi'leb tsè"
#: taextras.py:269
msgid "Please check the connection with the brick."
-msgstr ""
+msgstr "T'ajchij an alwa'talàb ka met'a ju'taj ti ts'atadh kal an brinck"
#: taextras.py:270
msgid "Please check the port."
-msgstr ""
+msgstr "T'ajchij an alwa'talàb ka met'a an wi'leb"
#: taextras.py:271
msgid "The value of power must be between -127 to 127."
-msgstr ""
+msgstr "In alèm an tsapiktalàb ne'ets ti - 127 y 127."
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
+"jun i k'ibts'ontalàb watenek: ka met'a an ts'ot'koxtalàb anij ka tsab "
+"ts'ot'k'oy"
#: taextras.py:273
msgid "NXT found"
-msgstr ""
+msgstr "NXT elàdh"
#: taextras.py:274
msgid "NXT not found"
-msgstr ""
+msgstr "NXT yab eladh"
#: taextras.py:275
msgid "refresh NXT"
-msgstr ""
+msgstr "itmèdha' NXT"
#: taextras.py:276
msgid "Search for a connected NXT brick."
-msgstr ""
+msgstr "in aliyal al jun i brinck NXT xi ts'ot'k'odh."
#: taextras.py:277
msgid "play tone"
-msgstr ""
+msgstr "tsab watba' in janidh"
#: taextras.py:278
msgid "freq"
-msgstr ""
+msgstr "frec"
#: taextras.py:280
msgid "Play a tone at freq for time."
-msgstr ""
+msgstr "in tsab wat'bàl in janidh al an ik' 'frec' al jun i ajumtal an k'ij."
#: taextras.py:281
msgid ""
"turn motor\n"
"rotations"
msgstr ""
+"wilk'iyal an ichich pat'al\n"
+" wilililchik"
#: taextras.py:282
-#, fuzzy
msgid "port"
msgstr "Wi'leb"
#: taextras.py:283
msgid "power"
-msgstr ""
+msgstr "tsapìk"
#: taextras.py:284
msgid "turn a motor"
-msgstr ""
+msgstr "in wilk'iyal an ichich patàl"
#: taextras.py:285
msgid ""
"sync motors\n"
"steering"
msgstr ""
+"sinc ichich pat'al\n"
+" belil"
#: taextras.py:286
-#, fuzzy
msgid "rotations"
msgstr "wilil"
#: taextras.py:287
msgid "synchronize two motors"
-msgstr ""
+msgstr "ka alìy ichich pat'al"
#: taextras.py:288
msgid "PORT A of the brick"
-msgstr ""
+msgstr "Wi'leb A del brick."
#: taextras.py:289
msgid "PORT B of the brick"
-msgstr ""
+msgstr "wi'leb B del brinck."
#: taextras.py:290
msgid "PORT C of the brick"
-msgstr ""
+msgstr "wi'leb C del brinck."
#: taextras.py:291
msgid "start motor"
-msgstr ""
+msgstr "tujchij ichich pat'al"
#: taextras.py:292
msgid "Run a motor forever."
-msgstr ""
+msgstr "ka wilk'iy an ichich pat'al abal ets'ey."
#: taextras.py:293
msgid "brake motor"
-msgstr ""
+msgstr "ka k'uba' an ichich pat'al"
#: taextras.py:294
msgid "Stop a specified motor."
-msgstr ""
+msgstr "in kubàl jun i ichich pat'al xi bijidhits"
#: taextras.py:295
msgid "PORT 1 of the brick"
-msgstr ""
+msgstr "wi'leb jun kal an brinck."
#: taextras.py:296
msgid "color sensor"
@@ -2625,7 +2613,7 @@ msgstr ""
#: taextras.py:298
msgid "PORT 2 of the brick"
-msgstr ""
+msgstr "wi'leb tsab kal an brinck."
#: taextras.py:299
msgid "touch sensor"
@@ -2636,12 +2624,14 @@ msgid "distance sensor"
msgstr ""
#: taextras.py:301
+#, fuzzy
msgid "PORT 3 of the brick"
-msgstr ""
+msgstr "Wi'leb A del brick."
#: taextras.py:302
+#, fuzzy
msgid "read"
-msgstr ""
+msgstr "tsakni'"
#: taextras.py:303
msgid "sensor"
@@ -2652,8 +2642,9 @@ msgid "Read sensor output."
msgstr ""
#: taextras.py:305
+#, fuzzy
msgid "PORT 4 of the brick"
-msgstr ""
+msgstr "Wi'leb A del brick."
#: taextras.py:306
msgid "set light"
@@ -2663,6 +2654,141 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+# sensor = ats'ax
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "I kwene' mukuxtaláb ti ats'ax kwene' t'ojláb"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
# el uso es = se usa para = ayendháb abal
#: turtleart.py:69
msgid "usage is"
@@ -2714,31 +2840,46 @@ msgstr "Kadhiy ti coordenadas"
msgid "Reset block size"
msgstr "Ka wichk'ow in púwél an kwene' t'ojláb"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Tejwa'méjdha'/dhibk'oy an kwene' t'ojláb"
# Herramientas = Ayixtaláb/ayendhanél
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Ayixtaláb"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Kuba'"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Pet"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "Yab a dhaya' an t'ojláb. ¿A kulbétnal ka dhaya' ok'xidh ki it kalej?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "¿Ki dhaya' an tsalapnadh t'ojláb?"
+# Ayuda = tolmix(conjugado, naná' in tolmix); Ayuda(La) = Tolmixtaláb(como sustantivo: an tolmixtaláb)
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Tolmixtaláb"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr ""
+#~ "Ka éjedha' an chuchbix eblim ti itsak'ní kwene'mukuxtaláb abal ti tolmix'."
+
+#~ msgid "Turtle Art Butia"
+#~ msgstr "Tortug tsalpadh t'ajbilab Butía"
+
+#~ msgid "pushbutton"
+#~ msgstr "Dhuche'"
+
#, fuzzy
#~ msgid ""
#~ "returns the object gray level encountered him as a number between 0 and 1023"
diff --git a/po/hy.po b/po/hy.po
index 89663fe..fbd5a21 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
-"PO-Revision-Date: 2012-02-15 20:44+0200\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
+"PO-Revision-Date: 2012-03-14 21:04+0200\n"
"Last-Translator: Jasmine <udea_jasmine@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: hy\n"
@@ -23,8 +23,8 @@ msgstr ""
# Turtle Art` Կրիայի Արվեստը -դանդաղ,համբերությամբ սովորելու համար
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Turtle Art"
@@ -57,7 +57,7 @@ msgid "clears the screen and reset the turtle"
msgstr "մաքրում է էկրանը և ելման դիրքի բերում կրիային"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "ձախ"
@@ -66,7 +66,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "Կրիային շրջում է ժամացույցի սլաքին հակառակ (անկյունն` աստիճանով)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "աջ"
@@ -118,8 +118,8 @@ msgstr ""
"էկրանի վերին մասը):"
# xcor - x -ի դիրքացույցը
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -132,8 +132,8 @@ msgstr ""
"պարունակող մասնիկի փոխարեն):"
# ycor- y-ի դիրքացույցը
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -145,8 +145,8 @@ msgstr ""
"Պահում է կրիայի ընթացիկ y դիրքացույցի արժեքը (կարող է գործածվել թվային արժեք "
"պարունակող մասնիկի փոխարեն):"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "ուղղություն"
@@ -436,7 +436,7 @@ msgstr "տրամաբանական greater-than/մեծ է քան /օպերատոր
#: TurtleArt/tabasics.py:660
msgid "True"
-msgstr ""
+msgstr "Ճիշտ է"
#: TurtleArt/tabasics.py:666
msgid "less than"
@@ -448,7 +448,7 @@ msgstr "տրամաբանական less-than /փոքր է քան/ օպերատոր
#: TurtleArt/tabasics.py:674
msgid "False"
-msgstr ""
+msgstr "Սխալ է"
#: TurtleArt/tabasics.py:680
msgid "equal"
@@ -593,17 +593,17 @@ msgstr "թվային արժեքը պահում է Փոփոխական 2-ում"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "տեքստ"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "Տողի արժեքը"
@@ -639,7 +639,7 @@ msgstr "անվանված փոփոխական ( թվային արժեքը )"
msgid "store in"
msgstr "պահել ... մեջ"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "արժեք"
@@ -716,12 +716,12 @@ msgstr "բոլոր մասնիկները տեղափոխել աղբարկղ"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "վերնագիր"
@@ -741,11 +741,11 @@ msgstr "չի հավանում"
msgid "as input"
msgstr "Որպես ներածում"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "ցույց է տալիս մյուս պահոցը"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "Փոխում է մասնիկների պահոցի դիրքը"
@@ -758,184 +758,184 @@ msgid "Save..."
msgstr "Պահպանել..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "Քլիք` բացելու համար"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "դիրք"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "հաջորդ"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "պատկեր"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "Ներկայացում"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "ճեպապատկեր"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Ցուցադրել պահոցը"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Թաքցնել պահոցը"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Ցուցադրել մասնիկները"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Թաքցնել մասնիկները"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Փոխել դիրքացույցները դեպի նվազեցում"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Փոխել դիրքացույցները դեպի մեծացում"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Խմբագրել"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Տեսքը"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Օգնություն"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Նախագիծ"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
-msgstr ""
+msgstr "Պահել / Բեռնել"
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Պատճենել"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Փակցնել"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Էկրանի չափով"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Դեկարտյան դիրքացուցներ"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Բևեռային դիրքացույցներ"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Մետրային դիրքացույցներ"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Մեծացնել մասնիկները"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Փոքրացնել մասնիկները"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Բեռնման օրինակ"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Օգնությանը կանչելու համար սլաքը շարժել նարնջագույն պահոցի վրայով:"
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Պահել որպես պատկեր"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Պահել որպես HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Պահել որպես Պատկերանշան"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Պահպանել ճեպապատկերը"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
-msgstr ""
+msgstr "Բեռնել նախագիծը"
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "Ներբեռնել «Python» ծրագրի մասնիկները"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Մաքրել"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Գործարկել"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Քայլ"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Զտել"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Կանգնեցնել Կրիային"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1047,7 +1047,7 @@ msgstr "Վերբեռնումը չհաջողվեց"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "Սենսորային մասնիկների պահոց"
@@ -1084,7 +1084,7 @@ msgstr "միկրոֆոն ներմուծման ուժգնություն"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "հաճախականություն"
@@ -1185,266 +1185,267 @@ msgstr ""
msgid "Palette of media objects"
msgstr "Լրատվամիջոցի առարկաների պահոց"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "Մատյան"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Sugar Մատյանի լրատվամիջոցի առարկան"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "աուդիո"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Sugar Մատյանի Աուդիո օբյեկտ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "վիդեո"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "Sugar-ի Մատյանի տեսգրության առարկան"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "Նկարագրություն"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Sugar Մատյանի նկարագրության դաշտը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "ցուցադրել"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "Մատյանից բերում է տեքստ կամ` ցուցադրության միջոց"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "ցուցադրել հավասարեցված"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "Սահմանել սանդղակը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "Սահմանում է ԶԼՄ միջոցների սանդղակը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "պահպանել պատկերը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "պատկերի անվանումը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "Նկարը պահում է Sugar-ի Մատյանում"
# SVG-Scalable Vector Graphics
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "պահպանել SVG"
# SVG -Scalable Vector Graphics
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "Կրիայի գծագիրը Sugar-ի Մատյանում պահում է որպես SVG ֆայլ:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "սանդղակ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "պահում է ներկայիս սանդղակի արժեքը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "սպասել"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "Սպասեք մինչև ընթացիկ տեսա կամ ձայնագրությունն ավարտվի:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
-msgstr ""
+msgstr "Խոսել"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
-msgstr ""
+msgstr "Ողջույն"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
-msgstr ""
+msgstr "Արտաբերել տեքստ"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
-msgstr ""
+msgstr "Սինուսոիդ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
-msgstr ""
+msgstr "Տևողություն"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
+"Վերարտադրում է Սինուսոիդն ըստ հաճախականության, տատանումների մեծության ու "
+"տևողության /վրկ/:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
-msgstr ""
+msgstr "Կոճակը սեղմել"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
-msgstr ""
+msgstr "Վերադարձնում է 1, եթե կոճակը սեղմված է:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
-msgstr ""
+msgstr "Մկնիկի սլաքի X-ը:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
-msgstr ""
+msgstr "Վերականգնում է մկնիկի սլաքի x դիրքացույցը:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
-msgstr ""
+msgstr "Մկնիկի սլաքի y դիրքացույցը:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
-msgstr ""
+msgstr "վերրականգնում է մկնիկի սլաքի y դիրքացույցը:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "հարցում ստեղնաշարի վերաբերյալ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"Հարցում՝ ստեղնաշարով ներմուծման համար (արդյունքները պահվում են ստեղնաշարի "
"բլոկում)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "ստեղնաշար"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "պահում է հարցման արդյունքները - ստեղնաշարի բլոկ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "կարդալ փիքսելը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
"RGB (կարմիր, կանաչ,կապույտ)գույնը կրիայի տակ տեղափոխված է դեպի մասնիկների "
"կույտը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "կրիան տեսնում է"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "վերադարձնում է այն գույնը, որ կրիան ներկայիս \"տեսնում է\""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "ժամանակ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "ծրագրի սկզբից մինչև հիմա անցած ժամանակ (վայկյաններով)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Լրացուցիչ ընտրությունների պահոցը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "հրում"
# FILO:First-in; Last-out
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
"Ավելացնում է արժեքը FILO կույտին (առաջինը` ներս, վերջինը` դուրս սկզբունքով)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "ցուցադրել կույտը"
# FILO:First-in, Last-out
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "Ցույց է տալիս արժեքները FILO-ում (առաջինը ներս, վերջինը դուրս կույտ)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "Դատարկել կույտը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "Դատարկում է FILO(առաջինը ներս-վերջինը դուրս կույտը)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "Հանել"
# FILO: first-in;last-out
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "Ցրում է FILO-ի (առաջինը ներս,վերջինը դուրս կույտ) արժեքը:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
-#, fuzzy
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
-msgstr "Դատարկել կույտը"
+msgstr "Դատարկե՞լ մասնիկների շարանը:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
-msgstr ""
+msgstr "Վերականգնում է իրականը, եթե մասնիկների շարանը /կույտը/ դատարկ է:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "Մեկնաբանություն"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "Մեկնաբանություն է տեղադրում է Ձեր կոդում:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "տպել"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "Արժեքը տպում է էկրանի ստորին մասում գտնվող կարգավիճակի բլոկում:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "\"Պիթոն\""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1452,7 +1453,7 @@ msgstr ""
"Ծրագրավորվող բլոկ. օգտագործվում է բարդ մեկ փոփոխականով մաթեմատիկական "
"հավասարումներ, օրինակ՝ sin(x),ավելացնելու համար:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1460,7 +1461,7 @@ msgstr ""
"Ծրագրավորվող բլոկ. օգտագործվում է բարդ բազմակի փոփոխականներով մաթեմատիկական "
"հավասարումներ, օրինակ՝ sqrt(x*x+y*y),ավելացնելու համար"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1468,225 +1469,228 @@ msgstr ""
"Ծրագրավորվող բլոկ. օգտագործվում է բարդ բազմակի փոփոխականներով մաթեմատիկական "
"հավասարումներ, օրինակ՝ sin(x+y+z),ավելացնելու համար"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "Python -ի ծրագրավորման մասնիկ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "Գործարկում է Մատյանի tamyblock.py մոդուլում առկա կոդը:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Դեկարտյան"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "Ցուցադրում է դեկարտյան դիրքացույցները"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "բևեռային"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "Ցուցադրում է բևեռային դիրքացույցները"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "Կրիա"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "Ընտրել, թե որ կրիային է տրվում հրահանգը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "կրիայի զրահը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "կրիային հատուկ 'զրահ' հագցնել"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "գագաթ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "Փլուզված կույտի վերին մասը"
# ստորին մասը
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "Ստորին մաս"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "Փլուզվող կույտի ստորին մասը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "Ստորին բլոկը փլուզված կույտ է. սեղմել,որ բացվի"
# Մասնիկների շարքի վերին մասը
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "Շեղջի վերին մասը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "պիտակ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "Փլուզվող կույտի վերին մասը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "Ներկայացման նմուշների պահոց"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "Թաքցնել մասնիկները"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "Մաքրում է կտավը՝ թաքցնելով մասնիկները"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "Ցուցադրել մասնիկները"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "վերականգնում է թաքնված մասնիկները"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "թաքցնում է Sugar գործիքաշարերը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "Ցուցակ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "Ներկայացում պարբերանշված ցուցակով"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "Ներկայացման նմուշ.Կետերի ցանկ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "ներկայացման նմուշ. ընտրել Մատյանի օբյեկտ (առանց նկարագրության)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "ներկայացման նմուշ. ընտրել Մատյանի օբյեկտ (նկարագրությամբ)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "ներկայացման նմուշ. ընտրել Մատյանի չորս օբյեկտ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "ներկայացման նմուշ. ընտրել Մատյանի երկու օբյեկտ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "էկրանի ձախ մասի x դիրքացույցը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "էկրանի ստորին մասի y դիրքացույցը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "լայնք"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "կտավի լայնությունը"
# xcor -x դիրքացույցը
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "էկրանի աջ մասի xcor-ը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "էկրանի վերին մասի ycor-ը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "բարձրություն"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "կտավի բարձրությունը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "վերնագրի x դիրքացույցը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "վերնագրի y դիրքացույցը"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "Ձախակողմյան x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "Վերին y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "Աջակողմյան x"
# ստորին մասը
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "Ստորին y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "ներկայացում 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "ներկայացում 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "ներկայացում 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "ներկայացում 2x2"
@@ -1750,37 +1754,31 @@ msgstr "Գուարանիի պահոց"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "Կրիայի Արվեստ Բութիա"
+msgid "TurtleBots"
+msgstr ""
# ԼԱԴ - Լույս արձակող դիոդ
#: taextras.py:59
-#, fuzzy
msgid "adjust LED intensity between 0 and 255"
msgstr "Կարգավորել ԼԱԴ ուժգնությունը 0 -ի և 255 - ի միջև:"
#: taextras.py:60
-#, fuzzy
msgid "returns the object gray level as a number between 0 and 1023"
-msgstr "Դարձնում է միջավայրի լույսի մակարդակը 0 -ի և 1023- ի միջև եղած թիվ:"
+msgstr "Միջավայրի լույսի մակարդակը դարձնում է 0 -ի և 1023- ի միջև ընկած թիվ:"
#: taextras.py:61
-#, fuzzy
msgid "returns 1 when the button is press and 0 otherwise"
msgstr "Դարձնում է 1, երբ կոճակը սեղմած է, հակառակ դեպքում` 0"
#: taextras.py:62
-#, fuzzy
msgid "returns the ambient light level as a number between 0 and 1023"
-msgstr "Դարձնում է միջավայրի լույսի մակարդակը 0 -ի և 1023- ի միջև եղած թիվ:"
+msgstr "Միջավայրի լույսի մակարդակը դարձնում է 0 -ի և 1023- ի միջև ընկած թիվ:"
#: taextras.py:63
-#, fuzzy
msgid "returns the ambient temperature as a number between 0 and 255"
msgstr "Միջավայրի ջերմությունը դարձնում է թիվ` 0 -ի և 255- ի միջև:"
#: taextras.py:64
-#, fuzzy
msgid ""
"returns the distance from the object in front of the sensor as a number "
"between 0 and 255"
@@ -1789,19 +1787,16 @@ msgstr ""
"միջև"
#: taextras.py:66
-#, fuzzy
msgid "returns 0 or 1 depending on the sensor inclination"
-msgstr "Կախված սենսորի հակվածությունից` դարձնում է 0 կամ 1"
+msgstr "Կախված սենսորի թեքությունից` դարձնում է 0 կամ 1"
#: taextras.py:67
-#, fuzzy
msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise"
msgstr ""
"Դարձնում է 1, երբ սենսորը հայտնաբերում է մագնիսական դաշտ, իսկ հակառակ "
"դեպքում` 0"
#: taextras.py:68
-#, fuzzy
msgid "switches from 0 to 1, the frequency depends on the vibration"
msgstr "Տատանվում է 0 -ից 1, հաճախականությունը կախված է տատանումից"
@@ -1811,20 +1806,20 @@ msgid "LED"
msgstr "ԼԱԴ"
#: taextras.py:70
-msgid "pushbutton"
-msgstr "միացման կոճակ"
+msgid "button"
+msgstr ""
#: taextras.py:71
msgid "grayscale"
-msgstr "գորշի սանդղակ"
+msgstr "Գորշ գույնի սանդղակ"
#: taextras.py:72
msgid "ambient light"
-msgstr "սենյակային լույսը"
+msgstr "Սենյակային լույս"
#: taextras.py:73
msgid "temperature"
-msgstr "ջերմաստիճանը"
+msgstr "Ջերմաստիճանը"
#: taextras.py:74 taextras.py:244
msgid "distance"
@@ -1857,26 +1852,24 @@ msgstr "Սպասեք փաստարկի վայրկյաններին"
#. TRANS: This string is shorthand for "battery charge of Butia"
#: taextras.py:82
msgid "battery charge Butia"
-msgstr ""
+msgstr "Բութիա մարտկոցի լիցքավորում"
#: taextras.py:83
-#, fuzzy
msgid "returns the battery charge as a number between 0 and 255"
msgstr "Մարտկոցի լիցքավորումը վերածում է 0-ից 255-ի միջև ընկած թվի"
#. TRANS: This string is shorthand for "speed of Butia"
#: taextras.py:85
msgid "speed Butia"
-msgstr ""
+msgstr "Բութիա արագություն"
#: taextras.py:86
-#, fuzzy
msgid ""
"set the speed of the Butia motors as a value between 0 and 1023, passed by "
"an argument"
msgstr ""
"Բութիայի շարժիչի արագությունը ներկայացնել որպես 0-ից 1023-ի միջև ընկած "
-"արժեք, որպես փաստարկ:"
+"արժեք, որպես ֆունկցիայի արգումենտ:"
#. TRANS: This string is shorthand for "move Butia forward"
#: taextras.py:89
@@ -1884,12 +1877,10 @@ msgid "forward Butia"
msgstr "Առաջ տանել Բութիան"
#: taextras.py:90
-#, fuzzy
msgid "move the Butia robot forward"
msgstr "Բութիա ռոբոտը շարժել դեպի առաջ"
#: taextras.py:91
-#, fuzzy
msgid "move the Butia robot forward a predefined distance"
msgstr "Տեղափոխել Բութիա ռոբոտը առաջ` նախապես սահմանված հեռավորության վրա:"
@@ -1899,12 +1890,10 @@ msgid "backward Butia"
msgstr "Բութիան` հետ"
#: taextras.py:94
-#, fuzzy
msgid "move the Butia robot backward"
msgstr "Շարժել Բութիա ռոբոտը դեպի ետ"
#: taextras.py:95
-#, fuzzy
msgid "move the Butia robot backward a predefined distance"
msgstr "Տեղափոխել Բութիա ռոբոտը ետ` նախապես սահմանված հեռավորության վրա"
@@ -1915,7 +1904,7 @@ msgstr "Ձախ Բութիա"
#: taextras.py:98
msgid "turn the Butia robot at left"
-msgstr ""
+msgstr "Բութիա ռոբոտը շրջել դեպի ձախ:"
#. TRANS: This string is shorthand for "turn Butia right"
#: taextras.py:100
@@ -1924,14 +1913,13 @@ msgstr "աջ Բութիա"
#: taextras.py:101
msgid "turn the Butia robot at right"
-msgstr ""
+msgstr "Բութիա ռոբոտը շրջել դեպի աջ:"
#: taextras.py:102
msgid "turn Butia"
-msgstr ""
+msgstr "Պտտել Բութիան"
#: taextras.py:103
-#, fuzzy
msgid "turn the Butia robot x degrees"
msgstr "Շրջել Բութիա ռոբոտը x աստիճան"
@@ -1941,22 +1929,20 @@ msgstr "կանգնեցնել Բութիան"
#: taextras.py:105
msgid "stop the Butia robot"
-msgstr ""
+msgstr "Կանգնեցնել Բութիա ռոբոտը:"
#: taextras.py:106
-#, fuzzy
msgid "display Butia"
-msgstr "Բութիա ուշացում"
+msgstr "Բութիա էկրան"
#. TRANS: this string must contain only ASCII characters.
#. The len must be 32 characters/spaces.
#: taextras.py:109
msgid "Hello World Butia "
-msgstr ""
+msgstr "Ողջույն, Աշխարհ Բութիա"
# ASCII - American Standard Code for Information Interchange - Ութ բայթանոց տեքստի /լատինատառ/ համար մշակված կոդ:
#: taextras.py:110
-#, fuzzy
msgid "print text in Butia robot 32-character ASCII display"
msgstr "Ցուցադրվում է 32- նշաններից բաղկացած տեքստ ASCII լուսապաստառի վրա:"
@@ -1983,7 +1969,7 @@ msgstr "հետևել ԿԿԿ գույներին"
#: taextras.py:119
msgid "set a threshold for a RGB color"
-msgstr ""
+msgstr "Սահմանել ԿԿԿ գույնի շեմը"
#: taextras.py:120
msgid "follow a turtle color"
@@ -1991,11 +1977,12 @@ msgstr "հետևել կրիայի գույնին"
#: taextras.py:121
msgid "set the minimal number of pixels to follow"
-msgstr ""
+msgstr "Սահմանել հաջորդող պիքսելների նվազագույն քանակը:"
#: taextras.py:122
+#, fuzzy
msgid "calibrate"
-msgstr ""
+msgstr "Աստիճանավորել"
#: taextras.py:123
msgid "calibrate a color to follow"
@@ -2019,81 +2006,79 @@ msgstr "վերադարնալ y դիրքին"
#: taextras.py:128
msgid "pixels"
-msgstr ""
+msgstr "Պիքսել"
#: taextras.py:129
msgid "return the number of pixels of the biggest blob"
-msgstr ""
+msgstr "Վերականգնել ամենամեծ բծի պիքսելների քանակը:"
#: taextras.py:133
msgid "SumBot"
-msgstr ""
+msgstr "SumBot"
#: taextras.py:134
msgid "speed SumBot"
-msgstr ""
+msgstr "SumBot արագություն"
#: taextras.py:135
msgid "submit the speed to the SumBot"
-msgstr ""
+msgstr "Ներմուծել արագություն SumBot -ի համար:"
#: taextras.py:136
-#, fuzzy
msgid "set the default speed for the movement commands"
msgstr "Սահմանել նախնական արագությունը`տեղաշարժման հրահանգների համար"
#. TRANS: This string is shorthand for "move SumBot forward"
#: taextras.py:138
msgid "forward SumBot"
-msgstr ""
+msgstr "SumBot առաջ"
#: taextras.py:139
msgid "move SumBot forward"
-msgstr ""
+msgstr "SumBot-ը շարժել դեպի առաջ"
#. TRANS: This string is shorthand for "move SumBot backward"
#: taextras.py:141
msgid "backward SumBot"
-msgstr ""
+msgstr "SumBot` ետ "
#: taextras.py:142
msgid "move SumBot backward"
-msgstr ""
+msgstr "SumBot շարժել դեպի ետ"
#: taextras.py:143
msgid "stop SumBot"
-msgstr ""
+msgstr "SumBot կանգ"
#: taextras.py:144
msgid "stop the SumBot"
-msgstr ""
+msgstr "Կանգնեցնել SumBot-ը"
#. TRANS: This string is shorthand for "turn SumBot left"
#: taextras.py:146
msgid "left SumBot"
-msgstr ""
+msgstr "SumBot Ձախ"
#: taextras.py:147
msgid "turn left the SumBot"
-msgstr ""
+msgstr "SumBot-ը շրջել դեպի ձախ:"
#. TRANS: This string is shorthand for "move SumBot right"
#: taextras.py:149
msgid "right SumBot"
-msgstr ""
+msgstr "SumBot` աջ"
#: taextras.py:150
msgid "turn right the SumBot"
-msgstr ""
+msgstr "SumBot -ը շրջել դեպի աջ:"
#: taextras.py:151
msgid "angle to center"
-msgstr "անկյունից դեպի կենտրոն"
+msgstr "Անկյունից դեպի կենտրոն"
-# dojo - բեմն է կամ խաղահրապարակը
+# dojo - Սումո ըմբշամարտի բեմն է
#. TRANS: dohyo is the playing field
#: taextras.py:153
-#, fuzzy
msgid "get the angle to the center of the dohyo"
msgstr "Անկյունը հասցնում է dojo- ի կենտրոնին"
@@ -2102,57 +2087,55 @@ msgid "angle to Enemy"
msgstr ""
#: taextras.py:155
+#, fuzzy
msgid "get the angle to the Enemy"
-msgstr ""
+msgstr "Պարզել հեռավորությունը մինչև հակառակորդը"
#. TRANS: This string is shorthand for "x coordinate of SumBot"
#: taextras.py:157
msgid "x coor. SumBot"
-msgstr ""
+msgstr "x coor. SumBot"
#: taextras.py:158
-#, fuzzy
msgid "get the x coordinate of the SumBot"
-msgstr "Պարզել ռոբոտի x դիրքացույցը"
+msgstr "Պարզել SumBot ռոբոտի x դիրքացույցը"
#. TRANS: This string is shorthand for "y coordinate of SumBot"
#: taextras.py:160
msgid "y coor. SumBot"
-msgstr ""
+msgstr "y coor. SumBot"
#: taextras.py:161
-#, fuzzy
msgid "get the y coordinate of the SumBot"
-msgstr "Պարզել ռոբոտի y դիրքացույցը"
+msgstr "Պարզել SumBot ռոբոտի y դիրքացույցը"
#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy"
#: taextras.py:163
msgid "x coor. Enemy"
-msgstr ""
+msgstr "x coor. Հակառակորդի"
#: taextras.py:164
-#, fuzzy
msgid "get the x coordinate of the Enemy"
-msgstr "Պարզել ռոբոտի x դիրքացույցը"
+msgstr "Պարզել հակառակորդի ռոբոտի x դիրքացույցը"
#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy"
#: taextras.py:166
msgid "y coor. Enemy"
-msgstr ""
+msgstr "y coor. Հակառակորդի"
#: taextras.py:167
-#, fuzzy
msgid "get the y coordinate of the Enemy"
-msgstr "Պարզել ռոբոտի y դիրքացույցը"
+msgstr "Պարզել հակառակորդի ռոբոտի y դիրքացույցը"
#. TRANS: This string is shorthand for "rotation of SumBot"
#: taextras.py:169
msgid "rotation SumBot"
-msgstr ""
+msgstr "SumBot պտույտ"
#: taextras.py:170
+#, fuzzy
msgid "get the rotation of the Sumbot"
-msgstr ""
+msgstr "Հասնում է հակառակ կողմի պտույտին"
#. TRANS: This string is shorthand for "rotation of SumBot's enemy"
#: taextras.py:172
@@ -2291,7 +2274,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2453,7 +2436,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2600,6 +2583,141 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "Սենսորային մասնիկների պահոց"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+# Մոդուլ
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "օգտագործում"
@@ -2650,30 +2768,43 @@ msgstr "Փոխել դիրքացույցների սնադղակը"
msgid "Reset block size"
msgstr "Վերականգնել մասնիկների չափսը"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Ցուցադրել/թաքցնել մասնիկները"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Գործիքներ"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Կանգ"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Կրիա"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "Դուք չպահպանված աշխատանք ունեք:Ցանկանու՞մ եք պահպանել այն:"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "Պահպանե՞լ նախագիծը"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Օգնություն"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Օգնությանը կանչելու համար սլաքը շարժել նարնջագույն պահոցի վրայով:"
+
+#~ msgid "Turtle Art Butia"
+#~ msgstr "Կրիայի Արվեստ Բութիա"
+
+#~ msgid "pushbutton"
+#~ msgstr "Միացման կոճակ"
+
#~ msgid "Import/Export"
#~ msgstr "Ներմուծել/Արտահանել"
diff --git a/po/id.po b/po/id.po
index 31fe925..4b03376 100644
--- a/po/id.po
+++ b/po/id.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2010-02-11 06:49+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -114,8 +114,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -125,8 +125,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -136,8 +136,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -568,17 +568,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -614,7 +614,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -690,12 +690,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "judul"
@@ -716,11 +716,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -733,184 +733,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Sunting"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Salin"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1021,7 +1021,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1057,7 +1057,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1153,487 +1153,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1696,7 +1699,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1742,7 +1745,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2197,7 +2200,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2356,7 +2359,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2499,6 +2502,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2548,26 +2683,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/ig.po b/po/ig.po
index 8e54556..9084e1b 100644
--- a/po/ig.po
+++ b/po/ig.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:25+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/is.po b/po/is.po
index 5fda5b2..ba3ef73 100644
--- a/po/is.po
+++ b/po/is.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-03-27 14:22+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Sýna"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/it.po b/po/it.po
index e015156..f0a0d27 100644
--- a/po/it.po
+++ b/po/it.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2012-01-12 08:29+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Turtle Art"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr "Pulisci lo schermo e riposiziona la tartaruga"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "sinistra"
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "ruota tartaruga in senso antiorario (in gradi)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "destra"
@@ -117,8 +117,8 @@ msgstr "seleziona direzione"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "seleziona la direzione della tartaruga (0 è verso l'alto)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "coordinata x"
@@ -130,8 +130,8 @@ msgstr ""
"ricorda la coordinata x (ascissa) della tartaruga (può essere utilizzato in "
"alternativa ad un blocco variabile numerico)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "coordinata y"
@@ -143,8 +143,8 @@ msgstr ""
"ricorda la coordinata y (ordinata) della tartaruga (può essere utilizzato in "
"alternativa ad un blocco variabile numerico)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "direzione"
@@ -591,17 +591,17 @@ msgstr "memorizza il valore numerico nella Variabile 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "testo"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "valore stringa"
@@ -637,7 +637,7 @@ msgstr "variabile con nome (valore numerico)"
msgid "store in"
msgstr "memorizza in"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "valore"
@@ -713,12 +713,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Titolo"
@@ -738,11 +738,11 @@ msgstr "non piace"
msgid "as input"
msgstr "come ingresso"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "visualizza la prossima paletta"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "Cambia l'orientamento del pannello dei blocchi"
@@ -755,184 +755,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "click per aprire"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "orientamento"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "prossimo"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "immagine"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "presentazione"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "istantanea"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "mostra pannello"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Nascondi pannello"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Mostra blocchi"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Nascondi blocchi"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Ridimensiona le coordinate giù"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Ridimensiona le coordinate su"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Modifica"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Vista"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Aiuto"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Progetto"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Copia"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Incolla"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Schermo intero"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Coordinate Cartesiane"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Coordinate Polari"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Ingrandisci blocchi"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Rimpicciolisci blocchi"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Muovi il cursore sopra il pannello arancio per gli aiuti."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Salva come immagine"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Salva come HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Salva come Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Salva snapshot"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Pulisci"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Esegui"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Passo"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>D"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Debug"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>L"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Ferma la tartaruga"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1047,7 +1047,7 @@ msgstr "caricamento non riuscito"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "Paletta dei blocchi sensori"
@@ -1083,7 +1083,7 @@ msgstr "volume ingresso microfono"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "intonazione"
@@ -1184,258 +1184,258 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "oggetto multimediale del Diario di Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "audio"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "oggetto audio del Diario di Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
#, fuzzy
msgid "Sugar Journal video object"
msgstr "oggetto audio del Diario di Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
#, fuzzy
msgid "description"
msgstr "Descrizione"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "campo descrittivo del Diario di Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "mostra"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "disegna un testo o mostra un contenuto multimediale dal Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "mostra allineati"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "seleziona scala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "seleziona la scala di visualizzazione del contributo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "salva immagine"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "nome Immagine"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "Salva una immagine nel Diario di Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "salva SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "salva i disegni della tartaruga come file SVG nel Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "scala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "mantiene il valore di scala corrente"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "interroga la tastiera"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "interrogazione da tastiera (i risultati sono in blocco tastiera)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "tastiera"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "conserva i risultati del blocco interrogazione da tastiera"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "leggi pixel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "il colore RGB sotto la tartaruga è inserito nello stack"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "tartaruga vede"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "ritorna il colore che la tartaruga \"vede\""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Pannello opzioni extra"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "spingi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "spingi un valore nella heap FILO (first-in last-out)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "mostra heap"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "mostra un valore nella heap FILO (first-in last-out)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "vuota heap"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "vuota catasta FILO (first-in-last-out )"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "pop"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "estrai un valore dalla heap FILO (first-in last-out)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "vuota heap"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "commento"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "mette un commento nel codice"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "stampa"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "stampa il valore nel blocco di stato in basso"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1443,7 +1443,7 @@ msgstr ""
"blocco programmabile: utilizzato per aggiungere funzioni matematiche "
"avanzate a singola variabile, es. sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1451,7 +1451,7 @@ msgstr ""
"blocco programmabile: utilizzato per aggiungere funzioni matematiche multi-"
"variabili, es., sqrt(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1459,225 +1459,228 @@ msgstr ""
"blocco programmabile: utilizzato per aggiungere funzioni matematiche "
"avanzate multi-variabile, es. sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "esegui il codice scritto nel modulo tamyblock.py prelevato dal Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Cartesiano"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "visualizza le coordinate cartesiane"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "polare"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "visualizza coordinate polari"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "tartaruga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "sceglie con quale tartaruga interagire"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "guscio tartaruga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "metti un 'guscio' personalizzato alla tartaruga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "cima"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "apice di una catasta compressa"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "fondo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
#, fuzzy
msgid "bottom of a collapsible stack"
msgstr "apice di una catasta comprimibile"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "blocco inferiore di una catasta compressa: clicca per aprire"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "cima dello stack"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "etichetta"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "apice di una catasta comprimibile"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "Pannello strutture / template per presentazioni"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "nascondi blocchi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "svuota il canvas nascondendo i blocchi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "mostra blocchi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "recupera i blocchi nascosti"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "nasconde le barre di Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "lista per punti per presentazione"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "template di presentazione: lista per punti"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
"template di presentazione: selezione oggetto del Diario (senza descrizione)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
"template di presentazione: selezione oggetto del Diario (con descrizione)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "template di presentazione: seleziona quattro oggetti del Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "template di presentazione: seleziona due oggetti del Diario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "ascissa (xcor) del bordo sinistro dello schermo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "ordinata (ycor) del bordo inferiore dello schermo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "larghezza"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "larghezza canvas (sfondo)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "ascissa (xcor) del bordo destro dello schermo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "ordinata (ycor) del bordo superiore dello schermo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "altezza"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "altezza canvas (sfondo)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "titolo x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "titolo y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "fondo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "presentazione 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "presentazione 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "presentazione 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "presentazione 2x2"
@@ -1742,7 +1745,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1788,7 +1791,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2244,7 +2247,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2406,7 +2409,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2551,6 +2554,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "Paletta dei blocchi sensori"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "L'utilizzo è"
@@ -2601,30 +2738,37 @@ msgstr "Ridimensiona coordinate"
msgid "Reset block size"
msgstr "Reset dimensione blocco"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Mostra/Nascondi blocchi"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Strumenti"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Stop"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Tartaruga"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "Hai del lavoro non salvato: vuoi salvare le modifiche prima di uscire?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "Vuoi salvare il progetto?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Aiuto"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Muovi il cursore sopra il pannello arancio per gli aiuti."
+
#~ msgid "Import/Export"
#~ msgstr "Importa/Esporta"
diff --git a/po/ja.po b/po/ja.po
index 37fdf2c..20fa7d7 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-08-26 07:25+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "タートルアート"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr "画面を消去してタートルをリセットする"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -66,7 +66,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "タートルを反時計周りに回す(度単位)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -119,8 +119,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "タートルの頭の向きを設定する(0は画面の上方向)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -130,8 +130,8 @@ msgid ""
"number block)"
msgstr "現在のタートルのx座標の値を保持します (数値ブロックの代わりに使えます)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -141,8 +141,8 @@ msgid ""
"number block)"
msgstr "現在のタートルのy座標の値を保持します(数値ブロックの代わりに使えます)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -594,17 +594,17 @@ msgstr "変数2に数値を格納する"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "文字列値"
@@ -642,7 +642,7 @@ msgstr "名前つき変数(数値)"
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -719,12 +719,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -744,11 +744,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -761,185 +761,185 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "パレットを表示"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "パレットを非表示にする"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "ブロックを表示"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "ブロックを非表示にする"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "編集"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "ヘルプ"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "プロジェクト"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "コピー"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "貼り付け"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "全画面"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "ブロックを表示"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "ヘルプを表示するには、オレンジ色のパレットの上でカーソルを動かしてください"
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "画像として保存"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "HTMLとして保存"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "LOGOプログラムとして保存"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "スナップショットを保存"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "消去"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "実行"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "ステップ実行"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "デバッグ"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "タートルを停止"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1049,7 +1049,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1085,7 +1085,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1181,500 +1181,503 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Sugarのジャーナル中のメディアオブジェクト"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Sugarのジャーナル中の音声"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
#, fuzzy
msgid "Sugar Journal video object"
msgstr "Sugarのジャーナル中の音声"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Sugarのジャーナルの説明フィールド"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
#, fuzzy
msgid "draws text or show media from the Journal"
msgstr "テキストを描画するか、ジャーナルからメディアオブジェクトを表示する"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
#, fuzzy
msgid "sets the scale of media"
msgstr "メディアの表示倍率を指定する"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "キー入力を問い合わせます(結果はキーボードブロックに格納されます)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "query-kb(キー入力問い合わせ)ブロックの結果を保持します"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
#, fuzzy
msgid "Palette of extra options"
msgstr "追加オプションのパレット"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
#, fuzzy
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "FILO(先入れ後だし)のヒープに値を入れる"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
#, fuzzy
msgid "shows values in FILO (first-in last-out heap)"
msgstr "FILO(先入れ後だし)のヒープに値を入れる"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
#, fuzzy
msgid "pops value off FILO (first-in last-out heap)"
msgstr "FILO(先入れ後だし)のヒープに値を入れる"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "画面下部の状態ブロックに値を表示します"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "ステップ実行"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
#, fuzzy
msgid "Palette of presentation templates"
msgstr "プレゼンテーションテンプレートのパレット"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
#, fuzzy
msgid "hide blocks"
msgstr "ブロックを非表示にする"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
#, fuzzy
msgid "declutters canvas by hiding blocks"
msgstr "ブロックを隠してキャンバスをすっきりさせます"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "ブロックを表示"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
#, fuzzy
msgid "presentation template: list of bullets"
msgstr "プレゼンテーションテンプレート: 7個の箇条書き"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "プレゼンテーションテンプレート: ジャーナルのオブジェクトを選ぶ(説明なし)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "プレゼンテーションテンプレート: ジャーナルオブジェクトを選ぶ(説明つき)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "プレゼンテーションテンプレート: ジャーナルのオブジェクトを4つ選ぶ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "プレゼンテーションテンプレート: ジャーナルのオブジェクトを2つ選ぶ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "画面左端のx座標値"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "画面下端のy座標値"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "キャンバスの幅"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "画面右端のx座標値"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "画面上端のy座標値"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "キャンバスの高さ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1738,7 +1741,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1784,7 +1787,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2239,7 +2242,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2398,7 +2401,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2541,6 +2544,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2590,31 +2725,38 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
#, fuzzy
msgid "Stop"
msgstr "ステップ実行"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "ヘルプ"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "ヘルプを表示するには、オレンジ色のパレットの上でカーソルを動かしてください"
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "全画面"
diff --git a/po/km.po b/po/km.po
index 39916f3..b821ce1 100644
--- a/po/km.po
+++ b/po/km.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-04-28 14:35+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "ឆ្វេង"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "ស្តាំ"
@@ -110,8 +110,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "ตำแหน่ง x"
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ตำแหน่ง y"
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
#, fuzzy
msgid "heading"
msgstr "ការអាន​ "
@@ -358,8 +358,9 @@ msgid "identity operator used for extending blocks"
msgstr ""
#: TurtleArt/tabasics.py:605 TurtleArt/tabasics.py:606
+#, fuzzy
msgid "mod"
-msgstr ""
+msgstr "ផ្លាស់ទី"
#: TurtleArt/tabasics.py:609
msgid "modular (remainder) operator"
@@ -569,17 +570,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "អត្ថបទ"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "តម្លៃ​ខ្សែអក្សរ"
@@ -615,7 +616,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "តម្លៃ​"
@@ -693,12 +694,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "ចំណង​ជើង"
@@ -718,11 +719,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -735,185 +736,185 @@ msgid "Save..."
msgstr "រក្សា​ទុក..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "กดเปิด"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "ទិស"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "បន្ទាប់"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "រូប​ភាព"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "ការ​បង្ហាញ"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "រូបថត"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "កែសម្រួល"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "ទិដ្ឋភាព"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "ជំនួយ"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "គម្រោង"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "ចំលង"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "បិទភ្ជាប់​"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "ពេញ​អេក្រង់"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "កូអរដោនេ​ប៉ូល"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
#, fuzzy
msgid "Save as Logo"
msgstr "บันทึกเป็น .ogg"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "រក្សាទុក​រូបថត"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "ស្អាត"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "រត់"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "ជំហាន"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "បំបាត់​កំហុស"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1023,7 +1024,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1059,7 +1060,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "កម្ពស់សំឡេង"
@@ -1156,492 +1157,495 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "ទានានុប្បវត្តិ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "សំលេង"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "វីដេអូ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "ការពិពណ៌នា"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "បង្ហាញ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "មាត្រដ្ឋាន"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "ក្ដារ​ចុច"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "ពេល​វេលា"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "ចុច"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
#, fuzzy
msgid "show heap"
msgstr "បង្ហាញ​ជំនួយ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "លេច​ឡើង"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "មតិ​យោបល់"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "បោះពុម្ព"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "ប៉ូល"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "អណ្ដើក"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "កំពូល"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "ខាង​ក្រោម"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "ស្លាក"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "បញ្ជី"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "ទទឹង"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "កម្ពស់"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "ខាង​ក្រោម"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
#, fuzzy
msgid "presentation 1x1"
msgstr "ទិស"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
#, fuzzy
msgid "presentation 2x1"
msgstr "ទិស"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
#, fuzzy
msgid "presentation 1x2"
msgstr "ទិស"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
#, fuzzy
msgid "presentation 2x2"
msgstr "ទិស"
@@ -1706,7 +1710,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1752,7 +1756,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2211,7 +2215,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2372,7 +2376,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2518,6 +2522,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "ផ្លាស់ទី"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2567,32 +2704,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "ឧបករណ៍"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "ឈប់"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "អណ្ដើក"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "ជំនួយ"
+
#~ msgid "Import/Export"
#~ msgstr "នាំចូល/នាំចេញ"
-
-#~ msgid "move"
-#~ msgstr "ផ្លាស់ទី"
diff --git a/po/ko.po b/po/ko.po
index 8c535df..8ca4487 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-05-10 23:43-0400\n"
"Last-Translator: Donghee Park <i4u_4ever@yahoo.com>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 1.2.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "터틀 아트"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "왼쪽"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "오른쪽"
@@ -111,8 +111,8 @@ msgstr "머리방향 지정하기"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "머리방향"
@@ -566,17 +566,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "텍스트"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -612,7 +612,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -688,12 +688,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "제목"
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,196 +731,196 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
#, fuzzy
msgid "next"
msgstr "텍스트"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
#, fuzzy
msgid "Show palette"
msgstr "팔레트 보기"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
#, fuzzy
msgid "Hide palette"
msgstr "팔레트 숨기기"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
#, fuzzy
msgid "Show blocks"
msgstr "블록 보기"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
#, fuzzy
msgid "Hide blocks"
msgstr "블록 숨기기"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "작품"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
#, fuzzy
msgid "Fullscreen"
msgstr "전체 화면"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "블록 보기"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
#, fuzzy
msgid "Save as HTML"
msgstr "HTML으로 저장"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
#, fuzzy
msgid "Save as Logo"
msgstr "Logo로 저장"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
#, fuzzy
msgid "Clean"
msgstr "지우기"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
#, fuzzy
msgid "Step"
msgstr "단계 실행"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
#, fuzzy
msgid "Stop turtle"
msgstr "터틀 멈추기"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1032,7 +1032,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1068,7 +1068,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "피치"
@@ -1164,492 +1164,495 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "명암 지정"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
#, fuzzy
msgid "keyboard"
msgstr "키보드"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "넣기"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "빼기"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "인쇄"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "터틀"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "단계 실행"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "블록 숨기기"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "블록 보기"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1713,7 +1716,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1759,7 +1762,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2214,7 +2217,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2374,7 +2377,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2518,6 +2521,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "나누기"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2568,31 +2704,35 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
#, fuzzy
msgid "Stop"
msgstr "단계 실행"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "터틀"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "전체 화면"
diff --git a/po/kos.po b/po/kos.po
index 8d4a923..f050bbb 100644
--- a/po/kos.po
+++ b/po/kos.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:26+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -114,8 +114,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -125,8 +125,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -136,8 +136,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -567,17 +567,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -613,7 +613,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -689,12 +689,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,184 +731,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1018,7 +1018,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1054,7 +1054,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1150,487 +1150,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1693,7 +1696,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1739,7 +1742,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2194,7 +2197,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2353,7 +2356,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2496,6 +2499,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2545,29 +2680,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/mg.po b/po/mg.po
index a76236c..5e72c66 100644
--- a/po/mg.po
+++ b/po/mg.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-14 19:41+0200\n"
"Last-Translator: Zafimamy Gabriella Ralaivao <gabriella@intnet.mu>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Ara sokatra"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "havia"
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "havanana"
@@ -114,8 +114,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -125,8 +125,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -136,8 +136,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "lohateny"
@@ -571,17 +571,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "Lahatsoratra"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -618,7 +618,7 @@ msgstr "ova nomena anarana (lanja nomerika)"
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -695,12 +695,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Lohateny"
@@ -720,11 +720,11 @@ msgstr "tsy tia"
msgid "as input"
msgstr "ho soratra"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -737,186 +737,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "tsindrio raha hanokatra"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "fitodika"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "manaraka"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "sary"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "famelabelarana"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "sary nalaina"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Asehoy ny andiandoko"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Afeno ny andiandoko"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Asehoy ireo bolongana"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Afeno ireo bolongana"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Akelezo ireo kaordône"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Alehibiazo ireo kaordône"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Ovao"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Hijery"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Fanampiana"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Sahanasa"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Adikao"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Apetaho"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Mameno efijery"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Kaordône Karteziana"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Kaordône pôlera"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Ampitomboy ireo bolongana"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Silaho ireo bolongana"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-"Akisaho mankeo ambonin'ny andiandoko volomboasary ny totozy raha mila "
-"fanampiana."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Tehirizo ho sary"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Tehirizo ho HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Tehirizo ho logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Tehirizo ny sary nalaina"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Diovy"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Alefaso"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Dingana"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Debageo"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Ajanony ny sokatra"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1028,7 +1026,7 @@ msgstr "Tsy nahatafakatra!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1064,7 +1062,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1160,500 +1158,503 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Zavatra fihaino sy fijery ao amin'ny Firaketana Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Zavatra fihaino amin'ny Firaketana Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
#, fuzzy
msgid "Sugar Journal video object"
msgstr "Zavatra fihaino amin'ny Firaketana Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Saha fanoritsoritan'ny Firaketana Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "asehoy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "misarika soratra na mampiseho haino aman-jery avy ao amin'ny Firaketana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "tehirizo ny sary"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "anaran-tsary"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "mitahiry sary ao amin'ny Firaketana Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "tehirizo SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "mitahiry ireo sarin-tsokatra ho rakitra SVG ao amin'ny Firaketana Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "akelezo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Andian-tsafidy fanampiny"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "atoseho"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "foana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "foana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "tsikera"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "pirinty"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Karteziana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "mampiseho ireo kôrdône karteziana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "mampiseho kôrdône polera"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "sokatra"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "Ajanony"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "fanambaniny"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "tampon'ny avosana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "afeno ireo bolongana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "asehoy ireo bolongana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
"maodely fampisehoana: mifidiana zava-piraiketana (tsy misy mombamomba azy)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
#, fuzzy
msgid "presentation template: select Journal object (with description)"
msgstr ""
"maodely fampisehoana: mifidiana zava-piraiketana (tsy misy mombamomba azy)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
#, fuzzy
msgid "xcor of left of screen"
msgstr "xcor-n'ny faritra havanan'ny efijery"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
#, fuzzy
msgid "ycor of bottom of screen"
msgstr "xcor-n'ny faritra havanan'ny efijery"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "xcor-n'ny faritra havanan'ny efijery"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
#, fuzzy
msgid "ycor of top of screen"
msgstr "xcor-n'ny faritra havanan'ny efijery"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "haavo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "fanambaniny"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
#, fuzzy
msgid "presentation 1x1"
msgstr "famelabelarana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
#, fuzzy
msgid "presentation 2x1"
msgstr "famelabelarana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
#, fuzzy
msgid "presentation 1x2"
msgstr "famelabelarana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
#, fuzzy
msgid "presentation 2x2"
msgstr "famelabelarana"
@@ -1719,7 +1720,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1765,7 +1766,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2220,7 +2221,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2380,7 +2381,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2524,6 +2525,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "ny fanao azy dia"
@@ -2574,30 +2707,39 @@ msgstr "Ovao refy ireo kaordône"
msgid "Reset block size"
msgstr "Ovao ny haben'ny bolongana"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Asehoy/Afeno ireo bolongana"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Fitaovana"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Ajanony"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Sokatra"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Fanampiana"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr ""
+#~ "Akisaho mankeo ambonin'ny andiandoko volomboasary ny totozy raha mila "
+#~ "fanampiana."
+
#~ msgid "Import/Export"
#~ msgstr "Afaro/Aondrano"
diff --git a/po/mi.po b/po/mi.po
index 04bfdc2..9cdd68e 100644
--- a/po/mi.po
+++ b/po/mi.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:41+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/mk.po b/po/mk.po
index ef6bec4..b4d3ff9 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:51+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/ml.po b/po/ml.po
index eec1b18..ee02a20 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:28+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/mn.po b/po/mn.po
index d05f9e1..f298fea 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2012-01-10 15:06+0200\n"
"Last-Translator: Cris Anderson <anderson861@gmail.com>\n"
"Language-Team: Mongolian\n"
@@ -19,8 +19,8 @@ msgstr ""
# Зураач барималчдын ажлын өрөөг урлан гэдэгтэй адилаар Яст мэлхийн Урлан болгоё оо
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Яст мэлхий Урлан"
@@ -53,7 +53,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "зүүн"
@@ -62,7 +62,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "баруун"
@@ -111,8 +111,8 @@ msgstr "чиглэл"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "x тэнхлэг"
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "y тэнхлэг"
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "чиг"
@@ -565,17 +565,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "бичвэр"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -611,7 +611,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "утга"
@@ -689,12 +689,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Гарчиг"
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,186 +731,186 @@ msgid "Save..."
msgstr "Хадгалах..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "Чиглэл"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "дараах"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "дүрслэл"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "үзүүлэн"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
# Зураачийн зураг хольж өнгө гаргадаг ХАВТАН тай ижил агуулгатай шүү
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Хавтанг харуул"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Хавтан нуу"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Блокыг харуул"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Блок нуу"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Засварлах"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Харах"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Тусламж"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Төсөл"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Хуулах"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Тавих"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Дзлгзц дүүргэх"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Блокыг харуул"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Блокыг нуу"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Жишээ ачаалах"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Дүрслэлээр хадгалах"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "HTML-аар хадгалах"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Арилга"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Эхэл"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Алхам"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Оношилгоо"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
# яст мэлхийг зогсоох эсвэл яст мэлхий зогс 2-н нэгийг аваарай
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Яст мэлхий зогс"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1020,7 +1020,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1056,7 +1056,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "өндөр"
@@ -1153,490 +1153,493 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "журнал"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "дуу бичлэг"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "видео"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "тайлбар"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "үзүүлэх"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "масштаб тогтоох"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "зураг хадгалах"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "зураг нэр"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "масштаб"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "гар"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "цаг"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "өг"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "ав"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "тайлбар"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "үзүүл"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "яст мэлхий"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "дээд"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "Блок нуу"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "Блокыг харуул"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "жагсаалт"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "өргөн"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "өндөр"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
#, fuzzy
msgid "presentation 1x1"
msgstr "үзүүлэн"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
#, fuzzy
msgid "presentation 2x1"
msgstr "үзүүлэн"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
#, fuzzy
msgid "presentation 1x2"
msgstr "үзүүлэн"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
#, fuzzy
msgid "presentation 2x2"
msgstr "үзүүлэн"
@@ -1700,7 +1703,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1746,7 +1749,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2201,7 +2204,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2361,7 +2364,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2507,6 +2510,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "үлдэгдэл"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2558,30 +2694,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Хэрэгсэл"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Зогсоох"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Яст Мэлхий"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Тусламж"
+
#~ msgid "full screen"
#~ msgstr "дзлгзц дүүргэх"
diff --git a/po/mr.po b/po/mr.po
index eadb432..3885e47 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-09-11 12:18+0200\n"
"Last-Translator: <ganeshgajre@gmail.com>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "टर्टलआर्ट"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "क्ष निर्देशक"
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "य निर्देशक"
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "शिर्षक"
@@ -568,17 +568,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "मजकूर"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "स्ट्रींग किंमत"
@@ -614,7 +614,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -690,12 +690,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "शिर्षक"
@@ -715,11 +715,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -732,184 +732,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "अनुस्थापन"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "पुढिल"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "प्रस्तुती"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "फोटो"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "पट्टी दाखवा"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "पट्टी लपवा"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "ब्लॉक्स दाखवा"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "ब्लॉक्स लपवा"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "निर्देशकांचे परिमाण कमी करा"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "निर्देशकांचे परिमाण वाढवा"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "बदल करा"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "दृश्य"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "मदत"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "प्रकल्प"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "कॉपी"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "पेस्ट"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "मोठी स्क्रीन"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "कार्टेशियन निर्देशक"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "पोलार निर्देशक"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "मेट्रीक निर्देशक"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "ब्लॉक मोठे करा"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "ब्लॉक लहान करा"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "उदाहरण दाखवा"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "मदतीसाठी नारिंगी पट्टीवर कर्सर न्या"
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "चित्र म्हणून जतन करा"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "HTML मध्ये जतन करा"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "लोगो मध्ये जतन करा"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "फोटो जतन करा"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "पायथन ब्लॉक दाखवा"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "साफ"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "धावा"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "पायरी"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "चूक शोधा"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "कासव थांबवा"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1021,7 +1021,7 @@ msgstr "दाखल अयशस्वी"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "सेन्सर ब्लॉक्सची पट्टी"
@@ -1057,7 +1057,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1153,487 +1153,490 @@ msgstr "do-until-True operator that uses boolean operators from Numbers palette"
msgid "Palette of media objects"
msgstr "मिडिया साधनांची पट्टी"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "जर्नल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "शुगर जर्नल मिडिया साधन"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "ध्वनी"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "शुगर जर्नल ध्वनी साधन"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "व्हिडीयो"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "शुगर जर्नल व्हिडीयो साधन"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "वर्णन"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "शुगर जर्नल वर्णन क्षेत्र"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "दाखवा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "जर्नलमधून मजकूर किंवा मिडीया दाखवते"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "रांगेतले दाखवा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "प्रमाण निश्चित करा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "मिडीयाचे प्रमाण निश्चित करा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "चित्र जतन करा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "चित्राचे नाव"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "शुगर जर्नलमध्ये चित्र जतन करा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "SVG जतन करा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "शुगर जर्नलमध्ये टर्टल चित्रे SVG फाईल म्हणून जतन करा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "प्रमाण"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "चालू प्रमाणाची किंमत दाखवते"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "मिडीया विश्रांती"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "चालू चित्रफित किंवा ध्वनीफित संपेपर्यंत थांबा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "शंका किबोर्ड"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "query for keyboard input (results stored in keyboard block)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "किबोर्ड"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "कासव"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "वरचा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "ब्लॉक्स लपवा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "ब्लॉक्स दाखवा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "प्रस्तुतीकरण 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "प्रस्तुतीकरण 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "प्रस्तुतीकरण 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "प्रस्तुतीकरण 2x2"
@@ -1696,7 +1699,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1742,7 +1745,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2198,7 +2201,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2358,7 +2361,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2502,6 +2505,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "सेन्सर ब्लॉक्सची पट्टी"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "असा वापर करा"
@@ -2551,30 +2687,37 @@ msgstr "निर्देशकांचे परिमाण बदला"
msgid "Reset block size"
msgstr "ब्लॉकची साईझ पुर्ववत करा"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "ब्लॉक दाखवा/लपवा"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "साधने"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "थांबा"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "कासव"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "तुमचे काम जतन झालेले नाही. बंद करण्याआधी ते जतन करायचे का?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "प्रकल्प जतन करायचा का?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "मदत"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "मदतीसाठी नारिंगी पट्टीवर कर्सर न्या"
+
#~ msgid "Import/Export"
#~ msgstr "आयात/निर्यात"
diff --git a/po/ms.po b/po/ms.po
index 5c3d238..a4f432a 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-02-20 14:16-0500\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -17,8 +17,8 @@ msgstr ""
"X-Generator: Pootle 1.1.0rc2\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -51,7 +51,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -60,7 +60,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -110,8 +110,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -563,17 +563,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -609,7 +609,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -685,12 +685,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -710,11 +710,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -727,184 +727,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1014,7 +1014,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1050,7 +1050,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1146,487 +1146,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1689,7 +1692,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1735,7 +1738,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2190,7 +2193,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2349,7 +2352,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2492,6 +2495,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2541,26 +2676,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/mvo.po b/po/mvo.po
index b8abf4b..6888514 100644
--- a/po/mvo.po
+++ b/po/mvo.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:30+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/nb.po b/po/nb.po
index 5ef40d6..5a1e402 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-09-02 01:50-0400\n"
"Last-Translator: Chris Leonard <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -17,8 +17,8 @@ msgstr ""
"X-Generator: Pootle 1.2.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Skilpaddetegner"
@@ -51,7 +51,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "venstre"
@@ -60,7 +60,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "høyre"
@@ -109,8 +109,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "x-koordinat"
@@ -120,8 +120,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "y-koordinat"
@@ -131,8 +131,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "retning"
@@ -563,17 +563,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "tekst"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -609,7 +609,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -685,12 +685,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "tittel"
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,195 +728,195 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
#, fuzzy
msgid "next"
msgstr "tekst"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
#, fuzzy
msgid "Show palette"
msgstr "vis verktøykasse"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
#, fuzzy
msgid "Hide palette"
msgstr "skjul verktøykasse"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
#, fuzzy
msgid "Show blocks"
msgstr "vis blokker"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
#, fuzzy
msgid "Hide blocks"
msgstr "skjul blokker"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Prosjekt"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
#, fuzzy
msgid "Fullscreen"
msgstr "fyll skjerm"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "vis blokker"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
#, fuzzy
msgid "Save as image"
msgstr "lagre som bilde"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
#, fuzzy
msgid "Save as HTML"
msgstr "lagre som HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
#, fuzzy
msgid "Save as Logo"
msgstr "lagre som Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
#, fuzzy
msgid "Stop turtle"
msgstr "stopp skilpadde"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1028,7 +1028,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1064,7 +1064,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1160,490 +1160,493 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "sett tone"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "tastatur"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "ta av"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "Skilpadde"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "skjul blokker"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "vis blokker"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "bredde"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "høyde"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1706,7 +1709,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1752,7 +1755,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2207,7 +2210,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2367,7 +2370,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2510,6 +2513,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "modulo"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2560,30 +2696,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Skilpadde"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "fyll skjerm"
diff --git a/po/ne.po b/po/ne.po
index f0e084c..9dfb67f 100644
--- a/po/ne.po
+++ b/po/ne.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
-"PO-Revision-Date: 2012-02-13 10:09+0200\n"
-"Last-Translator: aman0115 <aman.maharjan@olenepal.org>\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
+"PO-Revision-Date: 2012-03-09 04:10+0200\n"
+"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: ne\n"
"MIME-Version: 1.0\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "टर्टल आर्ट"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr "स्क्रिन खाली गर्छ र टर्टललाई रिसेट गर्छ"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "बायाँ"
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "कछुवालाई घडिको उल्टो दिशामा घुमाउँछ (कोण ढिग्रीमा)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "दायाँ"
@@ -115,8 +115,8 @@ msgstr "शीर्षक राख"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "टर्टलको शिर्षक निर्धारण गर्छ (0 स्क्रिनको माथिल्लो भागमा छ।)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -128,8 +128,8 @@ msgstr ""
"टर्टलको तत्काल x-निर्देशांक मान बचाइराख्छ (संख्या खण्डको सट्टामा प्रयोग गर्न "
"सकिन्छ)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -141,8 +141,8 @@ msgstr ""
"टर्टलको तत्काल y- निर्देशांक मान बचाइराख्छ(संख्या खण्डको सट्टामा प्रयोग गर्न "
"सकिन्छ)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "शीर्षक"
@@ -576,17 +576,17 @@ msgstr "संख्यात्मक मान चल २ मा भण्ड
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "पाठ"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "स्ट्रिङ मान"
@@ -622,7 +622,7 @@ msgstr "नाम गरिएको चल (संख्यात्मक म
msgid "store in"
msgstr "स्टोर गर्नुहोस्"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "मान"
@@ -698,12 +698,12 @@ msgstr "सबै खण्डहरू रद्दीटोकरीमा स
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "शीर्षक"
@@ -723,11 +723,11 @@ msgstr "मनपर्दैन"
msgid "as input"
msgstr "आपूर्तिको रुपमा"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "अर्को प्यालेट देखाँउछ"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "खण्डहरुको प्यालेटको अभिमुखीकरण परिवर्तन गर्छ"
@@ -740,184 +740,184 @@ msgid "Save..."
msgstr "सेभ गर..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "खोल्नलाई क्लिक गर"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "पृष्ठविन्यास"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "आर्को"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "चित्र"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "प्रस्तुति"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "स्न्यापशट"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "प्यालेट देखाउ"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "प्यालेट लुकाऊ"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "खण्डहरु देखाउ"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "खण्डहरु लुकाऊ"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "निर्देशांक तल पुन: स्केल गर"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "निर्देशांक माथि पुन: स्केल गर"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "सम्पादन गर"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "हेर"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "मद्दत"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "परियोजना"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr "सेभ गर/सुरु गर"
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "प्रतिलिपी बनाऊ"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "प्रतिलिपी सार"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "पुरै पर्दा"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "कार्टेसियन निर्देशांक"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "पोलार निर्देशांक"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "मैट्रिक / मापीय निर्देशांक"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "खण्डहरु बढाऊ"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "खण्डहरु घटाऊ"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "उदाहरण सुरु गर"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "साहयताको लागि कर्सरलाई सुन्तला रङ्गको प्यालेट माथि लानुहोस्"
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "तस्विरको रुपमा सेभ गर"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "HTMLको रुपमा सेभ गर"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "लोगोको रुपमा सेभ गर"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "स्नयापसट सेभ गर"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr "परियोजना सुरु गर"
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "पाइथन खण्ड सुरु गर"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "सफा गर्नुहोस्"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "चलाउनुहोस्"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "चाल"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "त्रुटि सच्याउनुहोस्"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "टर्टल रोक"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1028,7 +1028,7 @@ msgstr "अप्लोड गर्न सकेन"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "सेन्सर खण्डहरुको प्यालेट"
@@ -1064,7 +1064,7 @@ msgstr "माइक्रोफोन आयातको भोल्युम"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "पिच"
@@ -1163,264 +1163,264 @@ msgstr ""
msgid "Palette of media objects"
msgstr "मिडिया वस्तुहरुको प्यालेट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "पंजिका"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "सुगर जर्नल मिडिया वस्तु"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "श्रव्य"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "सुगर जर्नल श्रव्य वस्तु"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "भिडियो"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "सुगर जर्नल भिडियो वस्तु"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "वर्णन"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "सुगर पंजिका वर्णन फाँट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "देखाउ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "पंजिकामा रहेको पाठ वा मिडिया देखाउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "पङ्क्तिबद्धरुपमा देखाऊ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "छाया राख"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "मिडियाको स्केल निर्धारित गर्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "तस्बिर सेभ गर"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "तस्विरको नाम"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "सुगर जर्नलमा तस्विर सेभ गर्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "SVG सेभ गर"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "टर्टल ग्राफिकलाई SVG बनाई सुगर जर्नलमा सेभ गर्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "स्केल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "हालको स्केल मान राख्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "मिडिया रोक"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "हालको भिडियो वा आवाज समाप्त हुन कुर्नुहोस्"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "बोल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr "हेलो"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr "पाठ बोल्छ"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr "साइनतरङ्ग"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr "अन्तराल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr "साइनतरङ्गलाई आवृत्ति, कोणाङ्क र अन्तरालमा ( सेकेन्डमा) देखाउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr "बटन तल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr "यदि माउस बटन थिचेको भएमा १ फर्काउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr "माउस x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr "माउसको x निर्देशाङ्क फर्काउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr "माउस y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr "माउसको y निर्देशाङ्क फर्काउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "क्वेरी कुञ्जीपाटी"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "कुञ्जीपाटीको लाई क्वेरी आगत (परिणामहरु कुञ्जीपाटीको बल्कमा छ)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "कुञ्जीपाटी"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "क्वेरी-कुञ्जीपाटी खण्डको परिणाम राख्छ।"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "पिक्सेल पढ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "कछुवा मुनिको RGB कलर थाँक मुनि फिर्ता जान्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "टर्टलले देख्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "टर्टलले \"देखेको\" रंग फिर्ता गर्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "समय"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "कार्यक्रम सुरु भएदेखिको बितेको समय(सेकेन्ड मा)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "अतिरिक्त विकल्प भएको प्यालेट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "धकाल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "मानलाई FILO (first-in last-out heap) मा धकेल्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "हिप देखाउ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "मानलाई FILO (first-in last-out heap) मा देखाँउछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "खाली थाक"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "FILO (first-in last-out heap) मेटाउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "पप्"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "FILO (first-in last-out heap)को मान पप गर्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "खाली थाक"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "टिप्पणी"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "तपाँइको सङ्केतमा टिप्पणी राख्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "प्रिन्ट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "मानलाई पर्दाको तल स्थिति खण्डमा छाप्छ"
# http://ne.wikipedia.org/wiki/%E0%A4%AA%E0%A4%BE%E0%A4%87%E0%A4%A5%E0%A4%A8_%E0%A4%AA%E0%A5%8D%E0%A4%B0%E0%A5%8B%E0%A4%97%E0%A5%8D%E0%A4%B0%E0%A4%BE%E0%A4%AE%E0%A4%BF%E0%A4%99%E0%A5%8D%E0%A4%97_%E0%A4%AD%E0%A4%BE%E0%A4%B7%E0%A4%BE
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "पाइथन"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
"प्रोगरामेबल खण्ड: उन्नत एकल-चल गणीत समीकरण थप्न प्रयोग गरिने, e.g., sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1428,7 +1428,7 @@ msgstr ""
"प्रोगरामेबल खण्ड: उन्नत बहु-चल गणीत समीकरण थप्न प्रयोग गरिने, e.g., sqrt(x*x "
"+ y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1436,221 +1436,224 @@ msgstr ""
"प्रोगरामेबल खण्ड: उन्नत बहु-चल गणीत समीकरण थप्न प्रयोग गरिने, e.g., "
"sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "पाइथन खण्ड"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "जर्नलमा रहेको tamyblock.py मोड्युलको सङ्केत चलाउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "कार्टेसन"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "कार्टिसन कोर्डिनेट देखिउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "पोलार"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "पोलार निर्देशांक देखाऊ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "कछुवा"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "आदेश गर्ने कछुवा छान्छ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "कछुवाको शेल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "टर्टलमा अनुकूलन 'shell' राख"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "माथि"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "संक्षिप्त थाँकको माथि"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "तलतिर"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "पतन गर्न मिल्ने थाकको तल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "पतनएको थाक तल खण्डमा छ। खोल्न क्लिक गर"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "थाकको माथि"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "लेवुल"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "पतन गर्न मिल्ने थाकको माथि"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "प्रस्तुत गर्ने टेम्प्लेटहरूको प्यालेट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "खण्डहरु लुकाऊ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "खण्डहरु लुकाएर क्यानभास सफा बनाउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "खण्डहरु देखाऊ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "लुकेका खण्डलाई पूर्वावस्थामा ल्याउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "सुगर उपकरणपट्टी लुकाउँछ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "सूची"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "प्रस्तुति बुलेटेड सूची"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "प्रस्तुति टेम्पलेट: बुलेटका सूची"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "प्रस्तुति टेम्प्लेट: पंजिकाको वस्तु छान (विवरण नभएका)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "प्रस्तुति टेम्प्लेट: पंजिकाको बस्तु छान (विवरण समेत)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "प्रस्तुति टेम्प्लेट: चारवटा जर्नलको वस्तु छान"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "प्रस्तुती टेम्प्लेट: दुईवटा जर्नल बस्तु छान"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "स्क्रिनको बायाँपट्टिको xcor"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "स्क्रिनको तलपट्टिको ycor"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "चौडाइ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "क्यानभासको चौडाइ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "स्क्रिनको दायाँपट्टिको xcor"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "स्क्रिनको माथिपट्टिको ycor"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "उचाइ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "क्यानभास हाइट"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "शीर्षक x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "शीर्षक y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "बायाँ x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "माथि y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "दायाँ x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "तल y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "प्रस्तुति १x१"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "प्रस्तुति 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "प्रस्तुति १x२"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "प्रस्तुति 2x2"
@@ -1713,8 +1716,8 @@ msgstr "गुआरनीजको प्यालेट"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "टर्टल आर्ट बुटिया"
+msgid "TurtleBots"
+msgstr ""
#: taextras.py:59
msgid "adjust LED intensity between 0 and 255"
@@ -1761,8 +1764,8 @@ msgid "LED"
msgstr "LED"
#: taextras.py:70
-msgid "pushbutton"
-msgstr "पुसबटन"
+msgid "button"
+msgstr ""
#: taextras.py:71
msgid "grayscale"
@@ -1807,7 +1810,7 @@ msgstr "बहस सेकेन्डहरुको लागि प्रत
#. TRANS: This string is shorthand for "battery charge of Butia"
#: taextras.py:82
msgid "battery charge Butia"
-msgstr ""
+msgstr "बुटियाको बैटरी चार्ज"
#: taextras.py:83
msgid "returns the battery charge as a number between 0 and 255"
@@ -1894,7 +1897,7 @@ msgstr "बुटिया देखाऊ"
#. The len must be 32 characters/spaces.
#: taextras.py:109
msgid "Hello World Butia "
-msgstr "हेलो वल्ड बुटिया"
+msgstr "हेलो वल्ड बुटिया "
#: taextras.py:110
msgid "print text in Butia robot 32-character ASCII display"
@@ -2009,20 +2012,21 @@ msgstr "सम्बोट्लाई रोक"
#. TRANS: This string is shorthand for "turn SumBot left"
#: taextras.py:146
msgid "left SumBot"
-msgstr ""
+msgstr "सम्बोट्लाई बायाँ मोड़"
#: taextras.py:147
msgid "turn left the SumBot"
-msgstr ""
+msgstr "सम्बोट्लाई बायाँ मोड़"
#. TRANS: This string is shorthand for "move SumBot right"
#: taextras.py:149
msgid "right SumBot"
-msgstr ""
+msgstr "सम्बोट्लाई दायाँ मोड़"
#: taextras.py:150
+#, fuzzy
msgid "turn right the SumBot"
-msgstr ""
+msgstr "सम्बोट्लाई बायाँ मोड़"
#: taextras.py:151
msgid "angle to center"
@@ -2093,7 +2097,7 @@ msgstr "शत्रुको परिक्रमण"
#: taextras.py:173
msgid "get the rotation of the Enemy"
-msgstr " शत्रुको परिक्रमण लिऊ ।"
+msgstr "शत्रुको परिक्रमण लिऊ ।"
#: taextras.py:174
msgid "distance to center"
@@ -2220,7 +2224,7 @@ msgstr ""
"मोटरको चक्रिय गति र गति ०(बन्द) देखि सकारात्मक अंकहरु सम्म फैलिएको हुन्छ; "
"मोटर हालै मात्र बनाएको वस्तुमा राखिन्छ।"
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr "पिन"
@@ -2390,7 +2394,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2537,6 +2541,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "सेन्सर खण्डहरुको प्यालेट"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "प्रयोग हो"
@@ -2586,30 +2724,43 @@ msgstr "निर्देशांक रिस्केल गर"
msgid "Reset block size"
msgstr "खण्ड आकार रिसेट गर"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "खण्ड लुकाऊ/देखाऊ"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "औजार"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "रोक"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "टर्टल"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "तिमीसगँ बचत नगरिएको काम छ। बन्द गर्नुपूर्व बचत गर्न चाहनुहुन्छ?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "परियोजना सेभ गर?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "मद्दत"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "साहयताको लागि कर्सरलाई सुन्तला रङ्गको प्यालेट माथि लानुहोस्"
+
+#~ msgid "Turtle Art Butia"
+#~ msgstr "टर्टल आर्ट बुटिया"
+
+#~ msgid "pushbutton"
+#~ msgstr "पुसबटन"
+
#, fuzzy
#~ msgid ""
#~ "returns the object gray level encountered him as a number between 0 and 1023"
diff --git a/po/nl.po b/po/nl.po
index 126f8a5..7cebf0f 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2012-01-30 05:49+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26,8 +26,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Schildpad Kunst"
@@ -60,7 +60,7 @@ msgid "clears the screen and reset the turtle"
msgstr "schoont het scherm en herstelt het schildpad"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "links"
@@ -69,7 +69,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "draait schildpad tegen de klok in (hoek in graden)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "rechts"
@@ -123,8 +123,8 @@ msgstr ""
"stelt de richting in van het schildpad (0 is naar de bovenkant van het "
"scherm.)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -136,8 +136,8 @@ msgstr ""
"behoudt deze x-coördinaat waarde voor schildpad (kan worden gebruikt in "
"plaats van nummerblok)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -149,8 +149,8 @@ msgstr ""
"behoudt deze y-coördinaat waarde voor schildpad (kan worden gebruikt in "
"plaats van nummerblok)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "richting"
@@ -584,17 +584,17 @@ msgstr "slaat getalswaarde op in Variabele 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "tekst"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "rijwaarde"
@@ -630,7 +630,7 @@ msgstr "benoemde variabele (getalswaarde)"
msgid "store in"
msgstr "sla op in"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "waarde"
@@ -706,12 +706,12 @@ msgstr "verplaats alle blokken naar de prullenbak"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Titel"
@@ -731,11 +731,11 @@ msgstr "houdt niet van"
msgid "as input"
msgstr "als invoer"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "toont volgende palet"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "wijzigt de richting van het blokkenpalet"
@@ -748,184 +748,184 @@ msgid "Save..."
msgstr "Bewaren..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "klik om te openen"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "oriëntatie"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "volgende"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "afbeelding"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "presentatie"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "foto"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Toon palet"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Verberg palet"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Toon blokken"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Verberg blokken"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Herschaal coördinaten neer"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Herschaal coördinaten op"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Bewerk"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Bekijk"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Help"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Project"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Kopieer"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Plak"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Schermvullend"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Cartesische coördinaten"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Polaire coördinaten"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Metrische coördinaten"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Vergroot blokken"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Verklein blokken"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Laad voorbeeld"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Beweeg de cursor over het oranje palet voor hulp."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Opslaan als afbeelding"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Opslaan als HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Bewaar als Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Bewaar foto"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "Laad Python blok"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Wissen"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Draai"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Stap"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Debug"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Stop schildpad"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1037,7 +1037,7 @@ msgstr "Uploaden mislukt!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "Palet van sensorblokken"
@@ -1073,7 +1073,7 @@ msgstr "microfoon invoer volume"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "toonhoogte"
@@ -1172,257 +1172,257 @@ msgstr ""
msgid "Palette of media objects"
msgstr "Palet van media voorwerpen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "dagboek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Sugar Dagboek media voorwerp"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "audio"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Sugar Dagboek geluidsvoorwerp"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "video"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "Sugar Dagboek geluidsvoorwerp"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "beschrijving"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Sugar Dagboek beschrijvingveld"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "toon"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "tekent tekst of toont media uit het Dagboek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "toon uitgelijnd"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "stel schaal in"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "stelt de schaal van de media in"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "bewaar afbeelding"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "afbeeldingnaam"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "bewaart een afbeelding in het Sugar Dagboek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "bewaar SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "bewaart een schikdpad plaatje als een SVG bestand in het Sugar Dagboek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "schaal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "houdt deze schaalwaarde"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "media wacht"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "wacht tot huidige video of audio gereed is"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "spreek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr "hallo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr "spreekt tekst"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr "sinusgolf"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr "duur"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr "speelt een sinusgolf met frequentie, amplitude en duur (in secomden)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr "knop ingedrukt"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr "geeft 1 als muisknop is ingedrukt"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr "muis x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr "geeft muis x coördinaat"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr "muis y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr "geeft muis y coördinaat"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "vraag toetsenbord uit"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"uitvraging van toetsenbord invoer (resultaten opgeslagen in toetsenbordblok)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "toetsenbord"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "bevat resultaten van uitvraging-toetsnebordblok"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "lees pixel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "RGB kleur onder de schildpad is op de stapel gelegd"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "schildpad ziet"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "geeft de kleur dat de schildpad \"ziet\""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "tijd"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "verstreken tijd (in seconden) sinds programma startte"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Palet van extra opties"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "neerleggen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "duwt waarde op FILO (eerst-in-laatst-uit hoop)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "stapel weergeven"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "toont waarden in FILO (eerst-in-laatst-uit hoop)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "stapel wissen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "leegt FILO (eerste-in-laatste-uit hoop)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "afnemen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "duwt waarde van FILO (eerst-in-laatst-uit hoop)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "stapel wissen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "commentaar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "plaatst een commentaar in je code"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "druk af"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "drukt waarde af in status blok bij de onderkant van het scherm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1430,7 +1430,7 @@ msgstr ""
"een programmeerbaar blok: gebruikt om geavanceerde enkele-variabele "
"wiskundige vergelijkingen toe te voegen, zoals sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1438,7 +1438,7 @@ msgstr ""
"een programmeerbaar blok: gebruikt om geavanceerde meer-variabelen wisk "
"vergelijkingen toe te voegen, zoals sqrt(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1446,221 +1446,224 @@ msgstr ""
"een programmeerbaar blok: gebruikt om geavanceerde meer-variabelen "
"wiskundige vergelijkingen toe te voegen, zoals sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "Python blok"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "draait code gevonden in tamyblock.py module gevonden in het Dagboek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Cartesisch"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "toont Cartesische coördinaten"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "polair"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "toont polaire coördinaten"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "schildpad"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "kies welk schildpad te besturen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "turtle shall"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "legt een aangepast 'schild' op de schildpad"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "bovenin"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "bovenkant van een ingeklapte stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "onderkant"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "onderkant van een inklapbare stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "onderste blok in een ingeklapte stapel: klik om te openen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "bovenop de stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "label"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "bovenkant van een inklapbare stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "Palet van presentatie sjablonen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "blokken verbergen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "ontwar schilderij door blokken te verbergen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "blokken weergeven"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "herlaad verborgen blokken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "verbergt de Sugar werkbalken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "lijst"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "presentatiepuntenlijst"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "presentatie sjabloon: puntenlijst"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "presentatie sjabloon: selecteer Dagboek voorwerp (zonder beschrijving)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "presentatie sjabloon: selecteer Dagboek voorwerp (met beschrijving)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "presentatie sjabloon: selecteer vier Dagboek voorwerpen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "presentatie sjabloon: selecteer twee Dagboek voorwerpen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "xcor van linkerkant van scherm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "ycor voor onderkant van scherm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "breedte"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "de schilderij breedte"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "xcor van rechterkant van scherm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "ycor van bovenkant van het scherm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "hoogte"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "de schlderijhoogte"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "titel x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "titel y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "links x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "boven y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "rechts x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "onderkant y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "presentatie 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "presentatie 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "presentatie 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "presentatie 2x2"
@@ -1723,8 +1726,8 @@ msgstr "Palet van Guaranies"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "Schildpad Kunst Butia"
+msgid "TurtleBots"
+msgstr ""
#: taextras.py:59
#, fuzzy
@@ -1780,8 +1783,8 @@ msgid "LED"
msgstr "LED"
#: taextras.py:70
-msgid "pushbutton"
-msgstr "drukknop"
+msgid "button"
+msgstr ""
#: taextras.py:71
msgid "grayscale"
@@ -2263,7 +2266,7 @@ msgstr ""
"Motor koppel en snelheid lopen van 0 (uit) naar positieve getallen; de motor "
"wordt geplaatst op het meest recent gecreeerde voorwerp."
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr "speld"
@@ -2434,7 +2437,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2581,6 +2584,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "Palet van sensorblokken"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "gebruik is"
@@ -2630,32 +2767,45 @@ msgstr "Herschaal coördinaten"
msgid "Reset block size"
msgstr "Herstel blokgrootte"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Toon/verberg blokken"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Werktuigen"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Stop"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Schildpad"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
"Je hebt nog werk dat niet is opgeslagen. Wil je het opslaan voor het "
"afsluiten?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "Project opslaan?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Help"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Beweeg de cursor over het oranje palet voor hulp."
+
+#~ msgid "Turtle Art Butia"
+#~ msgstr "Schildpad Kunst Butia"
+
+#~ msgid "pushbutton"
+#~ msgstr "drukknop"
+
#, fuzzy
#~ msgid ""
#~ "returns the object gray level encountered him as a number between 0 and 1023"
diff --git a/po/pa.po b/po/pa.po
index db53189..bc300d6 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:42+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/pap.po b/po/pap.po
index efaa13d..45882e3 100644
--- a/po/pap.po
+++ b/po/pap.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-10-20 07:09+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Arte di turtuga"
@@ -54,7 +54,7 @@ msgid "clears the screen and reset the turtle"
msgstr "limpia e pantaya y start e turtuga di nobo"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "robes"
@@ -64,7 +64,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "bira e turtuga contrali di oloshi (huki den grado)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "drechi"
@@ -118,8 +118,8 @@ msgstr "instala titulo"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "instalá e direkshon di e turtuga (0 ta tòp di e pantaya.)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -131,8 +131,8 @@ msgstr ""
"mantené balor kordinado-x aktual di e turtuga (por wòrdú huza na luga di un "
"blòk di number)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -144,8 +144,8 @@ msgstr ""
"mantené balor kordinado-y aktual di e turtuga (por wordu huza na luga di un "
"blòk di number)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "titulo"
@@ -611,17 +611,17 @@ msgstr "warda balor numériko den variabel 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "teksto"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "balor di string"
@@ -657,7 +657,7 @@ msgstr "variabel nombrá (balor numériko )"
msgid "store in"
msgstr "waarda den"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "balor"
@@ -739,12 +739,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Título"
@@ -764,11 +764,11 @@ msgstr "no ta gusta"
msgid "as input"
msgstr "komo entrada"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "mustra siguiente palèt"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "kambia e orientashon di e palèt di blòkinan"
@@ -781,184 +781,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "Klek pa habri"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "orientashon"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "siguiente"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "imágen"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "presentashon"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "portrèt/snapshot"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Mustra palèt"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Skonde palete"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Mustra blòkkinan"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Skonde blóks"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Baha e skala di kordinantenan"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Subi e skala di kordinantenan"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Edita"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Mira"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Ousilio"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Projecto"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Kopia"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Pega"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Pantaya kompleto"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Kordinantenan Certesian"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Kordinantenan Polar"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Amplia blòkinan"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Redusí blòkinan"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Move e cursor over di e palèt oranjo pa ajudo."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Warda komo imagen"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "warda komo HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Warda komo Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Warda portrèt"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Limpia"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Run"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Paso"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Debug"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Stòp turtuga"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1069,7 +1069,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1105,7 +1105,7 @@ msgstr "entrada di volúmen di e mikrofón"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "altura di tono"
@@ -1208,268 +1208,268 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "diaro"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Objecto di media Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "oudio"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Objecto oudio Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
#, fuzzy
msgid "Sugar Journal video object"
msgstr "Objecto oudio Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Deskripshon di fèlt Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "Mustra"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
#, fuzzy
msgid "draws text or show media from the Journal"
msgstr "tou teksto of show media for di Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "mustra aliniá"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "instala skaal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
#, fuzzy
msgid "sets the scale of media"
msgstr "instala e skal di media"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "warda imágen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "nòmber di imágen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "warda e imágen na e diario di Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "warda SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "warda e imágen di turtuga komo map di e diario di Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "skaal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "mantene e balor di e skala aktual"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "konsulta teklado"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"signo di enterogashon pa introdukshon di keyboard (resultado warda den blóki "
"keyboard)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "keyboard"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "mantene resultado di signo di blóki enterogashon-keyboard"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
#, fuzzy
msgid "Palette of extra options"
msgstr "palet pa optión ekstra"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "Primi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
#, fuzzy
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
"pusha balor riba monton FILO (first-in last-out) (promé-aden delaster-afó)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "mustra monton"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
#, fuzzy
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
"pusha balor riba monton FILO (first-in last-out) (promé-aden delaster-afó)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "monton bashi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "limpia FILO (first-in-last-out heap)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "pop"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
#, fuzzy
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
"pusha balor riba monton FILO (first-in last-out) (promé-aden delaster-afó)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "monton bashi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "komentario"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "pone un komentario na bo kodíko"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "print"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "print balor den blóki státus den fondo di e pantaya"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Pitòn"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
#, fuzzy
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
@@ -1478,7 +1478,7 @@ msgstr ""
"un blòki programabel: usá pa agregá single-variable matemátika, por ehèmpel, "
"sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1486,7 +1486,7 @@ msgstr ""
"un blòki programabel: usá pa agregá multi-variable matemátika, por ehèmpel, "
"sin(x)sqrt(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
#, fuzzy
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
@@ -1495,226 +1495,229 @@ msgstr ""
"un blòki programabel: usá pa agregá multi-variable matemátika, por ehèmpel, "
"sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "ehekuta e código den e módulo tamyblock.py den e Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Cartesian"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "mustra kordinantenan di Cartesian"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "polar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "mustra kordinantenan polar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "Turtuga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "Skohe e turtuga ku bo ta bai komandá"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "tòp"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "tòp di e pila doblá"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "abou"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
#, fuzzy
msgid "bottom of a collapsible stack"
msgstr "tòp di e pila doblabel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "e blòki abou ta den un pila dóblá: klek riba dje pa habri"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "tòp di pila"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "etikèt"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "tòp di e pila doblabel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
#, fuzzy
msgid "Palette of presentation templates"
msgstr "palèt pa presentashon di patronchi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "skonde blòkinan"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
#, fuzzy
msgid "declutters canvas by hiding blocks"
msgstr "drecha e tela dor di skonde blòkinan"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "Mustra blòkinan"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "restourá e blòkinan skondé"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "skonde e Sugar toolbars"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "lista ku puntonan di presentashon"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
#, fuzzy
msgid "presentation template: list of bullets"
msgstr "presentashon patronchi: shete bala di skopèt"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "presentashon patronchi: selekta opheto Journal (no déskripshon)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "presentashon patronchi: selekta opheto Journal (ku déskriphon)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "presentashon patronchi: selekta kuater opheto Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "presentashon patronchi: selekta dos opheto Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "xcor di e pantaya banda robes"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "ycor di fondo di pantaya"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "hanchura"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "hanchura di kèimas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "xcor di banda drechi di pantaya"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "ycor di e tòp di pantaya"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "haltura"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "haltura di kèimas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "título x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "título y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "abou"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "presentashon 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "presentashon 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "presentashon 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "presentashon 2x2"
@@ -1779,7 +1782,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1825,7 +1828,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2280,7 +2283,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2441,7 +2444,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2585,6 +2588,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2634,30 +2770,37 @@ msgstr "Adaptá skala di kordinantenan"
msgid "Reset block size"
msgstr "Reset e tamaño blòki"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Mustra/skonde blòki"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Instrumentonan"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Stòp"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Turtuga"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Ousilio"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Move e cursor over di e palèt oranjo pa ajudo."
+
#~ msgid "Import/Export"
#~ msgstr "Importa/Eksporta"
diff --git a/po/pis.po b/po/pis.po
deleted file mode 100644
index 2135021..0000000
--- a/po/pis.po
+++ /dev/null
@@ -1,2570 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
-"PO-Revision-Date: 2011-02-24 04:33+0200\n"
-"Last-Translator: Chris <cjl@laptop.org>\n"
-"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.1\n"
-
-#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
-msgid "Turtle Art"
-msgstr ""
-
-#: TurtleArt/tabasics.py:115
-msgid "Palette of turtle commands"
-msgstr ""
-
-#: TurtleArt/tabasics.py:120
-msgid "forward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:124
-msgid "moves turtle forward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:131
-msgid "back"
-msgstr ""
-
-#: TurtleArt/tabasics.py:135
-msgid "moves turtle backward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:143
-msgid "clean"
-msgstr ""
-
-#: TurtleArt/tabasics.py:146
-msgid "clears the screen and reset the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
-msgid "left"
-msgstr ""
-
-#: TurtleArt/tabasics.py:158
-msgid "turns turtle counterclockwise (angle in degrees)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
-msgid "right"
-msgstr ""
-
-#: TurtleArt/tabasics.py:169
-msgid "turns turtle clockwise (angle in degrees)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "arc"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "angle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "radius"
-msgstr ""
-
-#: TurtleArt/tabasics.py:181
-msgid "moves turtle along an arc"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256
-msgid "set xy"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256 taextras.py:218
-msgid "x"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256 taextras.py:219
-msgid "y"
-msgstr ""
-
-#: TurtleArt/tabasics.py:194 TurtleArt/tabasics.py:260
-msgid ""
-"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen."
-msgstr ""
-
-#
-#: TurtleArt/tabasics.py:204
-msgid "set heading"
-msgstr "seth"
-
-#: TurtleArt/tabasics.py:208
-msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
-msgid "xcor"
-msgstr ""
-
-#: TurtleArt/tabasics.py:217
-msgid ""
-"holds current x-coordinate value of the turtle (can be used in place of a "
-"number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
-msgid "ycor"
-msgstr ""
-
-#: TurtleArt/tabasics.py:228
-msgid ""
-"holds current y-coordinate value of the turtle (can be used in place of a "
-"number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
-msgid "heading"
-msgstr ""
-
-#: TurtleArt/tabasics.py:239
-msgid ""
-"holds current heading value of the turtle (can be used in place of a number "
-"block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:273
-msgid "Palette of pen commands"
-msgstr ""
-
-#: TurtleArt/tabasics.py:277
-msgid "pen up"
-msgstr ""
-
-#: TurtleArt/tabasics.py:280
-msgid "Turtle will not draw when moved."
-msgstr ""
-
-#: TurtleArt/tabasics.py:286
-msgid "pen down"
-msgstr ""
-
-#: TurtleArt/tabasics.py:289
-msgid "Turtle will draw when moved."
-msgstr ""
-
-#: TurtleArt/tabasics.py:295
-msgid "set pen size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:299
-msgid "sets size of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309
-msgid "fill screen"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:399 taextras.py:260
-msgid "color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:409
-msgid "shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:313
-msgid "fills the background with (color, shade)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:322
-msgid "pen size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:323
-msgid "holds current pen size (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:334
-msgid "start fill"
-msgstr ""
-
-#: TurtleArt/tabasics.py:336
-msgid "starts filled polygon (used with end fill block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:343
-msgid "end fill"
-msgstr ""
-
-#: TurtleArt/tabasics.py:345
-msgid "completes filled polygon (used with start fill block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:356 TurtleArt/tabasics.py:360
-msgid "Palette of pen colors"
-msgstr ""
-
-#: TurtleArt/tabasics.py:364
-msgid "set color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:368
-msgid "sets color of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:376
-msgid "set shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:380
-msgid "sets shade of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:388
-msgid "set gray"
-msgstr ""
-
-#: TurtleArt/tabasics.py:391
-msgid "sets gray level of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:400
-msgid "holds current pen color (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:410
-msgid "holds current pen shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:418
-msgid "gray"
-msgstr ""
-
-#: TurtleArt/tabasics.py:419
-msgid "holds current gray level (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:425
-msgid "red"
-msgstr ""
-
-#: TurtleArt/tabasics.py:426
-msgid "orange"
-msgstr ""
-
-#: TurtleArt/tabasics.py:428
-msgid "yellow"
-msgstr ""
-
-#: TurtleArt/tabasics.py:430
-msgid "green"
-msgstr ""
-
-#: TurtleArt/tabasics.py:431
-msgid "cyan"
-msgstr ""
-
-#: TurtleArt/tabasics.py:432
-msgid "blue"
-msgstr ""
-
-#: TurtleArt/tabasics.py:433
-msgid "purple"
-msgstr ""
-
-#: TurtleArt/tabasics.py:435
-msgid "white"
-msgstr ""
-
-#: TurtleArt/tabasics.py:436
-msgid "black"
-msgstr ""
-
-#: TurtleArt/tabasics.py:442
-msgid "set text color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:445
-msgid "sets color of text drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:453
-msgid "set text size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:456
-msgid "sets size of text drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:539
-msgid "Palette of numeric operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:545
-msgid "plus"
-msgstr ""
-
-#: TurtleArt/tabasics.py:548
-msgid "adds two alphanumeric inputs"
-msgstr ""
-
-#: TurtleArt/tabasics.py:556
-msgid "minus"
-msgstr ""
-
-#: TurtleArt/tabasics.py:559
-msgid "subtracts bottom numeric input from top numeric input"
-msgstr ""
-
-#: TurtleArt/tabasics.py:570
-msgid "multiply"
-msgstr ""
-
-#: TurtleArt/tabasics.py:573
-msgid "multiplies two numeric inputs"
-msgstr ""
-
-#: TurtleArt/tabasics.py:582
-msgid "divide"
-msgstr ""
-
-#: TurtleArt/tabasics.py:585
-msgid ""
-"divides top numeric input (numerator) by bottom numeric input (denominator)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:595
-msgid "identity"
-msgstr ""
-
-#: TurtleArt/tabasics.py:597
-msgid "identity operator used for extending blocks"
-msgstr ""
-
-#: TurtleArt/tabasics.py:605 TurtleArt/tabasics.py:606
-msgid "mod"
-msgstr ""
-
-#: TurtleArt/tabasics.py:609
-msgid "modular (remainder) operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:616
-msgid "√"
-msgstr ""
-
-#: TurtleArt/tabasics.py:617
-msgid "square root"
-msgstr ""
-
-#: TurtleArt/tabasics.py:620
-msgid "calculates square root"
-msgstr ""
-
-#: TurtleArt/tabasics.py:627
-msgid "random"
-msgstr ""
-
-#: TurtleArt/tabasics.py:627
-msgid "min"
-msgstr ""
-
-#: TurtleArt/tabasics.py:627
-msgid "max"
-msgstr ""
-
-#: TurtleArt/tabasics.py:631
-msgid "returns random number between minimum (top) and maximum (bottom) values"
-msgstr ""
-
-#: TurtleArt/tabasics.py:643
-msgid "number"
-msgstr ""
-
-#: TurtleArt/tabasics.py:644
-msgid "used as numeric input in mathematic operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:651
-msgid "greater than"
-msgstr ""
-
-#: TurtleArt/tabasics.py:654
-msgid "logical greater-than operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:660
-msgid "True"
-msgstr ""
-
-#: TurtleArt/tabasics.py:666
-msgid "less than"
-msgstr ""
-
-#: TurtleArt/tabasics.py:669
-msgid "logical less-than operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:674
-msgid "False"
-msgstr ""
-
-#: TurtleArt/tabasics.py:680
-msgid "equal"
-msgstr ""
-
-#: TurtleArt/tabasics.py:683
-msgid "logical equal-to operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:689
-msgid "not"
-msgstr ""
-
-#: TurtleArt/tabasics.py:692
-msgid "logical NOT operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:698 TurtleArt/tabasics.py:701
-msgid "and"
-msgstr ""
-
-#: TurtleArt/tabasics.py:702
-msgid "logical AND operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:709 TurtleArt/tabasics.py:712
-msgid "or"
-msgstr ""
-
-#: TurtleArt/tabasics.py:713
-msgid "logical OR operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:722
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:94
-msgid "Palette of flow operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:727
-msgid "wait"
-msgstr ""
-
-#: TurtleArt/tabasics.py:731
-msgid "pauses program execution a specified number of seconds"
-msgstr ""
-
-#: TurtleArt/tabasics.py:738
-msgid "forever"
-msgstr ""
-
-#: TurtleArt/tabasics.py:742
-msgid "loops forever"
-msgstr ""
-
-#: TurtleArt/tabasics.py:748 TurtleArt/tabasics.py:752
-msgid "repeat"
-msgstr ""
-
-#: TurtleArt/tabasics.py:753
-msgid "loops specified number of times"
-msgstr ""
-
-#: TurtleArt/tabasics.py:759 TurtleArt/tabasics.py:771
-msgid "if"
-msgstr ""
-
-#: TurtleArt/tabasics.py:759
-msgid "then"
-msgstr ""
-
-#: TurtleArt/tabasics.py:762
-msgid "if then"
-msgstr ""
-
-#: TurtleArt/tabasics.py:764
-msgid "if-then operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: TurtleArt/tabasics.py:771
-msgid "then else"
-msgstr ""
-
-#: TurtleArt/tabasics.py:775
-msgid "if then else"
-msgstr ""
-
-#: TurtleArt/tabasics.py:776
-msgid "if-then-else operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: TurtleArt/tabasics.py:784
-msgid "horizontal space"
-msgstr ""
-
-#: TurtleArt/tabasics.py:785
-msgid "jogs stack right"
-msgstr ""
-
-#: TurtleArt/tabasics.py:792
-msgid "vertical space"
-msgstr ""
-
-#: TurtleArt/tabasics.py:793
-msgid "jogs stack down"
-msgstr ""
-
-#: TurtleArt/tabasics.py:799
-msgid "stop action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:802
-msgid "stops current action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:811
-msgid "Palette of variable blocks"
-msgstr ""
-
-#: TurtleArt/tabasics.py:816 pysamples/grecord.py:213
-msgid "start"
-msgstr ""
-
-#: TurtleArt/tabasics.py:819
-msgid "connects action to toolbar run buttons"
-msgstr ""
-
-#: TurtleArt/tabasics.py:827
-msgid "store in box 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:831
-msgid "stores numeric value in Variable 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:838
-msgid "store in box 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:842
-msgid "stores numeric value in Variable 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
-#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
-msgid "text"
-msgstr ""
-
-#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
-msgid "string value"
-msgstr ""
-
-#: TurtleArt/tabasics.py:856
-msgid "box 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:859
-msgid "Variable 1 (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:865
-msgid "box 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:868
-msgid "Variable 2 (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:875 TurtleArt/tabasics.py:885
-msgid "box"
-msgstr ""
-
-#: TurtleArt/tabasics.py:877 TurtleArt/tabasics.py:888
-msgid "my box"
-msgstr ""
-
-#: TurtleArt/tabasics.py:879
-msgid "named variable (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:885
-msgid "store in"
-msgstr ""
-
-#: TurtleArt/tabasics.py:885
-msgid "value"
-msgstr ""
-
-#: TurtleArt/tabasics.py:889
-msgid "stores numeric value in named variable"
-msgstr ""
-
-#: TurtleArt/tabasics.py:897 TurtleArt/tabasics.py:899
-#: TurtleArt/tabasics.py:923 TurtleArt/tabasics.py:926
-msgid "action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:901
-msgid "top of nameable action stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:906 TurtleArt/tabasics.py:933
-msgid "action 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:909
-msgid "top of Action 1 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:914 TurtleArt/tabasics.py:942
-msgid "action 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:917
-msgid "top of Action 2 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:927
-msgid "invokes named action stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:936
-msgid "invokes Action 1 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:945
-msgid "invokes Action 2 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:953
-msgid "trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:957
-msgid "empty trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:958
-msgid "permanently deletes items in trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:962
-msgid "restore all"
-msgstr ""
-
-#: TurtleArt/tabasics.py:963
-msgid "restore all blocks from trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:967
-msgid "clear all"
-msgstr ""
-
-#: TurtleArt/tabasics.py:968
-msgid "move all blocks to trash"
-msgstr ""
-
-#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
-#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
-#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
-msgid "Title"
-msgstr ""
-
-#: TurtleArt/talogo.py:465
-msgid "did not output to"
-msgstr ""
-
-#: TurtleArt/talogo.py:519
-msgid "I don't know how to"
-msgstr ""
-
-#: TurtleArt/talogo.py:566
-msgid "doesn't like"
-msgstr ""
-
-#: TurtleArt/talogo.py:566
-msgid "as input"
-msgstr ""
-
-#: TurtleArt/tapalette.py:84
-msgid "displays next palette"
-msgstr ""
-
-#: TurtleArt/tapalette.py:85
-msgid "changes the orientation of the palette of blocks"
-msgstr ""
-
-#: TurtleArt/tautils.py:177
-msgid "Load..."
-msgstr ""
-
-#: TurtleArt/tautils.py:187
-msgid "Save..."
-msgstr ""
-
-#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
-msgid "click to open"
-msgstr ""
-
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
-msgid "orientation"
-msgstr ""
-
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
-msgid "next"
-msgstr ""
-
-#: TurtleArt/tawindow.py:3146
-msgid "image"
-msgstr ""
-
-#: TurtleArtActivity.py:147
-msgid "presentation"
-msgstr ""
-
-#: TurtleArtActivity.py:223
-msgid "snapshot"
-msgstr ""
-
-#: TurtleArtActivity.py:271 turtleart.py:354
-msgid "Show palette"
-msgstr ""
-
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
-msgid "Hide palette"
-msgstr ""
-
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
-msgid "Show blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
-msgid "Hide blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:415
-msgid "Rescale coordinates down"
-msgstr ""
-
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
-msgid "Rescale coordinates up"
-msgstr ""
-
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
-msgid "Edit"
-msgstr ""
-
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
-msgid "View"
-msgstr ""
-
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
-msgid "Project"
-msgstr ""
-
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
-msgid "Save/Load"
-msgstr ""
-
-#: TurtleArtActivity.py:528 turtleart.py:349
-msgid "Copy"
-msgstr ""
-
-#: TurtleArtActivity.py:530 turtleart.py:350
-msgid "Paste"
-msgstr ""
-
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
-msgid "Fullscreen"
-msgstr ""
-
-#: TurtleArtActivity.py:534 turtleart.py:334
-msgid "Cartesian coordinates"
-msgstr ""
-
-#: TurtleArtActivity.py:536 turtleart.py:336
-msgid "Polar coordinates"
-msgstr ""
-
-#: TurtleArtActivity.py:539
-msgid "Metric coordinates"
-msgstr ""
-
-#: TurtleArtActivity.py:549 turtleart.py:340
-msgid "Grow blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:551 turtleart.py:342
-msgid "Shrink blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
-msgid "Load example"
-msgstr ""
-
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
-msgid "Save as image"
-msgstr ""
-
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
-msgid "Save as HTML"
-msgstr ""
-
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
-msgid "Save as Logo"
-msgstr ""
-
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
-msgid "Save snapshot"
-msgstr ""
-
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
-msgid "Load project"
-msgstr ""
-
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
-msgid "Load Python block"
-msgstr ""
-
-#: TurtleArtActivity.py:683
-msgid "<Ctrl>p"
-msgstr ""
-
-#: TurtleArtActivity.py:686
-msgid "<Ctrl>b"
-msgstr ""
-
-#: TurtleArtActivity.py:691 turtleart.py:363
-msgid "Clean"
-msgstr ""
-
-#: TurtleArtActivity.py:691
-msgid "<Ctrl>e"
-msgstr ""
-
-#: TurtleArtActivity.py:693 turtleart.py:364
-msgid "Run"
-msgstr ""
-
-#: TurtleArtActivity.py:693
-msgid "<Ctrl>r"
-msgstr ""
-
-#: TurtleArtActivity.py:695 turtleart.py:365
-msgid "Step"
-msgstr ""
-
-#: TurtleArtActivity.py:695
-msgid "<Ctrl>w"
-msgstr ""
-
-#: TurtleArtActivity.py:698 turtleart.py:366
-msgid "Debug"
-msgstr ""
-
-#: TurtleArtActivity.py:698
-msgid "<Ctrl>d"
-msgstr ""
-
-#: TurtleArtActivity.py:700
-msgid "Stop turtle"
-msgstr ""
-
-#: TurtleArtActivity.py:701
-msgid "<Ctrl>s"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:67
-msgid "My Turtle Art session"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:115
-msgid "Enable collaboration"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:120
-msgid "Activities"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:125
-msgid "Buddies"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:128
-msgid "Share"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:129
-msgid "Configuration"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:132
-msgid "Neighborhood"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:292
-msgid "Nickname"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:294
-msgid "Account ID"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:296
-msgid "Server"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:298
-msgid "Port"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:300
-msgid "Password"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:302
-msgid "Register"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:304
-msgid "Colors"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:64
-msgid "Upload to Web"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:66
-msgid "Upload"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:83
-msgid ""
-"You must have an account at http://turtleartsite.sugarlabs.org to upload "
-"your project."
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:92
-msgid "Username:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:102
-msgid "Password:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:113
-msgid "Title:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:123
-msgid "Description:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:133
-msgid "Submit to Web"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:137
-msgid "Cancel"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:159
-msgid "Login failed"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:196
-msgid "Failed to upload!"
-msgstr ""
-
-#: plugins/accelerometer/accelerometer.py:49
-#: plugins/audio_sensors/audio_sensors.py:75
-#: plugins/camera_sensor/camera_sensor.py:56
-#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
-msgid "Palette of sensor blocks"
-msgstr ""
-
-#: plugins/accelerometer/accelerometer.py:55
-#: plugins/accelerometer/accelerometer.py:62
-msgid "acceleration"
-msgstr ""
-
-#: plugins/accelerometer/accelerometer.py:57
-#: plugins/accelerometer/accelerometer.py:64
-msgid "push acceleration in x, y, z to heap"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:82
-#: plugins/audio_sensors/audio_sensors.py:97 pysamples/grecord.py:205
-msgid "sound"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:83
-#: plugins/audio_sensors/audio_sensors.py:98
-msgid "raw microphone input signal"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:89
-#: plugins/audio_sensors/audio_sensors.py:104
-msgid "loudness"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:90
-#: plugins/audio_sensors/audio_sensors.py:105
-msgid "microphone input volume"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:118
-#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
-msgid "pitch"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:119
-#: plugins/audio_sensors/audio_sensors.py:127
-msgid "microphone input pitch"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:147
-#: plugins/audio_sensors/audio_sensors.py:161
-#: plugins/audio_sensors/audio_sensors.py:174
-#: plugins/audio_sensors/audio_sensors.py:188
-msgid "resistance"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:148
-#: plugins/audio_sensors/audio_sensors.py:162
-#: plugins/audio_sensors/audio_sensors.py:175
-#: plugins/audio_sensors/audio_sensors.py:189
-msgid "microphone input resistance"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:153
-#: plugins/audio_sensors/audio_sensors.py:167
-#: plugins/audio_sensors/audio_sensors.py:180
-#: plugins/audio_sensors/audio_sensors.py:194
-msgid "voltage"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:154
-#: plugins/audio_sensors/audio_sensors.py:168
-#: plugins/audio_sensors/audio_sensors.py:181
-#: plugins/audio_sensors/audio_sensors.py:195
-msgid "microphone input voltage"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:67
-#: plugins/camera_sensor/camera_sensor.py:79
-#: plugins/camera_sensor/camera_sensor.py:97
-#: plugins/camera_sensor/camera_sensor.py:110
-#: plugins/light_sensor/light_sensor.py:55
-#: plugins/light_sensor/light_sensor.py:62
-msgid "brightness"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:68
-#: plugins/camera_sensor/camera_sensor.py:99
-msgid "light level detected by camera"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:80
-#: plugins/camera_sensor/camera_sensor.py:111
-msgid "Average RGB color from camera is pushed to the stack"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:91
-#: plugins/camera_sensor/camera_sensor.py:123
-msgid "camera output"
-msgstr ""
-
-#: plugins/light_sensor/light_sensor.py:57
-#: plugins/light_sensor/light_sensor.py:64
-msgid "light level detected by light sensor"
-msgstr ""
-
-#: plugins/rfid/rfid.py:91 plugins/rfid/rfid.py:99
-msgid "RFID"
-msgstr ""
-
-#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100
-msgid "read value from RFID device"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:99
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:102
-msgid "while"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103
-msgid "do-while-True operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:109
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:112
-msgid "until"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113
-msgid "do-until-True operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:120
-msgid "Palette of media objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
-msgid "journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
-msgid "Sugar Journal media object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
-msgid "audio"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
-msgid "Sugar Journal audio object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
-msgid "video"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
-msgid "Sugar Journal video object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
-msgid "description"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
-msgid "Sugar Journal description field"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
-msgid "show"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
-msgid "draws text or show media from the Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
-msgid "show aligned"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
-msgid "set scale"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
-msgid "sets the scale of media"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
-msgid "save picture"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
-msgid "picture name"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
-msgid "saves a picture to the Sugar Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
-msgid "save SVG"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
-msgid "saves turtle graphics as an SVG file in the Sugar Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
-msgid "scale"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
-msgid "holds current scale value"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
-msgid "media wait"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
-msgid "wait for current video or audio to complete"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
-msgid "speak"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
-msgid "hello"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
-msgid "speaks text"
-msgstr ""
-
-#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
-msgid "sinewave"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
-msgid "duration"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
-msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
-msgid "button down"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
-msgid "returns 1 if mouse button is pressed"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
-msgid "mouse x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
-msgid "returns mouse x coordinate"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
-msgid "mouse y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
-msgid "returns mouse y coordinate"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
-msgid "query keyboard"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
-msgid "query for keyboard input (results stored in keyboard block)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
-msgid "keyboard"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
-msgid "holds results of query-keyboard block"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
-msgid "read pixel"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
-msgid "RGB color under the turtle is pushed to the stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
-msgid "turtle sees"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
-msgid "returns the color that the turtle \"sees\""
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
-msgid "time"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
-msgid "elapsed time (in seconds) since program started"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
-msgid "Palette of extra options"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
-msgid "push"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
-msgid "pushes value onto FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
-msgid "show heap"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
-msgid "shows values in FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
-msgid "empty heap"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
-msgid "emptys FILO (first-in-last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
-msgid "pop"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
-msgid "pops value off FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
-msgid "empty heap?"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
-msgid "returns True if heap is empty"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
-msgid "comment"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
-msgid "places a comment in your code"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
-msgid "print"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
-msgid "prints value in status block at bottom of the screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
-msgid "Python"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
-msgid ""
-"a programmable block: used to add advanced single-variable math equations, e."
-"g., sin(x)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
-msgid ""
-"a programmable block: used to add advanced multi-variable math equations, e."
-"g., sqrt(x*x+y*y)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
-msgid ""
-"a programmable block: used to add advanced multi-variable math equations, e."
-"g., sin(x+y+z)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
-msgid "Python block"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
-msgid "runs code found in the tamyblock.py module found in the Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
-msgid "Cartesian"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
-msgid "displays Cartesian coordinates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
-msgid "polar"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
-msgid "displays polar coordinates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
-msgid "turtle"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
-msgid "chooses which turtle to command"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
-msgid "turtle shell"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
-msgid "put a custom 'shell' on the turtle"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
-msgid "top"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
-msgid "top of a collapsed stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
-msgid "bottom"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
-msgid "bottom of a collapsible stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
-msgid "bottom block in a collapsed stack: click to open"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
-msgid "top of stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
-msgid "label"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
-msgid "top of a collapsible stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
-msgid "Palette of presentation templates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
-msgid "hide blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
-msgid "declutters canvas by hiding blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
-msgid "show blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
-msgid "restores hidden blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
-msgid "hides the Sugar toolbars"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
-msgid "list"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
-msgid "presentation bulleted list"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
-msgid "presentation template: list of bullets"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
-msgid "presentation template: select Journal object (no description)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
-msgid "presentation template: select Journal object (with description)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
-msgid "presentation template: select four Journal objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
-msgid "presentation template: select two Journal objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
-msgid "xcor of left of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
-msgid "ycor of bottom of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
-msgid "width"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
-msgid "the canvas width"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
-msgid "xcor of right of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
-msgid "ycor of top of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
-#: taextras.py:206
-msgid "height"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
-msgid "the canvas height"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
-msgid "title x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
-msgid "title y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
-msgid "left x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
-msgid "top y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
-msgid "right x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
-msgid "bottom y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
-msgid "presentation 1x1"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
-msgid "presentation 2x1"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
-msgid "presentation 1x2"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
-msgid "presentation 2x2"
-msgstr ""
-
-#: pysamples/grecord.py:215
-msgid "stop"
-msgstr ""
-
-#: pysamples/grecord.py:217
-msgid "play"
-msgstr ""
-
-#: pysamples/grecord.py:219
-msgid "save"
-msgstr ""
-
-#: pysamples/uturn.py:24
-msgid "uturn"
-msgstr ""
-
-#: pysamples/uturn.py:26
-msgid "make a uturn"
-msgstr ""
-
-#: taextras.py:36
-msgid "Turtle Art Mini"
-msgstr ""
-
-#: taextras.py:40
-msgid "Turtle Confusion"
-msgstr ""
-
-#: taextras.py:41
-msgid "Select a challenge"
-msgstr ""
-
-#: taextras.py:47
-msgid "Palette of Mexican pesos"
-msgstr ""
-
-#: taextras.py:48
-msgid "Palette of Colombian pesos"
-msgstr ""
-
-#: taextras.py:49
-msgid "Palette of Rwandan francs"
-msgstr ""
-
-#: taextras.py:50
-msgid "Palette of US currencies"
-msgstr ""
-
-#: taextras.py:51
-msgid "Palette of Australian currencies"
-msgstr ""
-
-#: taextras.py:52
-msgid "Palette of Guaranies"
-msgstr ""
-
-#. TRANS: Butia is the Arduino Robot Project from Uruguay
-#. (http://www.fing.edu.uy/inco/proyectos/butia/)
-#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr ""
-
-#: taextras.py:59
-msgid "adjust LED intensity between 0 and 255"
-msgstr ""
-
-#: taextras.py:60
-msgid "returns the object gray level as a number between 0 and 1023"
-msgstr ""
-
-#: taextras.py:61
-msgid "returns 1 when the button is press and 0 otherwise"
-msgstr ""
-
-#: taextras.py:62
-msgid "returns the ambient light level as a number between 0 and 1023"
-msgstr ""
-
-#: taextras.py:63
-msgid "returns the ambient temperature as a number between 0 and 255"
-msgstr ""
-
-#: taextras.py:64
-msgid ""
-"returns the distance from the object in front of the sensor as a number "
-"between 0 and 255"
-msgstr ""
-
-#: taextras.py:66
-msgid "returns 0 or 1 depending on the sensor inclination"
-msgstr ""
-
-#: taextras.py:67
-msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise"
-msgstr ""
-
-#: taextras.py:68
-msgid "switches from 0 to 1, the frequency depends on the vibration"
-msgstr ""
-
-#: taextras.py:69
-msgid "LED"
-msgstr ""
-
-#: taextras.py:70
-msgid "pushbutton"
-msgstr ""
-
-#: taextras.py:71
-msgid "grayscale"
-msgstr ""
-
-#: taextras.py:72
-msgid "ambient light"
-msgstr ""
-
-#: taextras.py:73
-msgid "temperature"
-msgstr ""
-
-#: taextras.py:74 taextras.py:244
-msgid "distance"
-msgstr ""
-
-#: taextras.py:75 taextras.py:241
-msgid "tilt"
-msgstr ""
-
-#: taextras.py:76
-msgid "magnetic induction"
-msgstr ""
-
-#: taextras.py:77
-msgid "vibration"
-msgstr ""
-
-#: taextras.py:78
-msgid "Butia Robot"
-msgstr ""
-
-#: taextras.py:79
-msgid "delay Butia"
-msgstr ""
-
-#: taextras.py:80
-msgid "wait for argument seconds"
-msgstr ""
-
-#. TRANS: This string is shorthand for "battery charge of Butia"
-#: taextras.py:82
-msgid "battery charge Butia"
-msgstr ""
-
-#: taextras.py:83
-msgid "returns the battery charge as a number between 0 and 255"
-msgstr ""
-
-#. TRANS: This string is shorthand for "speed of Butia"
-#: taextras.py:85
-msgid "speed Butia"
-msgstr ""
-
-#: taextras.py:86
-msgid ""
-"set the speed of the Butia motors as a value between 0 and 1023, passed by "
-"an argument"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move Butia forward"
-#: taextras.py:89
-msgid "forward Butia"
-msgstr ""
-
-#: taextras.py:90
-msgid "move the Butia robot forward"
-msgstr ""
-
-#: taextras.py:91
-msgid "move the Butia robot forward a predefined distance"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move Butia backward"
-#: taextras.py:93
-msgid "backward Butia"
-msgstr ""
-
-#: taextras.py:94
-msgid "move the Butia robot backward"
-msgstr ""
-
-#: taextras.py:95
-msgid "move the Butia robot backward a predefined distance"
-msgstr ""
-
-#. TRANS: This string is shorthand for "turn Butia left"
-#: taextras.py:97
-msgid "left Butia"
-msgstr ""
-
-#: taextras.py:98
-msgid "turn the Butia robot at left"
-msgstr ""
-
-#. TRANS: This string is shorthand for "turn Butia right"
-#: taextras.py:100
-msgid "right Butia"
-msgstr ""
-
-#: taextras.py:101
-msgid "turn the Butia robot at right"
-msgstr ""
-
-#: taextras.py:102
-msgid "turn Butia"
-msgstr ""
-
-#: taextras.py:103
-msgid "turn the Butia robot x degrees"
-msgstr ""
-
-#: taextras.py:104
-msgid "stop Butia"
-msgstr ""
-
-#: taextras.py:105
-msgid "stop the Butia robot"
-msgstr ""
-
-#: taextras.py:106
-msgid "display Butia"
-msgstr ""
-
-#. TRANS: this string must contain only ASCII characters.
-#. The len must be 32 characters/spaces.
-#: taextras.py:109
-msgid "Hello World Butia "
-msgstr ""
-
-#: taextras.py:110
-msgid "print text in Butia robot 32-character ASCII display"
-msgstr ""
-
-#: taextras.py:111
-msgid "Butia"
-msgstr ""
-
-#: taextras.py:115
-msgid "The camera was not found."
-msgstr ""
-
-#: taextras.py:116
-msgid "Error on the initialization of the camera."
-msgstr ""
-
-#: taextras.py:117
-msgid "FollowMe"
-msgstr ""
-
-#: taextras.py:118
-msgid "follow a RGB color"
-msgstr ""
-
-#: taextras.py:119
-msgid "set a threshold for a RGB color"
-msgstr ""
-
-#: taextras.py:120
-msgid "follow a turtle color"
-msgstr ""
-
-#: taextras.py:121
-msgid "set the minimal number of pixels to follow"
-msgstr ""
-
-#: taextras.py:122
-msgid "calibrate"
-msgstr ""
-
-#: taextras.py:123
-msgid "calibrate a color to follow"
-msgstr ""
-
-#: taextras.py:124
-msgid "x position"
-msgstr ""
-
-#: taextras.py:125
-msgid "return x position"
-msgstr ""
-
-#: taextras.py:126
-msgid "y position"
-msgstr ""
-
-#: taextras.py:127
-msgid "return y position"
-msgstr ""
-
-#: taextras.py:128
-msgid "pixels"
-msgstr ""
-
-#: taextras.py:129
-msgid "return the number of pixels of the biggest blob"
-msgstr ""
-
-#: taextras.py:133
-msgid "SumBot"
-msgstr ""
-
-#: taextras.py:134
-msgid "speed SumBot"
-msgstr ""
-
-#: taextras.py:135
-msgid "submit the speed to the SumBot"
-msgstr ""
-
-#: taextras.py:136
-msgid "set the default speed for the movement commands"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move SumBot forward"
-#: taextras.py:138
-msgid "forward SumBot"
-msgstr ""
-
-#: taextras.py:139
-msgid "move SumBot forward"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move SumBot backward"
-#: taextras.py:141
-msgid "backward SumBot"
-msgstr ""
-
-#: taextras.py:142
-msgid "move SumBot backward"
-msgstr ""
-
-#: taextras.py:143
-msgid "stop SumBot"
-msgstr ""
-
-#: taextras.py:144
-msgid "stop the SumBot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "turn SumBot left"
-#: taextras.py:146
-msgid "left SumBot"
-msgstr ""
-
-#: taextras.py:147
-msgid "turn left the SumBot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move SumBot right"
-#: taextras.py:149
-msgid "right SumBot"
-msgstr ""
-
-#: taextras.py:150
-msgid "turn right the SumBot"
-msgstr ""
-
-#: taextras.py:151
-msgid "angle to center"
-msgstr ""
-
-#. TRANS: dohyo is the playing field
-#: taextras.py:153
-msgid "get the angle to the center of the dohyo"
-msgstr ""
-
-#: taextras.py:154
-msgid "angle to Enemy"
-msgstr ""
-
-#: taextras.py:155
-msgid "get the angle to the Enemy"
-msgstr ""
-
-#. TRANS: This string is shorthand for "x coordinate of SumBot"
-#: taextras.py:157
-msgid "x coor. SumBot"
-msgstr ""
-
-#: taextras.py:158
-msgid "get the x coordinate of the SumBot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "y coordinate of SumBot"
-#: taextras.py:160
-msgid "y coor. SumBot"
-msgstr ""
-
-#: taextras.py:161
-msgid "get the y coordinate of the SumBot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy"
-#: taextras.py:163
-msgid "x coor. Enemy"
-msgstr ""
-
-#: taextras.py:164
-msgid "get the x coordinate of the Enemy"
-msgstr ""
-
-#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy"
-#: taextras.py:166
-msgid "y coor. Enemy"
-msgstr ""
-
-#: taextras.py:167
-msgid "get the y coordinate of the Enemy"
-msgstr ""
-
-#. TRANS: This string is shorthand for "rotation of SumBot"
-#: taextras.py:169
-msgid "rotation SumBot"
-msgstr ""
-
-#: taextras.py:170
-msgid "get the rotation of the Sumbot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "rotation of SumBot's enemy"
-#: taextras.py:172
-msgid "rotation Enemy"
-msgstr ""
-
-#: taextras.py:173
-msgid "get the rotation of the Enemy"
-msgstr ""
-
-#: taextras.py:174
-msgid "distance to center"
-msgstr ""
-
-#. TRANS: dohyo is the playing field
-#: taextras.py:176
-msgid "get the distance to the center of the dohyo"
-msgstr ""
-
-#: taextras.py:177
-msgid "distance to Enemy"
-msgstr ""
-
-#: taextras.py:178
-msgid "get the distance to the Enemy"
-msgstr ""
-
-#: taextras.py:179
-msgid "update information"
-msgstr ""
-
-#: taextras.py:180
-msgid "update information from the server"
-msgstr ""
-
-#. TRANS: Please use similar terms to those used in the Physics Activity
-#: taextras.py:185
-msgid "Palette of physics blocks"
-msgstr ""
-
-#: taextras.py:186
-msgid "start polygon"
-msgstr ""
-
-#: taextras.py:187
-msgid "Begin defining a new polygon based on the current Turtle xy position."
-msgstr ""
-
-#: taextras.py:189
-msgid "add point"
-msgstr ""
-
-#: taextras.py:190
-msgid ""
-"Add a new point to the current polygon based on the current Turtle xy "
-"position."
-msgstr ""
-
-#: taextras.py:192
-msgid "end polygon"
-msgstr ""
-
-#: taextras.py:193
-msgid "Define a new polygon."
-msgstr ""
-
-#: taextras.py:194
-msgid "end filled polygon"
-msgstr ""
-
-#: taextras.py:195
-msgid "Not a simple polygon"
-msgstr ""
-
-#: taextras.py:196
-msgid "Define a new filled polygon."
-msgstr ""
-
-#: taextras.py:197
-msgid "triangle"
-msgstr ""
-
-#. TRANS: base of a triangle
-#: taextras.py:199
-msgid "base"
-msgstr ""
-
-#: taextras.py:201
-msgid "Add a triangle object to the project."
-msgstr ""
-
-#: taextras.py:202
-msgid "circle"
-msgstr ""
-
-#: taextras.py:203
-msgid "Add a circle object to the project."
-msgstr ""
-
-#: taextras.py:204
-msgid "rectangle"
-msgstr ""
-
-#: taextras.py:207
-msgid "Add a rectangle object to the project."
-msgstr ""
-
-#: taextras.py:208
-msgid "reset"
-msgstr ""
-
-#: taextras.py:209
-msgid "Reset the project; clear the object list."
-msgstr ""
-
-#: taextras.py:210
-msgid "motor"
-msgstr ""
-
-#: taextras.py:211
-msgid "torque"
-msgstr ""
-
-#: taextras.py:212
-msgid "speed"
-msgstr ""
-
-#: taextras.py:213
-msgid ""
-"Motor torque and speed range from 0 (off) to positive numbers; motor is "
-"placed on the most recent object created."
-msgstr ""
-
-#: taextras.py:215
-msgid "pin"
-msgstr ""
-
-#: taextras.py:216
-msgid "Pin an object down so that it cannot fall."
-msgstr ""
-
-#: taextras.py:217
-msgid "joint"
-msgstr ""
-
-#: taextras.py:220
-msgid ""
-"Join two objects together (the most recent object created and the object at "
-"point x, y)."
-msgstr ""
-
-#: taextras.py:222
-msgid "Save the project to the Journal as a Physics activity."
-msgstr ""
-
-#: taextras.py:223
-msgid "density"
-msgstr ""
-
-#: taextras.py:224
-msgid ""
-"Set the density property for objects (density can be any positive number)."
-msgstr ""
-
-#: taextras.py:226
-msgid "friction"
-msgstr ""
-
-#: taextras.py:227
-msgid ""
-"Set the friction property for objects (value from 0 to 1, where 0 turns "
-"friction off and 1 is strong friction)."
-msgstr ""
-
-#. TRANS: bounciness is restitution
-#: taextras.py:230
-msgid "bounciness"
-msgstr ""
-
-#: taextras.py:231
-msgid ""
-"Set the bounciness property for objects (a value from 0 to 1, where 0 means "
-"no bounce and 1 is very bouncy)."
-msgstr ""
-
-#: taextras.py:233
-msgid "dynamic"
-msgstr ""
-
-#: taextras.py:234
-msgid ""
-"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position."
-msgstr ""
-
-#. TRANS: WeDo is a robotics product of the LEGO company
-#: taextras.py:240
-msgid "Palette of WeDo blocks"
-msgstr ""
-
-#: taextras.py:242
-msgid ""
-"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == "
-"tilt left, 2 == tilt right)"
-msgstr ""
-
-#. TRANS: This string is shorthand for "output of the distance sensor"
-#: taextras.py:246
-msgid "distance sensor output"
-msgstr ""
-
-#: taextras.py:247
-msgid "Motor A"
-msgstr ""
-
-#: taextras.py:248
-msgid "returns the current value of Motor A"
-msgstr ""
-
-#: taextras.py:249
-msgid "Motor B"
-msgstr ""
-
-#: taextras.py:250
-msgid "returns the current value of Motor B"
-msgstr ""
-
-#: taextras.py:251
-msgid "set the value for Motor A"
-msgstr ""
-
-#: taextras.py:252
-msgid "set the value for Motor B"
-msgstr ""
-
-#. TRANS: Lego NXT is a robotics product of the LEGO company
-#: taextras.py:257
-msgid "Palette of LEGO NXT blocks"
-msgstr ""
-
-#: taextras.py:258
-msgid "touch"
-msgstr ""
-
-#: taextras.py:259
-msgid "ultrasonic"
-msgstr ""
-
-#: taextras.py:261
-msgid "light"
-msgstr ""
-
-#: taextras.py:262
-msgid "PORT A"
-msgstr ""
-
-#: taextras.py:263
-msgid "PORT B"
-msgstr ""
-
-#: taextras.py:264
-msgid "PORT C"
-msgstr ""
-
-#: taextras.py:265
-msgid "PORT 1"
-msgstr ""
-
-#: taextras.py:266
-msgid "PORT 2"
-msgstr ""
-
-#: taextras.py:267
-msgid "PORT 3"
-msgstr ""
-
-#: taextras.py:268
-msgid "PORT 4"
-msgstr ""
-
-#: taextras.py:269
-msgid "Please check the connection with the brick."
-msgstr ""
-
-#: taextras.py:270
-msgid "Please check the port."
-msgstr ""
-
-#: taextras.py:271
-msgid "The value of power must be between -127 to 127."
-msgstr ""
-
-#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
-msgstr ""
-
-#: taextras.py:273
-msgid "NXT found"
-msgstr ""
-
-#: taextras.py:274
-msgid "NXT not found"
-msgstr ""
-
-#: taextras.py:275
-msgid "refresh NXT"
-msgstr ""
-
-#: taextras.py:276
-msgid "Search for a connected NXT brick."
-msgstr ""
-
-#: taextras.py:277
-msgid "play tone"
-msgstr ""
-
-#: taextras.py:278
-msgid "freq"
-msgstr ""
-
-#: taextras.py:280
-msgid "Play a tone at freq for time."
-msgstr ""
-
-#: taextras.py:281
-msgid ""
-"turn motor\n"
-"rotations"
-msgstr ""
-
-#: taextras.py:282
-msgid "port"
-msgstr ""
-
-#: taextras.py:283
-msgid "power"
-msgstr ""
-
-#: taextras.py:284
-msgid "turn a motor"
-msgstr ""
-
-#: taextras.py:285
-msgid ""
-"sync motors\n"
-"steering"
-msgstr ""
-
-#: taextras.py:286
-msgid "rotations"
-msgstr ""
-
-#: taextras.py:287
-msgid "synchronize two motors"
-msgstr ""
-
-#: taextras.py:288
-msgid "PORT A of the brick"
-msgstr ""
-
-#: taextras.py:289
-msgid "PORT B of the brick"
-msgstr ""
-
-#: taextras.py:290
-msgid "PORT C of the brick"
-msgstr ""
-
-#: taextras.py:291
-msgid "start motor"
-msgstr ""
-
-#: taextras.py:292
-msgid "Run a motor forever."
-msgstr ""
-
-#: taextras.py:293
-msgid "brake motor"
-msgstr ""
-
-#: taextras.py:294
-msgid "Stop a specified motor."
-msgstr ""
-
-#: taextras.py:295
-msgid "PORT 1 of the brick"
-msgstr ""
-
-#: taextras.py:296
-msgid "color sensor"
-msgstr ""
-
-#: taextras.py:297
-msgid "light sensor"
-msgstr ""
-
-#: taextras.py:298
-msgid "PORT 2 of the brick"
-msgstr ""
-
-#: taextras.py:299
-msgid "touch sensor"
-msgstr ""
-
-#: taextras.py:300
-msgid "distance sensor"
-msgstr ""
-
-#: taextras.py:301
-msgid "PORT 3 of the brick"
-msgstr ""
-
-#: taextras.py:302
-msgid "read"
-msgstr ""
-
-#: taextras.py:303
-msgid "sensor"
-msgstr ""
-
-#: taextras.py:304
-msgid "Read sensor output."
-msgstr ""
-
-#: taextras.py:305
-msgid "PORT 4 of the brick"
-msgstr ""
-
-#: taextras.py:306
-msgid "set light"
-msgstr ""
-
-#: taextras.py:307
-msgid "Set color sensor light."
-msgstr ""
-
-#: turtleart.py:69
-msgid "usage is"
-msgstr ""
-
-#: turtleart.py:228
-msgid "No option action:"
-msgstr ""
-
-#: turtleart.py:240
-msgid "File not found"
-msgstr ""
-
-#: turtleart.py:264
-#, python-format
-msgid "Configuration directory not writable: %s"
-msgstr ""
-
-#: turtleart.py:320
-msgid "New"
-msgstr ""
-
-#: turtleart.py:321
-msgid "Open"
-msgstr ""
-
-#: turtleart.py:322
-msgid "Save"
-msgstr ""
-
-#: turtleart.py:323
-msgid "Save as"
-msgstr ""
-
-#: turtleart.py:330
-msgid "Quit"
-msgstr ""
-
-#: turtleart.py:331
-msgid "File"
-msgstr ""
-
-#: turtleart.py:338
-msgid "Rescale coordinates"
-msgstr ""
-
-#: turtleart.py:344
-msgid "Reset block size"
-msgstr ""
-
-#: turtleart.py:358
-msgid "Show/hide blocks"
-msgstr ""
-
-#: turtleart.py:360
-msgid "Tools"
-msgstr ""
-
-#: turtleart.py:367
-msgid "Stop"
-msgstr ""
-
-#: turtleart.py:368
-msgid "Turtle"
-msgstr ""
-
-#: turtleart.py:398
-msgid "You have unsaved work. Would you like to save before quitting?"
-msgstr ""
-
-#: turtleart.py:399
-msgid "Save project?"
-msgstr ""
-
-#~ msgid " "
-#~ msgstr " "
diff --git a/po/pl.po b/po/pl.po
index b4c14d0..6ae463f 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
-"PO-Revision-Date: 2012-02-17 12:26+0200\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
+"PO-Revision-Date: 2012-03-26 16:54+0200\n"
"Last-Translator: Marcin <ulinski.marcin@gmail.com>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
"Language: pl\n"
@@ -19,8 +19,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Żółwik"
@@ -53,7 +53,7 @@ msgid "clears the screen and reset the turtle"
msgstr "czyści ekran i ustawienia żółwia"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "w lewo"
@@ -62,7 +62,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "przekręca żółwia odwrotnie do ruchu wskazówe zegara o podany kąt"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "w prawo"
@@ -113,8 +113,8 @@ msgstr "ustaw kierunek"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "ustawia kierunek żółwia w stopniach (0 kieruje żółwia do góry ekranu)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "wsp. x"
@@ -126,8 +126,8 @@ msgstr ""
"przechowuje bieżącą współrzędą x żółwia (może być użyty w miejscu klocka z "
"liczbą)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "wsp. y"
@@ -139,8 +139,8 @@ msgstr ""
"przechowuje bieżącą współrzędną y żółwia (może być użyte w miejscu klocka z "
"liczbą)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "kierunek"
@@ -586,17 +586,17 @@ msgstr "przechowuje wartość liczbową w Zmiennej 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "tekst"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "wartość tekstowa"
@@ -632,7 +632,7 @@ msgstr "zmienna nazwana (wartość liczbowa)"
msgid "store in"
msgstr "przechowaj w"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "wartość"
@@ -709,12 +709,12 @@ msgstr "przesuń wszystkie klocki do kosza"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Tytuł"
@@ -734,11 +734,11 @@ msgstr "nie lubi"
msgid "as input"
msgstr "jako wejście"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "wyświetla kolejny przybornik"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "zmienia orientację przybornika klocków"
@@ -751,184 +751,184 @@ msgid "Save..."
msgstr "Zapisz..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "kliknij aby otworzyć"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "orientacja"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "następny"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "obraz"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "prezentacja"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "stopklatka"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr "Wyłącz pomoc przy najechaniu myszką"
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr "Włącz pomoc przy najechaniu myszką"
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Pokaż przybornik"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Schowaj przybornik"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Pokaż klocki"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Schowaj klocki"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Przeskaluj współrzędne w dół"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Przeskaluj współrzędne w górę"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Edytuje"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Widok"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Pomoc"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Projekt"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr "Zapisz/Załaduj"
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Kopiuj"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Wklej"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Pełen ekran"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "współrzędne kartezjańskie"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Współrzędne biegunowe"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Współrzędne metryczne"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Powiększ klocki"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Zmniejsz klocki"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Załaduj przykład"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Aby uzyskać pomoc przesuń kursor nad pomarańczowy przybornik."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Zapisz jako obraz"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "zapisz jako HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Zapisz jako Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Zapisz stopklatkę"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr "Załaduj projekt"
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "Ładuj blok Pythona"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Wyczyść"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Uruchom"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Krok"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Śledź"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Zatrzymaj żółwia"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1040,7 +1040,7 @@ msgstr "Wgranie pliku nie powiodło się!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "Przybornik klocków z czujnikami"
@@ -1076,7 +1076,7 @@ msgstr "głośność wejścia mikrofonowego"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "wysokość tonu"
@@ -1176,256 +1176,256 @@ msgstr ""
msgid "Palette of media objects"
msgstr "Paleta obiektów multimedialnych"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "dziennik"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
-msgstr "Obiekt z dziennika Sugar"
+msgstr "Obiekt z dziennika Bajtek.edu.pl"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "audio"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
-msgstr "obiekt audio Dziennika Sugar"
+msgstr "obiekt audio Dziennika Bajtek.edu.pl"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "wideo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
-msgstr "obiekt wideo Dziennika Sugar"
+msgstr "obiekt wideo Dziennika Bajtek.edu.pl"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "opis"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
-msgstr "pole opisowe Dziennika Sugar"
+msgstr "pole opisowe Dziennika Bajtek.edu.pl"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "pokaż"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "wypisuje tekst lub pokazuje multimedia z Dziennika"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "pokaż wyrównane"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "ustaw skalę"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "ustawia skalę (mediów)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "zapisz obrazek"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "nazwa obrazka"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
-msgstr "zapisuje obraz do Dziennika Sugar"
+msgstr "zapisuje obraz do Dziennika Bajtek.edu.pl"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "zapisz SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
-msgstr "zapisuje grafikę żółwia jako plik SVG w Dzienniku Sugar"
+msgstr "zapisuje grafikę żółwia jako plik SVG w Dzienniku Bajtek.edu.pl"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "skala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "przechowuje bieżącą wartość skali"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "czeka na media"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "poczekaj na zakończenie bieżącego audio lub video"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "mówić"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr "cześć"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr "mówi tekst"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr "fala sinusoidalna"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr "czas trwania"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
"gra falę sinusoidalną o częstotliwości, amplitudzie i trwaniu ( w sekundach)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr "guzik w dół"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr "zwraca 1 jeśli wciśnięty zostaje przycisk myszy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr "myszka x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr "zwraca współrzędną x myszki"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr "myszka y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr "zwraca współrzędną y myszki"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "odczytaj klawiaturę"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "odczytuje klawiaturę (wynik zapisywany jest w klocku klawiatury)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "klawiatura"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "przechowuje wynik działania klocka odczytu klawiatury"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "odczytaj piksle"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "Kolor RGB pod żółwiem jest odesłany do stosu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "żółw widzi"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "zwraca kolor jaki \"widzi\" żółw"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "czas"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "upływ czasu (w sekundach) od rozpoczęcia programu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Przybornik z dodatkowymi opcjami"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "na stos"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "odkłada wartość na stos (FILO, first-in-last-out)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "pokaż stos"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "pokazuje wartości ze stosu ( FILO, first-in last-out)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "opróżnij stos"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "opróżnia stos (FILO, first-in-last-out)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "ze stosu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "zdejmuje wartość ze stosu (FILO, first-in last-out)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr "opróżnić stos?"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr "zwraca Prawda, gdy stos jest pusty"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "komentarz"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "wstawia komentarz w twoim kodzie"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "pisz"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "wypisuje wartość w klocku stanu na dole ekranu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1433,7 +1433,7 @@ msgstr ""
"klocek programowalny: uzywany do dodawania zaawansowanych równań "
"matematycznych z jedną zmienną, np. sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1441,7 +1441,7 @@ msgstr ""
"klocek programowalny: używany aby dodać równania matematyczne wielu "
"zmiennych np. sqrt(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1449,221 +1449,224 @@ msgstr ""
"klocek programowalny: używany do dodawania równań matematycznych wielu "
"zmiennych, np. sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "blok Pythona"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "uruchom kod znaleziony w module tamyblock.py znalezionym w Dzienniku"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Kartezjańskie"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "wyświetla współrzędne kartezjańskie"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "biegun"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "wyświetla współrzędne biegunowe"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "żółw"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "wybiera którym żółwiem kierować"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "skorupa żółwia"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "ustawia własną 'skorupę' żółwia"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "góra"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "szczyt zwiniętego stosu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "dół"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "spód zwijalnego stosu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr "zwinięty stos: kliknij, aby otworzyć"
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "dolny klocek zwiniętego stosu klocków: kliknij aby otworzyć"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "szczyt stosu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "etykieta"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "wierzch zwijalnego stosu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "Przybornik szablonów prezentacji"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "schowaj schemat"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "uporządkuj ekran chowając klocki"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "pokaż schemat"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "przywraca schowane klocki"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
-msgstr "ukryj paski narzędzi Sugar"
+msgstr "ukryj paski narzędzi Bajtek.edu.pl"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "lista"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "lista wypuntkowana prezentacji"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "szablon prezentacji: lista punktów"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "szablon prezentacj: wybierz obiekt Dziennika (brak opisu)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "szablon prezentacj: wybierz obiekt Dziennika (z opisem)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "szablon prezentacji: wybierz cztery obiekty Dziennika"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "szablon prezentacji: wybierz dwa obiekty z Dziennika"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "współrzędna x lewej strony ekranu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "współrzędna y dołu ekranu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "szerokość"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "szerokość ramy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "współrzędna x prawej strony ekranu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "współrzędna y góry ekranu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "wysokość"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "wysokość ramy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "tytuł x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "tytuł y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "w lewo x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "góra y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "w prawo x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "dół y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "prezentacja 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "przezentacja 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "prezentacja 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "prezentacja 2x2"
@@ -1726,8 +1729,8 @@ msgstr "Paleta Guarani"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "Żółwiowa Sztuka Butia"
+msgid "TurtleBots"
+msgstr "TurtleBots"
#: taextras.py:59
msgid "adjust LED intensity between 0 and 255"
@@ -1773,7 +1776,7 @@ msgid "LED"
msgstr "LED"
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr "przycisk"
#: taextras.py:71
@@ -2234,7 +2237,7 @@ msgstr ""
"Moment obrotowy silnika i szybkość od 0 (wyłączony) do liczb dodatnich; "
"silnik znajduje się na ostatnio stworzonym obiekcie."
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr "pinezka"
@@ -2404,8 +2407,8 @@ msgid "The value of power must be between -127 to 127."
msgstr "Wartość mocy musi być między -127 a 127."
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
-msgstr "Wystąpił błąd: sprawdź wszystko i spróbuj połączyć ponownie."
+msgid "An error has occurred: check all connections and try to reconnect."
+msgstr "Wystąpił błąd: sprawdź wszystkie złącza i spróbuj połączyć ponownie."
#: taextras.py:273
msgid "NXT found"
@@ -2551,6 +2554,141 @@ msgstr "ustaw światło"
msgid "Set color sensor light."
msgstr "Ustaw światło czujnika koloru."
+#: taextras.py:308
+msgid "reset motor"
+msgstr "resetuj silnik"
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr "Resetuj licznik silnika."
+
+#: taextras.py:310
+msgid "motor position"
+msgstr "pozycja silnika"
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr "Pobierz pozycję silnika."
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr "Paleta klocków Arduino"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr "WYSOKO"
+
+#: taextras.py:318
+msgid "LOW"
+msgstr "NISKO"
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr "WEJŚCIE"
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr "WYJŚCIE"
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr "PWM"
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr "SERVO"
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr "BŁĄD: Sprawdź Arduino i numer portu."
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr "BŁĄD: Wartość musi być liczbą między 0 a 255."
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr "BŁĄD: Wartość musi być albo WYSOKO albo NISKO."
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr "BŁĄD: Tryb musi być WEJŚCIE, WYJŚCIE, PWN albo SERVO."
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr "tryb pin"
+
+#: taextras.py:330
+msgid "mode"
+msgstr "tryb"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr "Wybierz funkcję pinu (WEJŚCIE, WYJŚCIE, PWM, SERVO)."
+
+#: taextras.py:332
+msgid "analog write"
+msgstr "analogowy zapis"
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr "Zapisz analogową wartość w wybranym porcie."
+
+#: taextras.py:335
+msgid "analog read"
+msgstr "analogowy odczyt"
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+"Wczytaj wartość z analogowego portu. Wartość może być między 0 a 1023. Użyj "
+"Vref, aby ustalić napięcie. Dla USB, volt=((odczyt)*5)/1024), w "
+"przybliżeniu."
+
+#: taextras.py:338
+msgid "digital write"
+msgstr "cyfrowy zapis"
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr "Zapisz cyfrową wartość do wybranego portu."
+
+#: taextras.py:340
+msgid "digital read"
+msgstr "cyfrowy odczyt"
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr "Odczytaj wartość z cyfrowego portu."
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr "Ustaw wartość WYSOKO dla cyfrowego portu."
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr "Skonfiguruj port Arduino dla cyfrowego wejścia."
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr "Skonfiguruj port Arduino do kierowania servo."
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr "Ustaw wartość NISKO dla cyfrowego portu."
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr "Skonfiguruj port Arduino dla cyfrowego wyjścia."
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr "Skonfiguruj port Arduino dla PWM (modulacji szerokości impulsów)."
+
#: turtleart.py:69
msgid "usage is"
msgstr "użycie"
@@ -2600,30 +2738,43 @@ msgstr "Przeskaluj współrzędne"
msgid "Reset block size"
msgstr "Przywróć rozmiar klocków"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Pokaż/schowaj schemat"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Narzędzia"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Stop"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Żółw"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "Masz niezapisaną pracę. Czy chcesz ją zapisać przed zakończeniem?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "Zapisać projekt?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Pomoc"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Aby uzyskać pomoc przesuń kursor nad pomarańczowy przybornik."
+
+#~ msgid "Turtle Art Butia"
+#~ msgstr "Żółwiowa Sztuka Butia"
+
+#~ msgid "pushbutton"
+#~ msgstr "przycisk"
+
#~ msgid "brake a specified motor"
#~ msgstr "zahamuj określiony silnik"
diff --git a/po/ps.po b/po/ps.po
index 42bb632..ead1918 100644
--- a/po/ps.po
+++ b/po/ps.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-07-01 03:53-0400\n"
"Last-Translator: Abdulhadi Hairan <abdulhadi@paiwastoon.com.af>\n"
"Language-Team: Pashto <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 1.2.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "شمشتی هنر"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "کيڼ"
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "ښي"
@@ -115,8 +115,8 @@ msgstr "سرکی ټاکل"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -126,8 +126,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -137,8 +137,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "سرکی"
@@ -570,17 +570,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "متن"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -616,7 +616,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -692,12 +692,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "سرلیک"
@@ -718,11 +718,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -735,197 +735,197 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
#, fuzzy
msgid "next"
msgstr "متن"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
#, fuzzy
msgid "Show palette"
msgstr "پالیټ ښودل"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
#, fuzzy
msgid "Hide palette"
msgstr "پالیټ پټول"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
#, fuzzy
msgid "Show blocks"
msgstr "بلاکونه ښودل"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
#, fuzzy
msgid "Hide blocks"
msgstr "بلاکونه پټول"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "پروژه"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
#, fuzzy
msgid "Fullscreen"
msgstr "بشپړه پرده"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "بلاکونه ښودل"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
#, fuzzy
msgid "Save as image"
msgstr "د انځور په توګه ساتل"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
#, fuzzy
msgid "Save as HTML"
msgstr "د هټمل په توګه ساتل"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
#, fuzzy
msgid "Save as Logo"
msgstr "نښان ساتل"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
#, fuzzy
msgid "Clean"
msgstr "پاکول"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
#, fuzzy
msgid "Step"
msgstr "قدم"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
#, fuzzy
msgid "Stop turtle"
msgstr "شمشتۍ درول"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1037,7 +1037,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1073,7 +1073,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1169,492 +1169,495 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "سيوری وټاکئ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "کیليدړه"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "دیکه"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "پنډ ښودل"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "تش پنډ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "دنګون"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "تش پنډ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "چاپ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "شمشتی"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "قدم"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "بلاکونه پټول"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "بلاکونه ښودل"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "سور"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "کچه"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1718,7 +1721,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1764,7 +1767,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2219,7 +2222,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2379,7 +2382,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2522,6 +2525,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "اکر"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2572,31 +2708,35 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
#, fuzzy
msgid "Stop"
msgstr "قدم"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "شمشتی"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "پرده ډکول"
diff --git a/po/pt.po b/po/pt.po
index 3e26202..8446b49 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -7,8 +7,8 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-03-24 00:31-0400\n"
-"PO-Revision-Date: 2012-03-24 16:13+0200\n"
-"Last-Translator: Eduardo H. <hoboprimate@gmail.com>\n"
+"PO-Revision-Date: 2012-03-28 17:25+0200\n"
+"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
@@ -2628,7 +2628,7 @@ msgstr "modo"
#: taextras.py:331
msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
-msgstr "Escolhe a função do pino (INPUT, OUTPUT, PWM, SERVO)"
+msgstr "Escolhe a função do pino (INPUT, OUTPUT, PWM, SERVO)."
#: taextras.py:332
msgid "analog write"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 7962da8..2b9fc19 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-09-28 19:30+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Turtle Arte"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr "limpar a tela e inicializar a tartaruga"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "esquerda"
@@ -66,7 +66,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "virar a tartaruga no sentido anti-horário (ângulo em graus)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "direita"
@@ -122,8 +122,8 @@ msgstr "definir cabeçalho"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "definir a direção da tartaruga (0 é para a frente do topo da tela.)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "coordenada X"
@@ -135,8 +135,8 @@ msgstr ""
"prender na atual coordenada x o valor da tartaruga (pode ser usado no lugar "
"de um número de bloco)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "coordenada Y"
@@ -149,8 +149,8 @@ msgstr ""
"de um número de bloco)"
# Ou cabeçalho
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "direção"
@@ -616,17 +616,17 @@ msgstr "armazenar o valor numérico na variável 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "texto"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "valor string"
@@ -664,7 +664,7 @@ msgstr "variável nomeada (valor numérico)"
msgid "store in"
msgstr "armazenar em"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "valor"
@@ -746,12 +746,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "título"
@@ -772,11 +772,11 @@ msgstr "não gosto"
msgid "as input"
msgstr "como entrada"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -789,184 +789,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "clique para abrir"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "orientação"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "próximo"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "imagem"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "apresentação"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "instantâneo"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Mostrar paleta"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Esconder paleta"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Mostrar blocos"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Esconder blocos"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Diminuir escala das coordenadas"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Aumentar escala das coordenadas"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Editar"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Visualizar"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Ajuda"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Projeto"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Copiar"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Colar"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Tela cheia"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "coordenadas cartesianas"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "coordenadas polares"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Aumentar os blocos"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Diminuir os blocos"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Mover o cursor sobre a paleta laranja para ajuda."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Salvar como imagem"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Salvar como HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Salvar como Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Salvar estado atual"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Limpar"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Executar"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Passo"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Debug"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Parar tartaruga"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1078,7 +1078,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1114,7 +1114,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1212,216 +1212,216 @@ msgstr "operador se-então-senão usa operadores boleanos da pelata de Números"
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Objeto de mídia do Diário"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Objeto de som do Diário"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
#, fuzzy
msgid "Sugar Journal video object"
msgstr "Objeto de som do Diário"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "campo de descrição do Diário"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "mostrar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
#, fuzzy
msgid "draws text or show media from the Journal"
msgstr "desenhar texto ou exibir mídia de Jornal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "mostrar alinhado"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "configurar escala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
#, fuzzy
msgid "sets the scale of media"
msgstr "definir a escala da mídia"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "salvar imagem"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "nome da imagem"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "salvar como SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "escala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"consulta para a entrada do teclado (resultados armazenados no bloco teclado)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "teclado"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "fixa o resultado de um bloco no teclado de consulta"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
#, fuzzy
msgid "Palette of extra options"
msgstr "paleta de opções extras"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "empurrar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
#, fuzzy
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "estoca valor dentro da pilha FILO (primeiro-entra último-sai)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "mostrar acervo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
#, fuzzy
msgid "shows values in FILO (first-in last-out heap)"
msgstr "estoca valor dentro da pilha FILO (primeiro-entra último-sai)"
# KSp54N <a href="http://ntmbjiiaoekm.com/">ntmbjiiaoekm</a>, [url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], [link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
#, fuzzy
msgid "empty heap"
msgstr ""
@@ -1429,21 +1429,21 @@ msgstr ""
"[url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], "
"[link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "sacar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
#, fuzzy
msgid "pops value off FILO (first-in last-out heap)"
msgstr "estoca valor dentro da pilha FILO (primeiro-entra último-sai)"
# KSp54N <a href="http://ntmbjiiaoekm.com/">ntmbjiiaoekm</a>, [url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], [link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr ""
@@ -1451,278 +1451,281 @@ msgstr ""
"[url=http://bewqzxbwopvt.com/]bewqzxbwopvt[/url], "
"[link=http://vsvihmzobocj.com/]vsvihmzobocj[/link], http://elhuengzhnsf.com/"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "comentário"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
# Mostrar ou imprimir?
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "imprimir"
# Acho melhor usar termos como mostrar, pois imprimir pode ser confundido com imprimir em papel.
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "mostra o valor do bloco de estado na base da tela"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "executa o código encontrado no módulo tamyblock.py encontrado no Diário"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Cartesiano"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "Tartaruga"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "topo"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "base"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "topo da pilha"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "etiqueta"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
#, fuzzy
msgid "Palette of presentation templates"
msgstr "paleta de modelos de apresentação"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "esconder blocos"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
#, fuzzy
msgid "declutters canvas by hiding blocks"
msgstr "limpar a tela ocultando os blocos"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "Mostrar blocos"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
#, fuzzy
msgid "presentation template: list of bullets"
msgstr "modelo de apresentação: sete tópicos"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "modelo de apresentação: selecionar objeto do Diário (sem descrição)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "modelo de apresentação: selecionar objeto do Diário (com descrição)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "modelo de apresentação: selecionar quatro objetos do Diário"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "modelo de apresentação: selecionar dois objetos do Diário"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "xcor da esquerda da tela"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "ycor da base da tela"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "largura"
# Canvas é uma palavra difícil, depende muito do contexto em que se aplica para ficar coerente.
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "a largura da tela"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "xcor da direita da tela"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "ycor do topo da tela"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "altura"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "a altura da tela"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "título x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "título y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "base"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
#, fuzzy
msgid "presentation 1x1"
msgstr "apresentação"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
#, fuzzy
msgid "presentation 2x1"
msgstr "apresentação"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
#, fuzzy
msgid "presentation 1x2"
msgstr "apresentação"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
#, fuzzy
msgid "presentation 2x2"
msgstr "apresentação"
@@ -1788,7 +1791,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1834,7 +1837,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2289,7 +2292,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2449,7 +2452,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2593,6 +2596,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2642,30 +2778,37 @@ msgstr "Redimensionar coordenadas"
msgid "Reset block size"
msgstr "Reiniciar tamanho do bloco"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Mostrar/esconder blocos"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Ferramentas"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Parar"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Tartaruga"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Ajuda"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Mover o cursor sobre a paleta laranja para ajuda."
+
#~ msgid "Import/Export"
#~ msgstr "Importar/Exportar"
diff --git a/po/qu.po b/po/qu.po
deleted file mode 100644
index 1e54242..0000000
--- a/po/qu.po
+++ /dev/null
@@ -1,1599 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-08-03 10:07-0400\n"
-"PO-Revision-Date: 2011-02-24 04:43+0200\n"
-"Last-Translator: Chris <cjl@laptop.org>\n"
-"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
-"X-Generator: Pootle 2.0.1\n"
-
-#: activity/activity.info:2 turtleart.py:272 pysamples/grecord.py:205
-#: TurtleArt/tawindow.py:1560 TurtleArt/tawindow.py:2785
-#: TurtleArt/taexporthtml.py:127 TurtleArt/taexporthtml.py:129
-msgid "Turtle Art"
-msgstr ""
-
-#: turtleart.py:68
-msgid "usage is"
-msgstr ""
-
-#: turtleart.py:212
-msgid "No option action:"
-msgstr ""
-
-#: turtleart.py:224
-msgid "File not found"
-msgstr ""
-
-#: turtleart.py:248
-#, python-format
-msgid "Configuration directory not writable: %s"
-msgstr ""
-
-#: turtleart.py:304
-msgid "New"
-msgstr ""
-
-#: turtleart.py:305
-msgid "Open"
-msgstr ""
-
-#: turtleart.py:306
-msgid "Save"
-msgstr ""
-
-#: turtleart.py:307
-msgid "Save as"
-msgstr ""
-
-#: turtleart.py:308 TurtleArtActivity.py:538
-msgid "Save as image"
-msgstr ""
-
-#: turtleart.py:310 TurtleArtActivity.py:532
-msgid "Save as HTML"
-msgstr ""
-
-#: turtleart.py:312 TurtleArtActivity.py:535
-msgid "Save as Logo"
-msgstr ""
-
-#: turtleart.py:314
-msgid "Quit"
-msgstr ""
-
-#: turtleart.py:315
-msgid "File"
-msgstr ""
-
-#: turtleart.py:318 TurtleArtActivity.py:557
-msgid "Cartesian coordinates"
-msgstr ""
-
-#: turtleart.py:320 TurtleArtActivity.py:559
-msgid "Polar coordinates"
-msgstr ""
-
-#: turtleart.py:322
-msgid "Rescale coordinates"
-msgstr ""
-
-#: turtleart.py:324 TurtleArtActivity.py:572
-msgid "Grow blocks"
-msgstr ""
-
-#: turtleart.py:326 TurtleArtActivity.py:575
-msgid "Shrink blocks"
-msgstr ""
-
-#: turtleart.py:328
-msgid "Reset block size"
-msgstr ""
-
-#: turtleart.py:330 TurtleArtActivity.py:463 TurtleArtActivity.py:510
-msgid "View"
-msgstr ""
-
-#: turtleart.py:333 TurtleArtActivity.py:550
-msgid "Copy"
-msgstr ""
-
-#: turtleart.py:334 TurtleArtActivity.py:552
-msgid "Paste"
-msgstr ""
-
-#: turtleart.py:335 TurtleArtActivity.py:459 TurtleArtActivity.py:513
-msgid "Edit"
-msgstr ""
-
-#: turtleart.py:338 TurtleArtActivity.py:238
-msgid "Show palette"
-msgstr ""
-
-#: turtleart.py:340 TurtleArtActivity.py:244 TurtleArtActivity.py:620
-msgid "Hide palette"
-msgstr ""
-
-#: turtleart.py:342
-msgid "Show/hide blocks"
-msgstr ""
-
-#: turtleart.py:344
-msgid "Tools"
-msgstr ""
-
-#: turtleart.py:347 TurtleArtActivity.py:629
-msgid "Clean"
-msgstr ""
-
-#: turtleart.py:348 TurtleArtActivity.py:631
-msgid "Run"
-msgstr ""
-
-#: turtleart.py:349 TurtleArtActivity.py:633
-msgid "Step"
-msgstr ""
-
-#: turtleart.py:350 TurtleArtActivity.py:635
-msgid "Debug"
-msgstr ""
-
-#: turtleart.py:351
-msgid "Stop"
-msgstr ""
-
-#: turtleart.py:352
-msgid "Turtle"
-msgstr ""
-
-#: turtleart.py:382
-msgid "You have unsaved work. Would you like to save before quitting?"
-msgstr ""
-
-#: turtleart.py:383
-msgid "Save project?"
-msgstr ""
-
-#: TurtleArtActivity.py:120
-msgid "presentation"
-msgstr ""
-
-#: TurtleArtActivity.py:191
-msgid "snapshot"
-msgstr ""
-
-#: TurtleArtActivity.py:251 TurtleArtActivity.py:264
-msgid "Show blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:254 TurtleArtActivity.py:272 TurtleArtActivity.py:623
-msgid "Hide blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:392
-msgid "Rescale coordinates down"
-msgstr ""
-
-#: TurtleArtActivity.py:396 TurtleArtActivity.py:569
-msgid "Rescale coordinates up"
-msgstr ""
-
-#: TurtleArtActivity.py:470 TurtleArtActivity.py:519
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:507
-msgid "Project"
-msgstr ""
-
-#: TurtleArtActivity.py:516
-msgid "Import/Export"
-msgstr ""
-
-#: TurtleArtActivity.py:529
-msgid "Save snapshot"
-msgstr ""
-
-#: TurtleArtActivity.py:541
-msgid "Import project from the Journal"
-msgstr ""
-
-#: TurtleArtActivity.py:545
-msgid "Load Python block"
-msgstr ""
-
-#: TurtleArtActivity.py:548
-msgid "Load example"
-msgstr ""
-
-#: TurtleArtActivity.py:554
-msgid "Fullscreen"
-msgstr ""
-
-#: TurtleArtActivity.py:562
-msgid "Metric coordinates"
-msgstr ""
-
-#: TurtleArtActivity.py:565 TurtleArt/tawindow.py:2781
-#: TurtleArt/tawindow.py:2785 TurtleArt/tabasics.py:216
-msgid "xcor"
-msgstr ""
-
-#: TurtleArtActivity.py:566 TurtleArt/tawindow.py:2781
-#: TurtleArt/tawindow.py:2785 TurtleArt/tabasics.py:227
-msgid "ycor"
-msgstr ""
-
-#: TurtleArtActivity.py:566 TurtleArt/tawindow.py:2781
-#: TurtleArt/tawindow.py:2785 TurtleArt/tabasics.py:238
-msgid "heading"
-msgstr ""
-
-#: TurtleArtActivity.py:579 TurtleArtActivity.py:583
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:621
-msgid "<Ctrl>p"
-msgstr ""
-
-#: TurtleArtActivity.py:624
-msgid "<Ctrl>b"
-msgstr ""
-
-#: TurtleArtActivity.py:629
-msgid "<Ctrl>e"
-msgstr ""
-
-#: TurtleArtActivity.py:631
-msgid "<Ctrl>r"
-msgstr ""
-
-#: TurtleArtActivity.py:633
-msgid "<Ctrl>w"
-msgstr ""
-
-#: TurtleArtActivity.py:635
-msgid "<Ctrl>d"
-msgstr ""
-
-#: TurtleArtActivity.py:637
-msgid "Stop turtle"
-msgstr ""
-
-#: TurtleArtActivity.py:638
-msgid "<Ctrl>s"
-msgstr ""
-
-#: pysamples/grecord.py:205 plugins/audio_sensors/audio_sensors.py:82
-#: plugins/audio_sensors/audio_sensors.py:97
-msgid "sound"
-msgstr ""
-
-#: pysamples/grecord.py:213 TurtleArt/tabasics.py:801
-msgid "start"
-msgstr ""
-
-#: pysamples/grecord.py:215
-msgid "stop"
-msgstr ""
-
-#: pysamples/grecord.py:217
-msgid "play"
-msgstr ""
-
-#: pysamples/grecord.py:219
-msgid "save"
-msgstr ""
-
-#: pysamples/uturn.py:24
-msgid "uturn"
-msgstr ""
-
-#: pysamples/uturn.py:26
-msgid "make a uturn"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:67
-msgid "My Turtle Art session"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:115
-msgid "Enable collaboration"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:120
-msgid "Activities"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:125
-msgid "Buddies"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:128
-msgid "Share"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:129
-msgid "Configuration"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:132
-msgid "Neighborhood"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:288
-msgid "Nickname"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:290
-msgid "Account ID"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:292
-msgid "Server"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:294
-msgid "Port"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:296
-msgid "Password"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:298
-msgid "Register"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:300
-msgid "Colors"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:64
-msgid "Upload to Web"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:66
-msgid "Upload"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:83
-msgid ""
-"You must have an account at http://turtleartsite.sugarlabs.org to upload "
-"your project."
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:92
-msgid "Username:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:102
-msgid "Password:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:113
-msgid "Title:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:123
-msgid "Description:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:133
-msgid "Submit to Web"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:137
-msgid "Cancel"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:159
-msgid "Login failed"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:196
-msgid "Failed to upload!"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:58 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:269
-#: plugins/audio_sensors/audio_sensors.py:75
-msgid "Palette of sensor blocks"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:69
-#: plugins/camera_sensor/camera_sensor.py:81
-#: plugins/camera_sensor/camera_sensor.py:99
-#: plugins/camera_sensor/camera_sensor.py:111
-msgid "brightness"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:70
-#: plugins/camera_sensor/camera_sensor.py:100
-msgid "light level detected by camera"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:82
-#: plugins/camera_sensor/camera_sensor.py:112
-msgid "Average RGB color from camera is pushed to the stack"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:93
-#: plugins/camera_sensor/camera_sensor.py:124
-msgid "camera output"
-msgstr ""
-
-#: plugins/rfid/rfid.py:91 plugins/rfid/rfid.py:99
-msgid "RFID"
-msgstr ""
-
-#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100
-msgid "read value from RFID device"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:98
-#: TurtleArt/tabasics.py:707
-msgid "Palette of flow operators"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103
-msgid "while"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:104
-msgid "do-while-True operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:110
-msgid "until"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:111
-msgid "do-until-True operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:118
-msgid "Palette of media objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:124
-msgid "journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:125
-msgid "Sugar Journal media object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:135
-msgid "audio"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
-msgid "Sugar Journal audio object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:147
-msgid "video"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
-msgid "Sugar Journal video object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:159
-msgid "description"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
-msgid "Sugar Journal description field"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:170
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:171
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:179
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:192
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:207
-#: TurtleArt/tabasics.py:834 TurtleArt/tabasics.py:835
-#: TurtleArt/tabasics.py:836
-msgid "text"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
-#: TurtleArt/tabasics.py:837
-msgid "string value"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:178
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:206
-msgid "show"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
-msgid "draws text or show media from the Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:191
-msgid "show aligned"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:218
-msgid "set scale"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:222
-msgid "sets the scale of media"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:229
-msgid "save picture"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
-msgid "picture name"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
-msgid "saves a picture to the Sugar Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:240
-msgid "save SVG"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
-msgid "saves turtle graphics as an SVG file in the Sugar Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:250
-msgid "scale"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:254
-msgid "holds current scale value"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:259
-msgid "media wait"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
-msgid "wait for current video or audio to complete"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
-msgid "query keyboard"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:276
-msgid "query for keyboard input (results stored in keyboard block)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:283
-msgid "keyboard"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:287
-msgid "holds results of query-keyboard block"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
-msgid "read pixel"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:297
-msgid "RGB color under the turtle is pushed to the stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:305
-msgid "turtle sees"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:307
-msgid "returns the color that the turtle \"sees\""
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:315
-msgid "time"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:318
-msgid "elapsed time (in seconds) since program started"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:327
-msgid "Palette of extra options"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
-msgid "push"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:335
-msgid "pushes value onto FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
-msgid "show heap"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:348
-msgid "shows values in FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:358
-msgid "empty heap"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
-msgid "emptys FILO (first-in-last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371
-msgid "pop"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:375
-msgid "pops value off FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:387
-msgid "comment"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
-msgid "places a comment in your code"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
-msgid "print"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:397
-msgid "prints value in status block at bottom of the screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:405
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
-msgid "Python"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:408
-msgid ""
-"a programmable block: used to add advanced single-variable math equations, e."
-"g., sin(x)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
-msgid ""
-"a programmable block: used to add advanced multi-variable math equations, e."
-"g., sqrt(x*x+y*y)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:433
-msgid ""
-"a programmable block: used to add advanced multi-variable math equations, e."
-"g., sin(x+y+z)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:459
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
-msgid "Python block"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:446
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:461
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:476
-msgid "runs code found in the tamyblock.py module found in the Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
-msgid "Cartesian"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:491
-msgid "displays Cartesian coordinates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:497
-msgid "polar"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
-msgid "displays polar coordinates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:505
-msgid "turtle"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:508
-msgid "chooses which turtle to command"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:517
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:526
-msgid "turtle shell"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:519
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-msgid "put a custom 'shell' on the turtle"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:697
-msgid "top"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:534
-msgid "top of a collapsed stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:673
-msgid "bottom"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:541
-msgid "bottom of a collapsible stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:549
-msgid "bottom block in a collapsed stack: click to open"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:569
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
-msgid "top of stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:567
-msgid "label"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
-msgid "top of a collapsible stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:575
-#: TurtleArt/tautils.py:590
-msgid "click to open"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-msgid "Palette of presentation templates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:587
-msgid "hide blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:589
-msgid "declutters canvas by hiding blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:594
-msgid "show blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
-msgid "restores hidden blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
-msgid "full screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
-msgid "hides the Sugar toolbars"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:612
-msgid "list"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
-msgid "presentation bulleted list"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
-msgid "presentation template: list of bullets"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:630
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
-msgid "presentation template: select Journal object (no description)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776
-msgid "presentation template: select Journal object (with description)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:832
-msgid "presentation template: select four Journal objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:651
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:818
-msgid "presentation template: select two Journal objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
-#: TurtleArt/tabasics.py:154
-msgid "left"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:668
-msgid "xcor of left of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:676
-msgid "ycor of bottom of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-msgid "width"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:684
-msgid "the canvas width"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: TurtleArt/tabasics.py:165
-msgid "right"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:692
-msgid "xcor of right of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:700
-msgid "ycor of top of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:705
-msgid "height"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
-msgid "the canvas height"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
-msgid "title x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-msgid "title y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:733
-msgid "left x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
-msgid "top y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:751
-msgid "right x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
-msgid "bottom y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:788
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:802
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:816
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:830
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:844
-#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
-#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
-#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-msgid "Title"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:775
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:789
-msgid "presentation 1x1"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:803
-msgid "presentation 2x1"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
-msgid "presentation 1x2"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
-msgid "presentation 2x2"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:83
-#: plugins/audio_sensors/audio_sensors.py:98
-msgid "raw microphone input signal"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:89
-#: plugins/audio_sensors/audio_sensors.py:104
-msgid "loudness"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:90
-#: plugins/audio_sensors/audio_sensors.py:105
-msgid "microphone input volume"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:118
-#: plugins/audio_sensors/audio_sensors.py:126
-msgid "pitch"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:119
-#: plugins/audio_sensors/audio_sensors.py:127
-msgid "microphone input pitch"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:144
-#: plugins/audio_sensors/audio_sensors.py:158
-msgid "resistance"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:145
-#: plugins/audio_sensors/audio_sensors.py:159
-msgid "microphone input resistance"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:150
-#: plugins/audio_sensors/audio_sensors.py:165
-msgid "voltage"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:151
-#: plugins/audio_sensors/audio_sensors.py:166
-msgid "microphone input voltage"
-msgstr ""
-
-#: TurtleArt/tapalette.py:83
-msgid "displays next palette"
-msgstr ""
-
-#: TurtleArt/tapalette.py:84
-msgid "changes the orientation of the palette of blocks"
-msgstr ""
-
-#: TurtleArt/tawindow.py:743 TurtleArt/tawindow.py:744
-msgid "orientation"
-msgstr ""
-
-#: TurtleArt/tawindow.py:754 TurtleArt/tawindow.py:1016
-msgid "next"
-msgstr ""
-
-#: TurtleArt/tawindow.py:2877
-msgid "image"
-msgstr ""
-
-#: TurtleArt/tautils.py:173
-msgid "Load..."
-msgstr ""
-
-#: TurtleArt/tautils.py:182
-msgid "Save..."
-msgstr ""
-
-#: TurtleArt/talogo.py:417
-msgid "did not output to"
-msgstr ""
-
-#: TurtleArt/talogo.py:466
-msgid "I don't know how to"
-msgstr ""
-
-#: TurtleArt/talogo.py:512
-msgid "doesn't like"
-msgstr ""
-
-#: TurtleArt/talogo.py:512
-msgid "as input"
-msgstr ""
-
-#: TurtleArt/tabasics.py:115
-msgid "Palette of turtle commands"
-msgstr ""
-
-#: TurtleArt/tabasics.py:120
-msgid "forward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:124
-msgid "moves turtle forward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:131
-msgid "back"
-msgstr ""
-
-#: TurtleArt/tabasics.py:135
-msgid "moves turtle backward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:143
-msgid "clean"
-msgstr ""
-
-#: TurtleArt/tabasics.py:146
-msgid "clears the screen and reset the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:158
-msgid "turns turtle counterclockwise (angle in degrees)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:169
-msgid "turns turtle clockwise (angle in degrees)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "arc"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "angle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "radius"
-msgstr ""
-
-#: TurtleArt/tabasics.py:181
-msgid "moves turtle along an arc"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256
-msgid "set xy"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256
-msgid "x"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256
-msgid "y"
-msgstr ""
-
-#: TurtleArt/tabasics.py:194 TurtleArt/tabasics.py:260
-msgid ""
-"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen."
-msgstr ""
-
-#
-#: TurtleArt/tabasics.py:204
-msgid "set heading"
-msgstr "seth"
-
-#: TurtleArt/tabasics.py:208
-msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:217
-msgid ""
-"holds current x-coordinate value of the turtle (can be used in place of a "
-"number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:228
-msgid ""
-"holds current y-coordinate value of the turtle (can be used in place of a "
-"number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:239
-msgid ""
-"holds current heading value of the turtle (can be used in place of a number "
-"block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:273
-msgid "Palette of pen commands"
-msgstr ""
-
-#: TurtleArt/tabasics.py:277
-msgid "pen up"
-msgstr ""
-
-#: TurtleArt/tabasics.py:280
-msgid "Turtle will not draw when moved."
-msgstr ""
-
-#: TurtleArt/tabasics.py:286
-msgid "pen down"
-msgstr ""
-
-#: TurtleArt/tabasics.py:289
-msgid "Turtle will draw when moved."
-msgstr ""
-
-#: TurtleArt/tabasics.py:295
-msgid "set pen size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:299
-msgid "sets size of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309
-msgid "fill screen"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:394
-msgid "color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:404
-msgid "shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:313
-msgid "fills the background with (color, shade)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:322
-msgid "pen size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:323
-msgid "holds current pen size (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:334
-msgid "start fill"
-msgstr ""
-
-#: TurtleArt/tabasics.py:336
-msgid "starts filled polygon (used with end fill block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:343
-msgid "end fill"
-msgstr ""
-
-#: TurtleArt/tabasics.py:345
-msgid "completes filled polygon (used with start fill block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:355
-msgid "Palette of pen colors"
-msgstr ""
-
-#: TurtleArt/tabasics.py:359
-msgid "set color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:363
-msgid "sets color of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:371
-msgid "set shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:375
-msgid "sets shade of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:383
-msgid "set gray"
-msgstr ""
-
-#: TurtleArt/tabasics.py:386
-msgid "sets gray level of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:395
-msgid "holds current pen color (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:405
-msgid "holds current pen shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:413
-msgid "gray"
-msgstr ""
-
-#: TurtleArt/tabasics.py:414
-msgid "holds current gray level (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:434
-msgid "set text color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:437
-msgid "sets color of text drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:445
-msgid "set text size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:448
-msgid "sets size of text drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:531
-msgid "Palette of numeric operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:537
-msgid "plus"
-msgstr ""
-
-#: TurtleArt/tabasics.py:540
-msgid "adds two alphanumeric inputs"
-msgstr ""
-
-#: TurtleArt/tabasics.py:548
-msgid "minus"
-msgstr ""
-
-#: TurtleArt/tabasics.py:551
-msgid "subtracts bottom numeric input from top numeric input"
-msgstr ""
-
-#: TurtleArt/tabasics.py:562
-msgid "multiply"
-msgstr ""
-
-#: TurtleArt/tabasics.py:565
-msgid "multiplies two numeric inputs"
-msgstr ""
-
-#: TurtleArt/tabasics.py:574
-msgid "divide"
-msgstr ""
-
-#: TurtleArt/tabasics.py:577
-msgid ""
-"divides top numeric input (numerator) by bottom numeric input (denominator)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:587
-msgid "identity"
-msgstr ""
-
-#: TurtleArt/tabasics.py:589
-msgid "identity operator used for extending blocks"
-msgstr ""
-
-#: TurtleArt/tabasics.py:597 TurtleArt/tabasics.py:598
-msgid "mod"
-msgstr ""
-
-#: TurtleArt/tabasics.py:601
-msgid "modular (remainder) operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:608
-msgid "√"
-msgstr ""
-
-#: TurtleArt/tabasics.py:609
-msgid "square root"
-msgstr ""
-
-#: TurtleArt/tabasics.py:612
-msgid "calculates square root"
-msgstr ""
-
-#: TurtleArt/tabasics.py:619
-msgid "random"
-msgstr ""
-
-#: TurtleArt/tabasics.py:619
-msgid "min"
-msgstr ""
-
-#: TurtleArt/tabasics.py:619
-msgid "max"
-msgstr ""
-
-#: TurtleArt/tabasics.py:623
-msgid "returns random number between minimum (top) and maximum (bottom) values"
-msgstr ""
-
-#: TurtleArt/tabasics.py:635
-msgid "number"
-msgstr ""
-
-#: TurtleArt/tabasics.py:636
-msgid "used as numeric input in mathematic operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:643
-msgid "greater than"
-msgstr ""
-
-#: TurtleArt/tabasics.py:646
-msgid "logical greater-than operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:654
-msgid "less than"
-msgstr ""
-
-#: TurtleArt/tabasics.py:657
-msgid "logical less-than operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:665
-msgid "equal"
-msgstr ""
-
-#: TurtleArt/tabasics.py:668
-msgid "logical equal-to operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:674
-msgid "not"
-msgstr ""
-
-#: TurtleArt/tabasics.py:677
-msgid "logical NOT operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:683 TurtleArt/tabasics.py:686
-msgid "and"
-msgstr ""
-
-#: TurtleArt/tabasics.py:687
-msgid "logical AND operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:694 TurtleArt/tabasics.py:697
-msgid "or"
-msgstr ""
-
-#: TurtleArt/tabasics.py:698
-msgid "logical OR operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:712
-msgid "wait"
-msgstr ""
-
-#: TurtleArt/tabasics.py:716
-msgid "pauses program execution a specified number of seconds"
-msgstr ""
-
-#: TurtleArt/tabasics.py:723
-msgid "forever"
-msgstr ""
-
-#: TurtleArt/tabasics.py:727
-msgid "loops forever"
-msgstr ""
-
-#: TurtleArt/tabasics.py:733 TurtleArt/tabasics.py:737
-msgid "repeat"
-msgstr ""
-
-#: TurtleArt/tabasics.py:738
-msgid "loops specified number of times"
-msgstr ""
-
-#: TurtleArt/tabasics.py:744 TurtleArt/tabasics.py:756
-msgid "if"
-msgstr ""
-
-#: TurtleArt/tabasics.py:744
-msgid "then"
-msgstr ""
-
-#: TurtleArt/tabasics.py:747
-msgid "if then"
-msgstr ""
-
-#: TurtleArt/tabasics.py:749
-msgid "if-then operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: TurtleArt/tabasics.py:756
-msgid "then else"
-msgstr ""
-
-#: TurtleArt/tabasics.py:760
-msgid "if then else"
-msgstr ""
-
-#: TurtleArt/tabasics.py:761
-msgid "if-then-else operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: TurtleArt/tabasics.py:769
-msgid "horizontal space"
-msgstr ""
-
-#: TurtleArt/tabasics.py:770
-msgid "jogs stack right"
-msgstr ""
-
-#: TurtleArt/tabasics.py:777
-msgid "vertical space"
-msgstr ""
-
-#: TurtleArt/tabasics.py:778
-msgid "jogs stack down"
-msgstr ""
-
-#: TurtleArt/tabasics.py:784
-msgid "stop action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:787
-msgid "stops current action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:796
-msgid "Palette of variable blocks"
-msgstr ""
-
-#: TurtleArt/tabasics.py:804
-msgid "connects action to toolbar run buttons"
-msgstr ""
-
-#: TurtleArt/tabasics.py:812
-msgid "store in box 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:816
-msgid "stores numeric value in Variable 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:823
-msgid "store in box 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:827
-msgid "stores numeric value in Variable 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:841
-msgid "box 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:844
-msgid "Variable 1 (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:850
-msgid "box 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:853
-msgid "Variable 2 (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:860 TurtleArt/tabasics.py:870
-msgid "box"
-msgstr ""
-
-#: TurtleArt/tabasics.py:862 TurtleArt/tabasics.py:873
-msgid "my box"
-msgstr ""
-
-#: TurtleArt/tabasics.py:864
-msgid "named variable (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:870
-msgid "store in"
-msgstr ""
-
-#: TurtleArt/tabasics.py:870
-msgid "value"
-msgstr ""
-
-#: TurtleArt/tabasics.py:874
-msgid "stores numeric value in named variable"
-msgstr ""
-
-#: TurtleArt/tabasics.py:882 TurtleArt/tabasics.py:884
-#: TurtleArt/tabasics.py:908 TurtleArt/tabasics.py:911
-msgid "action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:886
-msgid "top of nameable action stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:891 TurtleArt/tabasics.py:918
-msgid "action 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:894
-msgid "top of Action 1 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:899 TurtleArt/tabasics.py:927
-msgid "action 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:902
-msgid "top of Action 2 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:912
-msgid "invokes named action stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:921
-msgid "invokes Action 1 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:930
-msgid "invokes Action 2 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:938
-msgid "trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:942
-msgid "empty trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:943
-msgid "permanently deletes items in trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:947
-msgid "restore all"
-msgstr ""
-
-#: TurtleArt/tabasics.py:948
-msgid "restore all blocks from trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:952
-msgid "clear all"
-msgstr ""
-
-#: TurtleArt/tabasics.py:953
-msgid "move all blocks to trash"
-msgstr ""
-
-#~ msgid " "
-#~ msgstr " "
diff --git a/po/quz.po b/po/quz.po
index ea978a3..d57f7da 100644
--- a/po/quz.po
+++ b/po/quz.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-11-26 08:21+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "luq'i"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "pana"
@@ -110,8 +110,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "Qillqa"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,185 +728,185 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "Jamuq"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "Wanki"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Allinchay"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Qhaway"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Yanapay"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Wakichina"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Kikinchay"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "K'askachiy"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Hunt'asqa pantalla"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
#, fuzzy
msgid "Step"
msgstr "Sayachiy"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1017,7 +1017,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1053,7 +1053,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1149,488 +1149,491 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "Uyarina"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "Qhawarina"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "imamanta"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "Rikuchiy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "Rimay"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "Sayachiy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "Sakhaynin"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "Sayaynin"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "lluq'i x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "pana x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1693,7 +1696,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1739,7 +1742,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2194,7 +2197,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr "Tisi"
@@ -2355,7 +2358,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2499,6 +2502,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2548,29 +2683,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Llamk'anakuna"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Sayachiy"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Yanapay"
+
#~ msgid "click"
#~ msgstr "klik"
diff --git a/po/ro.po b/po/ro.po
index ad3bcce..75c34f7 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:50+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -53,7 +53,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -62,7 +62,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -112,8 +112,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -123,8 +123,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -134,8 +134,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -565,17 +565,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -611,7 +611,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -687,12 +687,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -712,11 +712,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -729,184 +729,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1016,7 +1016,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1052,7 +1052,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1148,487 +1148,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1691,7 +1694,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1737,7 +1740,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2192,7 +2195,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2351,7 +2354,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2494,6 +2497,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2543,29 +2678,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/ru.po b/po/ru.po
index e5c0d54..d9c7909 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-09-28 19:54+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Черепашка"
@@ -53,7 +53,7 @@ msgid "clears the screen and reset the turtle"
msgstr "очищает экран и возвращает черепашку"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "влево"
@@ -62,7 +62,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "поворачивает черепашку по часовой стрелке (угол в градусах)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "вправо"
@@ -112,8 +112,8 @@ msgstr "направление"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "x текущ."
@@ -125,8 +125,8 @@ msgstr ""
"заблокировать текущую коорд. Х черепахи (может использоваться в числовых "
"блоках)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "y текущ."
@@ -138,8 +138,8 @@ msgstr ""
"заблокировать текущую коорд. У черепахи (может использоваться в числовых "
"блоках)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "направление"
@@ -585,17 +585,17 @@ msgstr "сохраняет числовое значение в Переменн
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "текст"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "строковое значение"
@@ -631,7 +631,7 @@ msgstr "именная переменная (числовое значение)"
msgid "store in"
msgstr "записать в"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "значение"
@@ -707,12 +707,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Заголовок"
@@ -732,11 +732,11 @@ msgstr "не нравится"
msgid "as input"
msgstr "как ввод"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "отображает следующую палитру"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "изменяет ориентаци палитры блоков"
@@ -749,184 +749,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "нажмите для открытия"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "ориентация"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "дальше"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "картинка"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "презентация"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "снимок"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "показать палитру"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "скрыть палитру"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "показать блоки"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "скрыть блоки"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Rescale координаты вниз"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Rescale координаты вверх"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Редактировать"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Показать"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Помощь"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Проект"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Копировать"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Вставить"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "На весь экран"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Декартовы координаты"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Полярные координаты"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Метрические координаты"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Увеличить блоки"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Уменьшить блоки"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Загрузить образец"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Передвиньте курсор перед оранжевой палитрой для вызова помощи"
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Сохранить как изображение"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Сохранить как HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Сохранить как Логотип"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Сохранить снимок"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Очистить"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Запустить"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Шаг"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Попробовать"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Остановить черепашку"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1038,7 +1038,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1074,7 +1074,7 @@ msgstr "уровень ввода микрофона"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "нажатие"
@@ -1175,258 +1175,258 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "журнал"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "медиа объект Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "аудио"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Аудио объект Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
#, fuzzy
msgid "Sugar Journal video object"
msgstr "Аудио объект Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Поле описания Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "показать"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "рисует текста или показывает медиа из Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "показать угол"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "установить затенение"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "устанавливает масштаб медиа"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "сохранить картинку"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "имя картинки"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "сохранить картинку в Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "сохранить SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "сохранить черепашью графику как SVG файл в Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "масштаб"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "блокирует текущее значение масштаба"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "запрос клавиатура"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"очередь для клавиатурного ввода (результаты сохраняются в блоке клавиатуры)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "клавиатура"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "блокирует результаты блока очереди клавиатуры"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "палитра экстра-опций"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "затолкнуть"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "кладёт значения в FILO (first-in last-out heap)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "показать голову"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "показывает значения FILO (first-in last-out heap)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "пустая голова"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "пустые FILO (first-in-last-out heap)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "вытолкнуть"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "показывает значение FILO (first-in last-out heap)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "пустая голова"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "комментарий"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "места комментария в вашем коде"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "печать"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "печатает значение в блоке статуса на вершине экрана"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
#, fuzzy
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
@@ -1435,7 +1435,7 @@ msgstr ""
"программируемый блок: используется для добавления дополнительных "
"математических выражений с одной переменной, к пр. син(х)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1443,7 +1443,7 @@ msgstr ""
"программируемый блок: используется для добавления дополнительных "
"математических функций с множеством переменных, к пр., корень(х*х+у*у)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
#, fuzzy
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
@@ -1452,223 +1452,226 @@ msgstr ""
"программируемый блок: используется для добавления дополнительных "
"математических выражений с множеством переменных, напр. син(х+у+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "запускает код поиска в модуле tamyblock.py из Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "Декартова"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "показывает Декартовы координаты"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "полярный"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "показывает полярные координаты"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "черепашка"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "выберете черепашку"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "вершина"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "верх свёрнутого стека"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "низ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
#, fuzzy
msgid "bottom of a collapsible stack"
msgstr "верх сворачиваемого стека"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "нижний блок сворачиваемого стека: нажмите, чтобы открыть"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "вершина стека"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "надпись"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "верх сворачиваемого стека"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "Палитра примеров презентации"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "скрыть блоки"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "очищает холст, скрывая блоки"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "показать блоки"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "восстанавлиет скрытые блоки"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "скрывает Sugar тулбар"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "представление маркированным списком"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "пример презентации: список ядра"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "пример презентации: выбирете обект Journal (без описанием)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "пример презентации: выбирете обект Journal (с описанием)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "пример презентации: выбирете четыре обекта Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "пример презентации: выбирете два обекта Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "координата Х слева от экрана"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "У-координата наверху экрана"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "ширина"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "ширина полотна"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "коодината Х справа экрана"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "коор. У на вершине экрана"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "высота"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "высота холста"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "координата Х"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "координата У"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "низ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "представление 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "представление 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "представление 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "представление 2x2"
@@ -1732,7 +1735,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1778,7 +1781,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2233,7 +2236,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2394,7 +2397,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2539,6 +2542,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "модуль"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2589,30 +2725,37 @@ msgstr "Перерисовать координаты"
msgid "Reset block size"
msgstr "Сбросить размер блоков"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Показать/скрыть блоки"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Инструменты"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Стоп"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Черепашка"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Помощь"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Передвиньте курсор перед оранжевой палитрой для вызова помощи"
+
#~ msgid "Import/Export"
#~ msgstr "Импорт/Экспорт"
diff --git a/po/sd.po b/po/sd.po
index e7568ec..2a92e1a 100644
--- a/po/sd.po
+++ b/po/sd.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:32+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/si.po b/po/si.po
index 4041185..f37b1bc 100644
--- a/po/si.po
+++ b/po/si.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2012-02-03 22:50+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "ටර්ටල් ආර්ට්"
@@ -53,7 +53,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "වම"
@@ -62,7 +62,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "දකුණ"
@@ -112,8 +112,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -123,8 +123,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -134,8 +134,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "ශීර්ෂකය"
@@ -574,17 +574,17 @@ msgstr "අංකිත අගය විචල්‍යය 2 හි ගබඩා
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "පෙළ"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "අනු ලකුණු වැල අගය"
@@ -620,7 +620,7 @@ msgstr "නම් කරන ලද විචල්‍යය (අංකිත අ
msgid "store in"
msgstr "මෙහි ගබඩා කරන්න"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "අග"
@@ -696,12 +696,12 @@ msgstr "සියළු කුට්ටි කුණු කූඩයට දම
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "තේමාව"
@@ -721,11 +721,11 @@ msgstr "කැමති නෑ"
msgid "as input"
msgstr "ආදානය ලෙද"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "ඊළඟ ඵලකය ප්‍රදර්ශනය කරයි"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -738,184 +738,184 @@ msgid "Save..."
msgstr "සුරකින්න..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "දිශානතිය"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "ඊලඟ"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "පින්තූරය"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "ඉදිරිපත් කිරීම"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "ක්ෂණික ඡායාරූපය"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "ඵලකය පෙන්වන්න"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "ඵලකය සගවන්න"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "කොටස් පෙන්වන්න"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "කොටස් සගවන්න"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "ඛණ්ඩාංක පහළට නැවත පරිමාණනය කරන්න"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "ඛණ්ඩාංක ඉහළට නැවත පරිමාණනය කරන්න"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "සංස්කරනය කරන්න"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "දර්ශනය කරන්න"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "උදව්"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "ව්‍යාපෘතිය"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "පිටපත් කරන්න"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "අලවන්න"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "මුළු තිරයම"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "කාටිසියානු ඛණ්ඩාංක"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "ධ්‍රැවක ඛණ්ඩාංක"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "ප්‍රමිතික ඛණ්ඩාංක"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "කුට්ටි වවන්න"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "කුට්ටු හකුළුවන්න"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "උදාහරණය ප්‍රවේශ කරන්න"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "උදව් සඳහා කර්සරය තැඹිලි පැහැ ඵලකය මතින් ගමන් කරවන්න."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "පින්තූරයක් ලෙස සුරකින්න"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "HTML ලෙස සුරකින්න"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Logo ලෙස සුරකින්න"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "ක්ෂණික ඡායාරූපය සුරකින්න"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "Python කුට්ටිය ප්‍රවේශනය කරන්න"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "පැහැදිලි කරන්න"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "ධාවනය කරන්න"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "පියවර"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "දෝෂහරණය"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "කැස්බෑවා නවත්වන්න"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1025,7 +1025,7 @@ msgstr "උඩුගත කිරීමට අසාර්ථක විය!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1061,7 +1061,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "තාරතාව"
@@ -1159,489 +1159,492 @@ msgstr "අංක ඵලකයෙන් ද්වීමය මෙහෙයුම
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "ජර්නලය"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "ශ්‍රව්‍ය"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "දෘශ්‍ය"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "විස්තරය"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "පෙන්වන්න"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "පරිමාණය සකසන්න"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "පින්තූරය සුරකින්න"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "පින්තූර නාමය"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "SVG සුරකින්න"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "පරිමාණය"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "යතුරු පුවරුව"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "පික්සලය කියවන්න"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "කාලය"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "ඔබන්න"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "සංචිතය දක්වන්න"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "හිස් මතක කොටස"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "පොප්"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "හිස් මතක කොටස"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "මුද්‍රණය"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "කැස්බෑවා"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "ඉහළ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
#, fuzzy
msgid "bottom"
msgstr "y පහළ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "ලේබලය"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "කොටස් සගවන්න"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "කොටස් පෙන්වන්න"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "ලැයිස්තුව"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "පළල"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "උස"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "x තේමාව"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "y තේමාව"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "x වම"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "y ඉහළ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "x දකුණ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "y පහළ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "ඉදිරිපත් කිරීම 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "ඉදිරිපත් කිරීම 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "ඉදිරිපත් කිරීම 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "ඉදිරිපත් කිරීම 2x2"
@@ -1704,7 +1707,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1756,8 +1759,8 @@ msgid "LED"
msgstr "LED"
#: taextras.py:70
-msgid "pushbutton"
-msgstr "ඔබුම් බොත්තම"
+msgid "button"
+msgstr ""
#: taextras.py:71
msgid "grayscale"
@@ -2211,7 +2214,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2372,7 +2375,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2516,6 +2519,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "ඉතිරි"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "භාවිතය"
@@ -2565,30 +2701,40 @@ msgstr "ඛණ්ඩාංක ප්‍රමාණනය කරන්න"
msgid "Reset block size"
msgstr "කුට්ටි ප්‍රමාණය නැවත සකසන්න"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "කුට්ටි පෙන්වන්න/සඟවන්න"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "මෙවලම්"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "පියවර"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "ටර්ටලය"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "ඔබ සුරැකා නැති වැඩ ඇත. ඉවත් වීමට පෙර සුරැකීමට ඔබ කැමතිද?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "ව්‍යාපෘතිය සුරකින්නද?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "උදව්"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "උදව් සඳහා කර්සරය තැඹිලි පැහැ ඵලකය මතින් ගමන් කරවන්න."
+
+#~ msgid "pushbutton"
+#~ msgstr "ඔබුම් බොත්තම"
+
#~ msgid "Import/Export"
#~ msgstr "ආයාත/නිර්යාත කරන්න"
diff --git a/po/sk.po b/po/sk.po
index 1487feb..573e525 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-08-25 19:16-0400\n"
"Last-Translator: Chris Leonard <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 1.2.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,26 +2677,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/sl.po b/po/sl.po
index 22f8dd9..11db4a7 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-12-18 22:50+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -19,8 +19,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -53,7 +53,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -62,7 +62,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -112,8 +112,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -123,8 +123,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -134,8 +134,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -565,18 +565,18 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
#, fuzzy
msgid "text"
msgstr "besedilo"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -612,7 +612,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -688,12 +688,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -713,11 +713,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -730,187 +730,187 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
#, fuzzy
msgid "next"
msgstr "besedilo"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
#, fuzzy
msgid "Project"
msgstr "Projekt"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
#, fuzzy
msgid "Save as HTML"
msgstr "shrani kot HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1020,7 +1020,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1056,7 +1056,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "intonacijo"
@@ -1152,487 +1152,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1695,7 +1698,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1741,7 +1744,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2196,7 +2199,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2355,7 +2358,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2498,6 +2501,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2547,30 +2682,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid "volume"
#~ msgstr "glasnost"
diff --git a/po/sq.po b/po/sq.po
index 77f9e41..461d6c6 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-11-29 05:42+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Arti i Breshkës"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "majtas"
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "djathtas"
@@ -114,8 +114,8 @@ msgstr "vendos kreun"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -125,8 +125,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -136,8 +136,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "kreu"
@@ -570,17 +570,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "titulli"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -616,7 +616,7 @@ msgstr ""
msgid "store in"
msgstr "ruaj në"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -692,12 +692,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Titulli"
@@ -717,11 +717,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -734,188 +734,188 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
#, fuzzy
msgid "orientation"
msgstr "prezantimi"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "tjetër"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "prezantimi"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Shfaq paletën"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Fshihe paletën"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Shfaq blloqet"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Fshihi blloqet"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Modifiko"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Ndihmë"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Projekti"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Kopjo"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Ekran të plot"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "Shfaq blloqet"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Ruaje si imazh"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Ruaje si HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Ruaje si Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
#, fuzzy
msgid "Clean"
msgstr "Pastro"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Ekzekuto"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Hapi"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
#, fuzzy
msgid "Stop turtle"
msgstr "Ndalo breshkën"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1025,7 +1025,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1061,7 +1061,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1157,489 +1157,492 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "shfaq"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "vëre hijen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "shkallë"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "tastiera"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "shtyj"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "shtyp"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "ndal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "fshihni blloqet"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "shfaq blloqet"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "gjerësia"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "lartësia"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "prezantimi 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "prezantimi 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "prezantimi 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "prezantimi 2x2"
@@ -1702,7 +1705,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1748,7 +1751,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2203,7 +2206,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2363,7 +2366,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2506,6 +2509,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mes"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2555,30 +2691,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Ndal"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Ndihmë"
+
#~ msgid "Import/Export"
#~ msgstr "Import/Export"
diff --git a/po/sv.po b/po/sv.po
index b019753..a1327e0 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-26 19:50+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Sköldpaddskonst"
@@ -60,7 +60,7 @@ msgid "clears the screen and reset the turtle"
msgstr "rensa skärmen och återställ sköldpaddan"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "vänster"
@@ -70,7 +70,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "flytta sköldpaddan motsols (vinkel i grader)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "höger"
@@ -126,8 +126,8 @@ msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "Sätt sköldpaddans riktning (0 är mot skärmens topp.)"
# förkortningen kor. torde fungera för både koordinat och korrelation... Jämförde med andra språk så det motsvarar vad de översatt.
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xkor"
@@ -140,8 +140,8 @@ msgstr ""
"nummerblock)"
# se ovan
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ykor"
@@ -153,8 +153,8 @@ msgstr ""
"håller sköldpaddans nuvarande y-koordinat (kan användas istället för ett "
"nummerblock)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "riktning"
@@ -617,17 +617,17 @@ msgstr "spara tal i variabel 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "text"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "sträng"
@@ -665,7 +665,7 @@ msgstr "namngiven variabel (tal)"
msgid "store in"
msgstr "spara i"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -749,12 +749,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "titel"
@@ -775,11 +775,11 @@ msgstr "tycker inte om"
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -792,191 +792,191 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "Klicka för att öppna"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "riktning"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "nästa"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "bild"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "presentation"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
# visa palett
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Visa palett"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "dölj palett"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Visa block"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "dölj block"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Redigera"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Visa"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Hjälp"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Projekt"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Kopiera"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Klistra"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "helskärm"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Kartesiska koordinater"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Polära koordinater"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "Visa block"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "För kursorn över den orange paletten för att få hjälp."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Spara som bild"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "spara som HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Spara som Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Spara snabb-bild"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
#, fuzzy
msgid "<Ctrl>p"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "rensa"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
#, fuzzy
msgid "<Ctrl>e"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Utför"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
#, fuzzy
msgid "<Ctrl>r"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Steg"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
#, fuzzy
msgid "<Ctrl>w"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Felsök"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
#, fuzzy
msgid "<Ctrl>d"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "stoppa sköldpadda"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
#, fuzzy
msgid "<Ctrl>s"
msgstr "<Ctrl>b"
@@ -1090,7 +1090,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1126,7 +1126,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "lutning"
@@ -1229,506 +1229,509 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "dagbok"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "mediaobjekt från Sugar-Dagboken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "Ljud"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "ljudobjekt från Sugar-Dagboken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
#, fuzzy
msgid "Sugar Journal video object"
msgstr "ljudobjekt från Sugar-Dagboken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
#, fuzzy
msgid "description"
msgstr "Beskrivning:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Förklaringsfält för Sugar-Journalen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "visa"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
#, fuzzy
msgid "draws text or show media from the Journal"
msgstr "rita text eller visa media från dagboken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "ange skala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
#, fuzzy
msgid "sets the scale of media"
msgstr "Sätt skalan på mediet"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "skala"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"förfrågan för tangentbordsinmatning (resultat sparas i tangentbord blocket)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "Tangentbord"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "innehåller resultat från förfrågan-tangentbord blocket"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
#, fuzzy
msgid "Palette of extra options"
msgstr "palett med extra alternativ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "lägg till sist"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
#, fuzzy
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "för värdet till FILO (first-in-last-out) stacken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "visa stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
#, fuzzy
msgid "shows values in FILO (first-in last-out heap)"
msgstr "för värdet till FILO (first-in-last-out) stacken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "töm stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "ta bort"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
#, fuzzy
msgid "pops value off FILO (first-in last-out heap)"
msgstr "för värdet till FILO (first-in-last-out) stacken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "töm stapel"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "skriv"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "skriver ut värde i statusblock vid botten av skärmen"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "kör kod ur tamyblock.py modulen som finns i Dagboken"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
#, fuzzy
msgid "turtle"
msgstr "Sköldpadda"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "topp"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "botten"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
#, fuzzy
msgid "Palette of presentation templates"
msgstr "palett med presentationsmallar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "dölj block"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
#, fuzzy
msgid "declutters canvas by hiding blocks"
msgstr "rensa duken genom att gömma block"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
#, fuzzy
msgid "show blocks"
msgstr "Visa block"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
#, fuzzy
msgid "presentation template: list of bullets"
msgstr "presentationsmall: sju punkter"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "presentationsmall: välj Dagboksobjekt (ingen förklaring)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "presentationsmall: välj Dagboksobjekt (med förklaring)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "presentationsmall: välj fyra Dagboksobjekt"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "presentationsmall: välj två Dagboksobjekt"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "x-koordinaten för skärmens vänstra sida"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "y-koordinaten för skärmens nedre sida"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "bredd"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "dukens bredd"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "x-koordinaten för skärmens högra sida"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "y-koordinaten för skärmens övre sida"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "höjd"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "dukens höjd"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "botten"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
#, fuzzy
msgid "presentation 1x1"
msgstr "presentation"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
#, fuzzy
msgid "presentation 2x1"
msgstr "presentation"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
#, fuzzy
msgid "presentation 1x2"
msgstr "presentation"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
#, fuzzy
msgid "presentation 2x2"
msgstr "presentation"
@@ -1794,7 +1797,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1840,7 +1843,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2295,7 +2298,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2456,7 +2459,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2600,6 +2603,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "rest"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2650,31 +2786,38 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Verktyg"
-#: turtleart.py:367
+#: turtleart.py:371
#, fuzzy
msgid "Stop"
msgstr "topp"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Sköldpadda"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Hjälp"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "För kursorn över den orange paletten för att få hjälp."
+
#~ msgid "Import/Export"
#~ msgstr "Importera/Exportera"
diff --git a/po/sw.po b/po/sw.po
index abf58fe..21ce966 100644
--- a/po/sw.po
+++ b/po/sw.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-09-05 18:36+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Turtle sanaa"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "kushoto"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "haki"
@@ -110,8 +110,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "maandishi"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr "Kuokoa..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "ijayo"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "tawsira"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Hariri"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Msaada"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Nakili"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Kuweka"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "screen kamili"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "ila kama HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "ila kama Logo"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Hatua"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Kuacha turtle"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,488 +1147,491 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "shajara"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "sauti"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "video"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
#, fuzzy
msgid "description"
msgstr "Maelezo:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "baobonye"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "wakati"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "turtle"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "juu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "orodha"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "Upana"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "urefu"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1691,7 +1694,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1737,7 +1740,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2192,7 +2195,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2353,7 +2356,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2496,6 +2499,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2546,30 +2681,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Kuacha"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Turtle"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Msaada"
+
#~ msgid "full screen"
#~ msgstr "skrini nzima"
diff --git a/po/ta.po b/po/ta.po
index 34d9696..dfb79a0 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-10-27 08:14+0200\n"
"Last-Translator: Thangamani <thangam.arunx@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "ஆமைச்சித்திரம்"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr "திரையை தூய்மைப்படுத்து மற்றும் ஆமையை பாழையதாக்கு"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "இடது"
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "ஆமையை கடிகார சுழற்சியில் திரும்பியது (கோணம் டிகிரி அளவில்)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "வலது"
@@ -114,8 +114,8 @@ msgstr "தலைப்பை ஒழுங்கு செய்"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "ஆமையின் தலைப்பை வை (0 ஆனது திரையின் உச்சை நேக்குகிறது.)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -127,8 +127,8 @@ msgstr ""
"தற்ப்போது ஆமையின் x-coordinate மதிப்பைக் கொண்டுள்ளது (எண் மாறிலி தொகுதி "
"இடத்தில் பயன்படுத்தலாம்)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "வை கோ"
@@ -140,8 +140,8 @@ msgstr ""
"தற்ப்போது ஆமையின் ல-coordinate மதிப்பைக் கொண்டுள்ளது (எண் மாறிலி தொகுதி "
"இடத்தில் பயன்படுத்தலாம்)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "தலைப்பு"
@@ -586,17 +586,17 @@ msgstr "மாறிலி 2 ல் எண்ணிலக்க மதிப்
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "உரை"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "வார்த்தை மதிப்பு"
@@ -632,7 +632,7 @@ msgstr "பெயர்களின் மாறிலி(எண்மதிப
msgid "store in"
msgstr "சேமிப்புக்கலனில்"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "மதிப்பு"
@@ -708,12 +708,12 @@ msgstr "எல்லா அடைக்கிகளையும் குப்
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "தலைப்பு"
@@ -733,11 +733,11 @@ msgstr "பிடிக்காது"
msgid "as input"
msgstr "உள்ளீடாக"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "அடுத்த நிறப்பட்டையை தெறியப்படுத்து"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "நிறப்பட்டைகளின் தொகுதி ஒத்தமைந்த மாற்றங்கள்"
@@ -750,184 +750,184 @@ msgid "Save..."
msgstr "சேமி..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "திறப்பதற்கு சொடுக்கவும்"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "ஒத்தமைவு"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "அடுத்து"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "படம்"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "அளிக்கை"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "மாதிறி எடுத்தல்"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "நிறப்பட்டையை காட்டு"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "நிறப்பட்டையை மறை"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "தொகுதிகளைக்காட்டு"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "தொகுதிகளை மறை"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "கீழ் நோக்கிய இணைப்புள்ளிகளை மறுஅளவீடவும்"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "மேழ் நோக்கிய இணைப்புள்ளிகளை மறுஅளவீடவும்"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "திருத்து"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "பார்"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "உதவி"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "செயற்றிட்டம்"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "பிரதி செய்"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "ஒட்டு"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "முழுத்திரை"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "கார்டீஷியன் இணைப்புள்ளிகள்"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "போலார் இணைப்புள்ளிகள்"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "அளவியல் இணைப்புள்ளிகள்"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "தொகுதியை வளர்"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "தொகுதியை சுருக்கு"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "உதாரணத்தை ஏற்று"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "உதவி வேண்டுமானால் சுட்டியை ஆரஞ்சு நிறப்பட்டை மேல் நகர்த்தவும்"
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "படமாக சேமி"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "எச்டிஎம்எல்(HTML) ஆக சேமி"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "சிறிய படமாக சேமி"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "எடுத்த மாதிறியை சேமிக்கவும்"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "பைத்தான் அடைப்பை ஏற்று"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "சுத்தமக்கு"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "இயக்கு"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "படி"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "வலு கண்டுபிடி"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "ஆமையை நிறுத்து"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1039,7 +1039,7 @@ msgstr "எற்றம் தோழ்வியில்!"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "பட்டைகளின் உணரும் பகுதி"
@@ -1075,7 +1075,7 @@ msgstr "ஒலிவாங்கியில் உள்ளீடு சத்
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "சுருதி"
@@ -1175,262 +1175,262 @@ msgstr ""
msgid "Palette of media objects"
msgstr "ஊடக பொருட்களின் பட்டை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "சஞ்சிகை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "சுகர் சஞ்சிகை ஊடகப்பொருள்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "ஒலி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "சுகர் சஞ்சிகையின் ஒலி பொருள்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "காணொளி Video"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "சுகர் சஞ்சிகையின் ஒலி பொருள்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "விரிவாக்கம்:"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "சுகர் சஞ்சிகை விரிவாக்க புலம்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "காட்டு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "உரையை வரை (அ) சஞ்சிகையிலிருந்து உடகத்தைக் காட்டு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "ஒத்தமைவை காண்பி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "அளவீடுகளை ஒழுங்கு படுத்து"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "ஊடகத்தின் அளவை அமை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "படத்தை சேமி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "படத்தின் தலைப்பு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "சுகர் சஞ்சிகைக்கு ஒரு படத்தை சேமிக்கவும்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "SVG ஆக சேமி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "சுகர் சஞ்சிகையில் ஆமை வரைபடத்தை SVG கோப்பாக சேமித்து வைக்கவும்."
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "அளவீடு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "தற்ப்போதைய அளவீடு மதிப்பை வைத்துள்ளது"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "ஊடக தாமதம்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "தற்பொழுதுள்ள காணொளி Video/ ஒலி முடியும்வரை காத்திருக்கவும்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "விசைப்பலகை கேள்வி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
"விசைப்பலகையை உள்ளீடுக்காக கேள் (முடிவுகள் விசைப்பலகை தொகுதியில் "
"சேமிக்கப்பட்டுள்ளது)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "விசைப்பலகை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "முடிவுகள் விசைப்பலகை தொகுதியில் அடக்கப்பட்டுள்ளது"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "புள்ளியை படி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "RGB நிறமானது டர்டிலிக்கு கீழடுக்கில் தள்ளப்பட்டது"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "டர்டல் பார்க்கிறது"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "டர்டல் அது `பார்க்கிற` வண்ணத்தை திருப்பும்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "நேரம்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "நிகழ்ச்சியானது தொடங்கியதிலிருந்து முடிந்த காலம் (நொடிகளில்)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "பட்டைகளின் அதிகமான விருப்பங்கள்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "தள்ளு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
"பில்லோ(முதல்-சென்று கடைசி-வெளிவரும் அடுக்க முறை)வில் மதிப்புகள் "
"தள்ளப்படுகின்றன."
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "குவியலைக்காட்டு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
"பில்லோ(முதல்-சென்று கடைசி-வெளிவரும் அடுக்க முறை)வின் மதிப்புகளை காட்டுகிறது"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "வெற்றுக்குவியல்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "காலியான FILO(முதலில் வந்தது கடைசியில் போகும் அடுக்கி)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "வரல்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
"பில்லோ(முதல்-சென்று கடைசி-வெளிவரும் அடுக்க முறை) மதிப்பை வெளிவாங்குகிறது"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "வெற்றுக்குவியல்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "கருத்து தெறிவி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "உங்களின் குறிகளில் கருத்துக்களை இடு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "அச்சு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "திரையின் அடிப்பக்க தொகுதியில் நிலைமாறலின் மதிப்ப அச்சடிக்கப்படுகிறது"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "பைத்தன்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1438,7 +1438,7 @@ msgstr ""
"ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய தனித்த-மாறிலி கணித வாய்ப்பாடுகளை "
"சேர்க்கப்பயன்படுகிறது, எ.கா. sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1446,7 +1446,7 @@ msgstr ""
"ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய பன்-மாறிலி கணித வாய்ப்பாடுகளை "
"சேர்க்கப்பயன்படுகிறது, எ.கா. sqrt(x*x+y*y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1454,223 +1454,226 @@ msgstr ""
"ஒரு நிரலாக்கத்தொகுதி: முன்னேரிய பன்-மாறிலி கணித வாய்ப்பாடுகளை "
"சேர்க்கப்பயன்படுகிறது, எ.கா. sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "பைத்தான் அடைக்கி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
"இயக்க குறி tamyblock.py லும் படிமம் சஞ்சிகையிலிருந்தும் கண்டுபிடிக்கப்பட்டன"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "கார்டீஷியன்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "கார்டீஷியன் இணைப்புள்ளிகளை தெறியப்படுத்து"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "போலார்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "போலார் இணைப்புள்ளிகளை தெறியப்படுத்து"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "ஆமை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "தெரிவுசெய் எந்த ஆமைக்கு கட்டளையிடுவதென்று"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "டர்டல் அறை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "டர்டல் மேல் மாற்றதகுந்த `அறை` யை வை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "உச்சி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "களைந்த அடுக்கின் உச்சி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "அடிப்பகுதி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "களையும் அடுக்கின் உச்சி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
"களைந்த அடுக்கில் அடிமட்ட தொகுதி: திறக்க வேண்டுமாயின் இங்கே சொடுக்கவும்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "அடுக்கின் உச்சியில்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "சிறுதாள்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "களையும் அடுக்கின் உச்சி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "அளிக்கை மாதிரிகளின் நிறப்பட்டை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "மறைந்துள்ள தொகுதி"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "தொகுதிகளை மறைப்பதினால் சாளரத்தை வெட்டாத"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "தொகுதியைக்காட்டு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "மறைந்துள்ள தொகுதிகளைக் திரும்ப வை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "சுகர் கருவிபட்டைகளை மறை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "பட்டியல்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "அளைக்கை புள்ளி பட்டியலில்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "அளிக்கை மாதிரி: புள்ளிப்பட்டியல்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "அளிக்கை மாதிரி: சஞ்சிகை பொருளை தெரிவு செய் (விரிவாக்கமில்லாமல்)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "அளிக்கை மாதிரி: சஞ்சிகை பொருளை தெரிவு செய் (விரிவாக்கத்துடன்)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "அளிக்கை மாதிரி: நான்கு சஞ்சிகை பொருட்களை தெரிவு செய்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "அளிக்கை மாதிரி: இரண்டு சஞ்சிகை பொருட்களை தெரிவு செய்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "இடது திரையின் xcor"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "ycor அடிமட்ட திரை"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "அகலம்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "சாளர அகலம்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "வலது திரையின் xcor"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "திரையின் உச்சம் ycor"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "உயரம்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "சாளர உயரம்"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "x தலைப்பு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "y தலைப்பு"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "இடது x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "உச்சி y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "வலது x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "அடிப்க்க y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "அளிக்கை 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "அளிக்கை 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "அளிக்கை 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "அளிக்கை 2x2"
@@ -1733,8 +1736,8 @@ msgstr "Guaranies யின் தட்டு"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "Butia வின் டர்டல் கலை"
+msgid "TurtleBots"
+msgstr ""
#: taextras.py:59
#, fuzzy
@@ -1780,7 +1783,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2236,7 +2239,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2398,7 +2401,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2544,6 +2547,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "பட்டைகளின் உணரும் பகுதி"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "புதுப்பி"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "பயன்பாடு என்பது"
@@ -2593,32 +2730,42 @@ msgstr "இணைப்புள்ளிகளை மறு அளவீடு"
msgid "Reset block size"
msgstr "பட்டை அளவை மீழச்செய்"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "பிரிவுகளை காட்டு/மறை"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "கருவிகள்"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "நிறுத்து"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "ஆமை"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
"நீங்கள் வைத்திருக்கும் வேலை சேமிக்கப்படாதது. வெளியேறும் முன் சேமிக்க "
"விரும்புகிறீர்களா?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "திட்டத்தை சேமிக்கவா?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "உதவி"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "உதவி வேண்டுமானால் சுட்டியை ஆரஞ்சு நிறப்பட்டை மேல் நகர்த்தவும்"
+
+#~ msgid "Turtle Art Butia"
+#~ msgstr "Butia வின் டர்டல் கலை"
+
#~ msgid "Import/Export"
#~ msgstr "எற்றல்/இறக்கல்"
diff --git a/po/te.po b/po/te.po
index ccccda1..fd57571 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-11-27 06:04+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "టర్టిల్ కళ"
@@ -53,7 +53,7 @@ msgid "clears the screen and reset the turtle"
msgstr "తెరను శుభ్ర పరచి టర్టిల్‌ను పున:స్థాపిస్తుంది"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "ఎడమ"
@@ -62,7 +62,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "కుడి"
@@ -112,8 +112,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "x అక్షము"
@@ -123,8 +123,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "y అక్షము"
@@ -134,8 +134,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "పీఠిక"
@@ -577,17 +577,17 @@ msgstr "సంఖ్యా విలువను చరరాశి 2 లో న
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "పాఠము"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "పద బంధం విలువ"
@@ -623,7 +623,7 @@ msgstr "నామకరణం అయిన చరరాశి ( పూర్ణ
msgid "store in"
msgstr "దీనిలో దాచు"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "విలువ"
@@ -699,12 +699,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "పీఠిక"
@@ -724,11 +724,11 @@ msgstr "నచ్చని"
msgid "as input"
msgstr "ఎగుబడిలా"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "తదుపరి పలకాన్ని ప్రదర్శిస్తుంది"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -741,185 +741,185 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "తెరుచుటకు నొక్కుము"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
#, fuzzy
msgid "orientation"
msgstr "సమర్పణ"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "తర్వాత"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "ప్రతిరూపము"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "సమర్పణ"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "ఛాయా చిత్రం"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "వర్ణపలకాన్ని చూపుము"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "పలకాన్ని దాచుము"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "భాగాలను చూపుము"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "భాగాలను దాచుము"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "సరిచేయు"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "దర్శించు"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "సహాయం"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "పథకం"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "కాపీ"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "అతికించు"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "తెర మొత్తం"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "భాగాలను పెంచుము"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "భాగాలను కుంచించుము"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "ప్రతిరూపంగా దాచు"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "HTML గా దాచు"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "ముద్రికగా దాచు"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "ఛాయా చిత్రాన్ని దాచుము"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "శుభ్రపరుచు"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "నడుపు"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "మెట్టు"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "లోప నిర్మూలన"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "టర్టిల్ ని ఆపు"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1031,7 +1031,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1067,7 +1067,7 @@ msgstr "మైకు ఎగుబడి పరిమాణం"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "శృతి "
@@ -1166,494 +1166,497 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "పొద్దు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "శుగర్ పొద్దు మాధ్యమ తాత్పర్యం "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "శ్రావణ "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "శుగర్ పొద్దు శ్రావ్య తాత్పర్యం "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
#, fuzzy
msgid "Sugar Journal video object"
msgstr "శుగర్ పొద్దు శ్రావ్య తాత్పర్యం "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "శుగర్ పొద్దును వివరించే ప్రాంతం "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "చూపు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "లీనంగా చూపు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "కొలబద్దను అమర్చు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "ప్రతిరూపాన్ని దాచు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "ప్రతిరూప నామం"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "SVG గా దాచు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "కొలబద్ద "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "query మీటల పలకం "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "మీటల పలకం "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "అదనపు ఇచ్ఛాపూర్వకాల పలకం "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "నెట్టు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "కుప్పను చూపుము "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "ఖాళీ కుప్ప "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
"FILO క్రమంలో ఖాళీ చేస్తుంది (మొదట-వచ్చినది - కుప్పనుండి -చరకు -వెళుతుంది )"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "ఎగసి "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "ఖాళీ కుప్ప "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "వ్యాఖ్య "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "మీ సంకేతాలలో వ్యాఖ్యనుంచుతుంది "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "ముద్రణ "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "ధృవ "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "టర్టిల్ "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "ఏ టర్టిల్‌ను నిర్దేశించాలో ఎంచుకొంటుంది "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "పైన "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "దిగువ "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "కుప్ప పై భాగాన"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "లేబుల్ "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "భాగాలను దాచు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "భాగాలను దాచటం ద్వారా యవనికను శుబ్రపరుస్తుంది "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "భాగాలను చూపు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "దాగి ఉన్న భాగాల్ని పున:స్థాపిస్తుంది "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "శుగర్ పనిముట్ల పట్టాను దాచుతుంది "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "సమర్పణ విశేషణ సూచిక జాబితా "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
#, fuzzy
msgid "xcor of left of screen"
msgstr "తెర దిగువున y అక్షము "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "తెర దిగువున y అక్షము "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "వెడల్పు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "యవనిక వెడల్పు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
#, fuzzy
msgid "xcor of right of screen"
msgstr "తెర దిగువున y అక్షము "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
#, fuzzy
msgid "ycor of top of screen"
msgstr "తెర దిగువున y అక్షము "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "ఎత్తు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "యవనిక ఎత్తు "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "పీఠిక x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "పీఠిక y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "దిగువ "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "సమర్పణ 1x1 "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "సమర్పణ 2x1 "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "సమర్పణ 1x2 "
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "సమర్పణ 2x2 "
@@ -1718,7 +1721,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1764,7 +1767,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2219,7 +2222,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2380,7 +2383,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2524,6 +2527,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2573,30 +2708,34 @@ msgstr ""
msgid "Reset block size"
msgstr "బాగం పరిమాణాన్ని పున:స్థాపించు "
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "భాగాలను చూపుము/దాచుము "
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "పనిముట్లు "
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "నిలిపివేయి "
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "టర్టిల్ "
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "సహాయం"
+
#~ msgid "Import/Export"
#~ msgstr "ఎగుమతి/దిగుమతి"
diff --git a/po/th.po b/po/th.po
index 3d28069..95a93ea 100644
--- a/po/th.po
+++ b/po/th.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-11-23 03:34+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Turtle Art"
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr "ลบภาพและนำเต่ากลับมากลางหน้าจอ"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "ซ้าย"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "หมุนเต่าทวนเข็มนาฬิกา (องศา)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "ขวา"
@@ -110,8 +110,8 @@ msgstr "กำหนดทิศทาง"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "กำหนดทิศทางของเต่า (0 ชี้ไปทางด้านบนของหน้าจอ)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "ตำแหน่ง x"
@@ -122,8 +122,8 @@ msgid ""
msgstr ""
"คือค่าตำแหน่งแกนนอน (แกน x) ของตัวเต่า ค่านี้นำไปใช้เหมือนบล็อกตัวเลขได้"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ตำแหน่ง y"
@@ -134,8 +134,8 @@ msgid ""
msgstr ""
"คือค่าตำแหน่งแกนตั้ง (แกน y) ของตัวเต่า ค่านี้นำไปใช้เหมือนบล็อกตัวเลขได้"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "ทิศทางปัจจุบัน"
@@ -568,18 +568,18 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
#, fuzzy
msgid "text"
msgstr "ถ้ดไป"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "ค่า String"
@@ -616,7 +616,7 @@ msgstr ""
msgid "store in"
msgstr "นำไปเก็บไว้"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "ค่า"
@@ -692,12 +692,12 @@ msgstr "ย้าย Block ทั้งหมดลงถังขยะ"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
#, fuzzy
msgid "Title"
msgstr "ชื่อแทร็ก"
@@ -718,11 +718,11 @@ msgstr "ไม่เป็น"
msgid "as input"
msgstr "การนำเข้า"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -735,190 +735,190 @@ msgid "Save..."
msgstr "บันทึก..."
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "กดเปิด"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "ทิศทาง"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "ถ้ดไปถัดไป"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "รูปภาพ"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "การนำเสนอ"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "ภาพที่จับได้"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
#, fuzzy
msgid "Show blocks"
msgstr "แสดง blocks"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
#, fuzzy
msgid "Hide blocks"
msgstr "ซ่อน blocks"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "แก้ไข"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
#, fuzzy
msgid "View"
msgstr "มุมมอง"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "ช่วยเหลือ"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "โครงการ"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "คัดลอก"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "วาง"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "เต็มจอ"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
#, fuzzy
msgid "Grow blocks"
msgstr "แสดง blocks"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
#, fuzzy
msgid "Load example"
msgstr "โหลดตัวอย่าง"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "บันทึกเป็นรูปภาพ"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "บันทึกเป็น HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "บันทึกเป็นโลโก้"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "บันทึกภาพ"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "ล้าง"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "ประมวลผล"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
#, fuzzy
msgid "Step"
msgstr "หยุด"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "ดีบั๊ก"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "หยุดเต่า"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1029,7 +1029,7 @@ msgstr "อัปโหลดล้มเหลว"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "ชุดคำสั่งเซ็นเซอร์"
@@ -1065,7 +1065,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1163,492 +1163,495 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "บันทึกประจำวัน"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "เสียง"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "รูปภาพ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
#, fuzzy
msgid "description"
msgstr "คำอธิบาย"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "แสดง"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "ตั้งค่าเฉดสี"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "บันทึกรูปภาพ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "ชื่อรูปภาพ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "บันทึกรูปภาพไปที่ Sugar Journal"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "บันทึก SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "อัตราขยาย"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "แป้นพิมพ์"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "เวลา"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "ใส่เข้าไป"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "ใส่ค่าใน FILO (เป็น heap ประเภท เข้าก่อน ออกหลัง)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "แสดง heap"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "แสดงค่าใน FILO (เป็น heap ประเภท เข้าก่อน ออกหลัง)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "heap ว่าง"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "ป๊อบ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "นำค่าออกจาก FILO (เป็น heap ประเภท เข้าก่อน ออกหลัง)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "heap ว่าง"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "หมายเหตุ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "งานพิมพ์"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "ภาษาไพทอน"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
#, fuzzy
msgid "top"
msgstr "หยุด"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "ปุ่ม"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "บนสุดของ Stack"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "ซ่อน blocks"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "แสดง blocks"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "ความกว้าง"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "ความสูง"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
#, fuzzy
msgid "bottom y"
msgstr "ปุ่ม"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "งานนำเสนอ 1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "งานนำเสนอ 2x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "งานนำเสนอ 1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "งานนำเสนอ 2x2"
@@ -1711,7 +1714,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1757,7 +1760,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2213,7 +2216,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2375,7 +2378,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2519,6 +2522,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "ชุดคำสั่งเซ็นเซอร์"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "หารเอาเศษ"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2568,30 +2705,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "เครื่องมือ"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "หยุด"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "คุณยังไม่ได้บันทึกไฟล์ คุณต้องการบันทึกก่อนปิดโปรแกรมหรือไม่?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "บันทึกโครงการ?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "ช่วยเหลือ"
+
#~ msgid "Import/Export"
#~ msgstr "นำเข้า/ส่งออก"
diff --git a/po/tpi.po b/po/tpi.po
deleted file mode 100644
index 694c477..0000000
--- a/po/tpi.po
+++ /dev/null
@@ -1,2570 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
-"PO-Revision-Date: 2011-02-24 04:31+0200\n"
-"Last-Translator: Chris <cjl@laptop.org>\n"
-"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.1\n"
-
-#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
-msgid "Turtle Art"
-msgstr ""
-
-#: TurtleArt/tabasics.py:115
-msgid "Palette of turtle commands"
-msgstr ""
-
-#: TurtleArt/tabasics.py:120
-msgid "forward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:124
-msgid "moves turtle forward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:131
-msgid "back"
-msgstr ""
-
-#: TurtleArt/tabasics.py:135
-msgid "moves turtle backward"
-msgstr ""
-
-#: TurtleArt/tabasics.py:143
-msgid "clean"
-msgstr ""
-
-#: TurtleArt/tabasics.py:146
-msgid "clears the screen and reset the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
-msgid "left"
-msgstr ""
-
-#: TurtleArt/tabasics.py:158
-msgid "turns turtle counterclockwise (angle in degrees)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
-msgid "right"
-msgstr ""
-
-#: TurtleArt/tabasics.py:169
-msgid "turns turtle clockwise (angle in degrees)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "arc"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "angle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:177
-msgid "radius"
-msgstr ""
-
-#: TurtleArt/tabasics.py:181
-msgid "moves turtle along an arc"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256
-msgid "set xy"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256 taextras.py:218
-msgid "x"
-msgstr ""
-
-#: TurtleArt/tabasics.py:190 TurtleArt/tabasics.py:256 taextras.py:219
-msgid "y"
-msgstr ""
-
-#: TurtleArt/tabasics.py:194 TurtleArt/tabasics.py:260
-msgid ""
-"moves turtle to position xcor, ycor; (0, 0) is in the center of the screen."
-msgstr ""
-
-#
-#: TurtleArt/tabasics.py:204
-msgid "set heading"
-msgstr "seth"
-
-#: TurtleArt/tabasics.py:208
-msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
-msgid "xcor"
-msgstr ""
-
-#: TurtleArt/tabasics.py:217
-msgid ""
-"holds current x-coordinate value of the turtle (can be used in place of a "
-"number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
-msgid "ycor"
-msgstr ""
-
-#: TurtleArt/tabasics.py:228
-msgid ""
-"holds current y-coordinate value of the turtle (can be used in place of a "
-"number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
-msgid "heading"
-msgstr ""
-
-#: TurtleArt/tabasics.py:239
-msgid ""
-"holds current heading value of the turtle (can be used in place of a number "
-"block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:273
-msgid "Palette of pen commands"
-msgstr ""
-
-#: TurtleArt/tabasics.py:277
-msgid "pen up"
-msgstr ""
-
-#: TurtleArt/tabasics.py:280
-msgid "Turtle will not draw when moved."
-msgstr ""
-
-#: TurtleArt/tabasics.py:286
-msgid "pen down"
-msgstr ""
-
-#: TurtleArt/tabasics.py:289
-msgid "Turtle will draw when moved."
-msgstr ""
-
-#: TurtleArt/tabasics.py:295
-msgid "set pen size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:299
-msgid "sets size of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309
-msgid "fill screen"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:399 taextras.py:260
-msgid "color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:409
-msgid "shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:313
-msgid "fills the background with (color, shade)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:322
-msgid "pen size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:323
-msgid "holds current pen size (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:334
-msgid "start fill"
-msgstr ""
-
-#: TurtleArt/tabasics.py:336
-msgid "starts filled polygon (used with end fill block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:343
-msgid "end fill"
-msgstr ""
-
-#: TurtleArt/tabasics.py:345
-msgid "completes filled polygon (used with start fill block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:356 TurtleArt/tabasics.py:360
-msgid "Palette of pen colors"
-msgstr ""
-
-#: TurtleArt/tabasics.py:364
-msgid "set color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:368
-msgid "sets color of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:376
-msgid "set shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:380
-msgid "sets shade of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:388
-msgid "set gray"
-msgstr ""
-
-#: TurtleArt/tabasics.py:391
-msgid "sets gray level of the line drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:400
-msgid "holds current pen color (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:410
-msgid "holds current pen shade"
-msgstr ""
-
-#: TurtleArt/tabasics.py:418
-msgid "gray"
-msgstr ""
-
-#: TurtleArt/tabasics.py:419
-msgid "holds current gray level (can be used in place of a number block)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:425
-msgid "red"
-msgstr ""
-
-#: TurtleArt/tabasics.py:426
-msgid "orange"
-msgstr ""
-
-#: TurtleArt/tabasics.py:428
-msgid "yellow"
-msgstr ""
-
-#: TurtleArt/tabasics.py:430
-msgid "green"
-msgstr ""
-
-#: TurtleArt/tabasics.py:431
-msgid "cyan"
-msgstr ""
-
-#: TurtleArt/tabasics.py:432
-msgid "blue"
-msgstr ""
-
-#: TurtleArt/tabasics.py:433
-msgid "purple"
-msgstr ""
-
-#: TurtleArt/tabasics.py:435
-msgid "white"
-msgstr ""
-
-#: TurtleArt/tabasics.py:436
-msgid "black"
-msgstr ""
-
-#: TurtleArt/tabasics.py:442
-msgid "set text color"
-msgstr ""
-
-#: TurtleArt/tabasics.py:445
-msgid "sets color of text drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:453
-msgid "set text size"
-msgstr ""
-
-#: TurtleArt/tabasics.py:456
-msgid "sets size of text drawn by the turtle"
-msgstr ""
-
-#: TurtleArt/tabasics.py:539
-msgid "Palette of numeric operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:545
-msgid "plus"
-msgstr ""
-
-#: TurtleArt/tabasics.py:548
-msgid "adds two alphanumeric inputs"
-msgstr ""
-
-#: TurtleArt/tabasics.py:556
-msgid "minus"
-msgstr ""
-
-#: TurtleArt/tabasics.py:559
-msgid "subtracts bottom numeric input from top numeric input"
-msgstr ""
-
-#: TurtleArt/tabasics.py:570
-msgid "multiply"
-msgstr ""
-
-#: TurtleArt/tabasics.py:573
-msgid "multiplies two numeric inputs"
-msgstr ""
-
-#: TurtleArt/tabasics.py:582
-msgid "divide"
-msgstr ""
-
-#: TurtleArt/tabasics.py:585
-msgid ""
-"divides top numeric input (numerator) by bottom numeric input (denominator)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:595
-msgid "identity"
-msgstr ""
-
-#: TurtleArt/tabasics.py:597
-msgid "identity operator used for extending blocks"
-msgstr ""
-
-#: TurtleArt/tabasics.py:605 TurtleArt/tabasics.py:606
-msgid "mod"
-msgstr ""
-
-#: TurtleArt/tabasics.py:609
-msgid "modular (remainder) operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:616
-msgid "√"
-msgstr ""
-
-#: TurtleArt/tabasics.py:617
-msgid "square root"
-msgstr ""
-
-#: TurtleArt/tabasics.py:620
-msgid "calculates square root"
-msgstr ""
-
-#: TurtleArt/tabasics.py:627
-msgid "random"
-msgstr ""
-
-#: TurtleArt/tabasics.py:627
-msgid "min"
-msgstr ""
-
-#: TurtleArt/tabasics.py:627
-msgid "max"
-msgstr ""
-
-#: TurtleArt/tabasics.py:631
-msgid "returns random number between minimum (top) and maximum (bottom) values"
-msgstr ""
-
-#: TurtleArt/tabasics.py:643
-msgid "number"
-msgstr ""
-
-#: TurtleArt/tabasics.py:644
-msgid "used as numeric input in mathematic operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:651
-msgid "greater than"
-msgstr ""
-
-#: TurtleArt/tabasics.py:654
-msgid "logical greater-than operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:660
-msgid "True"
-msgstr ""
-
-#: TurtleArt/tabasics.py:666
-msgid "less than"
-msgstr ""
-
-#: TurtleArt/tabasics.py:669
-msgid "logical less-than operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:674
-msgid "False"
-msgstr ""
-
-#: TurtleArt/tabasics.py:680
-msgid "equal"
-msgstr ""
-
-#: TurtleArt/tabasics.py:683
-msgid "logical equal-to operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:689
-msgid "not"
-msgstr ""
-
-#: TurtleArt/tabasics.py:692
-msgid "logical NOT operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:698 TurtleArt/tabasics.py:701
-msgid "and"
-msgstr ""
-
-#: TurtleArt/tabasics.py:702
-msgid "logical AND operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:709 TurtleArt/tabasics.py:712
-msgid "or"
-msgstr ""
-
-#: TurtleArt/tabasics.py:713
-msgid "logical OR operator"
-msgstr ""
-
-#: TurtleArt/tabasics.py:722
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:94
-msgid "Palette of flow operators"
-msgstr ""
-
-#: TurtleArt/tabasics.py:727
-msgid "wait"
-msgstr ""
-
-#: TurtleArt/tabasics.py:731
-msgid "pauses program execution a specified number of seconds"
-msgstr ""
-
-#: TurtleArt/tabasics.py:738
-msgid "forever"
-msgstr ""
-
-#: TurtleArt/tabasics.py:742
-msgid "loops forever"
-msgstr ""
-
-#: TurtleArt/tabasics.py:748 TurtleArt/tabasics.py:752
-msgid "repeat"
-msgstr ""
-
-#: TurtleArt/tabasics.py:753
-msgid "loops specified number of times"
-msgstr ""
-
-#: TurtleArt/tabasics.py:759 TurtleArt/tabasics.py:771
-msgid "if"
-msgstr ""
-
-#: TurtleArt/tabasics.py:759
-msgid "then"
-msgstr ""
-
-#: TurtleArt/tabasics.py:762
-msgid "if then"
-msgstr ""
-
-#: TurtleArt/tabasics.py:764
-msgid "if-then operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: TurtleArt/tabasics.py:771
-msgid "then else"
-msgstr ""
-
-#: TurtleArt/tabasics.py:775
-msgid "if then else"
-msgstr ""
-
-#: TurtleArt/tabasics.py:776
-msgid "if-then-else operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: TurtleArt/tabasics.py:784
-msgid "horizontal space"
-msgstr ""
-
-#: TurtleArt/tabasics.py:785
-msgid "jogs stack right"
-msgstr ""
-
-#: TurtleArt/tabasics.py:792
-msgid "vertical space"
-msgstr ""
-
-#: TurtleArt/tabasics.py:793
-msgid "jogs stack down"
-msgstr ""
-
-#: TurtleArt/tabasics.py:799
-msgid "stop action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:802
-msgid "stops current action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:811
-msgid "Palette of variable blocks"
-msgstr ""
-
-#: TurtleArt/tabasics.py:816 pysamples/grecord.py:213
-msgid "start"
-msgstr ""
-
-#: TurtleArt/tabasics.py:819
-msgid "connects action to toolbar run buttons"
-msgstr ""
-
-#: TurtleArt/tabasics.py:827
-msgid "store in box 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:831
-msgid "stores numeric value in Variable 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:838
-msgid "store in box 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:842
-msgid "stores numeric value in Variable 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
-#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
-msgid "text"
-msgstr ""
-
-#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
-msgid "string value"
-msgstr ""
-
-#: TurtleArt/tabasics.py:856
-msgid "box 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:859
-msgid "Variable 1 (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:865
-msgid "box 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:868
-msgid "Variable 2 (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:875 TurtleArt/tabasics.py:885
-msgid "box"
-msgstr ""
-
-#: TurtleArt/tabasics.py:877 TurtleArt/tabasics.py:888
-msgid "my box"
-msgstr ""
-
-#: TurtleArt/tabasics.py:879
-msgid "named variable (numeric value)"
-msgstr ""
-
-#: TurtleArt/tabasics.py:885
-msgid "store in"
-msgstr ""
-
-#: TurtleArt/tabasics.py:885
-msgid "value"
-msgstr ""
-
-#: TurtleArt/tabasics.py:889
-msgid "stores numeric value in named variable"
-msgstr ""
-
-#: TurtleArt/tabasics.py:897 TurtleArt/tabasics.py:899
-#: TurtleArt/tabasics.py:923 TurtleArt/tabasics.py:926
-msgid "action"
-msgstr ""
-
-#: TurtleArt/tabasics.py:901
-msgid "top of nameable action stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:906 TurtleArt/tabasics.py:933
-msgid "action 1"
-msgstr ""
-
-#: TurtleArt/tabasics.py:909
-msgid "top of Action 1 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:914 TurtleArt/tabasics.py:942
-msgid "action 2"
-msgstr ""
-
-#: TurtleArt/tabasics.py:917
-msgid "top of Action 2 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:927
-msgid "invokes named action stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:936
-msgid "invokes Action 1 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:945
-msgid "invokes Action 2 stack"
-msgstr ""
-
-#: TurtleArt/tabasics.py:953
-msgid "trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:957
-msgid "empty trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:958
-msgid "permanently deletes items in trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:962
-msgid "restore all"
-msgstr ""
-
-#: TurtleArt/tabasics.py:963
-msgid "restore all blocks from trash"
-msgstr ""
-
-#: TurtleArt/tabasics.py:967
-msgid "clear all"
-msgstr ""
-
-#: TurtleArt/tabasics.py:968
-msgid "move all blocks to trash"
-msgstr ""
-
-#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
-#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
-#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
-msgid "Title"
-msgstr ""
-
-#: TurtleArt/talogo.py:465
-msgid "did not output to"
-msgstr ""
-
-#: TurtleArt/talogo.py:519
-msgid "I don't know how to"
-msgstr ""
-
-#: TurtleArt/talogo.py:566
-msgid "doesn't like"
-msgstr ""
-
-#: TurtleArt/talogo.py:566
-msgid "as input"
-msgstr ""
-
-#: TurtleArt/tapalette.py:84
-msgid "displays next palette"
-msgstr ""
-
-#: TurtleArt/tapalette.py:85
-msgid "changes the orientation of the palette of blocks"
-msgstr ""
-
-#: TurtleArt/tautils.py:177
-msgid "Load..."
-msgstr ""
-
-#: TurtleArt/tautils.py:187
-msgid "Save..."
-msgstr ""
-
-#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
-msgid "click to open"
-msgstr ""
-
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
-msgid "orientation"
-msgstr ""
-
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
-msgid "next"
-msgstr ""
-
-#: TurtleArt/tawindow.py:3146
-msgid "image"
-msgstr ""
-
-#: TurtleArtActivity.py:147
-msgid "presentation"
-msgstr ""
-
-#: TurtleArtActivity.py:223
-msgid "snapshot"
-msgstr ""
-
-#: TurtleArtActivity.py:271 turtleart.py:354
-msgid "Show palette"
-msgstr ""
-
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
-msgid "Hide palette"
-msgstr ""
-
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
-msgid "Show blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
-msgid "Hide blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:415
-msgid "Rescale coordinates down"
-msgstr ""
-
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
-msgid "Rescale coordinates up"
-msgstr ""
-
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
-msgid "Edit"
-msgstr ""
-
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
-msgid "View"
-msgstr ""
-
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
-msgid "Project"
-msgstr ""
-
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
-msgid "Save/Load"
-msgstr ""
-
-#: TurtleArtActivity.py:528 turtleart.py:349
-msgid "Copy"
-msgstr ""
-
-#: TurtleArtActivity.py:530 turtleart.py:350
-msgid "Paste"
-msgstr ""
-
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
-msgid "Fullscreen"
-msgstr ""
-
-#: TurtleArtActivity.py:534 turtleart.py:334
-msgid "Cartesian coordinates"
-msgstr ""
-
-#: TurtleArtActivity.py:536 turtleart.py:336
-msgid "Polar coordinates"
-msgstr ""
-
-#: TurtleArtActivity.py:539
-msgid "Metric coordinates"
-msgstr ""
-
-#: TurtleArtActivity.py:549 turtleart.py:340
-msgid "Grow blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:551 turtleart.py:342
-msgid "Shrink blocks"
-msgstr ""
-
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
-msgid "Load example"
-msgstr ""
-
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
-msgid "Save as image"
-msgstr ""
-
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
-msgid "Save as HTML"
-msgstr ""
-
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
-msgid "Save as Logo"
-msgstr ""
-
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
-msgid "Save snapshot"
-msgstr ""
-
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
-msgid "Load project"
-msgstr ""
-
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
-msgid "Load Python block"
-msgstr ""
-
-#: TurtleArtActivity.py:683
-msgid "<Ctrl>p"
-msgstr ""
-
-#: TurtleArtActivity.py:686
-msgid "<Ctrl>b"
-msgstr ""
-
-#: TurtleArtActivity.py:691 turtleart.py:363
-msgid "Clean"
-msgstr ""
-
-#: TurtleArtActivity.py:691
-msgid "<Ctrl>e"
-msgstr ""
-
-#: TurtleArtActivity.py:693 turtleart.py:364
-msgid "Run"
-msgstr ""
-
-#: TurtleArtActivity.py:693
-msgid "<Ctrl>r"
-msgstr ""
-
-#: TurtleArtActivity.py:695 turtleart.py:365
-msgid "Step"
-msgstr ""
-
-#: TurtleArtActivity.py:695
-msgid "<Ctrl>w"
-msgstr ""
-
-#: TurtleArtActivity.py:698 turtleart.py:366
-msgid "Debug"
-msgstr ""
-
-#: TurtleArtActivity.py:698
-msgid "<Ctrl>d"
-msgstr ""
-
-#: TurtleArtActivity.py:700
-msgid "Stop turtle"
-msgstr ""
-
-#: TurtleArtActivity.py:701
-msgid "<Ctrl>s"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:67
-msgid "My Turtle Art session"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:115
-msgid "Enable collaboration"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:120
-msgid "Activities"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:125
-msgid "Buddies"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:128
-msgid "Share"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:129
-msgid "Configuration"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:132
-msgid "Neighborhood"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:292
-msgid "Nickname"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:294
-msgid "Account ID"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:296
-msgid "Server"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:298
-msgid "Port"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:300
-msgid "Password"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:302
-msgid "Register"
-msgstr ""
-
-#: gnome_plugins/collaboration_plugin.py:304
-msgid "Colors"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:64
-msgid "Upload to Web"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:66
-msgid "Upload"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:83
-msgid ""
-"You must have an account at http://turtleartsite.sugarlabs.org to upload "
-"your project."
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:92
-msgid "Username:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:102
-msgid "Password:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:113
-msgid "Title:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:123
-msgid "Description:"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:133
-msgid "Submit to Web"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:137
-msgid "Cancel"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:159
-msgid "Login failed"
-msgstr ""
-
-#: gnome_plugins/uploader_plugin.py:196
-msgid "Failed to upload!"
-msgstr ""
-
-#: plugins/accelerometer/accelerometer.py:49
-#: plugins/audio_sensors/audio_sensors.py:75
-#: plugins/camera_sensor/camera_sensor.py:56
-#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
-msgid "Palette of sensor blocks"
-msgstr ""
-
-#: plugins/accelerometer/accelerometer.py:55
-#: plugins/accelerometer/accelerometer.py:62
-msgid "acceleration"
-msgstr ""
-
-#: plugins/accelerometer/accelerometer.py:57
-#: plugins/accelerometer/accelerometer.py:64
-msgid "push acceleration in x, y, z to heap"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:82
-#: plugins/audio_sensors/audio_sensors.py:97 pysamples/grecord.py:205
-msgid "sound"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:83
-#: plugins/audio_sensors/audio_sensors.py:98
-msgid "raw microphone input signal"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:89
-#: plugins/audio_sensors/audio_sensors.py:104
-msgid "loudness"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:90
-#: plugins/audio_sensors/audio_sensors.py:105
-msgid "microphone input volume"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:118
-#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
-msgid "pitch"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:119
-#: plugins/audio_sensors/audio_sensors.py:127
-msgid "microphone input pitch"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:147
-#: plugins/audio_sensors/audio_sensors.py:161
-#: plugins/audio_sensors/audio_sensors.py:174
-#: plugins/audio_sensors/audio_sensors.py:188
-msgid "resistance"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:148
-#: plugins/audio_sensors/audio_sensors.py:162
-#: plugins/audio_sensors/audio_sensors.py:175
-#: plugins/audio_sensors/audio_sensors.py:189
-msgid "microphone input resistance"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:153
-#: plugins/audio_sensors/audio_sensors.py:167
-#: plugins/audio_sensors/audio_sensors.py:180
-#: plugins/audio_sensors/audio_sensors.py:194
-msgid "voltage"
-msgstr ""
-
-#: plugins/audio_sensors/audio_sensors.py:154
-#: plugins/audio_sensors/audio_sensors.py:168
-#: plugins/audio_sensors/audio_sensors.py:181
-#: plugins/audio_sensors/audio_sensors.py:195
-msgid "microphone input voltage"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:67
-#: plugins/camera_sensor/camera_sensor.py:79
-#: plugins/camera_sensor/camera_sensor.py:97
-#: plugins/camera_sensor/camera_sensor.py:110
-#: plugins/light_sensor/light_sensor.py:55
-#: plugins/light_sensor/light_sensor.py:62
-msgid "brightness"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:68
-#: plugins/camera_sensor/camera_sensor.py:99
-msgid "light level detected by camera"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:80
-#: plugins/camera_sensor/camera_sensor.py:111
-msgid "Average RGB color from camera is pushed to the stack"
-msgstr ""
-
-#: plugins/camera_sensor/camera_sensor.py:91
-#: plugins/camera_sensor/camera_sensor.py:123
-msgid "camera output"
-msgstr ""
-
-#: plugins/light_sensor/light_sensor.py:57
-#: plugins/light_sensor/light_sensor.py:64
-msgid "light level detected by light sensor"
-msgstr ""
-
-#: plugins/rfid/rfid.py:91 plugins/rfid/rfid.py:99
-msgid "RFID"
-msgstr ""
-
-#: plugins/rfid/rfid.py:92 plugins/rfid/rfid.py:100
-msgid "read value from RFID device"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:99
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:102
-msgid "while"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103
-msgid "do-while-True operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:109
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:112
-msgid "until"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113
-msgid "do-until-True operator that uses boolean operators from Numbers palette"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:120
-msgid "Palette of media objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
-msgid "journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
-msgid "Sugar Journal media object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
-msgid "audio"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
-msgid "Sugar Journal audio object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
-msgid "video"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
-msgid "Sugar Journal video object"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
-msgid "description"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
-msgid "Sugar Journal description field"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
-msgid "show"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
-msgid "draws text or show media from the Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
-msgid "show aligned"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
-msgid "set scale"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
-msgid "sets the scale of media"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
-msgid "save picture"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
-msgid "picture name"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
-msgid "saves a picture to the Sugar Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
-msgid "save SVG"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
-msgid "saves turtle graphics as an SVG file in the Sugar Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
-msgid "scale"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
-msgid "holds current scale value"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
-msgid "media wait"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
-msgid "wait for current video or audio to complete"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
-msgid "speak"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
-msgid "hello"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
-msgid "speaks text"
-msgstr ""
-
-#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
-msgid "sinewave"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
-msgid "duration"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
-msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
-msgid "button down"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
-msgid "returns 1 if mouse button is pressed"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
-msgid "mouse x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
-msgid "returns mouse x coordinate"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
-msgid "mouse y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
-msgid "returns mouse y coordinate"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
-msgid "query keyboard"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
-msgid "query for keyboard input (results stored in keyboard block)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
-msgid "keyboard"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
-msgid "holds results of query-keyboard block"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
-msgid "read pixel"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
-msgid "RGB color under the turtle is pushed to the stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
-msgid "turtle sees"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
-msgid "returns the color that the turtle \"sees\""
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
-msgid "time"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
-msgid "elapsed time (in seconds) since program started"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
-msgid "Palette of extra options"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
-msgid "push"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
-msgid "pushes value onto FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
-msgid "show heap"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
-msgid "shows values in FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
-msgid "empty heap"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
-msgid "emptys FILO (first-in-last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
-msgid "pop"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
-msgid "pops value off FILO (first-in last-out heap)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
-msgid "empty heap?"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
-msgid "returns True if heap is empty"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
-msgid "comment"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
-msgid "places a comment in your code"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
-msgid "print"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
-msgid "prints value in status block at bottom of the screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
-msgid "Python"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
-msgid ""
-"a programmable block: used to add advanced single-variable math equations, e."
-"g., sin(x)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
-msgid ""
-"a programmable block: used to add advanced multi-variable math equations, e."
-"g., sqrt(x*x+y*y)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
-msgid ""
-"a programmable block: used to add advanced multi-variable math equations, e."
-"g., sin(x+y+z)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
-msgid "Python block"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
-msgid "runs code found in the tamyblock.py module found in the Journal"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
-msgid "Cartesian"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
-msgid "displays Cartesian coordinates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
-msgid "polar"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
-msgid "displays polar coordinates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
-msgid "turtle"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
-msgid "chooses which turtle to command"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
-msgid "turtle shell"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
-msgid "put a custom 'shell' on the turtle"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
-msgid "top"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
-msgid "top of a collapsed stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
-msgid "bottom"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
-msgid "bottom of a collapsible stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
-msgid "bottom block in a collapsed stack: click to open"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
-msgid "top of stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
-msgid "label"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
-msgid "top of a collapsible stack"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
-msgid "Palette of presentation templates"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
-msgid "hide blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
-msgid "declutters canvas by hiding blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
-msgid "show blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
-msgid "restores hidden blocks"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
-msgid "hides the Sugar toolbars"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
-msgid "list"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
-msgid "presentation bulleted list"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
-msgid "presentation template: list of bullets"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
-msgid "presentation template: select Journal object (no description)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
-msgid "presentation template: select Journal object (with description)"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
-msgid "presentation template: select four Journal objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
-msgid "presentation template: select two Journal objects"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
-msgid "xcor of left of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
-msgid "ycor of bottom of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
-msgid "width"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
-msgid "the canvas width"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
-msgid "xcor of right of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
-msgid "ycor of top of screen"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
-#: taextras.py:206
-msgid "height"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
-msgid "the canvas height"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
-msgid "title x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
-msgid "title y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
-msgid "left x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
-msgid "top y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
-msgid "right x"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
-msgid "bottom y"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
-msgid "presentation 1x1"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
-msgid "presentation 2x1"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
-msgid "presentation 1x2"
-msgstr ""
-
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
-msgid "presentation 2x2"
-msgstr ""
-
-#: pysamples/grecord.py:215
-msgid "stop"
-msgstr ""
-
-#: pysamples/grecord.py:217
-msgid "play"
-msgstr ""
-
-#: pysamples/grecord.py:219
-msgid "save"
-msgstr ""
-
-#: pysamples/uturn.py:24
-msgid "uturn"
-msgstr ""
-
-#: pysamples/uturn.py:26
-msgid "make a uturn"
-msgstr ""
-
-#: taextras.py:36
-msgid "Turtle Art Mini"
-msgstr ""
-
-#: taextras.py:40
-msgid "Turtle Confusion"
-msgstr ""
-
-#: taextras.py:41
-msgid "Select a challenge"
-msgstr ""
-
-#: taextras.py:47
-msgid "Palette of Mexican pesos"
-msgstr ""
-
-#: taextras.py:48
-msgid "Palette of Colombian pesos"
-msgstr ""
-
-#: taextras.py:49
-msgid "Palette of Rwandan francs"
-msgstr ""
-
-#: taextras.py:50
-msgid "Palette of US currencies"
-msgstr ""
-
-#: taextras.py:51
-msgid "Palette of Australian currencies"
-msgstr ""
-
-#: taextras.py:52
-msgid "Palette of Guaranies"
-msgstr ""
-
-#. TRANS: Butia is the Arduino Robot Project from Uruguay
-#. (http://www.fing.edu.uy/inco/proyectos/butia/)
-#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr ""
-
-#: taextras.py:59
-msgid "adjust LED intensity between 0 and 255"
-msgstr ""
-
-#: taextras.py:60
-msgid "returns the object gray level as a number between 0 and 1023"
-msgstr ""
-
-#: taextras.py:61
-msgid "returns 1 when the button is press and 0 otherwise"
-msgstr ""
-
-#: taextras.py:62
-msgid "returns the ambient light level as a number between 0 and 1023"
-msgstr ""
-
-#: taextras.py:63
-msgid "returns the ambient temperature as a number between 0 and 255"
-msgstr ""
-
-#: taextras.py:64
-msgid ""
-"returns the distance from the object in front of the sensor as a number "
-"between 0 and 255"
-msgstr ""
-
-#: taextras.py:66
-msgid "returns 0 or 1 depending on the sensor inclination"
-msgstr ""
-
-#: taextras.py:67
-msgid "returns 1 when the sensors detects a magnetic field, 0 otherwise"
-msgstr ""
-
-#: taextras.py:68
-msgid "switches from 0 to 1, the frequency depends on the vibration"
-msgstr ""
-
-#: taextras.py:69
-msgid "LED"
-msgstr ""
-
-#: taextras.py:70
-msgid "pushbutton"
-msgstr ""
-
-#: taextras.py:71
-msgid "grayscale"
-msgstr ""
-
-#: taextras.py:72
-msgid "ambient light"
-msgstr ""
-
-#: taextras.py:73
-msgid "temperature"
-msgstr ""
-
-#: taextras.py:74 taextras.py:244
-msgid "distance"
-msgstr ""
-
-#: taextras.py:75 taextras.py:241
-msgid "tilt"
-msgstr ""
-
-#: taextras.py:76
-msgid "magnetic induction"
-msgstr ""
-
-#: taextras.py:77
-msgid "vibration"
-msgstr ""
-
-#: taextras.py:78
-msgid "Butia Robot"
-msgstr ""
-
-#: taextras.py:79
-msgid "delay Butia"
-msgstr ""
-
-#: taextras.py:80
-msgid "wait for argument seconds"
-msgstr ""
-
-#. TRANS: This string is shorthand for "battery charge of Butia"
-#: taextras.py:82
-msgid "battery charge Butia"
-msgstr ""
-
-#: taextras.py:83
-msgid "returns the battery charge as a number between 0 and 255"
-msgstr ""
-
-#. TRANS: This string is shorthand for "speed of Butia"
-#: taextras.py:85
-msgid "speed Butia"
-msgstr ""
-
-#: taextras.py:86
-msgid ""
-"set the speed of the Butia motors as a value between 0 and 1023, passed by "
-"an argument"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move Butia forward"
-#: taextras.py:89
-msgid "forward Butia"
-msgstr ""
-
-#: taextras.py:90
-msgid "move the Butia robot forward"
-msgstr ""
-
-#: taextras.py:91
-msgid "move the Butia robot forward a predefined distance"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move Butia backward"
-#: taextras.py:93
-msgid "backward Butia"
-msgstr ""
-
-#: taextras.py:94
-msgid "move the Butia robot backward"
-msgstr ""
-
-#: taextras.py:95
-msgid "move the Butia robot backward a predefined distance"
-msgstr ""
-
-#. TRANS: This string is shorthand for "turn Butia left"
-#: taextras.py:97
-msgid "left Butia"
-msgstr ""
-
-#: taextras.py:98
-msgid "turn the Butia robot at left"
-msgstr ""
-
-#. TRANS: This string is shorthand for "turn Butia right"
-#: taextras.py:100
-msgid "right Butia"
-msgstr ""
-
-#: taextras.py:101
-msgid "turn the Butia robot at right"
-msgstr ""
-
-#: taextras.py:102
-msgid "turn Butia"
-msgstr ""
-
-#: taextras.py:103
-msgid "turn the Butia robot x degrees"
-msgstr ""
-
-#: taextras.py:104
-msgid "stop Butia"
-msgstr ""
-
-#: taextras.py:105
-msgid "stop the Butia robot"
-msgstr ""
-
-#: taextras.py:106
-msgid "display Butia"
-msgstr ""
-
-#. TRANS: this string must contain only ASCII characters.
-#. The len must be 32 characters/spaces.
-#: taextras.py:109
-msgid "Hello World Butia "
-msgstr ""
-
-#: taextras.py:110
-msgid "print text in Butia robot 32-character ASCII display"
-msgstr ""
-
-#: taextras.py:111
-msgid "Butia"
-msgstr ""
-
-#: taextras.py:115
-msgid "The camera was not found."
-msgstr ""
-
-#: taextras.py:116
-msgid "Error on the initialization of the camera."
-msgstr ""
-
-#: taextras.py:117
-msgid "FollowMe"
-msgstr ""
-
-#: taextras.py:118
-msgid "follow a RGB color"
-msgstr ""
-
-#: taextras.py:119
-msgid "set a threshold for a RGB color"
-msgstr ""
-
-#: taextras.py:120
-msgid "follow a turtle color"
-msgstr ""
-
-#: taextras.py:121
-msgid "set the minimal number of pixels to follow"
-msgstr ""
-
-#: taextras.py:122
-msgid "calibrate"
-msgstr ""
-
-#: taextras.py:123
-msgid "calibrate a color to follow"
-msgstr ""
-
-#: taextras.py:124
-msgid "x position"
-msgstr ""
-
-#: taextras.py:125
-msgid "return x position"
-msgstr ""
-
-#: taextras.py:126
-msgid "y position"
-msgstr ""
-
-#: taextras.py:127
-msgid "return y position"
-msgstr ""
-
-#: taextras.py:128
-msgid "pixels"
-msgstr ""
-
-#: taextras.py:129
-msgid "return the number of pixels of the biggest blob"
-msgstr ""
-
-#: taextras.py:133
-msgid "SumBot"
-msgstr ""
-
-#: taextras.py:134
-msgid "speed SumBot"
-msgstr ""
-
-#: taextras.py:135
-msgid "submit the speed to the SumBot"
-msgstr ""
-
-#: taextras.py:136
-msgid "set the default speed for the movement commands"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move SumBot forward"
-#: taextras.py:138
-msgid "forward SumBot"
-msgstr ""
-
-#: taextras.py:139
-msgid "move SumBot forward"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move SumBot backward"
-#: taextras.py:141
-msgid "backward SumBot"
-msgstr ""
-
-#: taextras.py:142
-msgid "move SumBot backward"
-msgstr ""
-
-#: taextras.py:143
-msgid "stop SumBot"
-msgstr ""
-
-#: taextras.py:144
-msgid "stop the SumBot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "turn SumBot left"
-#: taextras.py:146
-msgid "left SumBot"
-msgstr ""
-
-#: taextras.py:147
-msgid "turn left the SumBot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "move SumBot right"
-#: taextras.py:149
-msgid "right SumBot"
-msgstr ""
-
-#: taextras.py:150
-msgid "turn right the SumBot"
-msgstr ""
-
-#: taextras.py:151
-msgid "angle to center"
-msgstr ""
-
-#. TRANS: dohyo is the playing field
-#: taextras.py:153
-msgid "get the angle to the center of the dohyo"
-msgstr ""
-
-#: taextras.py:154
-msgid "angle to Enemy"
-msgstr ""
-
-#: taextras.py:155
-msgid "get the angle to the Enemy"
-msgstr ""
-
-#. TRANS: This string is shorthand for "x coordinate of SumBot"
-#: taextras.py:157
-msgid "x coor. SumBot"
-msgstr ""
-
-#: taextras.py:158
-msgid "get the x coordinate of the SumBot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "y coordinate of SumBot"
-#: taextras.py:160
-msgid "y coor. SumBot"
-msgstr ""
-
-#: taextras.py:161
-msgid "get the y coordinate of the SumBot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "x coordinate of SumBot's enemy"
-#: taextras.py:163
-msgid "x coor. Enemy"
-msgstr ""
-
-#: taextras.py:164
-msgid "get the x coordinate of the Enemy"
-msgstr ""
-
-#. TRANS: This string is shorthand for "y coordinate of SumBot's enemy"
-#: taextras.py:166
-msgid "y coor. Enemy"
-msgstr ""
-
-#: taextras.py:167
-msgid "get the y coordinate of the Enemy"
-msgstr ""
-
-#. TRANS: This string is shorthand for "rotation of SumBot"
-#: taextras.py:169
-msgid "rotation SumBot"
-msgstr ""
-
-#: taextras.py:170
-msgid "get the rotation of the Sumbot"
-msgstr ""
-
-#. TRANS: This string is shorthand for "rotation of SumBot's enemy"
-#: taextras.py:172
-msgid "rotation Enemy"
-msgstr ""
-
-#: taextras.py:173
-msgid "get the rotation of the Enemy"
-msgstr ""
-
-#: taextras.py:174
-msgid "distance to center"
-msgstr ""
-
-#. TRANS: dohyo is the playing field
-#: taextras.py:176
-msgid "get the distance to the center of the dohyo"
-msgstr ""
-
-#: taextras.py:177
-msgid "distance to Enemy"
-msgstr ""
-
-#: taextras.py:178
-msgid "get the distance to the Enemy"
-msgstr ""
-
-#: taextras.py:179
-msgid "update information"
-msgstr ""
-
-#: taextras.py:180
-msgid "update information from the server"
-msgstr ""
-
-#. TRANS: Please use similar terms to those used in the Physics Activity
-#: taextras.py:185
-msgid "Palette of physics blocks"
-msgstr ""
-
-#: taextras.py:186
-msgid "start polygon"
-msgstr ""
-
-#: taextras.py:187
-msgid "Begin defining a new polygon based on the current Turtle xy position."
-msgstr ""
-
-#: taextras.py:189
-msgid "add point"
-msgstr ""
-
-#: taextras.py:190
-msgid ""
-"Add a new point to the current polygon based on the current Turtle xy "
-"position."
-msgstr ""
-
-#: taextras.py:192
-msgid "end polygon"
-msgstr ""
-
-#: taextras.py:193
-msgid "Define a new polygon."
-msgstr ""
-
-#: taextras.py:194
-msgid "end filled polygon"
-msgstr ""
-
-#: taextras.py:195
-msgid "Not a simple polygon"
-msgstr ""
-
-#: taextras.py:196
-msgid "Define a new filled polygon."
-msgstr ""
-
-#: taextras.py:197
-msgid "triangle"
-msgstr ""
-
-#. TRANS: base of a triangle
-#: taextras.py:199
-msgid "base"
-msgstr ""
-
-#: taextras.py:201
-msgid "Add a triangle object to the project."
-msgstr ""
-
-#: taextras.py:202
-msgid "circle"
-msgstr ""
-
-#: taextras.py:203
-msgid "Add a circle object to the project."
-msgstr ""
-
-#: taextras.py:204
-msgid "rectangle"
-msgstr ""
-
-#: taextras.py:207
-msgid "Add a rectangle object to the project."
-msgstr ""
-
-#: taextras.py:208
-msgid "reset"
-msgstr ""
-
-#: taextras.py:209
-msgid "Reset the project; clear the object list."
-msgstr ""
-
-#: taextras.py:210
-msgid "motor"
-msgstr ""
-
-#: taextras.py:211
-msgid "torque"
-msgstr ""
-
-#: taextras.py:212
-msgid "speed"
-msgstr ""
-
-#: taextras.py:213
-msgid ""
-"Motor torque and speed range from 0 (off) to positive numbers; motor is "
-"placed on the most recent object created."
-msgstr ""
-
-#: taextras.py:215
-msgid "pin"
-msgstr ""
-
-#: taextras.py:216
-msgid "Pin an object down so that it cannot fall."
-msgstr ""
-
-#: taextras.py:217
-msgid "joint"
-msgstr ""
-
-#: taextras.py:220
-msgid ""
-"Join two objects together (the most recent object created and the object at "
-"point x, y)."
-msgstr ""
-
-#: taextras.py:222
-msgid "Save the project to the Journal as a Physics activity."
-msgstr ""
-
-#: taextras.py:223
-msgid "density"
-msgstr ""
-
-#: taextras.py:224
-msgid ""
-"Set the density property for objects (density can be any positive number)."
-msgstr ""
-
-#: taextras.py:226
-msgid "friction"
-msgstr ""
-
-#: taextras.py:227
-msgid ""
-"Set the friction property for objects (value from 0 to 1, where 0 turns "
-"friction off and 1 is strong friction)."
-msgstr ""
-
-#. TRANS: bounciness is restitution
-#: taextras.py:230
-msgid "bounciness"
-msgstr ""
-
-#: taextras.py:231
-msgid ""
-"Set the bounciness property for objects (a value from 0 to 1, where 0 means "
-"no bounce and 1 is very bouncy)."
-msgstr ""
-
-#: taextras.py:233
-msgid "dynamic"
-msgstr ""
-
-#: taextras.py:234
-msgid ""
-"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position."
-msgstr ""
-
-#. TRANS: WeDo is a robotics product of the LEGO company
-#: taextras.py:240
-msgid "Palette of WeDo blocks"
-msgstr ""
-
-#: taextras.py:242
-msgid ""
-"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == "
-"tilt left, 2 == tilt right)"
-msgstr ""
-
-#. TRANS: This string is shorthand for "output of the distance sensor"
-#: taextras.py:246
-msgid "distance sensor output"
-msgstr ""
-
-#: taextras.py:247
-msgid "Motor A"
-msgstr ""
-
-#: taextras.py:248
-msgid "returns the current value of Motor A"
-msgstr ""
-
-#: taextras.py:249
-msgid "Motor B"
-msgstr ""
-
-#: taextras.py:250
-msgid "returns the current value of Motor B"
-msgstr ""
-
-#: taextras.py:251
-msgid "set the value for Motor A"
-msgstr ""
-
-#: taextras.py:252
-msgid "set the value for Motor B"
-msgstr ""
-
-#. TRANS: Lego NXT is a robotics product of the LEGO company
-#: taextras.py:257
-msgid "Palette of LEGO NXT blocks"
-msgstr ""
-
-#: taextras.py:258
-msgid "touch"
-msgstr ""
-
-#: taextras.py:259
-msgid "ultrasonic"
-msgstr ""
-
-#: taextras.py:261
-msgid "light"
-msgstr ""
-
-#: taextras.py:262
-msgid "PORT A"
-msgstr ""
-
-#: taextras.py:263
-msgid "PORT B"
-msgstr ""
-
-#: taextras.py:264
-msgid "PORT C"
-msgstr ""
-
-#: taextras.py:265
-msgid "PORT 1"
-msgstr ""
-
-#: taextras.py:266
-msgid "PORT 2"
-msgstr ""
-
-#: taextras.py:267
-msgid "PORT 3"
-msgstr ""
-
-#: taextras.py:268
-msgid "PORT 4"
-msgstr ""
-
-#: taextras.py:269
-msgid "Please check the connection with the brick."
-msgstr ""
-
-#: taextras.py:270
-msgid "Please check the port."
-msgstr ""
-
-#: taextras.py:271
-msgid "The value of power must be between -127 to 127."
-msgstr ""
-
-#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
-msgstr ""
-
-#: taextras.py:273
-msgid "NXT found"
-msgstr ""
-
-#: taextras.py:274
-msgid "NXT not found"
-msgstr ""
-
-#: taextras.py:275
-msgid "refresh NXT"
-msgstr ""
-
-#: taextras.py:276
-msgid "Search for a connected NXT brick."
-msgstr ""
-
-#: taextras.py:277
-msgid "play tone"
-msgstr ""
-
-#: taextras.py:278
-msgid "freq"
-msgstr ""
-
-#: taextras.py:280
-msgid "Play a tone at freq for time."
-msgstr ""
-
-#: taextras.py:281
-msgid ""
-"turn motor\n"
-"rotations"
-msgstr ""
-
-#: taextras.py:282
-msgid "port"
-msgstr ""
-
-#: taextras.py:283
-msgid "power"
-msgstr ""
-
-#: taextras.py:284
-msgid "turn a motor"
-msgstr ""
-
-#: taextras.py:285
-msgid ""
-"sync motors\n"
-"steering"
-msgstr ""
-
-#: taextras.py:286
-msgid "rotations"
-msgstr ""
-
-#: taextras.py:287
-msgid "synchronize two motors"
-msgstr ""
-
-#: taextras.py:288
-msgid "PORT A of the brick"
-msgstr ""
-
-#: taextras.py:289
-msgid "PORT B of the brick"
-msgstr ""
-
-#: taextras.py:290
-msgid "PORT C of the brick"
-msgstr ""
-
-#: taextras.py:291
-msgid "start motor"
-msgstr ""
-
-#: taextras.py:292
-msgid "Run a motor forever."
-msgstr ""
-
-#: taextras.py:293
-msgid "brake motor"
-msgstr ""
-
-#: taextras.py:294
-msgid "Stop a specified motor."
-msgstr ""
-
-#: taextras.py:295
-msgid "PORT 1 of the brick"
-msgstr ""
-
-#: taextras.py:296
-msgid "color sensor"
-msgstr ""
-
-#: taextras.py:297
-msgid "light sensor"
-msgstr ""
-
-#: taextras.py:298
-msgid "PORT 2 of the brick"
-msgstr ""
-
-#: taextras.py:299
-msgid "touch sensor"
-msgstr ""
-
-#: taextras.py:300
-msgid "distance sensor"
-msgstr ""
-
-#: taextras.py:301
-msgid "PORT 3 of the brick"
-msgstr ""
-
-#: taextras.py:302
-msgid "read"
-msgstr ""
-
-#: taextras.py:303
-msgid "sensor"
-msgstr ""
-
-#: taextras.py:304
-msgid "Read sensor output."
-msgstr ""
-
-#: taextras.py:305
-msgid "PORT 4 of the brick"
-msgstr ""
-
-#: taextras.py:306
-msgid "set light"
-msgstr ""
-
-#: taextras.py:307
-msgid "Set color sensor light."
-msgstr ""
-
-#: turtleart.py:69
-msgid "usage is"
-msgstr ""
-
-#: turtleart.py:228
-msgid "No option action:"
-msgstr ""
-
-#: turtleart.py:240
-msgid "File not found"
-msgstr ""
-
-#: turtleart.py:264
-#, python-format
-msgid "Configuration directory not writable: %s"
-msgstr ""
-
-#: turtleart.py:320
-msgid "New"
-msgstr ""
-
-#: turtleart.py:321
-msgid "Open"
-msgstr ""
-
-#: turtleart.py:322
-msgid "Save"
-msgstr ""
-
-#: turtleart.py:323
-msgid "Save as"
-msgstr ""
-
-#: turtleart.py:330
-msgid "Quit"
-msgstr ""
-
-#: turtleart.py:331
-msgid "File"
-msgstr ""
-
-#: turtleart.py:338
-msgid "Rescale coordinates"
-msgstr ""
-
-#: turtleart.py:344
-msgid "Reset block size"
-msgstr ""
-
-#: turtleart.py:358
-msgid "Show/hide blocks"
-msgstr ""
-
-#: turtleart.py:360
-msgid "Tools"
-msgstr ""
-
-#: turtleart.py:367
-msgid "Stop"
-msgstr ""
-
-#: turtleart.py:368
-msgid "Turtle"
-msgstr ""
-
-#: turtleart.py:398
-msgid "You have unsaved work. Would you like to save before quitting?"
-msgstr ""
-
-#: turtleart.py:399
-msgid "Save project?"
-msgstr ""
-
-#~ msgid " "
-#~ msgstr " "
diff --git a/po/tr.po b/po/tr.po
index 8281efe..45ed91e 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Translate Toolkit 1.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "sol"
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "sağ"
@@ -112,8 +112,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "x ekseni"
@@ -123,8 +123,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "y ekseni"
@@ -134,8 +134,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "başlık"
@@ -568,17 +568,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -614,7 +614,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -690,12 +690,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -715,11 +715,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -732,186 +732,186 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
#, fuzzy
msgid "Fullscreen"
msgstr "ekranı doldur"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
#, fuzzy
msgid "Clean"
msgstr "temizle"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1022,7 +1022,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1058,7 +1058,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1154,488 +1154,491 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
#, fuzzy
msgid "set scale"
msgstr "gölge ayarı"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "yazdır"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1698,7 +1701,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1744,7 +1747,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2199,7 +2202,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2359,7 +2362,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2502,6 +2505,139 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "mod"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2551,30 +2687,34 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#, fuzzy
#~ msgid "full screen"
#~ msgstr "ekranı doldur"
diff --git a/po/tvl.po b/po/tvl.po
index 1c594d5..e30b69b 100644
--- a/po/tvl.po
+++ b/po/tvl.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:34+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "forward"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -114,8 +114,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -125,8 +125,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -136,8 +136,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -567,17 +567,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -613,7 +613,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -689,12 +689,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -714,11 +714,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -731,184 +731,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1018,7 +1018,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1054,7 +1054,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1150,487 +1150,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1693,7 +1696,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1739,7 +1742,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2194,7 +2197,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2353,7 +2356,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2496,6 +2499,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2545,29 +2680,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/tzo.po b/po/tzo.po
index 6a00e21..b247920 100644
--- a/po/tzo.po
+++ b/po/tzo.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,8 +17,8 @@ msgstr ""
"X-Generator: Translate Toolkit 1.7.0\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -51,7 +51,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -60,7 +60,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -109,8 +109,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -120,8 +120,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -131,8 +131,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -562,17 +562,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -608,7 +608,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -684,12 +684,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -709,11 +709,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -726,184 +726,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1013,7 +1013,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1049,7 +1049,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1145,487 +1145,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1688,7 +1691,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1734,7 +1737,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2189,7 +2192,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2348,7 +2351,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2491,6 +2494,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2540,26 +2675,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/ug.po b/po/ug.po
index 6dd357c..cf2b5f0 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,20 +6,20 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
-"PO-Revision-Date: 2011-04-23 04:40+0200\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
+"PO-Revision-Date: 2012-02-27 06:43+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
-"Language: \n"
+"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Pootle 2.0.1\n"
+"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -28,16 +28,18 @@ msgid "Palette of turtle commands"
msgstr ""
#: TurtleArt/tabasics.py:120
+#, fuzzy
msgid "forward"
-msgstr ""
+msgstr "ئالدىغا"
#: TurtleArt/tabasics.py:124
msgid "moves turtle forward"
msgstr ""
#: TurtleArt/tabasics.py:131
+#, fuzzy
msgid "back"
-msgstr ""
+msgstr "كەينى"
#: TurtleArt/tabasics.py:135
msgid "moves turtle backward"
@@ -52,18 +54,20 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
+#, fuzzy
msgid "left"
-msgstr ""
+msgstr "سول"
#: TurtleArt/tabasics.py:158
msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
+#, fuzzy
msgid "right"
-msgstr ""
+msgstr "ئوڭ"
#: TurtleArt/tabasics.py:169
msgid "turns turtle clockwise (angle in degrees)"
@@ -110,8 +114,8 @@ msgstr ""
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +125,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +136,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -176,8 +180,9 @@ msgid "fill screen"
msgstr ""
#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:399 taextras.py:260
+#, fuzzy
msgid "color"
-msgstr ""
+msgstr "رەڭ"
#: TurtleArt/tabasics.py:309 TurtleArt/tabasics.py:409
msgid "shade"
@@ -288,8 +293,9 @@ msgid "white"
msgstr ""
#: TurtleArt/tabasics.py:436
+#, fuzzy
msgid "black"
-msgstr ""
+msgstr "كەينى"
#: TurtleArt/tabasics.py:442
msgid "set text color"
@@ -563,17 +569,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -609,7 +615,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -685,12 +691,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -710,11 +716,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -727,184 +733,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1014,7 +1020,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1050,7 +1056,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1146,487 +1152,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1689,7 +1698,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1735,7 +1744,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2190,7 +2199,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2305,8 +2314,9 @@ msgid "ultrasonic"
msgstr ""
#: taextras.py:261
+#, fuzzy
msgid "light"
-msgstr ""
+msgstr "ئوڭ"
#: taextras.py:262
msgid "PORT A"
@@ -2349,7 +2359,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2492,6 +2502,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2541,29 +2683,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/ur.po b/po/ur.po
index 5c3d238..a4f432a 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2009-02-20 14:16-0500\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -17,8 +17,8 @@ msgstr ""
"X-Generator: Pootle 1.1.0rc2\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -51,7 +51,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -60,7 +60,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -110,8 +110,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -121,8 +121,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -132,8 +132,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -563,17 +563,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -609,7 +609,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -685,12 +685,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -710,11 +710,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -727,184 +727,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1014,7 +1014,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1050,7 +1050,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1146,487 +1146,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1689,7 +1692,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1735,7 +1738,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2190,7 +2193,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2349,7 +2352,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2492,6 +2495,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2541,26 +2676,30 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
diff --git a/po/vi.po b/po/vi.po
index 1a87e4d..1bb6688 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-12-31 06:22+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -23,8 +23,8 @@ msgstr ""
# Tên: không nên dịch
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "Turtle Art"
@@ -57,7 +57,7 @@ msgid "clears the screen and reset the turtle"
msgstr "xoá màn hình và đặt lại rùa"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "trái"
@@ -66,7 +66,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "quay rùa theo ngược chiều kim đồng hồ (góc theo độ)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "phải"
@@ -116,8 +116,8 @@ msgstr "đặt hướng về"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "đặt sự hướng về của rùa (0 là hướng về đầu màn hình)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "xcor"
@@ -129,8 +129,8 @@ msgstr ""
"giữ giá trị đồ hoạ X hiện thời của rùa (cũng có thể được sử dụng để thay thế "
"một khối con số)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "ycor"
@@ -142,8 +142,8 @@ msgstr ""
"giữ giá trị đồ hoạ Y hiện thời của rùa (cũng có thể được sử dụng để thay thế "
"một khối con số)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "tiêu đề"
@@ -585,17 +585,17 @@ msgstr "cất giữ giá trị thuộc số trong Biến 2"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "văn bản"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "giá trị chuỗi"
@@ -631,7 +631,7 @@ msgstr "biến đặt tên (giá trị thuộc số)"
msgid "store in"
msgstr "lưu vào"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "giá trị"
@@ -707,12 +707,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "Tiêu đề"
@@ -732,11 +732,11 @@ msgstr "không thích"
msgid "as input"
msgstr "làm đầu vào"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "hiển thị bảng chọn kế tiếp"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "thay đổi hướng của bảng chọn khối"
@@ -749,186 +749,186 @@ msgid "Save..."
msgstr "lưu lại"
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "nhấn để mở"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "hướng"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "tiếp"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "ảnh"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "trình diễn"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "hiện trạng"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "Hiện bảng chọn"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "Ẩn bảng chọn"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "Hiện khối"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "Ẩn khối"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "Giảm toạ độ theo tỷ lệ"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "Tăng toạ độ theo tỷ lệ"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "Sửa"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "Xem"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "Trợ giúp"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "Dự án"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "Chép"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "Dán"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "Toàn màn hình"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "Toạ độ thuyết Đê-các-tơ"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "Toạ độ cực"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "Tọa độ theo hệ Mét"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "Khối lớn hơn"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "Khối nhỏ hơn"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "Tải ví dụ"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "Di chuyển con trỏ trên bảng chọn màu cam để đượctrợ giúp."
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "Lưu dạng ảnh"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "Lưu dạng HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "Lưu dạng Biểu hình"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "Lưu ảnh chụp"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "Tải khối Python"
# Phím tắt này tương ứng với hành động nào?
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "Tổ hợp phím Ctrl+p"
# Phím tắt này tương ứng với hành động nào?
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "Tổ hợp phím Ctrl+b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "Làm sạch"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "Tổ hợp phím Ctrl+e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "Chạy"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "Tổ hợp phím Ctrl+r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "Bước"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "Tổ hợp phím Ctrl+w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "Gỡ lỗi"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "Tổ hợp phím Ctrl+d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "Dừng rùa"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "Tổ hợp phím Ctrl+s"
@@ -1040,7 +1040,7 @@ msgstr "tải lên thất bại"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "Bảng chọn của khối cảm biến"
@@ -1076,7 +1076,7 @@ msgstr "âm lượng đầu vào máy vi âm"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "cường độ"
@@ -1173,258 +1173,258 @@ msgstr "toán tử làm-đến-khi-Đúng mà sử dụng toán tử lôgic từ
msgid "Palette of media objects"
msgstr "Bảng chọn của đối tượng phương tiện truyền thông"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "nhật ký"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "đối tượng phương tiện truyền thông Nhật ký Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "âm thanh"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "đối tượng âm thanh Nhật ký Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "hình ảnh chuyển động"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "đối tượng hình ảnh chuyển động Nhật ký Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "mô tả"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "trường mô tả Nhật ký Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "hiển thị"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "vẽ văn bản hoặc hiển thị phương tiện truyền thông từ Nhật ký"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "hiện liên kết"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "đặt tỷ lệ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "đặt tỷ lệ của phương tiện truyền thông"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "lưu ảnh"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "tên ảnh"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "lưu một ảnh vào Nhật ký Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "lưu SVG"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "lưu đồ họa rùa dưới dạng một tập tin SVG trong Nhật ký Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "tỷ lệ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "giữ giá trị tỷ lệ hiện thời"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "Chờ chạy chương trình chơi nhạc"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "đợi cho đoạn video hoặc âm thanh chạy hết"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "Nói"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr "Chào"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr "Nguyên bản lời nói"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr "Sóng hình sin"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr "Duy trỳ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr "Sử dụng sóng hình sin tai tần số, biên độ và thời gian( tính bằng giây)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr "nút xuống( trong bàn phím vi tính)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr "trả về 1 nếu nhấn chuột"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr "Tọa độ x của chuột(vói x là tọa độ của trục hoành)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr "Trả về toạ độ x của con trỏ chuột"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr "Tọa độ y của chuột(vói y là tọa độ của trục hoành)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr "Trả về tọa độ y của con trỏ chuột"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "truy vấn bàn phím"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "yêu cầu đầu vào bàn phím (kết quả được lưu vào khối bàn phím)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "bàn phím"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "giữ kết quả của khối yêu-cầu-bàn-phím"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "Đọc điểm ảnh"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "Khối màu RGB theo màu mà con rùa nhìn thấy được đưa vào stack"
# Số màu rùa thấy được
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "Màu mà rùa nhìn thấy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "trả về màu mà con rùa nhìn thấy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "Thời gian"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "Thời gian trôi qua từ khi khởi động chương trình"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "Bảng chọn tuỳ chọn bổ sung"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "đẩy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "đẩy giá trị vào miền nhớ FILO (vào trước thì ra sau)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "hiện miền nhớ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "hiển thị các giá trị trong miền nhớ FILO (vào trước thì ra sau)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "miền nhớ trống"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "trống miền FILO ( vào trước, ra sau)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "Đẩy"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "đẩy giá trị ra miền nhớ FILO (vào trước thì ra sau)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "miền nhớ trống"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "ghi chú"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "đặt một ghi chú vào mã nguồn của bạn"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "in"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "in giá trị trạng thái ở phần dưới màn hình"
# Tên ngôn ngữ lập trình: đừng dịch
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
@@ -1432,7 +1432,7 @@ msgstr ""
"Một cách lập trình:sử dụng bằng cách thêm các phương trình đơn biến như "
"sin(x)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
@@ -1440,7 +1440,7 @@ msgstr ""
"Một phương thức lập trình: được sử dụng để thêm nhiều phương trình toán học "
"đa biến"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
@@ -1448,222 +1448,225 @@ msgstr ""
"Một cách lập trình:sử dụng bằng cách thêm các phương trình đabiến như "
"sin(x+y+z)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "Khối ngôn ngữ lập trình Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "chạy mã nguồn được tìm trong mô-đun tamyblock.py có trong Nhật ký"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "thuyết Đê-các-tơ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "hiển thị toạ độ thuyết Đê-các-tơ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "cực"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "hiển thị toạ độ cực"
# Tên: không nên dịch
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "rùa"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "chọn con rùa nào cần điều khiển"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "mai rùa"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "đặt một chiếc mai tùy thích lên chú rùa"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "trên"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "đầu của một đống đã thu gọn"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "dưới"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "phía dưới của một đống có thể thu gọn"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "khối dưới trong một đống đã thu gọn: nhấn để mở lại"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "đầu đống"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "nhãn"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "đầu của một đống có thể thu gọn"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "Bảng chọn mẫu trình diễn"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "ẩn khối"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "làm sạch sẽ vùng vẽ bằng cách ẩn các khối"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "hiện khối"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "phục hồi các khối bị ẩn"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "ẩn các thanh công cụ Sugar"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "danh sách"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "trình diễn danh sách nút"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "mẫu trình diễn: danh sách chấm điểm"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "mẫu trình diễn: chọn đối tượng Nhật ký (không mô tả)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "mẫu trình diễn: chọn đối tượng Nhật ký (với mô tả)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "mẫu trình diễn: chọn 4 đối tượng Nhật ký"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "mẫu trình diễn: chọn 2 đối tượng Nhật ký"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "xcor bên trái màn hình"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "ycor bên dưới màn hình"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "rộng"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "chiều rộng vùng vẽ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "xcor bên phải màn hình"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "ycor bên trên màn hình"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "độ cao"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "chiều cao vùng vẽ"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "tiêu đề x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "tiêu đề y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "tọa độ x phía trái"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "tọa độ y phía trên"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "tọa độ x phía phải"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "tọa độ y phía dưới"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "trình diễn 1×1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "trình diễn 2×1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "trình diễn 1×2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "trình diễn 2×2"
@@ -1726,7 +1729,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1772,7 +1775,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2229,7 +2232,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2391,7 +2394,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2537,6 +2540,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "Bảng chọn của khối cảm biến"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "sửa"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2587,31 +2724,38 @@ msgstr "Đặt lại tỷ lệ toạ độ"
msgid "Reset block size"
msgstr "Đặt lại kích cỡ khối"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "Hiện/ẩn khối"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "Công cụ"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "Dừng"
# Tên: không nên dịch
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "Rùa"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "Trợ giúp"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "Di chuyển con trỏ trên bảng chọn màu cam để đượctrợ giúp."
+
#~ msgid "Import/Export"
#~ msgstr "Nhập/Xuất"
diff --git a/po/wa.po b/po/wa.po
index d4389ce..46162ad 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:37+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/yo.po b/po/yo.po
index 836cb02..0969d5e 100644
--- a/po/yo.po
+++ b/po/yo.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
"PO-Revision-Date: 2011-02-24 04:39+0200\n"
"Last-Translator: Chris <cjl@laptop.org>\n"
"Language-Team: LANGUAGE <walter@sugarlabs.org>\n"
@@ -18,8 +18,8 @@ msgstr ""
"X-Generator: Pootle 2.0.1\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr ""
@@ -52,7 +52,7 @@ msgid "clears the screen and reset the turtle"
msgstr ""
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr ""
@@ -61,7 +61,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr ""
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr ""
@@ -111,8 +111,8 @@ msgstr "seth"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr ""
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr ""
@@ -122,8 +122,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr ""
@@ -133,8 +133,8 @@ msgid ""
"number block)"
msgstr ""
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr ""
@@ -564,17 +564,17 @@ msgstr ""
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr ""
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
msgid "store in"
msgstr ""
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr ""
@@ -686,12 +686,12 @@ msgstr ""
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr ""
@@ -711,11 +711,11 @@ msgstr ""
msgid "as input"
msgstr ""
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr ""
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr ""
@@ -728,184 +728,184 @@ msgid "Save..."
msgstr ""
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr ""
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr ""
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr ""
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr ""
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr ""
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr ""
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr ""
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr ""
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr ""
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr ""
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr ""
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr ""
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr ""
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr ""
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr ""
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr ""
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
msgstr ""
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr ""
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr ""
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr ""
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr ""
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr ""
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr ""
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr ""
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr ""
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr ""
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr ""
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr ""
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr ""
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr ""
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr ""
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
msgstr ""
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr ""
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr ""
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr ""
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr ""
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr ""
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr ""
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr ""
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr ""
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr ""
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr ""
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr ""
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr ""
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr ""
@@ -1015,7 +1015,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr ""
@@ -1051,7 +1051,7 @@ msgstr ""
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr ""
@@ -1147,487 +1147,490 @@ msgstr ""
msgid "Palette of media objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr ""
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
msgid "empty heap?"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr ""
@@ -1690,7 +1693,7 @@ msgstr ""
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
+msgid "TurtleBots"
msgstr ""
#: taextras.py:59
@@ -1736,7 +1739,7 @@ msgid "LED"
msgstr ""
#: taextras.py:70
-msgid "pushbutton"
+msgid "button"
msgstr ""
#: taextras.py:71
@@ -2191,7 +2194,7 @@ msgid ""
"placed on the most recent object created."
msgstr ""
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr ""
@@ -2350,7 +2353,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2493,6 +2496,138 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+msgid "Palette of Arduino blocks"
+msgstr ""
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+msgid "mode"
+msgstr ""
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr ""
@@ -2542,29 +2677,33 @@ msgstr ""
msgid "Reset block size"
msgstr ""
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr ""
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr ""
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr ""
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr ""
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr ""
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr ""
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr ""
+
#~ msgid " "
#~ msgstr " "
diff --git a/po/zh_CN.po b/po/zh_CN.po
index ed944eb..d27f554 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-03-24 00:31-0400\n"
-"PO-Revision-Date: 2012-03-27 03:33+0200\n"
+"PO-Revision-Date: 2012-03-28 04:40+0200\n"
"Last-Translator: lite <litekok@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_CN\n"
@@ -29,7 +29,7 @@ msgstr "海龟绘图"
#: TurtleArt/tabasics.py:115
msgid "Palette of turtle commands"
-msgstr "海龟指令调色板"
+msgstr "海龟指令模板"
#: TurtleArt/tabasics.py:120
msgid "forward"
@@ -149,7 +149,7 @@ msgstr "包含海龟当前的朝向的角度值(可以用来替换数字块)
#: TurtleArt/tabasics.py:273
msgid "Palette of pen commands"
-msgstr "画笔指令调色板"
+msgstr "画笔指令模板"
#: TurtleArt/tabasics.py:277
msgid "pen up"
@@ -217,7 +217,7 @@ msgstr "完成填充多边形的绘制(和开始填充一起使用)"
#: TurtleArt/tabasics.py:356 TurtleArt/tabasics.py:360
msgid "Palette of pen colors"
-msgstr "画笔颜色调色板"
+msgstr "画笔颜色模板"
#: TurtleArt/tabasics.py:364
msgid "set color"
@@ -313,7 +313,7 @@ msgstr "设置海龟绘制的文字的大小"
#: TurtleArt/tabasics.py:539
msgid "Palette of numeric operators"
-msgstr "数值操作的调色板"
+msgstr "数值运算模板"
#: TurtleArt/tabasics.py:545
msgid "plus"
@@ -459,7 +459,7 @@ msgstr "逻辑“或”运算符"
#: TurtleArt/tabasics.py:722
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:94
msgid "Palette of flow operators"
-msgstr "流程控制调色板"
+msgstr "流程控制模板"
#: TurtleArt/tabasics.py:727
msgid "wait"
@@ -500,7 +500,7 @@ msgstr "如果 那么"
#: TurtleArt/tabasics.py:764
msgid "if-then operator that uses boolean operators from Numbers palette"
-msgstr "“如果-那么”运算符,会用到数值调色板中的布尔运算符"
+msgstr "“如果-那么”运算符,会用到数值模板中的布尔运算符"
#: TurtleArt/tabasics.py:771
msgid "then else"
@@ -512,7 +512,7 @@ msgstr "如果 那么 或者"
#: TurtleArt/tabasics.py:776
msgid "if-then-else operator that uses boolean operators from Numbers palette"
-msgstr "“如果-那么-或者”运算符,会用到数值调色板中的布尔运算符"
+msgstr "“如果-那么-或者”运算符,会用到数值模板中的布尔运算符"
#: TurtleArt/tabasics.py:784
msgid "horizontal space"
@@ -540,7 +540,7 @@ msgstr "停止当前动作"
#: TurtleArt/tabasics.py:811
msgid "Palette of variable blocks"
-msgstr "变量块调色板"
+msgstr "可变块模板"
#: TurtleArt/tabasics.py:816 pysamples/grecord.py:213
msgid "start"
@@ -717,11 +717,11 @@ msgstr "作为输入"
#: TurtleArt/tapalette.py:92
msgid "displays next palette"
-msgstr "显示下一个调色板"
+msgstr "显示下一个模板"
#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
-msgstr "改变积木块调色板的方向"
+msgstr "改变积木块模板的方向"
#: TurtleArt/tautils.py:177
msgid "Load..."
@@ -766,11 +766,11 @@ msgstr "开启悬停帮助"
#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
-msgstr "显示调色板"
+msgstr "显示模板"
#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
-msgstr "隐藏调色板"
+msgstr "隐藏模板"
#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
@@ -1021,7 +1021,7 @@ msgstr "上传失败!"
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
-msgstr "传感器调色板"
+msgstr "传感器模板"
#: plugins/accelerometer/accelerometer.py:55
#: plugins/accelerometer/accelerometer.py:62
@@ -1136,7 +1136,7 @@ msgstr "当"
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:103
msgid "do-while-True operator that uses boolean operators from Numbers palette"
-msgstr "“当-为真时-执行”操作符,会用到数值调色板中的布尔运算符"
+msgstr "“当-为真时-执行”操作符,会用到数值模板中的布尔运算符"
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:109
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:112
@@ -1145,11 +1145,11 @@ msgstr "直到"
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:113
msgid "do-until-True operator that uses boolean operators from Numbers palette"
-msgstr "“执行-直到-真”操作符,会用到数值调色板中的布尔运算符"
+msgstr "“执行-直到-真”操作符,会用到数值模板中的布尔运算符"
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:120
msgid "Palette of media objects"
-msgstr "多媒体调色板"
+msgstr "多媒体模板"
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
@@ -1334,7 +1334,7 @@ msgstr "程序启动后已经过的时间(秒)"
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
-msgstr "额外选项调色板"
+msgstr "额外选项模板"
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
@@ -1506,7 +1506,7 @@ msgstr "折叠积木堆的顶部"
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
-msgstr "演示模板调色板"
+msgstr "演示模板"
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
@@ -1672,27 +1672,27 @@ msgstr "选择一个挑战"
#: taextras.py:47
msgid "Palette of Mexican pesos"
-msgstr "墨西哥比索调色板"
+msgstr "墨西哥比索模板"
#: taextras.py:48
msgid "Palette of Colombian pesos"
-msgstr "哥伦比亚比索调色板"
+msgstr "哥伦比亚比索模板"
#: taextras.py:49
msgid "Palette of Rwandan francs"
-msgstr "卢旺达法郎调色板"
+msgstr "卢旺达法郎模板"
#: taextras.py:50
msgid "Palette of US currencies"
-msgstr "美国货币调色板"
+msgstr "美国货币模板"
#: taextras.py:51
msgid "Palette of Australian currencies"
-msgstr "澳大利亚货币调色板"
+msgstr "澳大利亚货币模板"
#: taextras.py:52
msgid "Palette of Guaranies"
-msgstr "瓜拉尼调色板"
+msgstr "瓜拉尼模板"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
@@ -1906,7 +1906,7 @@ msgstr "为RGB颜色设置一个阀门"
#: taextras.py:120
msgid "follow a turtle color"
-msgstr "接一个乌龟颜色"
+msgstr "接一个海龟颜色"
#: taextras.py:121
msgid "set the minimal number of pixels to follow"
@@ -2103,7 +2103,7 @@ msgstr "从服务器更新信息"
#. TRANS: Please use similar terms to those used in the Physics Activity
#: taextras.py:185
msgid "Palette of physics blocks"
-msgstr "物理块调色板"
+msgstr "物理块模板"
#: taextras.py:186
msgid "start polygon"
@@ -2111,7 +2111,7 @@ msgstr "定义多边形"
#: taextras.py:187
msgid "Begin defining a new polygon based on the current Turtle xy position."
-msgstr "根据当前乌龟xy方向的位置开始定义新的多边形。"
+msgstr "根据当前海龟xy方向的位置开始定义新的多边形。"
#: taextras.py:189
msgid "add point"
@@ -2121,7 +2121,7 @@ msgstr "添加点"
msgid ""
"Add a new point to the current polygon based on the current Turtle xy "
"position."
-msgstr "根据当前乌龟xy方向的位置添加新的点到当前的多边形。"
+msgstr "根据当前海龟xy方向的位置添加新的点到当前的多边形。"
#: taextras.py:192
msgid "end polygon"
@@ -2208,143 +2208,141 @@ msgstr "用图钉固定一个对象,防止掉落。"
#: taextras.py:217
msgid "joint"
-msgstr ""
+msgstr "联合"
#: taextras.py:220
msgid ""
"Join two objects together (the most recent object created and the object at "
"point x, y)."
-msgstr ""
+msgstr "把两个对象连接到一起(在点x,y处最近创建的对象)。"
#: taextras.py:222
msgid "Save the project to the Journal as a Physics activity."
-msgstr ""
+msgstr "当作一个物理活动保存该项目到日志。"
#: taextras.py:223
-#, fuzzy
msgid "density"
-msgstr "自身"
+msgstr "密度"
#: taextras.py:224
msgid ""
"Set the density property for objects (density can be any positive number)."
-msgstr ""
+msgstr "设置对象的密度属性(密度可以是任何正数)。"
#: taextras.py:226
msgid "friction"
-msgstr ""
+msgstr "摩擦"
#: taextras.py:227
msgid ""
"Set the friction property for objects (value from 0 to 1, where 0 turns "
"friction off and 1 is strong friction)."
-msgstr ""
+msgstr "设置对象的摩擦系数(值从0到1,0无摩擦,1强摩擦)。"
#. TRANS: bounciness is restitution
#: taextras.py:230
msgid "bounciness"
-msgstr ""
+msgstr "弹力"
#: taextras.py:231
msgid ""
"Set the bounciness property for objects (a value from 0 to 1, where 0 means "
"no bounce and 1 is very bouncy)."
-msgstr ""
+msgstr "设置对象的弹性系数(值从0到1,0无弹性,1强弹性)。"
#: taextras.py:233
msgid "dynamic"
-msgstr ""
+msgstr "动态"
#: taextras.py:234
msgid ""
"If dynamic = 1, the object can move; if dynamic = 0, it is fixed in position."
-msgstr ""
+msgstr "动态值为1时对象可以移动;为0时位置是固定的。"
#. TRANS: WeDo is a robotics product of the LEGO company
#: taextras.py:240
msgid "Palette of WeDo blocks"
-msgstr ""
+msgstr "乐高WeDo模板"
#: taextras.py:242
msgid ""
"tilt sensor output: (-1 == no tilt, 0 == tilt forward, 3 == tilt back, 1 == "
"tilt left, 2 == tilt right)"
-msgstr ""
+msgstr "倾斜传感器输出:(-1 ==没有倾斜,0 ==向前倾斜,3 ==向后倾斜,1 ==向左倾斜,2 ==向左倾斜)"
#. TRANS: This string is shorthand for "output of the distance sensor"
#: taextras.py:246
msgid "distance sensor output"
-msgstr ""
+msgstr "距离传感器输出"
#: taextras.py:247
msgid "Motor A"
-msgstr ""
+msgstr "电机 A"
#: taextras.py:248
msgid "returns the current value of Motor A"
-msgstr ""
+msgstr "返回电机A的当前值"
#: taextras.py:249
msgid "Motor B"
-msgstr ""
+msgstr "电机B"
#: taextras.py:250
msgid "returns the current value of Motor B"
-msgstr ""
+msgstr "返回电机B的当前值"
#: taextras.py:251
msgid "set the value for Motor A"
-msgstr ""
+msgstr "设置电机A的值"
#: taextras.py:252
msgid "set the value for Motor B"
-msgstr ""
+msgstr "设置电机B的值"
#. TRANS: Lego NXT is a robotics product of the LEGO company
#: taextras.py:257
msgid "Palette of LEGO NXT blocks"
-msgstr ""
+msgstr "乐高NXT模块"
#: taextras.py:258
msgid "touch"
-msgstr ""
+msgstr "触摸"
#: taextras.py:259
msgid "ultrasonic"
-msgstr ""
+msgstr "超声波"
#: taextras.py:261
-#, fuzzy
msgid "light"
-msgstr "右转"
+msgstr "灯光"
#: taextras.py:262
msgid "PORT A"
-msgstr ""
+msgstr "端口 A"
#: taextras.py:263
msgid "PORT B"
-msgstr ""
+msgstr "端口 B"
#: taextras.py:264
msgid "PORT C"
-msgstr ""
+msgstr "端口 C"
#: taextras.py:265
msgid "PORT 1"
-msgstr ""
+msgstr "端口 1"
#: taextras.py:266
msgid "PORT 2"
-msgstr ""
+msgstr "端口 2"
#: taextras.py:267
msgid "PORT 3"
-msgstr ""
+msgstr "端口 3"
#: taextras.py:268
msgid "PORT 4"
-msgstr ""
+msgstr "端口 4"
#: taextras.py:269
msgid "Please check the connection with the brick."
@@ -2522,7 +2520,7 @@ msgstr ""
#. TRANS: Arduino plugin to control an Arduino board
#: taextras.py:316
msgid "Palette of Arduino blocks"
-msgstr ""
+msgstr "Arduino模板"
#: taextras.py:317
msgid "HIGH"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 4123c5b..fa05207 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-02-16 00:31-0500\n"
-"PO-Revision-Date: 2011-12-02 01:04+0200\n"
+"POT-Creation-Date: 2012-03-24 00:31-0400\n"
+"PO-Revision-Date: 2012-03-21 19:17+0200\n"
"Last-Translator: Yuan <yuanchao@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: zh_TW\n"
@@ -22,8 +22,8 @@ msgstr ""
"X-Generator: Pootle 2.0.5\n"
#: activity/activity.info:2 TurtleArt/taexporthtml.py:137
-#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:1747
-#: TurtleArt/tawindow.py:3055 pysamples/grecord.py:205 turtleart.py:288
+#: TurtleArt/taexporthtml.py:139 TurtleArt/tawindow.py:3057
+#: pysamples/grecord.py:205 turtleart.py:288
msgid "Turtle Art"
msgstr "小海龜"
@@ -56,7 +56,7 @@ msgid "clears the screen and reset the turtle"
msgstr "清除螢幕並重置小烏龜"
#: TurtleArt/tabasics.py:154
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:731
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:736
msgid "left"
msgstr "左轉"
@@ -65,7 +65,7 @@ msgid "turns turtle counterclockwise (angle in degrees)"
msgstr "將小烏龜逆時針轉向(輸入角度)"
#: TurtleArt/tabasics.py:165
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:760
msgid "right"
msgstr "右轉"
@@ -115,8 +115,8 @@ msgstr "設定標頭"
msgid "sets the heading of the turtle (0 is towards the top of the screen.)"
msgstr "設定小烏龜的方向(0是正對螢幕上方)"
-#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:542
+#: TurtleArt/tabasics.py:216 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:560
msgid "xcor"
msgstr "X座標"
@@ -126,8 +126,8 @@ msgid ""
"number block)"
msgstr "保持小烏龜現在的x座標值(可以用來代替數字區塊)"
-#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:227 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "ycor"
msgstr "Y座標"
@@ -137,8 +137,8 @@ msgid ""
"number block)"
msgstr "保持小烏龜目前的y座標值(可以用來代替數字區塊)"
-#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3051
-#: TurtleArt/tawindow.py:3055 TurtleArtActivity.py:543
+#: TurtleArt/tabasics.py:238 TurtleArt/tawindow.py:3053
+#: TurtleArt/tawindow.py:3057 TurtleArtActivity.py:561
msgid "heading"
msgstr "方向"
@@ -411,7 +411,7 @@ msgstr "「大於」的邏輯運算子"
#: TurtleArt/tabasics.py:660
msgid "True"
-msgstr ""
+msgstr "真值"
#: TurtleArt/tabasics.py:666
msgid "less than"
@@ -423,7 +423,7 @@ msgstr "「小於」的邏輯運算子"
#: TurtleArt/tabasics.py:674
msgid "False"
-msgstr ""
+msgstr "偽值"
#: TurtleArt/tabasics.py:680
msgid "equal"
@@ -568,17 +568,17 @@ msgstr "在變數 2 中儲存數值"
#: TurtleArt/tabasics.py:849 TurtleArt/tabasics.py:850
#: TurtleArt/tabasics.py:851
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:172
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:173
#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:174
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:182
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:195
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:210
msgid "text"
msgstr "文字"
#: TurtleArt/tabasics.py:852
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:175
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:176
msgid "string value"
msgstr "字串值"
@@ -614,7 +614,7 @@ msgstr "命名前的變數(數值)"
msgid "store in"
msgstr "放入"
-#: TurtleArt/tabasics.py:885
+#: TurtleArt/tabasics.py:885 taextras.py:333
msgid "value"
msgstr "值"
@@ -690,12 +690,12 @@ msgstr "把所有區塊移動到垃圾桶"
#: TurtleArt/taconstants.py:250 TurtleArt/taconstants.py:272
#: TurtleArt/taconstants.py:293 TurtleArt/taconstants.py:335
#: TurtleArt/taconstants.py:377 TurtleArt/taconstants.py:419
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:840
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:854
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:868
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:882
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:896
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:910
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:845
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:859
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:873
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:887
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:901
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:915
msgid "Title"
msgstr "標題"
@@ -715,11 +715,11 @@ msgstr "不像"
msgid "as input"
msgstr "作為輸入"
-#: TurtleArt/tapalette.py:84
+#: TurtleArt/tapalette.py:92
msgid "displays next palette"
msgstr "顯示下一個調色盤"
-#: TurtleArt/tapalette.py:85
+#: TurtleArt/tapalette.py:93
msgid "changes the orientation of the palette of blocks"
msgstr "改變區塊調色盤的方向"
@@ -732,184 +732,184 @@ msgid "Save..."
msgstr "儲存"
#: TurtleArt/tautils.py:596
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:641
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:616
msgid "click to open"
msgstr "點選開啟"
-#: TurtleArt/tawindow.py:837 TurtleArt/tawindow.py:838
+#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:849
msgid "orientation"
msgstr "方向"
-#: TurtleArt/tawindow.py:848 TurtleArt/tawindow.py:1164
+#: TurtleArt/tawindow.py:859 TurtleArt/tawindow.py:1181
msgid "next"
msgstr "下一步"
-#: TurtleArt/tawindow.py:3146
+#: TurtleArt/tawindow.py:3153
msgid "image"
msgstr "圖片"
-#: TurtleArtActivity.py:147
+#: TurtleArtActivity.py:150
msgid "presentation"
msgstr "展示"
-#: TurtleArtActivity.py:223
+#: TurtleArtActivity.py:226
msgid "snapshot"
msgstr "螢幕截圖"
-#: TurtleArtActivity.py:271 turtleart.py:354
+#: TurtleArtActivity.py:277 TurtleArtActivity.py:572 turtleart.py:346
+msgid "Turn off hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:284 turtleart.py:348
+msgid "Turn on hover help"
+msgstr ""
+
+#: TurtleArtActivity.py:292 turtleart.py:358
msgid "Show palette"
msgstr "顯示調色盤"
-#: TurtleArtActivity.py:277 TurtleArtActivity.py:682 turtleart.py:356
+#: TurtleArtActivity.py:298 TurtleArtActivity.py:689 turtleart.py:360
msgid "Hide palette"
msgstr "隱藏調色盤"
-#: TurtleArtActivity.py:284 TurtleArtActivity.py:297
+#: TurtleArtActivity.py:305 TurtleArtActivity.py:318
msgid "Show blocks"
msgstr "顯示區塊"
-#: TurtleArtActivity.py:287 TurtleArtActivity.py:305 TurtleArtActivity.py:685
+#: TurtleArtActivity.py:308 TurtleArtActivity.py:326 TurtleArtActivity.py:692
msgid "Hide blocks"
msgstr "隱藏區塊"
-#: TurtleArtActivity.py:415
+#: TurtleArtActivity.py:436
msgid "Rescale coordinates down"
msgstr "縮小座標軸比例"
-#: TurtleArtActivity.py:419 TurtleArtActivity.py:546
+#: TurtleArtActivity.py:440 TurtleArtActivity.py:564
msgid "Rescale coordinates up"
msgstr "重新調整座標(上升)"
-#: TurtleArtActivity.py:478 TurtleArtActivity.py:516 turtleart.py:351
+#: TurtleArtActivity.py:499 TurtleArtActivity.py:536 turtleart.py:355
msgid "Edit"
msgstr "編輯"
-#: TurtleArtActivity.py:482 TurtleArtActivity.py:514 turtleart.py:346
+#: TurtleArtActivity.py:503 TurtleArtActivity.py:534 turtleart.py:350
msgid "View"
msgstr "檢視"
-#: TurtleArtActivity.py:489 TurtleArtActivity.py:520
-msgid "Help"
-msgstr "幫助"
-
-#: TurtleArtActivity.py:512
+#: TurtleArtActivity.py:532
msgid "Project"
msgstr "專案"
-#: TurtleArtActivity.py:518 TurtleArtActivity.py:625
+#: TurtleArtActivity.py:538 TurtleArtActivity.py:632
msgid "Save/Load"
-msgstr ""
+msgstr "儲存/讀取"
-#: TurtleArtActivity.py:528 turtleart.py:349
+#: TurtleArtActivity.py:546 turtleart.py:353
msgid "Copy"
msgstr "複製"
-#: TurtleArtActivity.py:530 turtleart.py:350
+#: TurtleArtActivity.py:548 turtleart.py:354
msgid "Paste"
msgstr "貼上"
-#: TurtleArtActivity.py:532
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
+#: TurtleArtActivity.py:550
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:672
msgid "Fullscreen"
msgstr "全螢幕"
-#: TurtleArtActivity.py:534 turtleart.py:334
+#: TurtleArtActivity.py:552 turtleart.py:334
msgid "Cartesian coordinates"
msgstr "直角座標系"
-#: TurtleArtActivity.py:536 turtleart.py:336
+#: TurtleArtActivity.py:554 turtleart.py:336
msgid "Polar coordinates"
msgstr "極座標"
-#: TurtleArtActivity.py:539
+#: TurtleArtActivity.py:557
msgid "Metric coordinates"
msgstr "矩陣座標"
-#: TurtleArtActivity.py:549 turtleart.py:340
+#: TurtleArtActivity.py:567 turtleart.py:340
msgid "Grow blocks"
msgstr "顯示區塊"
-#: TurtleArtActivity.py:551 turtleart.py:342
+#: TurtleArtActivity.py:569 turtleart.py:342
msgid "Shrink blocks"
msgstr "縮小區塊"
-#: TurtleArtActivity.py:575 TurtleArtActivity.py:667
+#: TurtleArtActivity.py:596 TurtleArtActivity.py:674
msgid "Load example"
msgstr "載入範例"
-#: TurtleArtActivity.py:593 TurtleArtActivity.py:597
-msgid "Move the cursor over the orange palette for help."
-msgstr "移動游標滑過橘色調色盤以取得協助"
-
-#: TurtleArtActivity.py:630 TurtleArtActivity.py:650 turtleart.py:324
+#: TurtleArtActivity.py:637 TurtleArtActivity.py:657 turtleart.py:324
msgid "Save as image"
msgstr "另存為圖片"
-#: TurtleArtActivity.py:633 TurtleArtActivity.py:653 turtleart.py:326
+#: TurtleArtActivity.py:640 TurtleArtActivity.py:660 turtleart.py:326
msgid "Save as HTML"
msgstr "另存為網頁 HTML"
-#: TurtleArtActivity.py:636 TurtleArtActivity.py:655 turtleart.py:328
+#: TurtleArtActivity.py:643 TurtleArtActivity.py:662 turtleart.py:328
msgid "Save as Logo"
msgstr "另存為 Logo 檔"
-#: TurtleArtActivity.py:639 TurtleArtActivity.py:658
+#: TurtleArtActivity.py:646 TurtleArtActivity.py:665
msgid "Save snapshot"
msgstr "保存螢幕抓圖"
-#: TurtleArtActivity.py:641 TurtleArtActivity.py:661
+#: TurtleArtActivity.py:648 TurtleArtActivity.py:668
msgid "Load project"
-msgstr ""
+msgstr "載入專案"
-#: TurtleArtActivity.py:644 TurtleArtActivity.py:664
+#: TurtleArtActivity.py:651 TurtleArtActivity.py:671
msgid "Load Python block"
msgstr "載入Python區塊"
-#: TurtleArtActivity.py:683
+#: TurtleArtActivity.py:690
msgid "<Ctrl>p"
msgstr "<Ctrl>p"
-#: TurtleArtActivity.py:686
+#: TurtleArtActivity.py:693
msgid "<Ctrl>b"
msgstr "<Ctrl>b"
-#: TurtleArtActivity.py:691 turtleart.py:363
+#: TurtleArtActivity.py:698 turtleart.py:367
msgid "Clean"
msgstr "清除畫面"
-#: TurtleArtActivity.py:691
+#: TurtleArtActivity.py:698
msgid "<Ctrl>e"
msgstr "<Ctrl>e"
-#: TurtleArtActivity.py:693 turtleart.py:364
+#: TurtleArtActivity.py:700 turtleart.py:368
msgid "Run"
msgstr "執行"
-#: TurtleArtActivity.py:693
+#: TurtleArtActivity.py:700
msgid "<Ctrl>r"
msgstr "<Ctrl>r"
-#: TurtleArtActivity.py:695 turtleart.py:365
+#: TurtleArtActivity.py:702 turtleart.py:369
msgid "Step"
msgstr "單步執行"
-#: TurtleArtActivity.py:695
+#: TurtleArtActivity.py:702
msgid "<Ctrl>w"
msgstr "<Ctrl>w"
-#: TurtleArtActivity.py:698 turtleart.py:366
+#: TurtleArtActivity.py:705 turtleart.py:370
msgid "Debug"
msgstr "除錯"
-#: TurtleArtActivity.py:698
+#: TurtleArtActivity.py:705
msgid "<Ctrl>d"
msgstr "<Ctrl>d"
-#: TurtleArtActivity.py:700
+#: TurtleArtActivity.py:707
msgid "Stop turtle"
msgstr "停止執行"
-#: TurtleArtActivity.py:701
+#: TurtleArtActivity.py:708
msgid "<Ctrl>s"
msgstr "<Ctrl>s"
@@ -1019,7 +1019,7 @@ msgstr "上傳失敗"
#: plugins/audio_sensors/audio_sensors.py:75
#: plugins/camera_sensor/camera_sensor.py:56
#: plugins/light_sensor/light_sensor.py:49 plugins/rfid/rfid.py:86
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:294
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:295
msgid "Palette of sensor blocks"
msgstr "偵測器區塊的顏色"
@@ -1055,7 +1055,7 @@ msgstr "麥克風輸入音量"
#: plugins/audio_sensors/audio_sensors.py:118
#: plugins/audio_sensors/audio_sensors.py:126
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "pitch"
msgstr "音高"
@@ -1151,488 +1151,491 @@ msgstr "執行直到真值運算子使用數字調色盤上的布林運算子"
msgid "Palette of media objects"
msgstr "媒體物件調色盤"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:126
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
msgid "journal"
msgstr "日誌"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:127
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:128
msgid "Sugar Journal media object"
msgstr "Sugar日誌媒體物件"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:137
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:138
msgid "audio"
msgstr "音效"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:139
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:140
msgid "Sugar Journal audio object"
msgstr "Sugar日誌聲音物件"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:149
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:150
msgid "video"
msgstr "影像"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:151
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:152
msgid "Sugar Journal video object"
msgstr "Sugar日誌影像物件"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:161
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:162
msgid "description"
msgstr "描述"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:163
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:164
msgid "Sugar Journal description field"
msgstr "Sugar日誌描述區"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:180
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:208
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:181
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:209
msgid "show"
msgstr "顯示"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:184
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:197
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:212
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:185
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:198
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:213
msgid "draws text or show media from the Journal"
msgstr "從日誌中繪製文字或顯示媒體"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:193
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:194
msgid "show aligned"
msgstr "對齊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:220
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:221
msgid "set scale"
msgstr "設定比例"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:224
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:225
msgid "sets the scale of media"
msgstr "設定媒體的幅度"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:231
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:232
msgid "save picture"
msgstr "儲存圖片"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:233
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:244
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
msgid "picture name"
msgstr "圖片名稱"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:234
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:235
msgid "saves a picture to the Sugar Journal"
msgstr "儲存圖片到Sugar日誌中"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:242
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:243
msgid "save SVG"
msgstr "存成svg圖檔"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:245
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:246
msgid "saves turtle graphics as an SVG file in the Sugar Journal"
msgstr "在日誌中儲存小海龜圖片為svg格式"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:252
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:253
msgid "scale"
msgstr "比例"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:256
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:257
msgid "holds current scale value"
msgstr "保持目前的縮放值"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:261
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:262
msgid "media wait"
msgstr "等待媒體"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:263
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:264
msgid "wait for current video or audio to complete"
msgstr "等待完成目前影像或聲音"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:270
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:271
msgid "speak"
msgstr "聽我說"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:272
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
msgid "hello"
msgstr "您好"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:273
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:274
msgid "speaks text"
msgstr "說出文字"
#. TRANS: pitch, duration, amplitude
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "sinewave"
msgstr "正弦波"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:281
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:282
msgid "duration"
msgstr "時間長度"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:284
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:285
msgid "plays a sinewave at frequency, amplitude, and duration (in seconds)"
msgstr "指定播放正弦波頻率、音量以及時間長度(秒)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:299
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:301
msgid "button down"
msgstr "按下按鍵"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:302
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:304
msgid "returns 1 if mouse button is pressed"
msgstr "當滑鼠按鍵按下時傳回 1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:309
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:311
msgid "mouse x"
msgstr "滑鼠座標 x"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:312
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:314
msgid "returns mouse x coordinate"
msgstr "傳回滑鼠位置的 x 座標"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:319
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:321
msgid "mouse y"
msgstr "滑鼠座標 y"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:322
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:324
msgid "returns mouse y coordinate"
msgstr "傳回滑鼠位置的 y 座標"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:330
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
msgid "query keyboard"
msgstr "詢問鍵盤"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:332
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:334
msgid "query for keyboard input (results stored in keyboard block)"
msgstr "鍵盤輸入查詢(結果儲存在鍵盤區塊)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:339
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:341
msgid "keyboard"
msgstr "鍵盤"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:343
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:345
msgid "holds results of query-keyboard block"
msgstr "保持詢問鍵盤區塊的結果"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:350
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:352
msgid "read pixel"
msgstr "讀取像素"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:353
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:355
msgid "RGB color under the turtle is pushed to the stack"
msgstr "小海龜下的RGB色系已經推入堆疊中"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:361
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
msgid "turtle sees"
msgstr "小烏龜的視野"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:363
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:365
msgid "returns the color that the turtle \"sees\""
msgstr "回傳小烏龜看到的顏色"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:371 taextras.py:279
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:373 taextras.py:279
msgid "time"
msgstr "時間"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:374
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:376
msgid "elapsed time (in seconds) since program started"
msgstr "程式啟動後所經過的時間(秒)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:383
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:385
msgid "Palette of extra options"
msgstr "調色盤額外選項"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:388
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
msgid "push"
msgstr "存入堆疊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:391
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:394
msgid "pushes value onto FILO (first-in last-out heap)"
msgstr "把數值推向FILO(first-in-hand heap)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:401
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
msgid "show heap"
msgstr "顯示堆疊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:404
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:407
msgid "shows values in FILO (first-in last-out heap)"
msgstr "在FILO中顯示數值"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:414
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
msgid "empty heap"
msgstr "清除堆疊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:417
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:420
msgid "emptys FILO (first-in-last-out heap)"
msgstr "清除FILO(first-in-last-out heap)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:427
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:430
msgid "pop"
msgstr "取出堆疊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:431
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:434
msgid "pops value off FILO (first-in last-out heap)"
msgstr "跳出FILO關閉值"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:441
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
#, fuzzy
msgid "empty heap?"
msgstr "清除堆疊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:444
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:447
msgid "returns True if heap is empty"
msgstr ""
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:451
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:453
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:456
msgid "comment"
msgstr "註記"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:454
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:457
msgid "places a comment in your code"
msgstr "在程式碼中做註記"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:460
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
msgid "print"
msgstr "顯示"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:463
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:466
msgid "prints value in status block at bottom of the screen"
msgstr "列印螢幕下方堆疊區塊的值"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:471
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:483
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:496
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
msgid "Python"
msgstr "Python"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:474
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:477
msgid ""
"a programmable block: used to add advanced single-variable math equations, e."
"g., sin(x)"
msgstr "可執行區塊:用以增加進階的單一變項數學式(如:sin(x))"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:486
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:489
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sqrt(x*x+y*y)"
msgstr "可執行區塊:用以添加進階多變數數學方程式(如:sqrt(X^X+Y^Y)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:499
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:502
msgid ""
"a programmable block: used to add advanced multi-variable math equations, e."
"g., sin(x+y+z)"
msgstr "可執行區塊:用以添加進階多變數數學式(如:sin(x+y+z))"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:510
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:525
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:540
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:513
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:528
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:543
msgid "Python block"
msgstr "Python區塊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:512
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:527
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:542
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:515
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:530
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:545
msgid "runs code found in the tamyblock.py module found in the Journal"
msgstr "從日誌中的tamyblock.py模組執行code"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:555
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:558
msgid "Cartesian"
msgstr "笛卡爾"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:557
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:560
msgid "displays Cartesian coordinates"
msgstr "顯示笛卡爾座標系"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:563
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:566
msgid "polar"
msgstr "極"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:565
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:568
msgid "displays polar coordinates"
msgstr "顯示極座標"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:571
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
msgid "turtle"
msgstr "小烏龜"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:574
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:577
msgid "chooses which turtle to command"
msgstr "選擇要控制的小烏龜"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:583
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:592
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:586
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:595
msgid "turtle shell"
msgstr "龜殼"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:585
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:593
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:588
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:596
msgid "put a custom 'shell' on the turtle"
msgstr "替小烏龜穿上自製的龜殼"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:598
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:601
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:768
msgid "top"
msgstr "頂端"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:600
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:603
msgid "top of a collapsed stack"
msgstr "崩潰堆疊的上方"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:606
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:609
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:744
msgid "bottom"
msgstr "底端"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:607
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:610
msgid "bottom of a collapsible stack"
msgstr "毀損堆疊的底端"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:615
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:618
+msgid "collapsed stack: click to open"
+msgstr ""
+
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:627
msgid "bottom block in a collapsed stack: click to open"
msgstr "在底部區塊的崩壞堆疊:點選以開啟"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:623
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:626
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:634
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:637
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:646
msgid "top of stack"
msgstr "堆疊上方"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:624
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:633
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:635
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:644
msgid "label"
msgstr "標籤"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:632
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:643
msgid "top of a collapsible stack"
msgstr "毀損堆疊的頂端"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:649
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:652
msgid "Palette of presentation templates"
msgstr "展示模版調色盤"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:653
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:658
msgid "hide blocks"
msgstr "隱藏區塊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:655
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
msgid "declutters canvas by hiding blocks"
msgstr "用隱藏區塊來屠次表现油畫"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:660
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:665
msgid "show blocks"
msgstr "顯示區塊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:662
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:667
msgid "restores hidden blocks"
msgstr "回復隱藏區塊"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:669
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:674
msgid "hides the Sugar toolbars"
msgstr "隱藏sugar工具列"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:678
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:683
msgid "list"
msgstr "列表"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:681
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:911
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:686
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:916
msgid "presentation bulleted list"
msgstr "列點展示"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:689
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:912
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:694
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:917
msgid "presentation template: list of bullets"
msgstr "展示模版:列點"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:696
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:856
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:701
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:861
msgid "presentation template: select Journal object (no description)"
msgstr "簡報模版:選擇日誌中的物件(無說明)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:703
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:842
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:708
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:847
msgid "presentation template: select Journal object (with description)"
msgstr "展示模版:選擇日誌中的物件(有描述)"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:710
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:898
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:715
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:903
msgid "presentation template: select four Journal objects"
msgstr "外觀模版:選擇四個日誌中的物件"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:717
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:724
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:870
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:884
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:722
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:729
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:875
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:889
msgid "presentation template: select two Journal objects"
msgstr "展示模版:選擇兩個日誌中的物件"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:734
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:739
msgid "xcor of left of screen"
msgstr "視窗左邊的x座標"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:742
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747
msgid "ycor of bottom of screen"
msgstr "螢幕下方的y座標"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:747 taextras.py:205
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:752 taextras.py:205
msgid "width"
msgstr "寬度"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:750
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:755
msgid "the canvas width"
msgstr "畫面寬度"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:758
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:763
msgid "xcor of right of screen"
msgstr "螢幕右方的x座標"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:766
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771
msgid "ycor of top of screen"
msgstr "螢幕上方的y座標"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:771 taextras.py:200
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:776 taextras.py:200
#: taextras.py:206
msgid "height"
msgstr "高度"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:774
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:779
msgid "the canvas height"
msgstr "畫布高度"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:781
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:786
msgid "title x"
msgstr "x軸標題"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:790
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:795
msgid "title y"
msgstr "y軸標題"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:799
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:804
msgid "left x"
msgstr "x軸左側"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:808
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:813
msgid "top y"
msgstr "y軸頂端"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:817
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:822
msgid "right x"
msgstr "x軸右側"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:826
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:831
msgid "bottom y"
msgstr "y軸底端"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:841
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:855
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:846
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:860
msgid "presentation 1x1"
msgstr "展示為1x1"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:869
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:874
msgid "presentation 2x1"
msgstr "以2x1方式展示"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:883
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:888
msgid "presentation 1x2"
msgstr "展示為1x2"
-#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:897
+#: plugins/turtle_blocks_extras/turtle_blocks_extras.py:902
msgid "presentation 2x2"
msgstr "以2x2方式展示"
@@ -1695,8 +1698,8 @@ msgstr "瓜尼拉色盤"
#. TRANS: Butia is the Arduino Robot Project from Uruguay
#. (http://www.fing.edu.uy/inco/proyectos/butia/)
#: taextras.py:58
-msgid "Turtle Art Butia"
-msgstr "小海龜棕櫚"
+msgid "TurtleBots"
+msgstr ""
#: taextras.py:59
#, fuzzy
@@ -1750,8 +1753,8 @@ msgid "LED"
msgstr "LED"
#: taextras.py:70
-msgid "pushbutton"
-msgstr "按鈕"
+msgid "button"
+msgstr ""
#: taextras.py:71
msgid "grayscale"
@@ -2227,7 +2230,7 @@ msgid ""
"placed on the most recent object created."
msgstr "發動機的扭力與速度值,由 0 (關閉)到一個正數,發動機放在最後建立的物件上。"
-#: taextras.py:215
+#: taextras.py:215 taextras.py:329
msgid "pin"
msgstr "釘梢"
@@ -2388,7 +2391,7 @@ msgid "The value of power must be between -127 to 127."
msgstr ""
#: taextras.py:272
-msgid "An error has ocurred: check all and try reconect."
+msgid "An error has occurred: check all connections and try to reconnect."
msgstr ""
#: taextras.py:273
@@ -2535,6 +2538,140 @@ msgstr ""
msgid "Set color sensor light."
msgstr ""
+#: taextras.py:308
+msgid "reset motor"
+msgstr ""
+
+#: taextras.py:309
+msgid "Reset the motor counter."
+msgstr ""
+
+#: taextras.py:310
+msgid "motor position"
+msgstr ""
+
+#: taextras.py:311
+msgid "Get the motor position."
+msgstr ""
+
+#. TRANS: Arduino plugin to control an Arduino board
+#: taextras.py:316
+#, fuzzy
+msgid "Palette of Arduino blocks"
+msgstr "偵測器區塊的顏色"
+
+#: taextras.py:317
+msgid "HIGH"
+msgstr ""
+
+#: taextras.py:318
+msgid "LOW"
+msgstr ""
+
+#: taextras.py:319
+msgid "INPUT"
+msgstr ""
+
+#: taextras.py:320
+msgid "OUTPUT"
+msgstr ""
+
+#. TRANS: PWM is pulse-width modulation
+#: taextras.py:322
+msgid "PWM"
+msgstr ""
+
+#: taextras.py:323
+msgid "SERVO"
+msgstr ""
+
+#: taextras.py:324
+msgid "ERROR: Check the Arduino and the number of port."
+msgstr ""
+
+#: taextras.py:325
+msgid "ERROR: Value must be a number from 0 to 255."
+msgstr ""
+
+#: taextras.py:326
+msgid "ERROR: Value must be either HIGH or LOW."
+msgstr ""
+
+#: taextras.py:327
+msgid "ERROR: The mode must be either INPUT, OUTPUT, PWM or SERVO."
+msgstr ""
+
+#: taextras.py:328
+msgid "pin mode"
+msgstr ""
+
+#: taextras.py:330
+#, fuzzy
+msgid "mode"
+msgstr "模數"
+
+#: taextras.py:331
+msgid "Select the pin function (INPUT, OUTPUT, PWM, SERVO)."
+msgstr ""
+
+#: taextras.py:332
+msgid "analog write"
+msgstr ""
+
+#: taextras.py:334
+msgid "Write analog value in specified port."
+msgstr ""
+
+#: taextras.py:335
+msgid "analog read"
+msgstr ""
+
+#: taextras.py:336
+msgid ""
+"Read value from analog port. Value may be between 0 and 1023. Use Vref to "
+"determine voltage. For USB, volt=((read)*5)/1024) approximately."
+msgstr ""
+
+#: taextras.py:338
+msgid "digital write"
+msgstr ""
+
+#: taextras.py:339
+msgid "Write digital value to specified port."
+msgstr ""
+
+#: taextras.py:340
+msgid "digital read"
+msgstr ""
+
+#: taextras.py:341
+msgid "Read value from digital port."
+msgstr ""
+
+#: taextras.py:342
+msgid "Set HIGH value for digital port."
+msgstr ""
+
+#: taextras.py:343
+msgid "Configure Arduino port for digital input."
+msgstr ""
+
+#: taextras.py:344
+msgid "Configure Arduino port to drive a servo."
+msgstr ""
+
+#: taextras.py:345
+msgid "Set LOW value for digital port."
+msgstr ""
+
+#: taextras.py:346
+msgid "Configure Arduino port for digital output."
+msgstr ""
+
+#: taextras.py:347
+msgid "Configure Arduino port for PWM (pulse-width modulation)."
+msgstr ""
+
#: turtleart.py:69
msgid "usage is"
msgstr "使用量為"
@@ -2584,30 +2721,43 @@ msgstr "重新縮放座標軸"
msgid "Reset block size"
msgstr "重設區塊大小"
-#: turtleart.py:358
+#: turtleart.py:362
msgid "Show/hide blocks"
msgstr "顯示/隱藏區塊"
-#: turtleart.py:360
+#: turtleart.py:364
msgid "Tools"
msgstr "工具"
-#: turtleart.py:367
+#: turtleart.py:371
msgid "Stop"
msgstr "停止"
-#: turtleart.py:368
+#: turtleart.py:372
msgid "Turtle"
msgstr "小烏龜"
-#: turtleart.py:398
+#: turtleart.py:402
msgid "You have unsaved work. Would you like to save before quitting?"
msgstr "你有尚未儲存的工作,是否要在關閉前儲存?"
-#: turtleart.py:399
+#: turtleart.py:403
msgid "Save project?"
msgstr "儲存計畫?"
+#: util/helpbutton.py:42
+msgid "Help"
+msgstr "幫助"
+
+#~ msgid "Move the cursor over the orange palette for help."
+#~ msgstr "移動游標滑過橘色調色盤以取得協助"
+
+#~ msgid "Turtle Art Butia"
+#~ msgstr "小海龜棕櫚"
+
+#~ msgid "pushbutton"
+#~ msgstr "按鈕"
+
#, fuzzy
#~ msgid ""
#~ "returns the object gray level encountered him as a number between 0 and 1023"